commit 72be20594dc5274e9bc6cf8582c521480b694d39 Author: Tom Date: Sat Dec 30 09:27:31 2023 +0000 First commit with progress so far diff --git a/Projects.sln b/Projects.sln new file mode 100644 index 0000000..c1911c6 --- /dev/null +++ b/Projects.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwitchChatTTS", "TwitchChatTTS\TwitchChatTTS.csproj", "{7A371F54-F9D5-49C9-BE2D-819C60A0D621}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7A371F54-F9D5-49C9-BE2D-819C60A0D621}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7A371F54-F9D5-49C9-BE2D-819C60A0D621}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7A371F54-F9D5-49C9-BE2D-819C60A0D621}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7A371F54-F9D5-49C9-BE2D-819C60A0D621}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/TwitchChatTTS/.redeems b/TwitchChatTTS/.redeems new file mode 100644 index 0000000..0e8566f --- /dev/null +++ b/TwitchChatTTS/.redeems @@ -0,0 +1,2 @@ +hydration +test \ No newline at end of file diff --git a/TwitchChatTTS/.token b/TwitchChatTTS/.token new file mode 100644 index 0000000..acd16cf --- /dev/null +++ b/TwitchChatTTS/.token @@ -0,0 +1 @@ +1C2920l0uhZfl4uaNSquFRec6cCiHCLS \ No newline at end of file diff --git a/TwitchChatTTS/.twitchchannels b/TwitchChatTTS/.twitchchannels new file mode 100644 index 0000000..94c25b8 --- /dev/null +++ b/TwitchChatTTS/.twitchchannels @@ -0,0 +1 @@ +freezeflame99 \ No newline at end of file diff --git a/TwitchChatTTS/Hermes/Account.cs b/TwitchChatTTS/Hermes/Account.cs new file mode 100644 index 0000000..87e3fcc --- /dev/null +++ b/TwitchChatTTS/Hermes/Account.cs @@ -0,0 +1,9 @@ +using System.Diagnostics.CodeAnalysis; + +[Serializable] +public class Account { + [AllowNull] + public string id { get; set; } + [AllowNull] + public string username { get; set; } +} \ No newline at end of file diff --git a/TwitchChatTTS/Hermes/HermesClient.cs b/TwitchChatTTS/Hermes/HermesClient.cs new file mode 100644 index 0000000..592ac3a --- /dev/null +++ b/TwitchChatTTS/Hermes/HermesClient.cs @@ -0,0 +1,37 @@ +using System; + +public class HermesClient { + private Account account; + private string key; + + public string Id { get => account?.id; } + public string Username { get => account?.username; } + + + public HermesClient() { + // Read API Key from file. + if (!File.Exists(".token")) { + throw new Exception("Ensure you have written your API key in \".token\" file, in the same folder as this application."); + } + + key = File.ReadAllText(".token")?.Trim(); + WebHelper.AddHeader("x-api-key", key); + } + + public async Task UpdateHermesAccount() { + account = await WebHelper.GetJson("https://hermes.goblincaves.com/api/account"); + } + + public async Task FetchTwitchBotToken() { + if (string.IsNullOrWhiteSpace(key)) { + throw new InvalidOperationException("Hermes API key not provided."); + } + + var token = await WebHelper.GetJson("https://hermes.goblincaves.com/api/token/bot"); + if (token == null) { + throw new Exception("Failed to fetch Twitch API token from Hermes."); + } + + return token; + } +} \ No newline at end of file diff --git a/TwitchChatTTS/Hermes/TwitchBotToken.cs b/TwitchChatTTS/Hermes/TwitchBotToken.cs new file mode 100644 index 0000000..603ac9d --- /dev/null +++ b/TwitchChatTTS/Hermes/TwitchBotToken.cs @@ -0,0 +1,8 @@ +[Serializable] +public class TwitchBotToken { + public string client_id { get; set; } + public string client_secret { get; set; } + public string access_token { get; set; } + public string refresh_token { get; set; } + public string broadcaster_id { get; set; } +} \ No newline at end of file diff --git a/TwitchChatTTS/Hermes/TwitchConnection.cs b/TwitchChatTTS/Hermes/TwitchConnection.cs new file mode 100644 index 0000000..5554457 --- /dev/null +++ b/TwitchChatTTS/Hermes/TwitchConnection.cs @@ -0,0 +1,8 @@ +[Serializable] +public class TwitchConnection { + public string id { get; set; } + public string secret { get; set; } + public string broadcasterId { get; set; } + public string username { get; set; } + public string userId { get; set; } +} \ No newline at end of file diff --git a/TwitchChatTTS/Program.cs b/TwitchChatTTS/Program.cs new file mode 100644 index 0000000..3233b9e --- /dev/null +++ b/TwitchChatTTS/Program.cs @@ -0,0 +1,282 @@ +using System.Runtime.InteropServices; +using System.Text.RegularExpressions; +using NAudio.Wave; +using TwitchLib.Api; +using TwitchLib.Client; +using TwitchLib.Client.Events; +using TwitchLib.Client.Models; +using TwitchLib.Communication.Clients; +using TwitchLib.Communication.Events; +using TwitchLib.PubSub; +using TwitchLib.PubSub.Events; +using NAudio.Wave.SampleProviders; + +/** +Future handshake/connection procedure: +- GET all tts config data +- Continuous connection to server to receive commands from tom & send logs/errors (med priority, though tough task) + +Ideas: +- Filter messages by badges, username, ..., etc. +- Filter messages by content. +- Speed up TTS based on message queue size? +- Cut TTS off shortly after raid (based on size of raid)? +- Limit duration of TTS +- Voice selection for channel and per user. +**/ + +// dotnet publish -r linux-x64 -p:PublishSingleFile=true --self-contained true +// dotnet publish -r win-x64 -p:PublishSingleFile=true --self-contained true +// SE voices: https://api.streamelements.com/kappa/v2/speech?voice=brian&text=hello + +// Read redeems from file. +var redeems = File.Exists(".redeems") ? await File.ReadAllLinesAsync(".redeems") : new string[0]; + +// Fetch id and username based on api key given. +HermesClient hermes = new HermesClient(); +Console.WriteLine("Fetching Hermes account details..."); +await hermes.UpdateHermesAccount(); + +Console.WriteLine("ID: " + hermes.Id); +Console.WriteLine("Username: " + hermes.Username); +Console.WriteLine(); + +Console.WriteLine("Fetching Twitch API details from Hermes..."); +TwitchApiClient twitchapiclient = new TwitchApiClient(await hermes.FetchTwitchBotToken()); +await twitchapiclient.Authorize(); + +var sfxRegex = new Regex(@"\(([A-Za-z0-9_-]+)\)"); +var voiceRegex = new Regex(@"\b(Filiz|Astrid|Tatyana|Maxim|Carmen|Ines|Cristiano|Vitoria|Ricardo|Maja|Jan|Jacek|Ewa|Ruben|Lotte|Liv|Seoyeon|Takumi|Mizuki|Giorgio|Carla|Bianca|Karl|Dora|Mathieu|Celine|Chantal|Penelope|Miguel|Mia|Enrique|Conchita|Geraint|Salli|Matthew|Kimberly|Kendra|Justin|Joey|Joanna|Ivy|Raveena|Aditi|Emma|Brian|Amy|Russell|Nicole|Vicki|Marlene|Hans|Naja|Mads|Gwyneth|Zhiyu|Tracy|Danny|Huihui|Yaoyao|Kangkang|HanHan|Zhiwei|Asaf|An|Stefanos|Filip|Ivan|Heidi|Herena|Kalpana|Hemant|Matej|Andika|Rizwan|Lado|Valluvar|Linda|Heather|Sean|Michael|Karsten|Guillaume|Pattara|Jakub|Szabolcs|Hoda|Naayf)\:(.*?)(?=\Z|\b(?:Filiz|Astrid|Tatyana|Maxim|Carmen|Ines|Cristiano|Vitoria|Ricardo|Maja|Jan|Jacek|Ewa|Ruben|Lotte|Liv|Seoyeon|Takumi|Mizuki|Giorgio|Carla|Bianca|Karl|Dora|Mathieu|Celine|Chantal|Penelope|Miguel|Mia|Enrique|Conchita|Geraint|Salli|Matthew|Kimberly|Kendra|Justin|Joey|Joanna|Ivy|Raveena|Aditi|Emma|Brian|Amy|Russell|Nicole|Vicki|Marlene|Hans|Naja|Mads|Gwyneth|Zhiyu|Tracy|Danny|Huihui|Yaoyao|Kangkang|HanHan|Zhiwei|Asaf|An|Stefanos|Filip|Ivan|Heidi|Herena|Kalpana|Hemant|Matej|Andika|Rizwan|Lado|Valluvar|Linda|Heather|Sean|Michael|Karsten|Guillaume|Pattara|Jakub|Szabolcs|Hoda|Naayf)\:)", RegexOptions.IgnoreCase); + +TTSPlayer player = new TTSPlayer(); +ISampleProvider playing = null; + +var channels = File.Exists(".twitchchannels") ? File.ReadAllLines(".twitchchannels") : new string[] { hermes.Username }; +twitchapiclient.InitializeClient(hermes, channels); +twitchapiclient.InitializePublisher(player, redeems); + +void HandleMessage(int priority, string voice, string message, OnMessageReceivedArgs e, bool bot) { + var m = e.ChatMessage; + var parts = sfxRegex.Split(message); + var sfxMatches = sfxRegex.Matches(message); + var sfxStart = sfxMatches.FirstOrDefault()?.Index ?? message.Length; + var alphanumeric = new Regex(@"[^a-zA-Z0-9!@#$%&\^*+\-_(),+':;?.,\[\]\s\\/~`]"); + message = alphanumeric.Replace(message, " "); + + if (string.IsNullOrWhiteSpace(message)) { + return; + } + + if (parts.Length == 1) { + Console.WriteLine($"Voice: {voice}; Priority: {priority}; Message: {message}; Month: {m.SubscribedMonthCount}; {string.Join(", ", e.ChatMessage.Badges.Select(b => b.Key + " = " + b.Value))}"); + player.Add(new TTSMessage() { + Voice = voice, + Bot = bot, + Message = message, + Moderator = m.IsModerator, + Timestamp = DateTime.UtcNow, + Username = m.Username, + Bits = m.Bits, + Badges = m.Badges, + Priority = priority + }); + return; + } + + for (var i = 0; i < sfxMatches.Count; i++) { + var sfxMatch = sfxMatches[i]; + var sfxName = sfxMatch.Groups[1]?.ToString()?.ToLower(); + + if (!File.Exists("sfx/" + sfxName + ".mp3")) { + parts[i * 2 + 2] = parts[i * 2] + " (" + parts[i * 2 + 1] + ")" + parts[i * 2 + 2]; + continue; + } + + if (!string.IsNullOrWhiteSpace(parts[i * 2])) { + Console.WriteLine($"Voice: {voice}; Priority: {priority}; Message: {parts[i * 2]}; Month: {m.SubscribedMonthCount}; {string.Join(", ", e.ChatMessage.Badges.Select(b => b.Key + " = " + b.Value))}"); + player.Add(new TTSMessage() { + Voice = voice, + Bot = bot, + Message = parts[i * 2], + Moderator = m.IsModerator, + Timestamp = DateTime.UtcNow, + Username = m.Username, + Bits = m.Bits, + Badges = m.Badges, + Priority = priority + }); + } + + Console.WriteLine($"Voice: {voice}; Priority: {priority}; SFX: {sfxName}; Month: {m.SubscribedMonthCount}; {string.Join(", ", e.ChatMessage.Badges.Select(b => b.Key + " = " + b.Value))}"); + player.Add(new TTSMessage() { + Voice = voice, + Bot = bot, + Message = sfxName, + File = $"sfx/{sfxName}.mp3", + Moderator = m.IsModerator, + Timestamp = DateTime.UtcNow, + Username = m.Username, + Bits = m.Bits, + Badges = m.Badges, + Priority = priority + }); + } + + if (!string.IsNullOrWhiteSpace(parts.Last())) { + Console.WriteLine($"Voice: {voice}; Priority: {priority}; Message: {parts.Last()}; Month: {m.SubscribedMonthCount}; {string.Join(", ", e.ChatMessage.Badges.Select(b => b.Key + " = " + b.Value))}"); + player.Add(new TTSMessage() { + Voice = voice, + Bot = bot, + Message = parts.Last(), + Moderator = m.IsModerator, + Timestamp = DateTime.UtcNow, + Username = m.Username, + Bits = m.Bits, + Badges = m.Badges, + Priority = priority + }); + } +} + +twitchapiclient.AddOnNewMessageReceived(async Task (object? s, OnMessageReceivedArgs e) => { + var m = e.ChatMessage; + var msg = e.ChatMessage.Message; + if ((m.IsVip || m.IsModerator || m.IsBroadcaster) && (msg.ToLower().StartsWith("!skip ") || msg.ToLower() == "!skip")) { + AudioPlaybackEngine.Instance.RemoveMixerInput(playing); + playing = null; + return; + } + + string[] bots = new string[] { "nightbot", "streamelements", "own3d", "streamlabs", "soundalerts", "pokemoncommunitygame" }; + bool bot = bots.Any(b => b == m.Username); + if (bot || m.IsBroadcaster || msg.StartsWith('!')) { + return; + } + + string[] bad = new string[] { "incel", "simp", "virgin", "faggot", "fagg", "fag", "nigger", "nigga", "nigg", "nig", "whore", "retard", "cock", "fuck", "bastard", "wanker", "bollocks", "motherfucker", "bitch", "bish", "bich", "asshole", "ass", "dick", "dickhead", "frigger", "shit", "slut", "turd", "twat", "nigra", "penis" }; + foreach (var b in bad) { + msg = new Regex($@"\b{b}\b", RegexOptions.IgnoreCase).Replace(msg, ""); + } + + msg = new Regex(@"%").Replace(msg, " percent "); + msg = new Regex(@"https?\:\/\/[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b(?:[-a-zA-Z0-9()@:%_\+.~#?&\/\/=]*)").Replace(msg, ""); + msg = new Regex(@"\bfreeze153").Replace(msg, ""); + + // Filter highly repetitive words (like emotes) from message. + var words = msg.Split(" "); + var wordCounter = new Dictionary(); + string filteredMsg = string.Empty; + foreach (var w in words) { + if (wordCounter.ContainsKey(w)) { + wordCounter[w]++; + } else { + wordCounter.Add(w, 1); + } + + if (wordCounter[w] < 5) { + filteredMsg += w + " "; + } + } + msg = filteredMsg; + + foreach (var w in words) { + if (wordCounter.ContainsKey(w)) { + wordCounter[w]++; + } else { + wordCounter.Add(w, 1); + } + } + + int priority = 0; + if (m.IsStaff) { + priority = int.MinValue; + } else if (m.IsModerator) { + priority = -100; + } else if (m.IsVip) { + priority = -10; + } else if (m.IsPartner) { + priority = -5; + } else if (m.IsHighlighted) { + priority = -1; + } + priority = (int) Math.Round(Math.Min(priority, -m.SubscribedMonthCount * (m.Badges.Any(b => b.Key == "subscriber" && b.Value == "1") ? 1.2 : 1))); + + var matches = voiceRegex.Matches(msg); + int defaultEnd = matches.FirstOrDefault()?.Index ?? msg.Length; + if (defaultEnd > 0) { + HandleMessage(priority, "Brian", msg.Substring(0, defaultEnd), e, bot); + } + + foreach (Match match in matches) { + var message = match.Groups[2].ToString(); + if (string.IsNullOrWhiteSpace(message)) { + continue; + } + + var voice = match.Groups[1].ToString(); + voice = voice[0].ToString().ToUpper() + voice.Substring(1).ToLower(); + + HandleMessage(priority, voice, message, e, bot); + } +}); + +AudioPlaybackEngine.Instance.AddOnMixerInputEnded((object? s, SampleProviderEventArgs e) => { + if (e.SampleProvider == playing) { + playing = null; + } +}); + +Task.Run(async () => { + while (true) { + try { + var m = player.ReceiveBuffer(); + if (m == null) { + await Task.Delay(200); + continue; + } + + string url = $"https://api.streamelements.com/kappa/v2/speech?voice={m.Voice}&text={m.Message}"; + var sound = new NetworkWavSound(url); + var provider = new CachedWavProvider(sound); + var data = AudioPlaybackEngine.Instance.ConvertSound(provider); + + m.Audio = data; + player.Ready(m); + } catch (COMException e) { + Console.WriteLine(e.GetType().Name + ": " + e.Message + " (HResult: " + e.HResult + ")"); + } catch (Exception e) { + Console.WriteLine(e.GetType().Name + ": " + e.Message); + } + } +}); + +Task.Run(async () => { + while (true) { + try { + while (player.IsEmpty() || playing != null) { + await Task.Delay(200); + } + var m = player.ReceiveReady(); + if (m == null) { + continue; + } + + if (!string.IsNullOrWhiteSpace(m.File) && File.Exists(m.File)) { + Console.WriteLine("Playing sfx: " + m.File); + AudioPlaybackEngine.Instance.PlaySound(m.File); + continue; + } + + Console.WriteLine("Playing message: " + m.Message); + playing = m.Audio; + AudioPlaybackEngine.Instance.AddMixerInput(m.Audio); + } catch (Exception e) { + Console.WriteLine(e.GetType().Name + ": " + e.Message); + } + } +}); + +Console.WriteLine("Twitch API client connecting..."); +twitchapiclient.Connect(); +Console.ReadLine(); +Console.ReadLine(); \ No newline at end of file diff --git a/TwitchChatTTS/Speech/AudioPlaybackEngine.cs b/TwitchChatTTS/Speech/AudioPlaybackEngine.cs new file mode 100644 index 0000000..eebe34c --- /dev/null +++ b/TwitchChatTTS/Speech/AudioPlaybackEngine.cs @@ -0,0 +1,90 @@ +using NAudio.Wave; +using NAudio.Extras; +using NAudio.Wave.SampleProviders; + +public class AudioPlaybackEngine : IDisposable +{ + public static readonly AudioPlaybackEngine Instance = new AudioPlaybackEngine(22050, 1); + + private readonly IWavePlayer outputDevice; + private readonly MixingSampleProvider mixer; + + private AudioPlaybackEngine(int sampleRate = 44100, int channelCount = 2) + { + outputDevice = new WaveOutEvent(); + mixer = new MixingSampleProvider(WaveFormat.CreateIeeeFloatWaveFormat(sampleRate, channelCount)); + mixer.ReadFully = true; + outputDevice.Init(mixer); + outputDevice.Play(); + } + + private ISampleProvider ConvertToRightChannelCount(ISampleProvider input) + { + if (input.WaveFormat.Channels == mixer.WaveFormat.Channels) + { + return input; + } + if (input.WaveFormat.Channels == 1 && mixer.WaveFormat.Channels == 2) + { + return new MonoToStereoSampleProvider(input); + } + throw new NotImplementedException("Not yet implemented this channel count conversion"); + } + + public void PlaySound(string fileName) + { + var input = new AudioFileReader(fileName); + AddMixerInput(new AutoDisposeFileReader(input)); + } + + public void PlaySound(NetworkWavSound sound) + { + AddMixerInput(new CachedWavProvider(sound)); + } + + public ISampleProvider ConvertSound(IWaveProvider provider) { + ISampleProvider converted = null; + if (provider.WaveFormat.Encoding == WaveFormatEncoding.Pcm) { + if (provider.WaveFormat.BitsPerSample == 8) { + converted = new Pcm8BitToSampleProvider(provider); + } else if (provider.WaveFormat.BitsPerSample == 16) { + converted = new Pcm16BitToSampleProvider(provider); + } else if (provider.WaveFormat.BitsPerSample == 24) { + converted = new Pcm24BitToSampleProvider(provider); + } else if (provider.WaveFormat.BitsPerSample == 32) { + converted = new Pcm32BitToSampleProvider(provider); + } + } else if (provider.WaveFormat.Encoding == WaveFormatEncoding.IeeeFloat) { + if (provider.WaveFormat.BitsPerSample == 64) { + converted = new WaveToSampleProvider64(provider); + } else { + converted = new WaveToSampleProvider(provider); + } + } else { + throw new ArgumentException("Unsupported source encoding while adding to mixer."); + } + return converted; + } + + public void AddMixerInput(ISampleProvider input) + { + mixer.AddMixerInput(input); + } + + public void AddMixerInput(IWaveProvider input) + { + mixer.AddMixerInput(input); + } + + public void RemoveMixerInput(ISampleProvider sound) { + mixer.RemoveMixerInput(sound); + } + + public void AddOnMixerInputEnded(EventHandler e) { + mixer.MixerInputEnded += e; + } + + public void Dispose() { + outputDevice.Dispose(); + } +} \ No newline at end of file diff --git a/TwitchChatTTS/Speech/NetworkCachedSound.cs b/TwitchChatTTS/Speech/NetworkCachedSound.cs new file mode 100644 index 0000000..878cbc7 --- /dev/null +++ b/TwitchChatTTS/Speech/NetworkCachedSound.cs @@ -0,0 +1,45 @@ +using NAudio.Wave; +using System; + +public class NetworkWavSound +{ + public byte[] AudioData { get; private set; } + public WaveFormat WaveFormat { get; private set; } + + public NetworkWavSound(string uri) + { + using (var mfr = new MediaFoundationReader(uri)) { + WaveFormat = mfr.WaveFormat; + //Console.WriteLine("W: " + WaveFormat.SampleRate + " C: " + WaveFormat.Channels + " B: " + WaveFormat.BitsPerSample + " E: " + WaveFormat.Encoding); + + byte[] buffer = new byte[4096]; + int read = 0; + using (var ms = new MemoryStream()) { + while ((read = mfr.Read(buffer, 0, buffer.Length)) > 0) + ms.Write(buffer, 0, read); + AudioData = ms.ToArray(); + } + } + } +} + +public class CachedWavProvider : IWaveProvider +{ + private readonly NetworkWavSound sound; + private long position; + private readonly RawSourceWaveStream stream; + + public WaveFormat WaveFormat { get => sound.WaveFormat; } + + + public CachedWavProvider(NetworkWavSound cachedSound) + { + sound = cachedSound; + stream = new RawSourceWaveStream(new MemoryStream(sound.AudioData), sound.WaveFormat); + } + + public int Read(byte[] buffer, int offset, int count) + { + return stream.Read(buffer, offset, count); + } +} \ No newline at end of file diff --git a/TwitchChatTTS/Speech/TTSPlayer.cs b/TwitchChatTTS/Speech/TTSPlayer.cs new file mode 100644 index 0000000..7f9e5c4 --- /dev/null +++ b/TwitchChatTTS/Speech/TTSPlayer.cs @@ -0,0 +1,76 @@ +using NAudio.Wave; + +public class TTSPlayer { + private PriorityQueue _messages; // ready to play + private PriorityQueue _buffer; + private Mutex _mutex; + private Mutex _mutex2; + + public TTSPlayer() { + _messages = new PriorityQueue(); + _buffer = new PriorityQueue(); + _mutex = new Mutex(); + _mutex2 = new Mutex(); + } + + public void Add(TTSMessage message) { + try { + _mutex2.WaitOne(); + _buffer.Enqueue(message, message.Priority); + } finally { + _mutex2.ReleaseMutex(); + } + } + + public TTSMessage ReceiveReady() { + try { + _mutex.WaitOne(); + if (_messages.TryDequeue(out TTSMessage message, out int _)) { + return message; + } + return null; + } finally { + _mutex.ReleaseMutex(); + } + } + + public TTSMessage ReceiveBuffer() { + try { + _mutex2.WaitOne(); + if (_buffer.TryDequeue(out TTSMessage message, out int _)) { + return message; + } + return null; + } finally { + _mutex2.ReleaseMutex(); + } + } + + public void Ready(TTSMessage message) { + try { + _mutex.WaitOne(); + _messages.Enqueue(message, message.Priority); + } finally { + _mutex.ReleaseMutex(); + } + } + + public bool IsEmpty() { + return _messages.Count == 0; + } +} + +public class TTSMessage { + public string Voice { get; set; } + public string Channel { get; set; } + public string Username { get; set; } + public string Message { get; set; } + public string File { get; set; } + public DateTime Timestamp { get; set; } + public bool Moderator { get; set; } + public bool Bot { get; set; } + public IEnumerable> Badges { get; set; } + public int Bits { get; set; } + public int Priority { get; set; } + public ISampleProvider Audio { get; set; } +} \ No newline at end of file diff --git a/TwitchChatTTS/Twitch/TwitchApiClient.cs b/TwitchChatTTS/Twitch/TwitchApiClient.cs new file mode 100644 index 0000000..aefabcf --- /dev/null +++ b/TwitchChatTTS/Twitch/TwitchApiClient.cs @@ -0,0 +1,120 @@ +using TwitchLib.Api; +using TwitchLib.Client; +using TwitchLib.Client.Events; +using TwitchLib.Client.Models; +using TwitchLib.Communication.Clients; +using TwitchLib.Communication.Events; +using TwitchLib.PubSub; +using TwitchLib.PubSub.Events; + +public class TwitchApiClient { + private TwitchBotToken token; + private TwitchClient client; + private TwitchPubSub publisher; + private bool initialized; + + + public TwitchApiClient(TwitchBotToken token) { + client = new TwitchClient(new WebSocketClient()); + publisher = new TwitchPubSub(); + initialized = false; + this.token = token; + } + + public async Task Authorize() { + var authorize = await WebHelper.Get("https://hermes.goblincaves.com/api/account/reauthorize"); + var status = (int) authorize.StatusCode; + return status == 200 || status == 201; + } + + public async Task Connect() { + client.Connect(); + await publisher.ConnectAsync(); + } + + public void InitializeClient(HermesClient hermes, IEnumerable channels) { + ConnectionCredentials credentials = new ConnectionCredentials(hermes.Username, token.access_token); + client.Initialize(credentials, channels.Distinct().ToList()); + + if (initialized) { + return; + } + + initialized = true; + + client.OnJoinedChannel += async Task (object? s, OnJoinedChannelArgs e) => { + Console.WriteLine("Joined Channel: " + e.Channel); + }; + + client.OnConnected += async Task (object? s, OnConnectedArgs e) => { + Console.WriteLine("-----------------------------------------------------------"); + }; + + client.OnError += async Task (object? s, OnErrorEventArgs e) => { + Console.WriteLine("Log: " + e.Exception.Message + " (" + e.Exception.GetType().Name + ")"); + }; + + client.OnIncorrectLogin += async Task (object? s, OnIncorrectLoginArgs e) => { + Console.WriteLine("Incorrect Login: " + e.Exception.Message + " (" + e.Exception.GetType().Name + ")"); + }; + + client.OnConnectionError += async Task (object? s, OnConnectionErrorArgs e) => { + Console.WriteLine("Connection Error: " + e.Error.Message + " (" + e.Error.GetType().Name + ")"); + }; + + client.OnError += async Task (object? s, OnErrorEventArgs e) => { + Console.WriteLine("Error: " + e.Exception.Message + " (" + e.Exception.GetType().Name + ")"); + }; + } + + public void InitializePublisher(TTSPlayer player, IEnumerable redeems) { + publisher.OnPubSubServiceConnected += async (s, e) => { + publisher.ListenToChannelPoints(token.broadcaster_id); + + await publisher.SendTopicsAsync(token.access_token); + Console.WriteLine("Twitch PubSub has been connected."); + }; + + publisher.OnFollow += (s, e) => { + Console.WriteLine("Follow: " + e.DisplayName); + }; + + publisher.OnChannelPointsRewardRedeemed += (s, e) => { + Console.WriteLine($"Channel Point Reward Redeemed: {e.RewardRedeemed.Redemption.Reward.Title} (id: {e.RewardRedeemed.Redemption.Id})"); + + if (!redeems.Any(r => r.ToLower() == e.RewardRedeemed.Redemption.Reward.Title.ToLower())) + return; + + player.Add(new TTSMessage() { + Voice = "Brian", + Message = e.RewardRedeemed.Redemption.Reward.Title, + File = $"redeems/{e.RewardRedeemed.Redemption.Reward.Title.ToLower()}.mp3", + Priority = -50 + }); + }; + + /*int psConnectionFailures = 0; + publisher.OnPubSubServiceError += async (s, e) => { + Console.WriteLine("PubSub ran into a service error. Attempting to connect again."); + await Task.Delay(Math.Min(3000 + (1 << psConnectionFailures), 120000)); + var connect = await WebHelper.Get("https://hermes.goblincaves.com/api/account/reauthorize"); + if ((int) connect.StatusCode == 200 || (int) connect.StatusCode == 201) { + psConnectionFailures = 0; + } else { + psConnectionFailures++; + } + + var twitchBotData2 = await WebHelper.GetJson("https://hermes.goblincaves.com/api/token/bot"); + if (twitchBotData2 == null) { + Console.WriteLine("The API is down. Contact the owner."); + return; + } + twitchBotData.access_token = twitchBotData2.access_token; + await pubsub.ConnectAsync(); + };*/ + } + + public void AddOnNewMessageReceived(AsyncEventHandler handler) { + client.OnMessageReceived += handler; + } +} \ No newline at end of file diff --git a/TwitchChatTTS/TwitchChatTTS.csproj b/TwitchChatTTS/TwitchChatTTS.csproj new file mode 100644 index 0000000..69bc46c --- /dev/null +++ b/TwitchChatTTS/TwitchChatTTS.csproj @@ -0,0 +1,30 @@ + + + + Exe + net6.0 + enable + enable + + + + + + + + + + + + + + + + + + + + + + + diff --git a/TwitchChatTTS/Web.cs b/TwitchChatTTS/Web.cs new file mode 100644 index 0000000..8194991 --- /dev/null +++ b/TwitchChatTTS/Web.cs @@ -0,0 +1,29 @@ + + +using System.Net; +using System.Net.Http.Json; + +public static class WebHelper { + private static HttpClient _client = new HttpClient(); + + public static void AddHeader(string key, string? value) { + _client.DefaultRequestHeaders.Add(key, value); + //ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls13; + } + + public static async Task GetJson(string uri) { + return (T) await _client.GetFromJsonAsync(uri, typeof(T)); + } + + public static async Task Get(string uri) { + return await _client.GetAsync(uri); + } + + public static async Task Post(string uri, T data) { + return await _client.PostAsJsonAsync(uri, data); + } + + public static async Task Post(string uri) { + return await _client.PostAsJsonAsync(uri, new object()); + } +} \ No newline at end of file diff --git a/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..11e5f2e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..2c64257 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..03edd8f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..c53f5d2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..3987d66 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Options.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..081abea Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/NAudio.Asio.dll b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Asio.dll new file mode 100644 index 0000000..761ec14 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Asio.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/NAudio.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Core.dll new file mode 100644 index 0000000..254cd2c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/NAudio.Midi.dll b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Midi.dll new file mode 100644 index 0000000..c5dcc05 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Midi.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/NAudio.Wasapi.dll b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Wasapi.dll new file mode 100644 index 0000000..a28f8ca Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/NAudio.Wasapi.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/NAudio.WinMM.dll b/TwitchChatTTS/bin/Debug/net6.0/NAudio.WinMM.dll new file mode 100644 index 0000000..62668f7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/NAudio.WinMM.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/NAudio.dll b/TwitchChatTTS/bin/Debug/net6.0/NAudio.dll new file mode 100644 index 0000000..631aac3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/NAudio.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll b/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..22d4c12 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/System.Net.Http.Formatting.dll b/TwitchChatTTS/bin/Debug/net6.0/System.Net.Http.Formatting.dll new file mode 100644 index 0000000..27cb2db Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/System.Net.Http.Formatting.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.Core.dll new file mode 100644 index 0000000..e2ca67b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.dll b/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.dll new file mode 100644 index 0000000..f179765 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/System.Text.Encodings.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..13a219a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/System.Text.Encodings.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/System.Text.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/System.Text.Json.dll new file mode 100644 index 0000000..2cbe026 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/System.Text.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll b/TwitchChatTTS/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..66d5509 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS new file mode 100644 index 0000000..79cd4bf Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.deps.json b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.deps.json new file mode 100644 index 0000000..cd90568 --- /dev/null +++ b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.deps.json @@ -0,0 +1,1897 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "TwitchChatTTS/1.0.0": { + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "5.2.9", + "NAudio": "2.2.1", + "System.Reactive": "6.0.0", + "System.Reactive.Core": "6.0.0", + "System.Threading.Tasks.Dataflow": "7.0.0", + "TwitchLib.Api": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f", + "TwitchLib.Client": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0", + "TwitchLib.EventSub.Core": "2.4.3", + "TwitchLib.EventSub.Websockets": "0.5.0-preview-72088d1", + "TwitchLib.PubSub": "4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5" + }, + "runtime": { + "TwitchChatTTS.dll": {} + } + }, + "Microsoft.AspNet.WebApi.Client/5.2.9": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.1" + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": { + "assemblyVersion": "5.2.9.0", + "fileVersion": "5.2.61129.10" + } + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Options/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.NETCore.Platforms/3.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "NAudio/2.2.1": { + "dependencies": { + "NAudio.Asio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Midi": "2.2.1", + "NAudio.Wasapi": "2.2.1", + "NAudio.WinMM": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Asio/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Core/2.2.1": { + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Midi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Wasapi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.WinMM/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.4", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Newtonsoft.Json.Bson/1.0.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.1.20722" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reactive/6.0.0": { + "runtime": { + "lib/net6.0/System.Reactive.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.1" + } + } + }, + "System.Reactive.Core/6.0.0": { + "dependencies": { + "System.Reactive": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/System.Reactive.Core.dll": { + "assemblyVersion": "3.0.6000.0", + "fileVersion": "0.0.0.0" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/7.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "rid": "browser", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Text.Json/7.0.2": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "7.0.0" + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/7.0.0": { + "runtime": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "dependencies": { + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Communication/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/TwitchLib.Communication.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "TwitchLib.EventSub.Core/2.4.3": { + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": { + "assemblyVersion": "2.4.3.0", + "fileVersion": "2.4.3.0" + } + } + }, + "TwitchLib.EventSub.Websockets/0.5.0-preview-72088d1": { + "dependencies": { + "Microsoft.Extensions.Logging": "7.0.0", + "System.Text.Json": "7.0.2", + "TwitchLib.EventSub.Core": "2.4.3" + }, + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Websockets.dll": { + "assemblyVersion": "0.5.0.0", + "fileVersion": "0.5.0.0" + } + } + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + } + } + }, + "libraries": { + "TwitchChatTTS/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNet.WebApi.Client/5.2.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==", + "path": "microsoft.aspnet.webapi.client/5.2.9", + "hashPath": "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "path": "microsoft.extensions.logging/7.0.0", + "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "path": "microsoft.extensions.options/7.0.0", + "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "path": "microsoft.extensions.primitives/7.0.0", + "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.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.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "NAudio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", + "path": "naudio/2.2.1", + "hashPath": "naudio.2.2.1.nupkg.sha512" + }, + "NAudio.Asio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", + "path": "naudio.asio/2.2.1", + "hashPath": "naudio.asio.2.2.1.nupkg.sha512" + }, + "NAudio.Core/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", + "path": "naudio.core/2.2.1", + "hashPath": "naudio.core.2.2.1.nupkg.sha512" + }, + "NAudio.Midi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", + "path": "naudio.midi/2.2.1", + "hashPath": "naudio.midi.2.2.1.nupkg.sha512" + }, + "NAudio.Wasapi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", + "path": "naudio.wasapi/2.2.1", + "hashPath": "naudio.wasapi.2.2.1.nupkg.sha512" + }, + "NAudio.WinMM/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", + "path": "naudio.winmm/2.2.1", + "hashPath": "naudio.winmm.2.2.1.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==", + "path": "newtonsoft.json.bson/1.0.1", + "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reactive/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-31kfaW4ZupZzPsI5PVe77VhnvFF55qgma7KZr/E0iFTs6fmdhhG8j0mgEx620iLTey1EynOkEfnyTjtNEpJzGw==", + "path": "system.reactive/6.0.0", + "hashPath": "system.reactive.6.0.0.nupkg.sha512" + }, + "System.Reactive.Core/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UBiaW+0Aq+Q6U71JwnmUWcxe+09lWKFqMt9BFALoPJz/qdHt3HdK4j2c7FdriEwwEi2Yww/7Yre0SgQk5pIbIg==", + "path": "system.reactive.core/6.0.0", + "hashPath": "system.reactive.core.6.0.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.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/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.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.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" + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "path": "system.text.encodings.web/7.0.0", + "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + }, + "System.Text.Json/7.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/LZf/JrGyilojqwpaywb+sSz8Tew7ij4K/Sk+UW8AKfAK7KRhR6mKpKtTm06cYA7bCpGTWfYksIW+mVsdxPegQ==", + "path": "system.text.json/7.0.2", + "hashPath": "system.text.json.7.0.2.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==", + "path": "system.threading.tasks.dataflow/7.0.0", + "hashPath": "system.threading.tasks.dataflow.7.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VPX4/cI6j72bPtx9i9Evqd4IBwqNgibxzF42oT2KrtclKbyF4bSCDJSA4yDJ0DKoIMXCW9BFdodJRnfX1H2BDg==", + "path": "twitchlib.api/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-awIARYku4b2Vj3Ix7YPQMtg6JFDX6HyXqIfBMdDPgbahi2HCU0taDS4inGvF5nFkjMUw3tYSFqsdn483vt6F/Q==", + "path": "twitchlib.api.core/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OU+n8Tx4dyvHKdNvB4nC9jA3PUjLK6kNtwUY7zXohafHYL2Kp7VScXYbo07W9d5xphfdXTLInKIA7IPcmfwWTg==", + "path": "twitchlib.api.core.enums/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.enums.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ro8opbvmQ/VaTQChIvV53dFr0INvfrEnLA6S8Eg2jvs5Q/OXPDdM+ECeLbLyvOv1s2EbiXednfJGcXXvndNqAA==", + "path": "twitchlib.api.core.interfaces/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.interfaces.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ok6TTg607NRZZ2ckwPyXQU41WynCwHV2iQdlIuC0Qc5gCPwMg/y1yv2dRRZCLrQvpOw0EQnn8WAuSJbYO/Cwfw==", + "path": "twitchlib.api.core.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qVOtuoXK1wA78RtbF8LPXY9p+larlnnQTCIGjax9XKRjDhavjIjvfXcY3oBaD2s5VRHKoYn7SQKm5MEpJyzSw==", + "path": "twitchlib.api.helix/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MWi2Abzq3PGsGkTRuV2yLF23Oe8014jNYBpmmb2pX9bquzGMGANiZLdJDh6N76BSoImxTxHFRcpx7V9H0na5Pg==", + "path": "twitchlib.api.helix.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l110dy01y6C1ECmk2c1A9I2+O57IBe7P29V8iylxPCqfNDcrbJjP67Mf86kiWpofXn9sHuN6GgNihhV986g5kw==", + "path": "twitchlib.client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yV8fbmaxixp0cVElj3aYQfX4d2jPfeDe4xphZpAuesag5YsL92RHHLYDKu5aOafXlNDBQ14mQc3r+uXibN2sTQ==", + "path": "twitchlib.client.enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.enums.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2owS7RTLgwt+bfrZp5hiMQq6YLVEgV54EeU1UInoNfxrVScBBmLJmVNKhawyDjR8OZUZ5BOdGI7ny4xIjGzr4w==", + "path": "twitchlib.client.models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.models.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Communication/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DfmhYAi9p5pjPqnnghhxbNT8UdTH/a35IBASNji8E+0DC0HaF3Af1bcjbe5T8So81udgsbTCm8vHGQWde3WXVQ==", + "path": "twitchlib.communication/2.0.0", + "hashPath": "twitchlib.communication.2.0.0.nupkg.sha512" + }, + "TwitchLib.EventSub.Core/2.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oRo1zusqZaGIc03B7JU0+JGhveXZa/vNhEHnWwxNw0hMd9yd++jXSYoxzebTf+od/DG3P3+oxSNoaBR7/7ggKg==", + "path": "twitchlib.eventsub.core/2.4.3", + "hashPath": "twitchlib.eventsub.core.2.4.3.nupkg.sha512" + }, + "TwitchLib.EventSub.Websockets/0.5.0-preview-72088d1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NYEwlxjSfqhtcg4KCJ5jb1kaoLDkKewcFxY39/VhdNt7pGo3PPDh/mz4VSMZfexKATAjp2DHraddsHdcdQgVDg==", + "path": "twitchlib.eventsub.websockets/0.5.0-preview-72088d1", + "hashPath": "twitchlib.eventsub.websockets.0.5.0-preview-72088d1.nupkg.sha512" + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-su8CMpXYxgBb9ZKdEXJ87+Tj33WWoPsY18AWU6aemqEJg+JIi0jP+SVhobre366hv431exHptubvshmisYIGAQ==", + "path": "twitchlib.pubsub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "hashPath": "twitchlib.pubsub.4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.dll new file mode 100644 index 0000000..ee0daa0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.pdb b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.pdb new file mode 100644 index 0000000..a77aaa6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.runtimeconfig.json b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Enums.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Enums.dll new file mode 100644 index 0000000..6f9377c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Enums.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Interfaces.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Interfaces.dll new file mode 100644 index 0000000..8bd9cc7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Interfaces.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Models.dll new file mode 100644 index 0000000..7ea6e32 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.dll new file mode 100644 index 0000000..4d276a0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.Models.dll new file mode 100644 index 0000000..2cd5297 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.dll new file mode 100644 index 0000000..bdaee52 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.dll new file mode 100644 index 0000000..21a4f99 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Enums.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Enums.dll new file mode 100644 index 0000000..fa67b85 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Enums.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Models.dll new file mode 100644 index 0000000..56c0e30 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.dll new file mode 100644 index 0000000..9a3b1af Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Communication.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Communication.dll new file mode 100644 index 0000000..79d0e10 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Communication.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Core.dll new file mode 100644 index 0000000..290c691 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Websockets.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Websockets.dll new file mode 100644 index 0000000..750a4ac Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Websockets.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.PubSub.dll b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.PubSub.dll new file mode 100644 index 0000000..8e4694c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.PubSub.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.CSharp.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..0441a70 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.CSharp.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..03edd8f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..c14ed27 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..a5d2f0d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..128da9b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Registry.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..6c24f32 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Registry.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Asio.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Asio.dll new file mode 100644 index 0000000..761ec14 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Asio.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Core.dll new file mode 100644 index 0000000..254cd2c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Extras.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Extras.dll new file mode 100644 index 0000000..837a574 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Extras.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Midi.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Midi.dll new file mode 100644 index 0000000..c5dcc05 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Midi.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Wasapi.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Wasapi.dll new file mode 100644 index 0000000..a28f8ca Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Wasapi.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.WinMM.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.WinMM.dll new file mode 100644 index 0000000..62668f7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.WinMM.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.dll new file mode 100644 index 0000000..631aac3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.Bson.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.Bson.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.AppContext.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.AppContext.dll new file mode 100644 index 0000000..8b9030f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.AppContext.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Buffers.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Buffers.dll new file mode 100644 index 0000000..e9ff14a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Buffers.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Concurrent.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..6e58aae Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Concurrent.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Immutable.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..4b312e1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Immutable.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.NonGeneric.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..a59d310 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.NonGeneric.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Specialized.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..2d684f9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Specialized.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.dll new file mode 100644 index 0000000..a4415cc Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Annotations.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..37a7101 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Annotations.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.DataAnnotations.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..85fb6c3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.EventBasedAsync.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..089714d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..ac856b8 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.TypeConverter.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..003fbc2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.dll new file mode 100644 index 0000000..df4e78c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Configuration.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Configuration.dll new file mode 100644 index 0000000..f3b6d53 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Configuration.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Console.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Console.dll new file mode 100644 index 0000000..dc156ca Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Console.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Core.dll new file mode 100644 index 0000000..e15856c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.Common.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.Common.dll new file mode 100644 index 0000000..b44031e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.Common.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.DataSetExtensions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..c7581e0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.DataSetExtensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.dll new file mode 100644 index 0000000..93f5ff2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Contracts.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..c255537 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Contracts.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Debug.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..f1a060d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Debug.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.DiagnosticSource.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..4872390 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.FileVersionInfo.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..94f387e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Process.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..b3a166f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Process.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.StackTrace.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..e968400 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.StackTrace.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..640ae03 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tools.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..4b7d422 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tools.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TraceSource.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..870769c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TraceSource.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tracing.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..dbdbee1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tracing.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..1476890 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.dll new file mode 100644 index 0000000..0a0487e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Dynamic.Runtime.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..7d67cc2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Dynamic.Runtime.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Formats.Asn1.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..9c6bdb1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Formats.Asn1.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Calendars.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..9cde023 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Calendars.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..a07d873 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.dll new file mode 100644 index 0000000..a2d04b0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.Brotli.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..83f46b7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.Brotli.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.FileSystem.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..e0d14fe Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.FileSystem.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.ZipFile.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..4f6c239 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.ZipFile.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.dll new file mode 100644 index 0000000..674582a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.AccessControl.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..d68887b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.DriveInfo.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..f1286d9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..25ab299 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Watcher.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..63628a5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..58076b3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.IsolatedStorage.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..c50f1c2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.IsolatedStorage.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.MemoryMappedFiles.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..c08e41d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.AccessControl.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..8b13076 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..ac803a1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.UnmanagedMemoryStream.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..5b8133c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.dll new file mode 100644 index 0000000..6976fc2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Expressions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..24df45b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Expressions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Parallel.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..b255ea7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Parallel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Queryable.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..8e28203 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Queryable.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.dll new file mode 100644 index 0000000..e0e0944 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Memory.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Memory.dll new file mode 100644 index 0000000..b3a817a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Memory.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Formatting.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Formatting.dll new file mode 100644 index 0000000..bc5a457 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Formatting.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..6a407ff Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.dll new file mode 100644 index 0000000..fcf0a43 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.HttpListener.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..420d562 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.HttpListener.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Mail.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Mail.dll new file mode 100644 index 0000000..103bf7f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Mail.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NameResolution.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..22195ff Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NameResolution.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NetworkInformation.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..22c0fe8 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NetworkInformation.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Ping.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Ping.dll new file mode 100644 index 0000000..8a330f9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Ping.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..adbfcb3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Quic.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Quic.dll new file mode 100644 index 0000000..20d0cfc Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Quic.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Requests.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Requests.dll new file mode 100644 index 0000000..62634b1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Requests.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Security.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Security.dll new file mode 100644 index 0000000..fb48cc3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Security.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.ServicePoint.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..c236e64 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.ServicePoint.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Sockets.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..00200c8 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Sockets.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebClient.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..11d21c6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebClient.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebHeaderCollection.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..157790c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebHeaderCollection.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebProxy.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..8bddcda Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebProxy.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.Client.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..9a399ea Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.Client.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..c87f928 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.dll new file mode 100644 index 0000000..20cd04e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.Vectors.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..7ddb7f3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.Vectors.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.dll new file mode 100644 index 0000000..023c7b3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ObjectModel.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ObjectModel.dll new file mode 100644 index 0000000..ce0e0e7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ObjectModel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.CoreLib.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..8a0bd1f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.CoreLib.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.DataContractSerialization.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..209cce7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.DataContractSerialization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Uri.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Uri.dll new file mode 100644 index 0000000..9d22035 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Uri.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.Linq.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..da98ff4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.Linq.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.dll new file mode 100644 index 0000000..07ed84c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.DispatchProxy.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..6bfc38e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.DispatchProxy.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.ILGeneration.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..a20f300 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.Lightweight.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..c15e87f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..3b3affe Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..1165b2d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Metadata.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..d5e9d85 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Metadata.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..074089a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.TypeExtensions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..195c092 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.TypeExtensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.dll new file mode 100644 index 0000000..c96d7ab Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Reader.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..415819e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Reader.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.ResourceManager.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..cbc56fb Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.ResourceManager.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Writer.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..c09d4bb Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Writer.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..9a947e0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..9e826f7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..7be3cf7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Handles.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..86846c3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Handles.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..2d7795a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..0bd2401 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Intrinsics.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..dfe814c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Intrinsics.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Loader.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..1025e23 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Loader.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Numerics.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..344586b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Numerics.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Formatters.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..b69aea2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..d43b0cc Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..88b4f95 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Xml.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..4bc48f7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..8080224 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.dll new file mode 100644 index 0000000..e6c5ad7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.AccessControl.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..ccbefad Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.AccessControl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Claims.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Claims.dll new file mode 100644 index 0000000..b6ae6f1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Claims.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Algorithms.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..4e50bfa Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Cng.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..3117ec3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Cng.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Csp.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..9b7eefa Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Csp.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Encoding.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..7ec194e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.OpenSsl.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..4c46b6e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..78560d0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.X509Certificates.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..70c641a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.Windows.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..61c004d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.Windows.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.dll new file mode 100644 index 0000000..8733f63 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.SecureString.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..5859201 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.SecureString.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.dll new file mode 100644 index 0000000..d57dece Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceModel.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..22df750 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceModel.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceProcess.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..ed9aaef Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceProcess.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.CodePages.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..0a5351e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.CodePages.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..de415c1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..635f2e3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encodings.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..e1bad25 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encodings.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Json.dll new file mode 100644 index 0000000..6dec757 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.RegularExpressions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..4f79e9a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.RegularExpressions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Channels.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..4c6c39a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Channels.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Overlapped.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..ced44f6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Overlapped.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Dataflow.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..5d1bb77 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..015a87a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Parallel.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..d30a338 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..6147124 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Thread.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..c8e6a02 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Thread.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.ThreadPool.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..62b3720 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.ThreadPool.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Timer.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..67b2edf Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Timer.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.dll new file mode 100644 index 0000000..09bb3f5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.Local.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..5293630 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.Local.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.dll new file mode 100644 index 0000000..24383f9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ValueTuple.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ValueTuple.dll new file mode 100644 index 0000000..a22d2ff Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ValueTuple.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.HttpUtility.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..387214f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.HttpUtility.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.dll new file mode 100644 index 0000000..403a97b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Windows.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Windows.dll new file mode 100644 index 0000000..3aade02 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Windows.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Linq.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..9cc9090 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Linq.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.ReaderWriter.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..a5ba3bd Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.ReaderWriter.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Serialization.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..ae962da Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Serialization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XDocument.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..343b35d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XDocument.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.XDocument.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..7dcbc65 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.XDocument.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..e742dbc Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlDocument.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..fc5d158 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlDocument.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlSerializer.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..ca3e565 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlSerializer.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.dll new file mode 100644 index 0000000..b83d3ad Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.dll new file mode 100644 index 0000000..58942ef Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS new file mode 100644 index 0000000..ab2524d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.deps.json b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.deps.json new file mode 100644 index 0000000..10e8567 --- /dev/null +++ b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.deps.json @@ -0,0 +1,4473 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/linux-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/linux-x64": { + "TwitchChatTTS/1.0.0": { + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "6.0.0", + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Extras": "2.2.1", + "System.Threading.Tasks.Dataflow": "8.0.0", + "TwitchLib.Api": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f", + "TwitchLib.Client": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0", + "TwitchLib.EventSub.Core": "2.5.1", + "TwitchLib.PubSub": "4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "6.0.25" + }, + "runtime": { + "TwitchChatTTS.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.25": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.2523.51912" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.2523.51912" + } + }, + "native": { + "createdump": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Globalization.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.IO.Compression.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Net.Security.Native.so": { + "fileVersion": "0.0.0.0" + }, + "libSystem.Security.Cryptography.Native.OpenSsl.so": { + "fileVersion": "0.0.0.0" + }, + "libclrjit.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclr.so": { + "fileVersion": "0.0.0.0" + }, + "libcoreclrtraceptprovider.so": { + "fileVersion": "0.0.0.0" + }, + "libdbgshim.so": { + "fileVersion": "0.0.0.0" + }, + "libhostfxr.so": { + "fileVersion": "0.0.0.0" + }, + "libhostpolicy.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordaccore.so": { + "fileVersion": "0.0.0.0" + }, + "libmscordbi.so": { + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.61130.707" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.NETCore.Platforms/7.0.4": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "NAudio/2.2.1": { + "dependencies": { + "NAudio.Asio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Midi": "2.2.1", + "NAudio.Wasapi": "2.2.1", + "NAudio.WinMM": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Asio/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Core/2.2.1": { + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Extras/2.2.1": { + "dependencies": { + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Wasapi": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.Extras.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Midi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Wasapi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.WinMM/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, + "runtime.any.System.Globalization/4.3.0": {}, + "runtime.any.System.Globalization.Calendars/4.3.0": {}, + "runtime.any.System.IO/4.3.0": {}, + "runtime.any.System.Reflection/4.3.0": {}, + "runtime.any.System.Reflection.Primitives/4.3.0": {}, + "runtime.any.System.Resources.ResourceManager/4.3.0": {}, + "runtime.any.System.Runtime/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": {}, + "runtime.any.System.Runtime.InteropServices/4.3.0": {}, + "runtime.any.System.Text.Encoding/4.3.0": {}, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, + "runtime.any.System.Threading.Tasks/4.3.0": {}, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Diagnostics.Debug": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.IO.FileSystem": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.3.0" + } + }, + "System.Private.Uri/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.unix.System.Private.Uri": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "runtime": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "dependencies": { + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Communication/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/TwitchLib.Communication.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "TwitchLib.EventSub.Core/2.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4" + }, + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": { + "assemblyVersion": "2.5.1.0", + "fileVersion": "2.5.1.0" + } + } + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + } + } + }, + "libraries": { + "TwitchChatTTS/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.25": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zXeWP03dTo67AoDHUzR+/urck0KFssdCKOC+dq7Nv1V2YbFh/nIg09L0/3wSvyRONEdwxGB/ssEGmPNIIhAcAw==", + "path": "microsoft.aspnet.webapi.client/6.0.0", + "hashPath": "microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yLEHlNN7O5WiND89r42sepgVwy5W/ZoTiFEdJDV7MHR1lW02LL7Nipz2TD5qM/Kx9W3/k3NP+PAP2qUdOm+leg==", + "path": "microsoft.netcore.platforms/7.0.4", + "hashPath": "microsoft.netcore.platforms.7.0.4.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.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "NAudio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", + "path": "naudio/2.2.1", + "hashPath": "naudio.2.2.1.nupkg.sha512" + }, + "NAudio.Asio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", + "path": "naudio.asio/2.2.1", + "hashPath": "naudio.asio.2.2.1.nupkg.sha512" + }, + "NAudio.Core/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", + "path": "naudio.core/2.2.1", + "hashPath": "naudio.core.2.2.1.nupkg.sha512" + }, + "NAudio.Extras/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e3+vxSwOaOxtKubTR1KsMGm58EoonYRlsHJs4TVMN3hwHtgA0HP8ThvA5EBBKZ7RJuBPSP1ok4Wt5H6Ip9F5dA==", + "path": "naudio.extras/2.2.1", + "hashPath": "naudio.extras.2.2.1.nupkg.sha512" + }, + "NAudio.Midi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", + "path": "naudio.midi/2.2.1", + "hashPath": "naudio.midi.2.2.1.nupkg.sha512" + }, + "NAudio.Wasapi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", + "path": "naudio.wasapi/2.2.1", + "hashPath": "naudio.wasapi.2.2.1.nupkg.sha512" + }, + "NAudio.WinMM/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", + "path": "naudio.winmm/2.2.1", + "hashPath": "naudio.winmm.2.2.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "path": "runtime.any.system.collections/4.3.0", + "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "path": "runtime.any.system.globalization/4.3.0", + "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "path": "runtime.any.system.io/4.3.0", + "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "path": "runtime.any.system.reflection/4.3.0", + "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "path": "runtime.any.system.runtime/4.3.0", + "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "path": "runtime.any.system.runtime.handles/4.3.0", + "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "path": "runtime.any.system.text.encoding/4.3.0", + "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "path": "runtime.any.system.threading.tasks/4.3.0", + "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2mI2Mfq+CVatgr4RWGvAWBjoCfUafy6VNFU7G9OA52DjO8x/okfIbsEq2UPgeGfdpO7X5gmPXKT8slx0tn0Mhw==", + "path": "runtime.unix.microsoft.win32.primitives/4.3.0", + "hashPath": "runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==", + "path": "runtime.unix.system.diagnostics.debug/4.3.0", + "hashPath": "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ajmTcjrqc3vgV1TH54DRioshbEniaFbOAJ0kReGuNsp9uIcqYle0RmUo6+Qlwqe3JIs4TDxgnqs3UzX3gRJ1rA==", + "path": "runtime.unix.system.io.filesystem/4.3.0", + "hashPath": "runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AZcRXhH7Gamr+bckUfX3iHefPIrujJTt9XWQWo0elNiP1SNasX0KBWINZkDKY0GsOrsyJ7cB4MgIRTZzLlsTKg==", + "path": "runtime.unix.system.net.primitives/4.3.0", + "hashPath": "runtime.unix.system.net.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==", + "path": "runtime.unix.system.private.uri/4.3.0", + "hashPath": "runtime.unix.system.private.uri.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==", + "path": "runtime.unix.system.runtime.extensions/4.3.0", + "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.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.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.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.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" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==", + "path": "system.threading.tasks.dataflow/8.0.0", + "hashPath": "system.threading.tasks.dataflow.8.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VPX4/cI6j72bPtx9i9Evqd4IBwqNgibxzF42oT2KrtclKbyF4bSCDJSA4yDJ0DKoIMXCW9BFdodJRnfX1H2BDg==", + "path": "twitchlib.api/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-awIARYku4b2Vj3Ix7YPQMtg6JFDX6HyXqIfBMdDPgbahi2HCU0taDS4inGvF5nFkjMUw3tYSFqsdn483vt6F/Q==", + "path": "twitchlib.api.core/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OU+n8Tx4dyvHKdNvB4nC9jA3PUjLK6kNtwUY7zXohafHYL2Kp7VScXYbo07W9d5xphfdXTLInKIA7IPcmfwWTg==", + "path": "twitchlib.api.core.enums/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.enums.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ro8opbvmQ/VaTQChIvV53dFr0INvfrEnLA6S8Eg2jvs5Q/OXPDdM+ECeLbLyvOv1s2EbiXednfJGcXXvndNqAA==", + "path": "twitchlib.api.core.interfaces/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.interfaces.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ok6TTg607NRZZ2ckwPyXQU41WynCwHV2iQdlIuC0Qc5gCPwMg/y1yv2dRRZCLrQvpOw0EQnn8WAuSJbYO/Cwfw==", + "path": "twitchlib.api.core.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qVOtuoXK1wA78RtbF8LPXY9p+larlnnQTCIGjax9XKRjDhavjIjvfXcY3oBaD2s5VRHKoYn7SQKm5MEpJyzSw==", + "path": "twitchlib.api.helix/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MWi2Abzq3PGsGkTRuV2yLF23Oe8014jNYBpmmb2pX9bquzGMGANiZLdJDh6N76BSoImxTxHFRcpx7V9H0na5Pg==", + "path": "twitchlib.api.helix.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l110dy01y6C1ECmk2c1A9I2+O57IBe7P29V8iylxPCqfNDcrbJjP67Mf86kiWpofXn9sHuN6GgNihhV986g5kw==", + "path": "twitchlib.client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yV8fbmaxixp0cVElj3aYQfX4d2jPfeDe4xphZpAuesag5YsL92RHHLYDKu5aOafXlNDBQ14mQc3r+uXibN2sTQ==", + "path": "twitchlib.client.enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.enums.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2owS7RTLgwt+bfrZp5hiMQq6YLVEgV54EeU1UInoNfxrVScBBmLJmVNKhawyDjR8OZUZ5BOdGI7ny4xIjGzr4w==", + "path": "twitchlib.client.models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.models.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Communication/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DfmhYAi9p5pjPqnnghhxbNT8UdTH/a35IBASNji8E+0DC0HaF3Af1bcjbe5T8So81udgsbTCm8vHGQWde3WXVQ==", + "path": "twitchlib.communication/2.0.0", + "hashPath": "twitchlib.communication.2.0.0.nupkg.sha512" + }, + "TwitchLib.EventSub.Core/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sooKwA1dNhP9Nbgyz/yevHZBA2uDOS2qnKx2VNidby15teVD9tziqdxKt2pfto2b3jlChyqKZHahgC0mXwI0sw==", + "path": "twitchlib.eventsub.core/2.5.1", + "hashPath": "twitchlib.eventsub.core.2.5.1.nupkg.sha512" + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-su8CMpXYxgBb9ZKdEXJ87+Tj33WWoPsY18AWU6aemqEJg+JIi0jP+SVhobre366hv431exHptubvshmisYIGAQ==", + "path": "twitchlib.pubsub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "hashPath": "twitchlib.pubsub.4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5.nupkg.sha512" + } + }, + "runtimes": { + "alpine-x64": [ + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.10-x64": [ + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.11-x64": [ + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.12-x64": [ + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.13-x64": [ + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.14-x64": [ + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.15-x64": [ + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.16-x64": [ + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.17-x64": [ + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.18-x64": [ + "alpine.3.18", + "alpine.3.17-x64", + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.6-x64": [ + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.7-x64": [ + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.8-x64": [ + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.9-x64": [ + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android-x64": [ + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.21-x64": [ + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.22-x64": [ + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.23-x64": [ + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.24-x64": [ + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.25-x64": [ + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.26-x64": [ + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.27-x64": [ + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.28-x64": [ + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.29-x64": [ + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.30-x64": [ + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.31-x64": [ + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.32-x64": [ + "android.32", + "android.31-x64", + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos-x64": [ + "centos", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.7-x64": [ + "centos.7", + "centos-x64", + "rhel.7-x64", + "centos", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.8-x64": [ + "centos.8", + "centos-x64", + "rhel.8-x64", + "centos", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.9-x64": [ + "centos.9", + "centos-x64", + "rhel.9-x64", + "centos", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian-x64": [ + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.10-x64": [ + "debian.10", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.11-x64": [ + "debian.11", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.12-x64": [ + "debian.12", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.8-x64": [ + "debian.8", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.9-x64": [ + "debian.9", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "exherbo-x64": [ + "exherbo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora-x64": [ + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.23-x64": [ + "fedora.23", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.24-x64": [ + "fedora.24", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.25-x64": [ + "fedora.25", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.26-x64": [ + "fedora.26", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.27-x64": [ + "fedora.27", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.28-x64": [ + "fedora.28", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.29-x64": [ + "fedora.29", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.30-x64": [ + "fedora.30", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.31-x64": [ + "fedora.31", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.32-x64": [ + "fedora.32", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.33-x64": [ + "fedora.33", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.34-x64": [ + "fedora.34", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.35-x64": [ + "fedora.35", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.36-x64": [ + "fedora.36", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.37-x64": [ + "fedora.37", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.38-x64": [ + "fedora.38", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.39-x64": [ + "fedora.39", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "gentoo-x64": [ + "gentoo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-musl-x64": [ + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-x64": [ + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17-x64": [ + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.1-x64": [ + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.2-x64": [ + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.3-x64": [ + "linuxmint.17.3", + "linuxmint.17.2-x64", + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18-x64": [ + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.1-x64": [ + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.2-x64": [ + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.3-x64": [ + "linuxmint.18.3", + "linuxmint.18.2-x64", + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19-x64": [ + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.1-x64": [ + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.2-x64": [ + "linuxmint.19.2", + "linuxmint.19.1-x64", + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol-x64": [ + "ol", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7-x64": [ + "ol.7", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.0-x64": [ + "ol.7.0", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.1-x64": [ + "ol.7.1", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.2-x64": [ + "ol.7.2", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.3-x64": [ + "ol.7.3", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.4-x64": [ + "ol.7.4", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.5-x64": [ + "ol.7.5", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.6-x64": [ + "ol.7.6", + "ol.7.5-x64", + "rhel.7.6-x64", + "ol.7.5", + "rhel.7.6", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8-x64": [ + "ol.8", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8.0-x64": [ + "ol.8.0", + "ol.8-x64", + "rhel.8.0-x64", + "ol.8", + "rhel.8.0", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse-x64": [ + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.13.2-x64": [ + "opensuse.13.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.0-x64": [ + "opensuse.15.0", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.1-x64": [ + "opensuse.15.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.1-x64": [ + "opensuse.42.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.2-x64": [ + "opensuse.42.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.3-x64": [ + "opensuse.42.3", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel-x64": [ + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.6-x64": [ + "rhel.6", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7-x64": [ + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.0-x64": [ + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.1-x64": [ + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.2-x64": [ + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.3-x64": [ + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.4-x64": [ + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.5-x64": [ + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.6-x64": [ + "rhel.7.6", + "rhel.7.5-x64", + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8-x64": [ + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.0-x64": [ + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.1-x64": [ + "rhel.8.1", + "rhel.8.0-x64", + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.9-x64": [ + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky-x64": [ + "rocky", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.8-x64": [ + "rocky.8", + "rocky-x64", + "rhel.8-x64", + "rocky", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.9-x64": [ + "rocky.9", + "rocky-x64", + "rhel.9-x64", + "rocky", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles-x64": [ + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12-x64": [ + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.1-x64": [ + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.2-x64": [ + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.3-x64": [ + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.4-x64": [ + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15-x64": [ + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15.1-x64": [ + "sles.15.1", + "sles.15-x64", + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu-x64": [ + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.04-x64": [ + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.10-x64": [ + "ubuntu.14.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.04-x64": [ + "ubuntu.15.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.10-x64": [ + "ubuntu.15.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.04-x64": [ + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.10-x64": [ + "ubuntu.16.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.04-x64": [ + "ubuntu.17.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.10-x64": [ + "ubuntu.17.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.04-x64": [ + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.10-x64": [ + "ubuntu.18.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.04-x64": [ + "ubuntu.19.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.10-x64": [ + "ubuntu.19.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.04-x64": [ + "ubuntu.20.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.10-x64": [ + "ubuntu.20.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.04-x64": [ + "ubuntu.21.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.10-x64": [ + "ubuntu.21.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.04-x64": [ + "ubuntu.22.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.10-x64": [ + "ubuntu.22.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.04-x64": [ + "ubuntu.23.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.10-x64": [ + "ubuntu.23.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.dll new file mode 100644 index 0000000..634e551 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.pdb b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.pdb new file mode 100644 index 0000000..e6aa521 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.runtimeconfig.json b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.runtimeconfig.json new file mode 100644 index 0000000..4e0d597 --- /dev/null +++ b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.25" + } + ] + } +} \ No newline at end of file diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Enums.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Enums.dll new file mode 100644 index 0000000..6f9377c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Enums.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Interfaces.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Interfaces.dll new file mode 100644 index 0000000..8bd9cc7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Interfaces.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Models.dll new file mode 100644 index 0000000..7ea6e32 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.dll new file mode 100644 index 0000000..4d276a0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.Models.dll new file mode 100644 index 0000000..2cd5297 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.dll new file mode 100644 index 0000000..bdaee52 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.dll new file mode 100644 index 0000000..21a4f99 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Enums.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Enums.dll new file mode 100644 index 0000000..fa67b85 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Enums.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Models.dll new file mode 100644 index 0000000..56c0e30 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.dll new file mode 100644 index 0000000..9a3b1af Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Communication.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Communication.dll new file mode 100644 index 0000000..79d0e10 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Communication.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.EventSub.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.EventSub.Core.dll new file mode 100644 index 0000000..fed91a0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.EventSub.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.PubSub.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.PubSub.dll new file mode 100644 index 0000000..8e4694c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.PubSub.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/WindowsBase.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/WindowsBase.dll new file mode 100644 index 0000000..8b4f3c0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/WindowsBase.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/createdump b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/createdump new file mode 100644 index 0000000..c3fb678 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/createdump differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Globalization.Native.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Globalization.Native.so new file mode 100644 index 0000000..63383d5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Globalization.Native.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.IO.Compression.Native.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.IO.Compression.Native.so new file mode 100644 index 0000000..ae5617c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.IO.Compression.Native.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Native.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Native.so new file mode 100644 index 0000000..3137d7a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Native.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Net.Security.Native.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Net.Security.Native.so new file mode 100644 index 0000000..22c93d8 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Net.Security.Native.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so new file mode 100644 index 0000000..c8b3db7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libclrjit.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libclrjit.so new file mode 100644 index 0000000..51f9fd1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libclrjit.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclr.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclr.so new file mode 100644 index 0000000..a75586e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclr.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclrtraceptprovider.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclrtraceptprovider.so new file mode 100644 index 0000000..b2bd87a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclrtraceptprovider.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libdbgshim.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libdbgshim.so new file mode 100644 index 0000000..700afab Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libdbgshim.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostfxr.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostfxr.so new file mode 100644 index 0000000..376bffe Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostfxr.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostpolicy.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostpolicy.so new file mode 100644 index 0000000..aa30f4f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostpolicy.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordaccore.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordaccore.so new file mode 100644 index 0000000..27d1282 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordaccore.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordbi.so b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordbi.so new file mode 100644 index 0000000..ec27f02 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordbi.so differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/mscorlib.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/mscorlib.dll new file mode 100644 index 0000000..734f862 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/mscorlib.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/netstandard.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/netstandard.dll new file mode 100644 index 0000000..6a112d7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/netstandard.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS new file mode 100644 index 0000000..0b564cb Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS.pdb b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS.pdb new file mode 100644 index 0000000..e6aa521 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll new file mode 100644 index 0000000..e2e3267 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/ref/TwitchChatTTS.dll b/TwitchChatTTS/bin/Debug/net6.0/ref/TwitchChatTTS.dll new file mode 100644 index 0000000..98dd2c8 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/ref/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..de065f6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.CSharp.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.CSharp.dll new file mode 100644 index 0000000..e555270 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.CSharp.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll new file mode 100644 index 0000000..8181b51 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Extensions.Logging.Abstractions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..03edd8f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..40a5c65 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..674a129 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..b7491e7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Registry.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..93504a6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Registry.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Asio.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Asio.dll new file mode 100644 index 0000000..761ec14 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Asio.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Core.dll new file mode 100644 index 0000000..254cd2c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Extras.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Extras.dll new file mode 100644 index 0000000..837a574 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Extras.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Midi.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Midi.dll new file mode 100644 index 0000000..c5dcc05 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Midi.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Wasapi.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Wasapi.dll new file mode 100644 index 0000000..a28f8ca Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Wasapi.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.WinMM.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.WinMM.dll new file mode 100644 index 0000000..62668f7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.WinMM.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.dll new file mode 100644 index 0000000..631aac3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.Bson.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.Bson.dll new file mode 100644 index 0000000..e9b1dd2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.Bson.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.AppContext.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.AppContext.dll new file mode 100644 index 0000000..03fb3da Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.AppContext.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Buffers.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Buffers.dll new file mode 100644 index 0000000..b7d48d5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Buffers.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Concurrent.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Concurrent.dll new file mode 100644 index 0000000..48941a9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Concurrent.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Immutable.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Immutable.dll new file mode 100644 index 0000000..8d0db95 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Immutable.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.NonGeneric.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..1bc3ef6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.NonGeneric.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Specialized.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Specialized.dll new file mode 100644 index 0000000..7b78f74 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Specialized.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.dll new file mode 100644 index 0000000..ecff543 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Annotations.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..1a1ec48 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Annotations.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.DataAnnotations.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..c97c889 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.DataAnnotations.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.EventBasedAsync.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..65d7b1d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.EventBasedAsync.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..1f167fc Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.TypeConverter.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..7a55cda Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.TypeConverter.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.dll new file mode 100644 index 0000000..b7a986f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Configuration.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Configuration.dll new file mode 100644 index 0000000..50a19b4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Configuration.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Console.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Console.dll new file mode 100644 index 0000000..a6c8080 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Console.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Core.dll new file mode 100644 index 0000000..0027dcd Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.Common.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.Common.dll new file mode 100644 index 0000000..845ee4e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.Common.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.DataSetExtensions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..2e36a61 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.DataSetExtensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.dll new file mode 100644 index 0000000..045163b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Contracts.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..bf672af Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Contracts.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Debug.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..3b4a3cb Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Debug.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.DiagnosticSource.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..46aa494 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.DiagnosticSource.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.FileVersionInfo.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..17bb321 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.FileVersionInfo.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Process.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Process.dll new file mode 100644 index 0000000..381318f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Process.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.StackTrace.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..3f0a334 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.StackTrace.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..5a4b878 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tools.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..8f6301e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tools.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TraceSource.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..ecf7b45 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TraceSource.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tracing.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..e5fe0e0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tracing.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.Primitives.dll new file mode 100644 index 0000000..ed5b215 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.dll new file mode 100644 index 0000000..53289d4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Dynamic.Runtime.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..2e07b15 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Dynamic.Runtime.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Formats.Asn1.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Formats.Asn1.dll new file mode 100644 index 0000000..8b89045 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Formats.Asn1.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Calendars.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Calendars.dll new file mode 100644 index 0000000..d1b04a0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Calendars.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Extensions.dll new file mode 100644 index 0000000..201a3d0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.dll new file mode 100644 index 0000000..dda792b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Brotli.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..ef41315 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Brotli.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.FileSystem.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..a45ec2e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.FileSystem.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Native.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Native.dll new file mode 100644 index 0000000..54961e3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Native.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.ZipFile.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..c95fe6e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.ZipFile.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.dll new file mode 100644 index 0000000..ed97c39 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.AccessControl.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..9baa7ee Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.AccessControl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.DriveInfo.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..cbe6007 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.DriveInfo.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..342f437 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Watcher.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..e943bdc Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Watcher.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.dll new file mode 100644 index 0000000..879cbb4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.IsolatedStorage.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..c37032f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.IsolatedStorage.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.MemoryMappedFiles.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..deab123 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.MemoryMappedFiles.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.AccessControl.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..3762f4d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.AccessControl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.dll new file mode 100644 index 0000000..83700b9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.UnmanagedMemoryStream.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..5464f0f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.UnmanagedMemoryStream.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.dll new file mode 100644 index 0000000..092888b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Expressions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Expressions.dll new file mode 100644 index 0000000..4012ebb Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Expressions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Parallel.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Parallel.dll new file mode 100644 index 0000000..3a80efb Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Parallel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Queryable.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Queryable.dll new file mode 100644 index 0000000..68230d5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Queryable.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.dll new file mode 100644 index 0000000..10b994d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Memory.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Memory.dll new file mode 100644 index 0000000..91dbd9d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Memory.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Formatting.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Formatting.dll new file mode 100644 index 0000000..bc5a457 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Formatting.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Json.dll new file mode 100644 index 0000000..aacfd7f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.dll new file mode 100644 index 0000000..8959ddf Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.HttpListener.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.HttpListener.dll new file mode 100644 index 0000000..a819b9d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.HttpListener.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Mail.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Mail.dll new file mode 100644 index 0000000..7c18b88 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Mail.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NameResolution.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NameResolution.dll new file mode 100644 index 0000000..50c8f29 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NameResolution.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NetworkInformation.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..a6bf5f9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NetworkInformation.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Ping.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Ping.dll new file mode 100644 index 0000000..c76c789 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Ping.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Primitives.dll new file mode 100644 index 0000000..660a8c8 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Quic.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Quic.dll new file mode 100644 index 0000000..91ec659 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Quic.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Requests.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Requests.dll new file mode 100644 index 0000000..9bc1d9a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Requests.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Security.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Security.dll new file mode 100644 index 0000000..4de471b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Security.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.ServicePoint.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.ServicePoint.dll new file mode 100644 index 0000000..e0c2aee Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.ServicePoint.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Sockets.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Sockets.dll new file mode 100644 index 0000000..9c0048a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Sockets.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebClient.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebClient.dll new file mode 100644 index 0000000..61c71a5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebClient.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebHeaderCollection.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..b986453 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebHeaderCollection.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebProxy.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebProxy.dll new file mode 100644 index 0000000..075aa1b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebProxy.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.Client.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..5ff371f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.Client.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.dll new file mode 100644 index 0000000..294e3af Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.dll new file mode 100644 index 0000000..b2b8de9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.Vectors.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.Vectors.dll new file mode 100644 index 0000000..ac58827 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.Vectors.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.dll new file mode 100644 index 0000000..1a6252d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ObjectModel.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ObjectModel.dll new file mode 100644 index 0000000..bb6c865 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ObjectModel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.CoreLib.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.CoreLib.dll new file mode 100644 index 0000000..f95eaf4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.CoreLib.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.DataContractSerialization.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..fca3dc2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.DataContractSerialization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Uri.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Uri.dll new file mode 100644 index 0000000..59d0872 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Uri.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.Linq.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..b77b941 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.Linq.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.dll new file mode 100644 index 0000000..f06c7f9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.DispatchProxy.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..318902b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.DispatchProxy.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.ILGeneration.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..2b835ce Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.ILGeneration.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.Lightweight.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..1a48168 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.Lightweight.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.dll new file mode 100644 index 0000000..331ab29 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Extensions.dll new file mode 100644 index 0000000..4467c3e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Metadata.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Metadata.dll new file mode 100644 index 0000000..3b85673 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Metadata.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Primitives.dll new file mode 100644 index 0000000..dd30528 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.TypeExtensions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..5bf7169 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.TypeExtensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.dll new file mode 100644 index 0000000..f8ef2ce Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Reader.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Reader.dll new file mode 100644 index 0000000..529e435 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Reader.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.ResourceManager.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..241d127 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.ResourceManager.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Writer.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Writer.dll new file mode 100644 index 0000000..66d74df Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Writer.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..1874c0d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.VisualC.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..59ba907 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Extensions.dll new file mode 100644 index 0000000..1e81b40 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Handles.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Handles.dll new file mode 100644 index 0000000..d1a6204 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Handles.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..3022273 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..4801c8a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Intrinsics.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..2d1f545 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Intrinsics.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Loader.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Loader.dll new file mode 100644 index 0000000..3212c91 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Loader.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Numerics.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Numerics.dll new file mode 100644 index 0000000..298354d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Numerics.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Formatters.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..8b5630f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Formatters.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..9a1b89e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..7b734ba Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Xml.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..e593d33 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Xml.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.dll new file mode 100644 index 0000000..2c0cc45 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.dll new file mode 100644 index 0000000..486192e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.AccessControl.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.AccessControl.dll new file mode 100644 index 0000000..a0a6a86 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.AccessControl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Claims.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Claims.dll new file mode 100644 index 0000000..0d1b257 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Claims.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Algorithms.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..c299843 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Algorithms.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Cng.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..829125c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Cng.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Csp.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..5c644ed Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Csp.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Encoding.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..9452ec6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Encoding.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.OpenSsl.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..3be7bd2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.OpenSsl.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Primitives.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..805556d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Primitives.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.X509Certificates.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..43f8726 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.X509Certificates.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.Windows.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..eb5d96a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.Windows.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.dll new file mode 100644 index 0000000..b1b585a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.SecureString.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.SecureString.dll new file mode 100644 index 0000000..52a3518 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.SecureString.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.dll new file mode 100644 index 0000000..defb56f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceModel.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceModel.Web.dll new file mode 100644 index 0000000..578cc74 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceModel.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceProcess.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceProcess.dll new file mode 100644 index 0000000..c4992c5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceProcess.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.CodePages.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..b8a8a8f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.CodePages.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..ae280de Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.dll new file mode 100644 index 0000000..f820913 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encodings.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..3748993 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encodings.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Json.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Json.dll new file mode 100644 index 0000000..dce122c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Json.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.RegularExpressions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..cc5176d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.RegularExpressions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Channels.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Channels.dll new file mode 100644 index 0000000..b0926cf Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Channels.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Overlapped.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Overlapped.dll new file mode 100644 index 0000000..d3c1915 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Overlapped.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Dataflow.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..5d1bb77 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Dataflow.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Extensions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..03f6803 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Extensions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Parallel.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..8c8c6e4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Parallel.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.dll new file mode 100644 index 0000000..7a8b2b6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Thread.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Thread.dll new file mode 100644 index 0000000..9f02991 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Thread.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.ThreadPool.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..0821714 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.ThreadPool.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Timer.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Timer.dll new file mode 100644 index 0000000..899ccc0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Timer.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.dll new file mode 100644 index 0000000..5e638a6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.Local.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.Local.dll new file mode 100644 index 0000000..cd9db54 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.Local.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.dll new file mode 100644 index 0000000..ea30bd4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ValueTuple.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ValueTuple.dll new file mode 100644 index 0000000..310b077 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ValueTuple.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.HttpUtility.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.HttpUtility.dll new file mode 100644 index 0000000..c78a331 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.HttpUtility.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.dll new file mode 100644 index 0000000..c312687 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Windows.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Windows.dll new file mode 100644 index 0000000..60b9d8a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Windows.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Linq.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Linq.dll new file mode 100644 index 0000000..38db11a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Linq.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.ReaderWriter.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..b7ceddd Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.ReaderWriter.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Serialization.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Serialization.dll new file mode 100644 index 0000000..e0a65ba Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Serialization.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XDocument.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XDocument.dll new file mode 100644 index 0000000..695b88a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XDocument.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.XDocument.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..2c49d3c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.XDocument.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.dll new file mode 100644 index 0000000..00a62b3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlDocument.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..9871b86 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlDocument.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlSerializer.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..e3f3d95 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlSerializer.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.dll new file mode 100644 index 0000000..0a1b7e5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.dll new file mode 100644 index 0000000..32b5a15 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.deps.json b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.deps.json new file mode 100644 index 0000000..3d650cd --- /dev/null +++ b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.deps.json @@ -0,0 +1,2552 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "TwitchChatTTS/1.0.0": { + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "6.0.0", + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Extras": "2.2.1", + "System.Threading.Tasks.Dataflow": "8.0.0", + "TwitchLib.Api": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f", + "TwitchLib.Client": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0", + "TwitchLib.EventSub.Core": "2.5.1", + "TwitchLib.PubSub": "4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.25" + }, + "runtime": { + "TwitchChatTTS.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.25": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.2523.51912" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.2523.51912" + } + }, + "native": { + "Microsoft.DiaSymReader.Native.amd64.dll": { + "fileVersion": "0.0.0.0" + }, + "System.IO.Compression.Native.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-console-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-console-l1-2-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-datetime-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-debug-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-errorhandling-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-fibers-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-file-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-file-l1-2-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-file-l2-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-handle-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-heap-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-interlocked-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-libraryloader-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-localization-l1-2-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-memory-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-namedpipe-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-processenvironment-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-processthreads-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-processthreads-l1-1-1.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-profile-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-rtlsupport-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-string-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-synch-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-synch-l1-2-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-sysinfo-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-timezone-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-core-util-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-conio-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-convert-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-environment-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-filesystem-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-heap-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-locale-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-math-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-multibyte-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-private-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-process-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-runtime-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-stdio-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-string-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-time-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "api-ms-win-crt-utility-l1-1-0.dll": { + "fileVersion": "0.0.0.0" + }, + "clretwrc.dll": { + "fileVersion": "0.0.0.0" + }, + "clrjit.dll": { + "fileVersion": "0.0.0.0" + }, + "coreclr.dll": { + "fileVersion": "0.0.0.0" + }, + "createdump.exe": { + "fileVersion": "0.0.0.0" + }, + "dbgshim.dll": { + "fileVersion": "0.0.0.0" + }, + "hostfxr.dll": { + "fileVersion": "0.0.0.0" + }, + "hostpolicy.dll": { + "fileVersion": "0.0.0.0" + }, + "mscordaccore.dll": { + "fileVersion": "0.0.0.0" + }, + "mscordaccore_amd64_amd64_6.0.2523.51912.dll": { + "fileVersion": "0.0.0.0" + }, + "mscordbi.dll": { + "fileVersion": "0.0.0.0" + }, + "mscorrc.dll": { + "fileVersion": "0.0.0.0" + }, + "msquic.dll": { + "fileVersion": "0.0.0.0" + }, + "ucrtbase.dll": { + "fileVersion": "0.0.0.0" + } + } + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.61130.707" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.NETCore.Platforms/7.0.4": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "NAudio/2.2.1": { + "dependencies": { + "NAudio.Asio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Midi": "2.2.1", + "NAudio.Wasapi": "2.2.1", + "NAudio.WinMM": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Asio/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Core/2.2.1": { + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Extras/2.2.1": { + "dependencies": { + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Wasapi": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.Extras.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Midi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Wasapi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.WinMM/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, + "runtime.any.System.Globalization/4.3.0": {}, + "runtime.any.System.Globalization.Calendars/4.3.0": {}, + "runtime.any.System.IO/4.3.0": {}, + "runtime.any.System.Reflection/4.3.0": {}, + "runtime.any.System.Reflection.Primitives/4.3.0": {}, + "runtime.any.System.Resources.ResourceManager/4.3.0": {}, + "runtime.any.System.Runtime/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": {}, + "runtime.any.System.Runtime.InteropServices/4.3.0": {}, + "runtime.any.System.Text.Encoding/4.3.0": {}, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, + "runtime.any.System.Threading.Tasks/4.3.0": {}, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": {}, + "runtime.win.System.IO.FileSystem/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.IO.FileSystem": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.win.System.Net.Primitives": "4.3.0" + } + }, + "System.Private.Uri/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Overlapped/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "runtime": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "dependencies": { + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Communication/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/TwitchLib.Communication.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "TwitchLib.EventSub.Core/2.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4" + }, + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": { + "assemblyVersion": "2.5.1.0", + "fileVersion": "2.5.1.0" + } + } + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + } + } + }, + "libraries": { + "TwitchChatTTS/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.25": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zXeWP03dTo67AoDHUzR+/urck0KFssdCKOC+dq7Nv1V2YbFh/nIg09L0/3wSvyRONEdwxGB/ssEGmPNIIhAcAw==", + "path": "microsoft.aspnet.webapi.client/6.0.0", + "hashPath": "microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yLEHlNN7O5WiND89r42sepgVwy5W/ZoTiFEdJDV7MHR1lW02LL7Nipz2TD5qM/Kx9W3/k3NP+PAP2qUdOm+leg==", + "path": "microsoft.netcore.platforms/7.0.4", + "hashPath": "microsoft.netcore.platforms.7.0.4.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.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "NAudio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", + "path": "naudio/2.2.1", + "hashPath": "naudio.2.2.1.nupkg.sha512" + }, + "NAudio.Asio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", + "path": "naudio.asio/2.2.1", + "hashPath": "naudio.asio.2.2.1.nupkg.sha512" + }, + "NAudio.Core/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", + "path": "naudio.core/2.2.1", + "hashPath": "naudio.core.2.2.1.nupkg.sha512" + }, + "NAudio.Extras/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e3+vxSwOaOxtKubTR1KsMGm58EoonYRlsHJs4TVMN3hwHtgA0HP8ThvA5EBBKZ7RJuBPSP1ok4Wt5H6Ip9F5dA==", + "path": "naudio.extras/2.2.1", + "hashPath": "naudio.extras.2.2.1.nupkg.sha512" + }, + "NAudio.Midi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", + "path": "naudio.midi/2.2.1", + "hashPath": "naudio.midi.2.2.1.nupkg.sha512" + }, + "NAudio.Wasapi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", + "path": "naudio.wasapi/2.2.1", + "hashPath": "naudio.wasapi.2.2.1.nupkg.sha512" + }, + "NAudio.WinMM/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", + "path": "naudio.winmm/2.2.1", + "hashPath": "naudio.winmm.2.2.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "path": "runtime.any.system.collections/4.3.0", + "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "path": "runtime.any.system.globalization/4.3.0", + "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "path": "runtime.any.system.io/4.3.0", + "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "path": "runtime.any.system.reflection/4.3.0", + "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "path": "runtime.any.system.runtime/4.3.0", + "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "path": "runtime.any.system.runtime.handles/4.3.0", + "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "path": "runtime.any.system.text.encoding/4.3.0", + "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "path": "runtime.any.system.threading.tasks/4.3.0", + "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", + "path": "runtime.win.microsoft.win32.primitives/4.3.0", + "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", + "path": "runtime.win.system.diagnostics.debug/4.3.0", + "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", + "path": "runtime.win.system.io.filesystem/4.3.0", + "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512" + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", + "path": "runtime.win.system.net.primitives/4.3.0", + "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512" + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.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.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.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.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" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "path": "system.threading.overlapped/4.3.0", + "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==", + "path": "system.threading.tasks.dataflow/8.0.0", + "hashPath": "system.threading.tasks.dataflow.8.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VPX4/cI6j72bPtx9i9Evqd4IBwqNgibxzF42oT2KrtclKbyF4bSCDJSA4yDJ0DKoIMXCW9BFdodJRnfX1H2BDg==", + "path": "twitchlib.api/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-awIARYku4b2Vj3Ix7YPQMtg6JFDX6HyXqIfBMdDPgbahi2HCU0taDS4inGvF5nFkjMUw3tYSFqsdn483vt6F/Q==", + "path": "twitchlib.api.core/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OU+n8Tx4dyvHKdNvB4nC9jA3PUjLK6kNtwUY7zXohafHYL2Kp7VScXYbo07W9d5xphfdXTLInKIA7IPcmfwWTg==", + "path": "twitchlib.api.core.enums/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.enums.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ro8opbvmQ/VaTQChIvV53dFr0INvfrEnLA6S8Eg2jvs5Q/OXPDdM+ECeLbLyvOv1s2EbiXednfJGcXXvndNqAA==", + "path": "twitchlib.api.core.interfaces/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.interfaces.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ok6TTg607NRZZ2ckwPyXQU41WynCwHV2iQdlIuC0Qc5gCPwMg/y1yv2dRRZCLrQvpOw0EQnn8WAuSJbYO/Cwfw==", + "path": "twitchlib.api.core.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qVOtuoXK1wA78RtbF8LPXY9p+larlnnQTCIGjax9XKRjDhavjIjvfXcY3oBaD2s5VRHKoYn7SQKm5MEpJyzSw==", + "path": "twitchlib.api.helix/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MWi2Abzq3PGsGkTRuV2yLF23Oe8014jNYBpmmb2pX9bquzGMGANiZLdJDh6N76BSoImxTxHFRcpx7V9H0na5Pg==", + "path": "twitchlib.api.helix.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l110dy01y6C1ECmk2c1A9I2+O57IBe7P29V8iylxPCqfNDcrbJjP67Mf86kiWpofXn9sHuN6GgNihhV986g5kw==", + "path": "twitchlib.client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yV8fbmaxixp0cVElj3aYQfX4d2jPfeDe4xphZpAuesag5YsL92RHHLYDKu5aOafXlNDBQ14mQc3r+uXibN2sTQ==", + "path": "twitchlib.client.enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.enums.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2owS7RTLgwt+bfrZp5hiMQq6YLVEgV54EeU1UInoNfxrVScBBmLJmVNKhawyDjR8OZUZ5BOdGI7ny4xIjGzr4w==", + "path": "twitchlib.client.models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.models.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Communication/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DfmhYAi9p5pjPqnnghhxbNT8UdTH/a35IBASNji8E+0DC0HaF3Af1bcjbe5T8So81udgsbTCm8vHGQWde3WXVQ==", + "path": "twitchlib.communication/2.0.0", + "hashPath": "twitchlib.communication.2.0.0.nupkg.sha512" + }, + "TwitchLib.EventSub.Core/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sooKwA1dNhP9Nbgyz/yevHZBA2uDOS2qnKx2VNidby15teVD9tziqdxKt2pfto2b3jlChyqKZHahgC0mXwI0sw==", + "path": "twitchlib.eventsub.core/2.5.1", + "hashPath": "twitchlib.eventsub.core.2.5.1.nupkg.sha512" + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-su8CMpXYxgBb9ZKdEXJ87+Tj33WWoPsY18AWU6aemqEJg+JIi0jP+SVhobre366hv431exHptubvshmisYIGAQ==", + "path": "twitchlib.pubsub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "hashPath": "twitchlib.pubsub.4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.dll new file mode 100644 index 0000000..abb98d2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.exe b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.exe new file mode 100644 index 0000000..1b56e55 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.exe differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.pdb b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.pdb new file mode 100644 index 0000000..89c0aaa Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.runtimeconfig.json b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.runtimeconfig.json new file mode 100644 index 0000000..4e0d597 --- /dev/null +++ b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.runtimeconfig.json @@ -0,0 +1,11 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.25" + } + ] + } +} \ No newline at end of file diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Enums.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Enums.dll new file mode 100644 index 0000000..6f9377c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Enums.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Interfaces.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Interfaces.dll new file mode 100644 index 0000000..8bd9cc7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Interfaces.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Models.dll new file mode 100644 index 0000000..7ea6e32 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.dll new file mode 100644 index 0000000..4d276a0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.Models.dll new file mode 100644 index 0000000..2cd5297 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.dll new file mode 100644 index 0000000..bdaee52 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.dll new file mode 100644 index 0000000..21a4f99 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Enums.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Enums.dll new file mode 100644 index 0000000..fa67b85 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Enums.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Models.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Models.dll new file mode 100644 index 0000000..56c0e30 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Models.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.dll new file mode 100644 index 0000000..9a3b1af Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Communication.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Communication.dll new file mode 100644 index 0000000..79d0e10 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Communication.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.EventSub.Core.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.EventSub.Core.dll new file mode 100644 index 0000000..fed91a0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.EventSub.Core.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.PubSub.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.PubSub.dll new file mode 100644 index 0000000..8e4694c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.PubSub.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/WindowsBase.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/WindowsBase.dll new file mode 100644 index 0000000..271ffa0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/WindowsBase.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-1-0.dll new file mode 100644 index 0000000..726b975 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-2-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-2-0.dll new file mode 100644 index 0000000..b9d1ed4 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-2-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-datetime-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-datetime-l1-1-0.dll new file mode 100644 index 0000000..f2ecfa7 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-datetime-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-debug-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-debug-l1-1-0.dll new file mode 100644 index 0000000..7bd075b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-debug-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll new file mode 100644 index 0000000..3bafba9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-fibers-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-fibers-l1-1-0.dll new file mode 100644 index 0000000..651ffe1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-fibers-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-1-0.dll new file mode 100644 index 0000000..12bf0b6 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-2-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-2-0.dll new file mode 100644 index 0000000..da64db3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-2-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l2-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l2-1-0.dll new file mode 100644 index 0000000..9246b98 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l2-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-handle-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-handle-l1-1-0.dll new file mode 100644 index 0000000..c96e31d Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-handle-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-heap-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-heap-l1-1-0.dll new file mode 100644 index 0000000..baa932f Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-heap-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-interlocked-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-interlocked-l1-1-0.dll new file mode 100644 index 0000000..7aa0639 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-interlocked-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll new file mode 100644 index 0000000..ddd5e27 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-localization-l1-2-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-localization-l1-2-0.dll new file mode 100644 index 0000000..7b90b7c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-localization-l1-2-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-memory-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-memory-l1-1-0.dll new file mode 100644 index 0000000..63e54f3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-memory-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll new file mode 100644 index 0000000..37e956e Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll new file mode 100644 index 0000000..a2f3605 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-0.dll new file mode 100644 index 0000000..f4d3a03 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-1.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-1.dll new file mode 100644 index 0000000..7bc40e0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-1.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-profile-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-profile-l1-1-0.dll new file mode 100644 index 0000000..da2b687 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-profile-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll new file mode 100644 index 0000000..ae6dce5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-string-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-string-l1-1-0.dll new file mode 100644 index 0000000..32b52be Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-string-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-1-0.dll new file mode 100644 index 0000000..b88f76a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-2-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-2-0.dll new file mode 100644 index 0000000..a17135a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-2-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll new file mode 100644 index 0000000..527d1a1 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-timezone-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-timezone-l1-1-0.dll new file mode 100644 index 0000000..bab2d02 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-timezone-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-util-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-util-l1-1-0.dll new file mode 100644 index 0000000..080a9c9 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-util-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-conio-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-conio-l1-1-0.dll new file mode 100644 index 0000000..2355a62 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-conio-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-convert-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-convert-l1-1-0.dll new file mode 100644 index 0000000..ddd2b4c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-convert-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-environment-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-environment-l1-1-0.dll new file mode 100644 index 0000000..e2fe9ef Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-environment-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll new file mode 100644 index 0000000..97ea465 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-heap-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-heap-l1-1-0.dll new file mode 100644 index 0000000..4e3af05 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-heap-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-locale-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-locale-l1-1-0.dll new file mode 100644 index 0000000..5fcd98b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-locale-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-math-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-math-l1-1-0.dll new file mode 100644 index 0000000..c3f2800 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-math-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll new file mode 100644 index 0000000..e86ce81 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-private-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-private-l1-1-0.dll new file mode 100644 index 0000000..62c45dd Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-private-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-process-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-process-l1-1-0.dll new file mode 100644 index 0000000..bc346dc Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-process-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-runtime-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-runtime-l1-1-0.dll new file mode 100644 index 0000000..d0a43f8 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-runtime-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-stdio-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-stdio-l1-1-0.dll new file mode 100644 index 0000000..59e68c0 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-stdio-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-string-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-string-l1-1-0.dll new file mode 100644 index 0000000..08015e2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-string-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-time-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-time-l1-1-0.dll new file mode 100644 index 0000000..6e3ba53 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-time-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-utility-l1-1-0.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-utility-l1-1-0.dll new file mode 100644 index 0000000..eaa7204 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-utility-l1-1-0.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/clretwrc.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/clretwrc.dll new file mode 100644 index 0000000..cab8609 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/clretwrc.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/clrjit.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/clrjit.dll new file mode 100644 index 0000000..bf65aa5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/clrjit.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/coreclr.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/coreclr.dll new file mode 100644 index 0000000..e529f70 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/coreclr.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/createdump.exe b/TwitchChatTTS/bin/Debug/net6.0/win-x64/createdump.exe new file mode 100644 index 0000000..bf85031 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/createdump.exe differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/dbgshim.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/dbgshim.dll new file mode 100644 index 0000000..7e2f560 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/dbgshim.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostfxr.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostfxr.dll new file mode 100644 index 0000000..87e1d4a Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostfxr.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostpolicy.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostpolicy.dll new file mode 100644 index 0000000..8dc018c Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostpolicy.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore.dll new file mode 100644 index 0000000..0ed22a5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore_amd64_amd64_6.0.2523.51912.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore_amd64_amd64_6.0.2523.51912.dll new file mode 100644 index 0000000..0ed22a5 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore_amd64_amd64_6.0.2523.51912.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordbi.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordbi.dll new file mode 100644 index 0000000..3ce9d83 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordbi.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorlib.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorlib.dll new file mode 100644 index 0000000..94e9420 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorlib.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorrc.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorrc.dll new file mode 100644 index 0000000..0134846 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorrc.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/msquic.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/msquic.dll new file mode 100644 index 0000000..07cd9e3 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/msquic.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/netstandard.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/netstandard.dll new file mode 100644 index 0000000..92a70df Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/netstandard.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.exe b/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.exe new file mode 100644 index 0000000..9afd7e2 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.exe differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.pdb b/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.pdb new file mode 100644 index 0000000..89c0aaa Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll new file mode 100644 index 0000000..76f4e7b Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/bin/Debug/net6.0/win-x64/ucrtbase.dll b/TwitchChatTTS/bin/Debug/net6.0/win-x64/ucrtbase.dll new file mode 100644 index 0000000..0b41078 Binary files /dev/null and b/TwitchChatTTS/bin/Debug/net6.0/win-x64/ucrtbase.dll differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/TwitchChatTTS/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfo.cs b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfo.cs new file mode 100644 index 0000000..e7d8ba0 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyTitleAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfoInputs.cache b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8a73c70 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e393e983ce0d561b080adf6a4e076e692e392b8d diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..917f866 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = TwitchChatTTS +build_property.ProjectDir = /root/Projects/TwitchChatTTS/ diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.GlobalUsings.g.cs b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.assets.cache b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.assets.cache new file mode 100644 index 0000000..a16b6f9 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.assets.cache differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.AssemblyReference.cache b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.AssemblyReference.cache new file mode 100644 index 0000000..65dbd37 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.AssemblyReference.cache differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.CopyComplete b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.CoreCompileInputs.cache b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ead7dee --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6c1442997ff02e9f33051d615834b4a0fd39ec01 diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.FileListAbsolute.txt b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f85ebf6 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.FileListAbsolute.txt @@ -0,0 +1,51 @@ +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.deps.json +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.runtimeconfig.json +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/ref/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.AssemblyReference.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfoInputs.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.AssemblyInfo.cs +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.CoreCompileInputs.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/ref/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.genruntimeconfig.cache +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Options.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Enums.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Interfaces.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Core.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Api.Helix.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Enums.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Client.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.Communication.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.EventSub.Websockets.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/TwitchLib.PubSub.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.csproj.CopyComplete +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/NAudio.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/NAudio.Asio.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/NAudio.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/NAudio.Midi.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/NAudio.Wasapi.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/NAudio.WinMM.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/System.Net.Http.Formatting.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/Newtonsoft.Json.Bson.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/System.Threading.Tasks.Dataflow.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/System.Reactive.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/System.Text.Encodings.Web.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/System.Text.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.dll b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.dll new file mode 100644 index 0000000..ee0daa0 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.genruntimeconfig.cache b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.genruntimeconfig.cache new file mode 100644 index 0000000..b9f3829 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.genruntimeconfig.cache @@ -0,0 +1 @@ +999c1dbc47dc8ea762bcd1b9ed902401644f827f diff --git a/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.pdb b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.pdb new file mode 100644 index 0000000..a77aaa6 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/apphost b/TwitchChatTTS/obj/Debug/net6.0/apphost new file mode 100644 index 0000000..79cd4bf Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/apphost differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/PublishOutputs.50b4c4bd8a.txt b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/PublishOutputs.50b4c4bd8a.txt new file mode 100644 index 0000000..0b3c6f8 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/PublishOutputs.50b4c4bd8a.txt @@ -0,0 +1,2 @@ +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/publish/TwitchChatTTS diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfo.cs b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfo.cs new file mode 100644 index 0000000..e7d8ba0 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyTitleAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfoInputs.cache b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8a73c70 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e393e983ce0d561b080adf6a4e076e692e392b8d diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..91e6aaf --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.RootNamespace = TwitchChatTTS +build_property.ProjectDir = /root/Projects/TwitchChatTTS/ diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.GlobalUsings.g.cs b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.assets.cache b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.assets.cache new file mode 100644 index 0000000..b3c488c Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.assets.cache differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.AssemblyReference.cache b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.AssemblyReference.cache new file mode 100644 index 0000000..19c7a2b Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.AssemblyReference.cache differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.CopyComplete b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2812138 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +89ea8fea07031ade11b040d5e6bf52971749a7da diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.FileListAbsolute.txt b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ac57af8 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.FileListAbsolute.txt @@ -0,0 +1,219 @@ +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.deps.json +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.runtimeconfig.json +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Extensions.Logging.Abstractions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Asio.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Midi.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Wasapi.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.WinMM.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Enums.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Interfaces.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Core.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Api.Helix.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Enums.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Client.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.Communication.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.EventSub.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/TwitchLib.PubSub.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.CSharp.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.VisualBasic.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Microsoft.Win32.Registry.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.AppContext.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Buffers.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Concurrent.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Immutable.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.NonGeneric.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.Specialized.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Collections.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Annotations.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.DataAnnotations.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.EventBasedAsync.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.TypeConverter.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ComponentModel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Configuration.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Console.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.Common.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.DataSetExtensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Data.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Contracts.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Debug.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.DiagnosticSource.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.FileVersionInfo.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Process.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.StackTrace.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TextWriterTraceListener.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tools.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.TraceSource.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Diagnostics.Tracing.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Drawing.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Dynamic.Runtime.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Formats.Asn1.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Calendars.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Globalization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.Brotli.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.FileSystem.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.ZipFile.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Compression.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.AccessControl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.DriveInfo.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.Watcher.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.FileSystem.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.IsolatedStorage.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.MemoryMappedFiles.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.AccessControl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.Pipes.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.UnmanagedMemoryStream.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.IO.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Expressions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Parallel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.Queryable.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Linq.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Memory.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.HttpListener.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Mail.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NameResolution.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.NetworkInformation.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Ping.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Quic.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Requests.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Security.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.ServicePoint.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Sockets.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebClient.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebHeaderCollection.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebProxy.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.Client.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.WebSockets.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.Vectors.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Numerics.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ObjectModel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.CoreLib.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.DataContractSerialization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Uri.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.Linq.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Private.Xml.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.DispatchProxy.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.ILGeneration.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.Lightweight.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Emit.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Metadata.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.TypeExtensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Reflection.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Reader.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.ResourceManager.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Resources.Writer.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.Unsafe.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.CompilerServices.VisualC.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Handles.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.RuntimeInformation.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.InteropServices.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Intrinsics.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Loader.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Numerics.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Formatters.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.Xml.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.Serialization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Runtime.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.AccessControl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Claims.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Algorithms.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Cng.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Csp.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Encoding.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.OpenSsl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Cryptography.X509Certificates.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.Windows.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.Principal.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.SecureString.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Security.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceModel.Web.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ServiceProcess.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.CodePages.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encoding.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Encodings.Web.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Text.RegularExpressions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Channels.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Overlapped.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Dataflow.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.Parallel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Tasks.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Thread.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.ThreadPool.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.Timer.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Threading.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.Local.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Transactions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.ValueTuple.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.HttpUtility.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Web.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Windows.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Linq.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.ReaderWriter.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.Serialization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XDocument.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.XDocument.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XPath.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlDocument.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.XmlSerializer.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Xml.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/WindowsBase.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/mscorlib.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/netstandard.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/createdump +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Globalization.Native.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.IO.Compression.Native.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Native.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Net.Security.Native.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libSystem.Security.Cryptography.Native.OpenSsl.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libclrjit.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclr.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libcoreclrtraceptprovider.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libdbgshim.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostfxr.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libhostpolicy.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordaccore.so +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/libmscordbi.so +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.AssemblyReference.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfoInputs.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.AssemblyInfo.cs +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.csproj.CopyComplete +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.genruntimeconfig.cache +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/System.Net.Http.Formatting.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/NAudio.Extras.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/linux-x64/Newtonsoft.Json.Bson.dll diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.deps.json b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.deps.json new file mode 100644 index 0000000..6953f84 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.deps.json @@ -0,0 +1,4429 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/linux-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/linux-x64": { + "TwitchChatTTS/1.0.0": { + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "6.0.0", + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Extras": "2.2.1", + "System.Threading.Tasks.Dataflow": "8.0.0", + "TwitchLib.Api": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f", + "TwitchLib.Client": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0", + "TwitchLib.EventSub.Core": "2.5.1", + "TwitchLib.PubSub": "4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "6.0.25" + }, + "runtime": { + "TwitchChatTTS.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.25": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.2523.51912" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.2523.51912" + } + } + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.61130.707" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.NETCore.Platforms/7.0.4": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.Microsoft.Win32.Primitives": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "NAudio/2.2.1": { + "dependencies": { + "NAudio.Asio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Midi": "2.2.1", + "NAudio.Wasapi": "2.2.1", + "NAudio.WinMM": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Asio/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Core/2.2.1": { + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Extras/2.2.1": { + "dependencies": { + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Wasapi": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.Extras.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Midi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Wasapi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.WinMM/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, + "runtime.any.System.Globalization/4.3.0": {}, + "runtime.any.System.Globalization.Calendars/4.3.0": {}, + "runtime.any.System.IO/4.3.0": {}, + "runtime.any.System.Reflection/4.3.0": {}, + "runtime.any.System.Reflection.Primitives/4.3.0": {}, + "runtime.any.System.Resources.ResourceManager/4.3.0": {}, + "runtime.any.System.Runtime/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": {}, + "runtime.any.System.Runtime.InteropServices/4.3.0": {}, + "runtime.any.System.Text.Encoding/4.3.0": {}, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, + "runtime.any.System.Threading.Tasks/4.3.0": {}, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "dependencies": { + "runtime.native.System": "4.3.0" + } + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Diagnostics.Debug": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.unix.System.IO.FileSystem": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.unix.System.Net.Primitives": "4.3.0" + } + }, + "System.Private.Uri/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.unix.System.Private.Uri": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.unix.System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "runtime": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "dependencies": { + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Communication/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/TwitchLib.Communication.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "TwitchLib.EventSub.Core/2.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4" + }, + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": { + "assemblyVersion": "2.5.1.0", + "fileVersion": "2.5.1.0" + } + } + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + } + } + }, + "libraries": { + "TwitchChatTTS/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/6.0.25": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zXeWP03dTo67AoDHUzR+/urck0KFssdCKOC+dq7Nv1V2YbFh/nIg09L0/3wSvyRONEdwxGB/ssEGmPNIIhAcAw==", + "path": "microsoft.aspnet.webapi.client/6.0.0", + "hashPath": "microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yLEHlNN7O5WiND89r42sepgVwy5W/ZoTiFEdJDV7MHR1lW02LL7Nipz2TD5qM/Kx9W3/k3NP+PAP2qUdOm+leg==", + "path": "microsoft.netcore.platforms/7.0.4", + "hashPath": "microsoft.netcore.platforms.7.0.4.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.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "NAudio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", + "path": "naudio/2.2.1", + "hashPath": "naudio.2.2.1.nupkg.sha512" + }, + "NAudio.Asio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", + "path": "naudio.asio/2.2.1", + "hashPath": "naudio.asio.2.2.1.nupkg.sha512" + }, + "NAudio.Core/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", + "path": "naudio.core/2.2.1", + "hashPath": "naudio.core.2.2.1.nupkg.sha512" + }, + "NAudio.Extras/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e3+vxSwOaOxtKubTR1KsMGm58EoonYRlsHJs4TVMN3hwHtgA0HP8ThvA5EBBKZ7RJuBPSP1ok4Wt5H6Ip9F5dA==", + "path": "naudio.extras/2.2.1", + "hashPath": "naudio.extras.2.2.1.nupkg.sha512" + }, + "NAudio.Midi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", + "path": "naudio.midi/2.2.1", + "hashPath": "naudio.midi.2.2.1.nupkg.sha512" + }, + "NAudio.Wasapi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", + "path": "naudio.wasapi/2.2.1", + "hashPath": "naudio.wasapi.2.2.1.nupkg.sha512" + }, + "NAudio.WinMM/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", + "path": "naudio.winmm/2.2.1", + "hashPath": "naudio.winmm.2.2.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "path": "runtime.any.system.collections/4.3.0", + "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "path": "runtime.any.system.globalization/4.3.0", + "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "path": "runtime.any.system.io/4.3.0", + "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "path": "runtime.any.system.reflection/4.3.0", + "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "path": "runtime.any.system.runtime/4.3.0", + "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "path": "runtime.any.system.runtime.handles/4.3.0", + "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "path": "runtime.any.system.text.encoding/4.3.0", + "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "path": "runtime.any.system.threading.tasks/4.3.0", + "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.unix.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2mI2Mfq+CVatgr4RWGvAWBjoCfUafy6VNFU7G9OA52DjO8x/okfIbsEq2UPgeGfdpO7X5gmPXKT8slx0tn0Mhw==", + "path": "runtime.unix.microsoft.win32.primitives/4.3.0", + "hashPath": "runtime.unix.microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WV8KLRHWVUVUDduFnvGMHt0FsEt2wK6xPl1EgDKlaMx2KnZ43A/O0GzP8wIuvAC7mq4T9V1mm90r+PXkL9FPdQ==", + "path": "runtime.unix.system.diagnostics.debug/4.3.0", + "hashPath": "runtime.unix.system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ajmTcjrqc3vgV1TH54DRioshbEniaFbOAJ0kReGuNsp9uIcqYle0RmUo6+Qlwqe3JIs4TDxgnqs3UzX3gRJ1rA==", + "path": "runtime.unix.system.io.filesystem/4.3.0", + "hashPath": "runtime.unix.system.io.filesystem.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AZcRXhH7Gamr+bckUfX3iHefPIrujJTt9XWQWo0elNiP1SNasX0KBWINZkDKY0GsOrsyJ7cB4MgIRTZzLlsTKg==", + "path": "runtime.unix.system.net.primitives/4.3.0", + "hashPath": "runtime.unix.system.net.primitives.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ooWzobr5RAq34r9uan1r/WPXJYG1XWy9KanrxNvEnBzbFdQbMG7Y3bVi4QxR7xZMNLOxLLTAyXvnSkfj5boZSg==", + "path": "runtime.unix.system.private.uri/4.3.0", + "hashPath": "runtime.unix.system.private.uri.4.3.0.nupkg.sha512" + }, + "runtime.unix.System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zQiTBVpiLftTQZW8GFsV0gjYikB1WMkEPIxF5O6RkUrSV/OgvRRTYgeFQha/0keBpuS0HYweraGRwhfhJ7dj7w==", + "path": "runtime.unix.system.runtime.extensions/4.3.0", + "hashPath": "runtime.unix.system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.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.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.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.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" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==", + "path": "system.threading.tasks.dataflow/8.0.0", + "hashPath": "system.threading.tasks.dataflow.8.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VPX4/cI6j72bPtx9i9Evqd4IBwqNgibxzF42oT2KrtclKbyF4bSCDJSA4yDJ0DKoIMXCW9BFdodJRnfX1H2BDg==", + "path": "twitchlib.api/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-awIARYku4b2Vj3Ix7YPQMtg6JFDX6HyXqIfBMdDPgbahi2HCU0taDS4inGvF5nFkjMUw3tYSFqsdn483vt6F/Q==", + "path": "twitchlib.api.core/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OU+n8Tx4dyvHKdNvB4nC9jA3PUjLK6kNtwUY7zXohafHYL2Kp7VScXYbo07W9d5xphfdXTLInKIA7IPcmfwWTg==", + "path": "twitchlib.api.core.enums/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.enums.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ro8opbvmQ/VaTQChIvV53dFr0INvfrEnLA6S8Eg2jvs5Q/OXPDdM+ECeLbLyvOv1s2EbiXednfJGcXXvndNqAA==", + "path": "twitchlib.api.core.interfaces/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.interfaces.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ok6TTg607NRZZ2ckwPyXQU41WynCwHV2iQdlIuC0Qc5gCPwMg/y1yv2dRRZCLrQvpOw0EQnn8WAuSJbYO/Cwfw==", + "path": "twitchlib.api.core.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qVOtuoXK1wA78RtbF8LPXY9p+larlnnQTCIGjax9XKRjDhavjIjvfXcY3oBaD2s5VRHKoYn7SQKm5MEpJyzSw==", + "path": "twitchlib.api.helix/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MWi2Abzq3PGsGkTRuV2yLF23Oe8014jNYBpmmb2pX9bquzGMGANiZLdJDh6N76BSoImxTxHFRcpx7V9H0na5Pg==", + "path": "twitchlib.api.helix.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l110dy01y6C1ECmk2c1A9I2+O57IBe7P29V8iylxPCqfNDcrbJjP67Mf86kiWpofXn9sHuN6GgNihhV986g5kw==", + "path": "twitchlib.client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yV8fbmaxixp0cVElj3aYQfX4d2jPfeDe4xphZpAuesag5YsL92RHHLYDKu5aOafXlNDBQ14mQc3r+uXibN2sTQ==", + "path": "twitchlib.client.enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.enums.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2owS7RTLgwt+bfrZp5hiMQq6YLVEgV54EeU1UInoNfxrVScBBmLJmVNKhawyDjR8OZUZ5BOdGI7ny4xIjGzr4w==", + "path": "twitchlib.client.models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.models.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Communication/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DfmhYAi9p5pjPqnnghhxbNT8UdTH/a35IBASNji8E+0DC0HaF3Af1bcjbe5T8So81udgsbTCm8vHGQWde3WXVQ==", + "path": "twitchlib.communication/2.0.0", + "hashPath": "twitchlib.communication.2.0.0.nupkg.sha512" + }, + "TwitchLib.EventSub.Core/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sooKwA1dNhP9Nbgyz/yevHZBA2uDOS2qnKx2VNidby15teVD9tziqdxKt2pfto2b3jlChyqKZHahgC0mXwI0sw==", + "path": "twitchlib.eventsub.core/2.5.1", + "hashPath": "twitchlib.eventsub.core.2.5.1.nupkg.sha512" + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-su8CMpXYxgBb9ZKdEXJ87+Tj33WWoPsY18AWU6aemqEJg+JIi0jP+SVhobre366hv431exHptubvshmisYIGAQ==", + "path": "twitchlib.pubsub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "hashPath": "twitchlib.pubsub.4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5.nupkg.sha512" + } + }, + "runtimes": { + "alpine-x64": [ + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.10-x64": [ + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.11-x64": [ + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.12-x64": [ + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.13-x64": [ + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.14-x64": [ + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.15-x64": [ + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.16-x64": [ + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.17-x64": [ + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.18-x64": [ + "alpine.3.18", + "alpine.3.17-x64", + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.6-x64": [ + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.7-x64": [ + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.8-x64": [ + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.9-x64": [ + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android-x64": [ + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.21-x64": [ + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.22-x64": [ + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.23-x64": [ + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.24-x64": [ + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.25-x64": [ + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.26-x64": [ + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.27-x64": [ + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.28-x64": [ + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.29-x64": [ + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.30-x64": [ + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.31-x64": [ + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.32-x64": [ + "android.32", + "android.31-x64", + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos-x64": [ + "centos", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.7-x64": [ + "centos.7", + "centos-x64", + "rhel.7-x64", + "centos", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.8-x64": [ + "centos.8", + "centos-x64", + "rhel.8-x64", + "centos", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.9-x64": [ + "centos.9", + "centos-x64", + "rhel.9-x64", + "centos", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian-x64": [ + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.10-x64": [ + "debian.10", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.11-x64": [ + "debian.11", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.12-x64": [ + "debian.12", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.8-x64": [ + "debian.8", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.9-x64": [ + "debian.9", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "exherbo-x64": [ + "exherbo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora-x64": [ + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.23-x64": [ + "fedora.23", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.24-x64": [ + "fedora.24", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.25-x64": [ + "fedora.25", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.26-x64": [ + "fedora.26", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.27-x64": [ + "fedora.27", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.28-x64": [ + "fedora.28", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.29-x64": [ + "fedora.29", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.30-x64": [ + "fedora.30", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.31-x64": [ + "fedora.31", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.32-x64": [ + "fedora.32", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.33-x64": [ + "fedora.33", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.34-x64": [ + "fedora.34", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.35-x64": [ + "fedora.35", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.36-x64": [ + "fedora.36", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.37-x64": [ + "fedora.37", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.38-x64": [ + "fedora.38", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.39-x64": [ + "fedora.39", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "gentoo-x64": [ + "gentoo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-musl-x64": [ + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-x64": [ + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17-x64": [ + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.1-x64": [ + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.2-x64": [ + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.3-x64": [ + "linuxmint.17.3", + "linuxmint.17.2-x64", + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18-x64": [ + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.1-x64": [ + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.2-x64": [ + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.3-x64": [ + "linuxmint.18.3", + "linuxmint.18.2-x64", + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19-x64": [ + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.1-x64": [ + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.2-x64": [ + "linuxmint.19.2", + "linuxmint.19.1-x64", + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol-x64": [ + "ol", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7-x64": [ + "ol.7", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.0-x64": [ + "ol.7.0", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.1-x64": [ + "ol.7.1", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.2-x64": [ + "ol.7.2", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.3-x64": [ + "ol.7.3", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.4-x64": [ + "ol.7.4", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.5-x64": [ + "ol.7.5", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.6-x64": [ + "ol.7.6", + "ol.7.5-x64", + "rhel.7.6-x64", + "ol.7.5", + "rhel.7.6", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8-x64": [ + "ol.8", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8.0-x64": [ + "ol.8.0", + "ol.8-x64", + "rhel.8.0-x64", + "ol.8", + "rhel.8.0", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse-x64": [ + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.13.2-x64": [ + "opensuse.13.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.0-x64": [ + "opensuse.15.0", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.1-x64": [ + "opensuse.15.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.1-x64": [ + "opensuse.42.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.2-x64": [ + "opensuse.42.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.3-x64": [ + "opensuse.42.3", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel-x64": [ + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.6-x64": [ + "rhel.6", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7-x64": [ + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.0-x64": [ + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.1-x64": [ + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.2-x64": [ + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.3-x64": [ + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.4-x64": [ + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.5-x64": [ + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.6-x64": [ + "rhel.7.6", + "rhel.7.5-x64", + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8-x64": [ + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.0-x64": [ + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.1-x64": [ + "rhel.8.1", + "rhel.8.0-x64", + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.9-x64": [ + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky-x64": [ + "rocky", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.8-x64": [ + "rocky.8", + "rocky-x64", + "rhel.8-x64", + "rocky", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.9-x64": [ + "rocky.9", + "rocky-x64", + "rhel.9-x64", + "rocky", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles-x64": [ + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12-x64": [ + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.1-x64": [ + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.2-x64": [ + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.3-x64": [ + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.4-x64": [ + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15-x64": [ + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15.1-x64": [ + "sles.15.1", + "sles.15-x64", + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu-x64": [ + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.04-x64": [ + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.10-x64": [ + "ubuntu.14.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.04-x64": [ + "ubuntu.15.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.10-x64": [ + "ubuntu.15.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.04-x64": [ + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.10-x64": [ + "ubuntu.16.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.04-x64": [ + "ubuntu.17.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.10-x64": [ + "ubuntu.17.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.04-x64": [ + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.10-x64": [ + "ubuntu.18.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.04-x64": [ + "ubuntu.19.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.10-x64": [ + "ubuntu.19.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.04-x64": [ + "ubuntu.20.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.10-x64": [ + "ubuntu.20.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.04-x64": [ + "ubuntu.21.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.10-x64": [ + "ubuntu.21.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.04-x64": [ + "ubuntu.22.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.10-x64": [ + "ubuntu.22.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.04-x64": [ + "ubuntu.23.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.23.10-x64": [ + "ubuntu.23.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.dll b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.dll new file mode 100644 index 0000000..634e551 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.genruntimeconfig.cache b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.genruntimeconfig.cache new file mode 100644 index 0000000..b4009de --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.genruntimeconfig.cache @@ -0,0 +1 @@ +832f4a315c4da6b8cb3668ec94ed7660c716d834 diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.pdb b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.pdb new file mode 100644 index 0000000..e6aa521 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll new file mode 100644 index 0000000..e2e3267 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/ref/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/linux-x64/singlefilehost b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/singlefilehost new file mode 100644 index 0000000..ab2524d Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/linux-x64/singlefilehost differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/ref/TwitchChatTTS.dll b/TwitchChatTTS/obj/Debug/net6.0/ref/TwitchChatTTS.dll new file mode 100644 index 0000000..98dd2c8 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/ref/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/TwitchChatTTS/obj/Debug/net6.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/PublishOutputs.8e893ff21b.txt b/TwitchChatTTS/obj/Debug/net6.0/win-x64/PublishOutputs.8e893ff21b.txt new file mode 100644 index 0000000..4607084 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/PublishOutputs.8e893ff21b.txt @@ -0,0 +1,2 @@ +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/publish/TwitchChatTTS.exe diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfo.cs b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfo.cs new file mode 100644 index 0000000..e7d8ba0 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyTitleAttribute("TwitchChatTTS")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfoInputs.cache b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8a73c70 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e393e983ce0d561b080adf6a4e076e692e392b8d diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..91e6aaf --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.RootNamespace = TwitchChatTTS +build_property.ProjectDir = /root/Projects/TwitchChatTTS/ diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.GlobalUsings.g.cs b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.assets.cache b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.assets.cache new file mode 100644 index 0000000..4f5f86f Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.assets.cache differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.AssemblyReference.cache b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.AssemblyReference.cache new file mode 100644 index 0000000..68e4b80 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.AssemblyReference.cache differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.CopyComplete b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d323d76 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a1bef922c74aa81806f1a9c5ce49907887e9e24c diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.FileListAbsolute.txt b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..297f8d4 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.FileListAbsolute.txt @@ -0,0 +1,262 @@ +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.exe +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.deps.json +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.runtimeconfig.json +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Extensions.Logging.Abstractions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Asio.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Midi.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Wasapi.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.WinMM.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Enums.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Interfaces.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Core.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Api.Helix.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Enums.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Client.Models.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.Communication.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.EventSub.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/TwitchLib.PubSub.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.CSharp.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.VisualBasic.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.Win32.Registry.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.AppContext.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Buffers.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Concurrent.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Immutable.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.NonGeneric.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.Specialized.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Collections.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Annotations.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.DataAnnotations.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.EventBasedAsync.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.TypeConverter.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ComponentModel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Configuration.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Console.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Core.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.Common.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.DataSetExtensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Data.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Contracts.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Debug.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.DiagnosticSource.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.FileVersionInfo.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Process.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.StackTrace.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TextWriterTraceListener.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tools.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.TraceSource.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Diagnostics.Tracing.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Drawing.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Dynamic.Runtime.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Formats.Asn1.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Calendars.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Globalization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Brotli.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.FileSystem.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.ZipFile.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.AccessControl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.DriveInfo.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.Watcher.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.FileSystem.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.IsolatedStorage.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.MemoryMappedFiles.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.AccessControl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Pipes.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.UnmanagedMemoryStream.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Expressions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Parallel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.Queryable.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Linq.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Memory.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.HttpListener.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Mail.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NameResolution.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.NetworkInformation.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Ping.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Quic.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Requests.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Security.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.ServicePoint.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Sockets.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebClient.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebHeaderCollection.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebProxy.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.Client.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.WebSockets.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.Vectors.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Numerics.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ObjectModel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.CoreLib.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.DataContractSerialization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Uri.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.Linq.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Private.Xml.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.DispatchProxy.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.ILGeneration.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.Lightweight.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Emit.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Metadata.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.TypeExtensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Reflection.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Reader.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.ResourceManager.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Resources.Writer.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.Unsafe.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.CompilerServices.VisualC.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Handles.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.RuntimeInformation.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.InteropServices.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Intrinsics.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Loader.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Numerics.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Formatters.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.Xml.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.Serialization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Runtime.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.AccessControl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Claims.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Algorithms.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Cng.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Csp.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Encoding.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.OpenSsl.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.Primitives.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Cryptography.X509Certificates.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.Windows.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.Principal.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.SecureString.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Security.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceModel.Web.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ServiceProcess.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.CodePages.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encoding.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Encodings.Web.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.Json.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Text.RegularExpressions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Channels.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Overlapped.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Dataflow.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Extensions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.Parallel.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Tasks.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Thread.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.ThreadPool.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.Timer.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Threading.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.Local.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Transactions.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.ValueTuple.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.HttpUtility.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Web.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Windows.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Linq.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.ReaderWriter.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.Serialization.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XDocument.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.XDocument.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XPath.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlDocument.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.XmlSerializer.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Xml.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/WindowsBase.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorlib.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/netstandard.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Microsoft.DiaSymReader.Native.amd64.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.IO.Compression.Native.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-console-l1-2-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-datetime-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-debug-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-errorhandling-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-fibers-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l1-2-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-file-l2-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-handle-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-heap-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-interlocked-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-libraryloader-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-localization-l1-2-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-memory-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-namedpipe-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processenvironment-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-processthreads-l1-1-1.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-profile-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-rtlsupport-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-string-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-synch-l1-2-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-sysinfo-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-timezone-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-core-util-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-conio-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-convert-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-environment-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-filesystem-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-heap-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-locale-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-math-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-multibyte-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-private-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-process-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-runtime-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-stdio-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-string-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-time-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/api-ms-win-crt-utility-l1-1-0.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/clretwrc.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/clrjit.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/coreclr.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/createdump.exe +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/dbgshim.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostfxr.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/hostpolicy.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordbi.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscorrc.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/msquic.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/ucrtbase.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.AssemblyReference.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.GeneratedMSBuildEditorConfig.editorconfig +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfoInputs.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.AssemblyInfo.cs +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.CoreCompileInputs.cache +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.csproj.CopyComplete +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.pdb +/root/Projects/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.genruntimeconfig.cache +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/System.Net.Http.Formatting.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/Newtonsoft.Json.Bson.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/mscordaccore_amd64_amd64_6.0.2523.51912.dll +/root/Projects/TwitchChatTTS/bin/Debug/net6.0/win-x64/NAudio.Extras.dll diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.deps.json b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.deps.json new file mode 100644 index 0000000..0915eb3 --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.deps.json @@ -0,0 +1,2379 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {}, + ".NETCoreApp,Version=v6.0/win-x64": { + "TwitchChatTTS/1.0.0": { + "dependencies": { + "Microsoft.AspNet.WebApi.Client": "6.0.0", + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Extras": "2.2.1", + "System.Threading.Tasks.Dataflow": "8.0.0", + "TwitchLib.Api": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f", + "TwitchLib.Client": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0", + "TwitchLib.EventSub.Core": "2.5.1", + "TwitchLib.PubSub": "4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.25" + }, + "runtime": { + "TwitchChatTTS.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.25": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.100.2523.51912" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.AppContext.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Buffers.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Collections.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Console.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Globalization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.IO.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Memory.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Http.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Security.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Reflection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.Json.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Threading.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "WindowsBase.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.2523.51912" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "6.0.2523.51912" + } + } + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.61130.707" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.NETCore.Platforms/7.0.4": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "NAudio/2.2.1": { + "dependencies": { + "NAudio.Asio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Midi": "2.2.1", + "NAudio.Wasapi": "2.2.1", + "NAudio.WinMM": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Asio/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Core/2.2.1": { + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Extras/2.2.1": { + "dependencies": { + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Wasapi": "2.2.1" + }, + "runtime": { + "lib/net6.0/NAudio.Extras.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Midi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.Wasapi/2.2.1": { + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "NAudio.WinMM/2.2.1": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, + "runtime.any.System.Globalization/4.3.0": {}, + "runtime.any.System.Globalization.Calendars/4.3.0": {}, + "runtime.any.System.IO/4.3.0": {}, + "runtime.any.System.Reflection/4.3.0": {}, + "runtime.any.System.Reflection.Primitives/4.3.0": {}, + "runtime.any.System.Resources.ResourceManager/4.3.0": {}, + "runtime.any.System.Runtime/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": {}, + "runtime.any.System.Runtime.InteropServices/4.3.0": {}, + "runtime.any.System.Text.Encoding/4.3.0": {}, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, + "runtime.any.System.Threading.Tasks/4.3.0": {}, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": {}, + "runtime.win.System.IO.FileSystem/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "dependencies": { + "System.Private.Uri": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.IO.FileSystem": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Memory/4.5.5": {}, + "System.Net.Http/4.3.4": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.win.System.Net.Primitives": "4.3.0" + } + }, + "System.Private.Uri/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Security.Principal.Windows": "4.7.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + } + }, + "System.Security.Principal.Windows/4.7.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Overlapped/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "runtime": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "dependencies": { + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": { + "assemblyVersion": "3.10.0.0", + "fileVersion": "3.10.0.0" + } + } + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "dependencies": { + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + }, + "TwitchLib.Communication/2.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/TwitchLib.Communication.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "TwitchLib.EventSub.Core/2.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4" + }, + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": { + "assemblyVersion": "2.5.1.0", + "fileVersion": "2.5.1.0" + } + } + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Communication": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.0.0" + } + } + } + } + }, + "libraries": { + "TwitchChatTTS/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.25": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zXeWP03dTo67AoDHUzR+/urck0KFssdCKOC+dq7Nv1V2YbFh/nIg09L0/3wSvyRONEdwxGB/ssEGmPNIIhAcAw==", + "path": "microsoft.aspnet.webapi.client/6.0.0", + "hashPath": "microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/7.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yLEHlNN7O5WiND89r42sepgVwy5W/ZoTiFEdJDV7MHR1lW02LL7Nipz2TD5qM/Kx9W3/k3NP+PAP2qUdOm+leg==", + "path": "microsoft.netcore.platforms/7.0.4", + "hashPath": "microsoft.netcore.platforms.7.0.4.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.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "NAudio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", + "path": "naudio/2.2.1", + "hashPath": "naudio.2.2.1.nupkg.sha512" + }, + "NAudio.Asio/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", + "path": "naudio.asio/2.2.1", + "hashPath": "naudio.asio.2.2.1.nupkg.sha512" + }, + "NAudio.Core/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", + "path": "naudio.core/2.2.1", + "hashPath": "naudio.core.2.2.1.nupkg.sha512" + }, + "NAudio.Extras/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e3+vxSwOaOxtKubTR1KsMGm58EoonYRlsHJs4TVMN3hwHtgA0HP8ThvA5EBBKZ7RJuBPSP1ok4Wt5H6Ip9F5dA==", + "path": "naudio.extras/2.2.1", + "hashPath": "naudio.extras.2.2.1.nupkg.sha512" + }, + "NAudio.Midi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", + "path": "naudio.midi/2.2.1", + "hashPath": "naudio.midi.2.2.1.nupkg.sha512" + }, + "NAudio.Wasapi/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", + "path": "naudio.wasapi/2.2.1", + "hashPath": "naudio.wasapi.2.2.1.nupkg.sha512" + }, + "NAudio.WinMM/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", + "path": "naudio.winmm/2.2.1", + "hashPath": "naudio.winmm.2.2.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "path": "runtime.any.system.collections/4.3.0", + "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "path": "runtime.any.system.globalization/4.3.0", + "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "path": "runtime.any.system.io/4.3.0", + "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "path": "runtime.any.system.reflection/4.3.0", + "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "path": "runtime.any.system.runtime/4.3.0", + "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "path": "runtime.any.system.runtime.handles/4.3.0", + "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "path": "runtime.any.system.text.encoding/4.3.0", + "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "path": "runtime.any.system.text.encoding.extensions/4.3.0", + "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "path": "runtime.any.system.threading.tasks/4.3.0", + "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", + "path": "runtime.win.microsoft.win32.primitives/4.3.0", + "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", + "path": "runtime.win.system.diagnostics.debug/4.3.0", + "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", + "path": "runtime.win.system.io.filesystem/4.3.0", + "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512" + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", + "path": "runtime.win.system.net.primitives/4.3.0", + "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512" + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Net.Http/4.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "path": "system.net.http/4.3.4", + "hashPath": "system.net.http.4.3.4.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "path": "system.private.uri/4.3.0", + "hashPath": "system.private.uri.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.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.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.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.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" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "path": "system.threading.overlapped/4.3.0", + "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==", + "path": "system.threading.tasks.dataflow/8.0.0", + "hashPath": "system.threading.tasks.dataflow.8.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VPX4/cI6j72bPtx9i9Evqd4IBwqNgibxzF42oT2KrtclKbyF4bSCDJSA4yDJ0DKoIMXCW9BFdodJRnfX1H2BDg==", + "path": "twitchlib.api/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-awIARYku4b2Vj3Ix7YPQMtg6JFDX6HyXqIfBMdDPgbahi2HCU0taDS4inGvF5nFkjMUw3tYSFqsdn483vt6F/Q==", + "path": "twitchlib.api.core/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OU+n8Tx4dyvHKdNvB4nC9jA3PUjLK6kNtwUY7zXohafHYL2Kp7VScXYbo07W9d5xphfdXTLInKIA7IPcmfwWTg==", + "path": "twitchlib.api.core.enums/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.enums.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ro8opbvmQ/VaTQChIvV53dFr0INvfrEnLA6S8Eg2jvs5Q/OXPDdM+ECeLbLyvOv1s2EbiXednfJGcXXvndNqAA==", + "path": "twitchlib.api.core.interfaces/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.interfaces.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ok6TTg607NRZZ2ckwPyXQU41WynCwHV2iQdlIuC0Qc5gCPwMg/y1yv2dRRZCLrQvpOw0EQnn8WAuSJbYO/Cwfw==", + "path": "twitchlib.api.core.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.core.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qVOtuoXK1wA78RtbF8LPXY9p+larlnnQTCIGjax9XKRjDhavjIjvfXcY3oBaD2s5VRHKoYn7SQKm5MEpJyzSw==", + "path": "twitchlib.api.helix/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MWi2Abzq3PGsGkTRuV2yLF23Oe8014jNYBpmmb2pX9bquzGMGANiZLdJDh6N76BSoImxTxHFRcpx7V9H0na5Pg==", + "path": "twitchlib.api.helix.models/3.10.0-preview-e47ba7f", + "hashPath": "twitchlib.api.helix.models.3.10.0-preview-e47ba7f.nupkg.sha512" + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l110dy01y6C1ECmk2c1A9I2+O57IBe7P29V8iylxPCqfNDcrbJjP67Mf86kiWpofXn9sHuN6GgNihhV986g5kw==", + "path": "twitchlib.client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yV8fbmaxixp0cVElj3aYQfX4d2jPfeDe4xphZpAuesag5YsL92RHHLYDKu5aOafXlNDBQ14mQc3r+uXibN2sTQ==", + "path": "twitchlib.client.enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.enums.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2owS7RTLgwt+bfrZp5hiMQq6YLVEgV54EeU1UInoNfxrVScBBmLJmVNKhawyDjR8OZUZ5BOdGI7ny4xIjGzr4w==", + "path": "twitchlib.client.models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "hashPath": "twitchlib.client.models.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512" + }, + "TwitchLib.Communication/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DfmhYAi9p5pjPqnnghhxbNT8UdTH/a35IBASNji8E+0DC0HaF3Af1bcjbe5T8So81udgsbTCm8vHGQWde3WXVQ==", + "path": "twitchlib.communication/2.0.0", + "hashPath": "twitchlib.communication.2.0.0.nupkg.sha512" + }, + "TwitchLib.EventSub.Core/2.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sooKwA1dNhP9Nbgyz/yevHZBA2uDOS2qnKx2VNidby15teVD9tziqdxKt2pfto2b3jlChyqKZHahgC0mXwI0sw==", + "path": "twitchlib.eventsub.core/2.5.1", + "hashPath": "twitchlib.eventsub.core.2.5.1.nupkg.sha512" + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-su8CMpXYxgBb9ZKdEXJ87+Tj33WWoPsY18AWU6aemqEJg+JIi0jP+SVhobre366hv431exHptubvshmisYIGAQ==", + "path": "twitchlib.pubsub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "hashPath": "twitchlib.pubsub.4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5.nupkg.sha512" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.dll b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.dll new file mode 100644 index 0000000..abb98d2 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.genruntimeconfig.cache b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.genruntimeconfig.cache new file mode 100644 index 0000000..f1e143a --- /dev/null +++ b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.genruntimeconfig.cache @@ -0,0 +1 @@ +04a7fd2c67c2d6ee9dc6033d4f642ab5a4964624 diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.pdb b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.pdb new file mode 100644 index 0000000..89c0aaa Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/win-x64/TwitchChatTTS.pdb differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll b/TwitchChatTTS/obj/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll new file mode 100644 index 0000000..76f4e7b Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/win-x64/ref/TwitchChatTTS.dll differ diff --git a/TwitchChatTTS/obj/Debug/net6.0/win-x64/singlefilehost.exe b/TwitchChatTTS/obj/Debug/net6.0/win-x64/singlefilehost.exe new file mode 100644 index 0000000..1b56e55 Binary files /dev/null and b/TwitchChatTTS/obj/Debug/net6.0/win-x64/singlefilehost.exe differ diff --git a/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.dgspec.json b/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.dgspec.json new file mode 100644 index 0000000..3b9c7af --- /dev/null +++ b/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.dgspec.json @@ -0,0 +1,149 @@ +{ + "format": 1, + "restore": { + "/root/Projects/TwitchChatTTS/TwitchChatTTS.csproj": {} + }, + "projects": { + "/root/Projects/TwitchChatTTS/TwitchChatTTS.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/root/Projects/TwitchChatTTS/TwitchChatTTS.csproj", + "projectName": "TwitchChatTTS", + "projectPath": "/root/Projects/TwitchChatTTS/TwitchChatTTS.csproj", + "packagesPath": "/root/.nuget/packages/", + "outputPath": "/root/Projects/TwitchChatTTS/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/root/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Microsoft.AspNet.WebApi.Client": { + "target": "Package", + "version": "[6.0.0, )" + }, + "NAudio": { + "target": "Package", + "version": "[2.2.1, )" + }, + "NAudio.Core": { + "target": "Package", + "version": "[2.2.1, )" + }, + "NAudio.Extras": { + "target": "Package", + "version": "[2.2.1, )" + }, + "System.Threading.Tasks.Dataflow": { + "target": "Package", + "version": "[8.0.0, )" + }, + "TwitchLib.Api": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Core": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Core.Enums": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Core.Interfaces": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Helix": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Helix.Models": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Client": { + "target": "Package", + "version": "[4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8, )" + }, + "TwitchLib.Client.Enums": { + "target": "Package", + "version": "[4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8, )" + }, + "TwitchLib.Client.Models": { + "target": "Package", + "version": "[4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8, )" + }, + "TwitchLib.Communication": { + "target": "Package", + "version": "[2.0.0, )" + }, + "TwitchLib.EventSub.Core": { + "target": "Package", + "version": "[2.5.1, )" + }, + "TwitchLib.PubSub": { + "target": "Package", + "version": "[4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.25, 6.0.25]" + }, + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[6.0.25, 6.0.25]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.25, 6.0.25]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/6.0.125/RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.g.props b/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.g.props new file mode 100644 index 0000000..fd0bbd7 --- /dev/null +++ b/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /root/.nuget/packages/ + /root/.nuget/packages/ + PackageReference + 6.0.5 + + + + + \ No newline at end of file diff --git a/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.g.targets b/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.g.targets new file mode 100644 index 0000000..b6ee7d6 --- /dev/null +++ b/TwitchChatTTS/obj/TwitchChatTTS.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/TwitchChatTTS/obj/project.assets.json b/TwitchChatTTS/obj/project.assets.json new file mode 100644 index 0000000..24d45f1 --- /dev/null +++ b/TwitchChatTTS/obj/project.assets.json @@ -0,0 +1,6007 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.NETCore.Platforms/7.0.4": { + "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.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "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" + } + } + }, + "NAudio/2.2.1": { + "type": "package", + "dependencies": { + "NAudio.Asio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Midi": "2.2.1", + "NAudio.Wasapi": "2.2.1", + "NAudio.WinMM": "2.2.1" + }, + "compile": { + "lib/net6.0/NAudio.dll": {} + }, + "runtime": { + "lib/net6.0/NAudio.dll": {} + } + }, + "NAudio.Asio/2.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + } + }, + "NAudio.Core/2.2.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/NAudio.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": {} + } + }, + "NAudio.Extras/2.2.1": { + "type": "package", + "dependencies": { + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Wasapi": "2.2.1" + }, + "compile": { + "lib/net6.0/NAudio.Extras.dll": {} + }, + "runtime": { + "lib/net6.0/NAudio.Extras.dll": {} + } + }, + "NAudio.Midi/2.2.1": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + } + }, + "NAudio.Wasapi/2.2.1": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + } + }, + "NAudio.WinMM/2.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "System.Collections/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.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Diagnostics.Debug/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.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/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.5/_._": {} + } + }, + "System.Globalization/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.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/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", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Reflection.Primitives/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.0/_._": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "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": {} + } + }, + "System.Runtime.Extensions/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.5/_._": {} + } + }, + "System.Runtime.Handles/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.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "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.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/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": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/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.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": {} + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.dll": {} + } + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": {} + } + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": {} + } + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": {} + } + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": {} + } + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": {} + } + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": {} + } + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0-preview-b5bf10f12e8d7c9d0a82f7f5026dccdf97a97c41" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Client.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.dll": {} + } + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "compile": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": {} + } + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": {} + } + }, + "TwitchLib.Communication/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + }, + "compile": { + "lib/net6.0/TwitchLib.Communication.dll": {} + }, + "runtime": { + "lib/net6.0/TwitchLib.Communication.dll": {} + } + }, + "TwitchLib.EventSub.Core/2.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4" + }, + "compile": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": {} + }, + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": {} + } + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Newtonsoft.Json": "13.0.2", + "TwitchLib.Communication": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": {} + } + } + }, + "net6.0/win-x64": { + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "Newtonsoft.Json.Bson": "1.0.2", + "System.Memory": "4.5.5", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.Formatting.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.NETCore.Platforms/7.0.4": { + "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.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.Microsoft.Win32.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "NAudio/2.2.1": { + "type": "package", + "dependencies": { + "NAudio.Asio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Midi": "2.2.1", + "NAudio.Wasapi": "2.2.1", + "NAudio.WinMM": "2.2.1" + }, + "compile": { + "lib/net6.0/NAudio.dll": {} + }, + "runtime": { + "lib/net6.0/NAudio.dll": {} + } + }, + "NAudio.Asio/2.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + } + }, + "NAudio.Core/2.2.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/NAudio.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": {} + } + }, + "NAudio.Extras/2.2.1": { + "type": "package", + "dependencies": { + "NAudio": "2.2.1", + "NAudio.Core": "2.2.1", + "NAudio.Wasapi": "2.2.1" + }, + "compile": { + "lib/net6.0/NAudio.Extras.dll": {} + }, + "runtime": { + "lib/net6.0/NAudio.Extras.dll": {} + } + }, + "NAudio.Midi/2.2.1": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + } + }, + "NAudio.Wasapi/2.2.1": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + } + }, + "NAudio.WinMM/2.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": {} + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {} + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package" + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Diagnostics.Tracing": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Globalization.Calendars": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/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", + "System.Threading.Tasks": "4.3.0", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.win.System.IO.FileSystem": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.win.System.Net.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.win.System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} + } + }, + "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", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "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", + "runtime.any.System.Text.Encoding.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": {} + }, + "runtime": { + "lib/net6.0/System.Threading.Tasks.Dataflow.dll": {} + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "System.Net.Http": "4.3.4", + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.dll": {} + } + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Models": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.dll": {} + } + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll": {} + } + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll": {} + } + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll": {} + } + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "TwitchLib.Api.Core": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.dll": {} + } + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "TwitchLib.Api.Core.Enums": "3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces": "3.10.0-preview-e47ba7f" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll": {} + } + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication": "2.0.0-preview-b5bf10f12e8d7c9d0a82f7f5026dccdf97a97c41" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Client.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.dll": {} + } + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "compile": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Enums.dll": {} + } + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "TwitchLib.Client.Enums": "4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.Client.Models.dll": {} + } + }, + "TwitchLib.Communication/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + }, + "compile": { + "lib/net6.0/TwitchLib.Communication.dll": {} + }, + "runtime": { + "lib/net6.0/TwitchLib.Communication.dll": {} + } + }, + "TwitchLib.EventSub.Core/2.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "7.0.4" + }, + "compile": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": {} + }, + "runtime": { + "lib/net6.0/TwitchLib.EventSub.Core.dll": {} + } + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Newtonsoft.Json": "13.0.2", + "TwitchLib.Communication": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": {} + }, + "runtime": { + "lib/netstandard2.0/TwitchLib.PubSub.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.WebApi.Client/6.0.0": { + "sha512": "zXeWP03dTo67AoDHUzR+/urck0KFssdCKOC+dq7Nv1V2YbFh/nIg09L0/3wSvyRONEdwxGB/ssEGmPNIIhAcAw==", + "type": "package", + "path": "microsoft.aspnet.webapi.client/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NET.icon.png", + "NET_Library_EULA_ENU.txt", + "lib/net45/System.Net.Http.Formatting.dll", + "lib/net45/System.Net.Http.Formatting.xml", + "lib/netstandard1.3/System.Net.Http.Formatting.dll", + "lib/netstandard1.3/System.Net.Http.Formatting.xml", + "lib/netstandard2.0/System.Net.Http.Formatting.dll", + "lib/netstandard2.0/System.Net.Http.Formatting.xml", + "microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512", + "microsoft.aspnet.webapi.client.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NETCore.Platforms/7.0.4": { + "sha512": "yLEHlNN7O5WiND89r42sepgVwy5W/ZoTiFEdJDV7MHR1lW02LL7Nipz2TD5qM/Kx9W3/k3NP+PAP2qUdOm+leg==", + "type": "package", + "path": "microsoft.netcore.platforms/7.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.7.0.4.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.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.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.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/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.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/net472/Microsoft.Win32.Registry.dll", + "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "NAudio/2.2.1": { + "sha512": "c0DzwiyyklM0TP39Y7RObwO3QkWecgM6H60ikiEnsV/aEAJPbj5MFCLaD8BSfKuZe0HGuh9GRGWWlJmSxDc9MA==", + "type": "package", + "path": "naudio/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/NAudio.dll", + "lib/net472/NAudio.xml", + "lib/net6.0-windows7.0/NAudio.dll", + "lib/net6.0-windows7.0/NAudio.xml", + "lib/net6.0/NAudio.dll", + "lib/net6.0/NAudio.xml", + "lib/netcoreapp3.1/NAudio.dll", + "lib/netcoreapp3.1/NAudio.xml", + "license.txt", + "naudio-icon.png", + "naudio.2.2.1.nupkg.sha512", + "naudio.nuspec" + ] + }, + "NAudio.Asio/2.2.1": { + "sha512": "hQglyOT5iT3XuGpBP8ZG0+aoqwRfidHjTNehpoWwX0g6KJEgtH2VaqM2nuJ2mheKZa/IBqB4YQTZVvrIapzfOA==", + "type": "package", + "path": "naudio.asio/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Asio.dll", + "lib/netstandard2.0/NAudio.Asio.xml", + "naudio-icon.png", + "naudio.asio.2.2.1.nupkg.sha512", + "naudio.asio.nuspec" + ] + }, + "NAudio.Core/2.2.1": { + "sha512": "GgkdP6K/7FqXFo7uHvoqGZTJvW4z8g2IffhOO4JHaLzKCdDOUEzVKtveoZkCuUX8eV2HAINqi7VFqlFndrnz/g==", + "type": "package", + "path": "naudio.core/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Core.dll", + "lib/netstandard2.0/NAudio.Core.xml", + "naudio-icon.png", + "naudio.core.2.2.1.nupkg.sha512", + "naudio.core.nuspec" + ] + }, + "NAudio.Extras/2.2.1": { + "sha512": "e3+vxSwOaOxtKubTR1KsMGm58EoonYRlsHJs4TVMN3hwHtgA0HP8ThvA5EBBKZ7RJuBPSP1ok4Wt5H6Ip9F5dA==", + "type": "package", + "path": "naudio.extras/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/NAudio.Extras.dll", + "lib/net472/NAudio.Extras.xml", + "lib/net6.0-windows7.0/NAudio.Extras.dll", + "lib/net6.0-windows7.0/NAudio.Extras.xml", + "lib/net6.0/NAudio.Extras.dll", + "lib/net6.0/NAudio.Extras.xml", + "lib/netcoreapp3.1/NAudio.Extras.dll", + "lib/netcoreapp3.1/NAudio.Extras.xml", + "naudio-icon.png", + "naudio.extras.2.2.1.nupkg.sha512", + "naudio.extras.nuspec" + ] + }, + "NAudio.Midi/2.2.1": { + "sha512": "6r23ylGo5aeP02WFXsPquz0T0hFJWyh+7t++tz19tc3Kr38NHm+Z9j+FiAv+xkH8tZqXJqus9Q8p6u7bidIgbw==", + "type": "package", + "path": "naudio.midi/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Midi.dll", + "lib/netstandard2.0/NAudio.Midi.xml", + "naudio-icon.png", + "naudio.midi.2.2.1.nupkg.sha512", + "naudio.midi.nuspec" + ] + }, + "NAudio.Wasapi/2.2.1": { + "sha512": "lFfXoqacZZe0WqNChJgGYI+XV/n/61LzPHT3C1CJp4khoxeo2sziyX5wzNYWeCMNbsWxFvT3b3iXeY1UYjBhZw==", + "type": "package", + "path": "naudio.wasapi/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Wasapi.dll", + "lib/netstandard2.0/NAudio.Wasapi.xml", + "lib/uap10.0.18362/NAudio.Wasapi.dll", + "lib/uap10.0.18362/NAudio.Wasapi.pri", + "lib/uap10.0.18362/NAudio.Wasapi.xml", + "naudio-icon.png", + "naudio.wasapi.2.2.1.nupkg.sha512", + "naudio.wasapi.nuspec" + ] + }, + "NAudio.WinMM/2.2.1": { + "sha512": "xFHRFwH4x6aq3IxRbewvO33ugJRvZFEOfO62i7uQJRUNW2cnu6BeBTHUS0JD5KBucZbHZaYqxQG8dwZ47ezQuQ==", + "type": "package", + "path": "naudio.winmm/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.WinMM.dll", + "lib/netstandard2.0/NAudio.WinMM.xml", + "naudio-icon.png", + "naudio.winmm.2.2.1.nupkg.sha512", + "naudio.winmm.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "runtime.any.System.Collections/4.3.0": { + "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "type": "package", + "path": "runtime.any.system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.3.0.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Diagnostics.Tracing/4.3.0": { + "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", + "type": "package", + "path": "runtime.any.system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netstandard1.5/System.Diagnostics.Tracing.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", + "runtime.any.system.diagnostics.tracing.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.3.0": { + "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "type": "package", + "path": "runtime.any.system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization.Calendars/4.3.0": { + "sha512": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", + "type": "package", + "path": "runtime.any.system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net/_._", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/netstandard1.3/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.calendars.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.3.0": { + "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "type": "package", + "path": "runtime.any.system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.3.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.3.0": { + "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.3.0": { + "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding.Extensions/4.3.0": { + "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", + "type": "package", + "path": "runtime.any.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/netcore50/System.Text.Encoding.Extensions.dll", + "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win.Microsoft.Win32.Primitives/4.3.0": { + "sha512": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", + "type": "package", + "path": "runtime.win.microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512", + "runtime.win.microsoft.win32.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" + ] + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "sha512": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", + "type": "package", + "path": "runtime.win.system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", + "runtime.win.system.diagnostics.debug.nuspec", + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp80/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.IO.FileSystem/4.3.0": { + "sha512": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", + "type": "package", + "path": "runtime.win.system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512", + "runtime.win.system.io.filesystem.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp8/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.Net.Primitives/4.3.0": { + "sha512": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", + "type": "package", + "path": "runtime.win.system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.net.primitives.4.3.0.nupkg.sha512", + "runtime.win.system.net.primitives.nuspec", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Net.Primitives.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll" + ] + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "type": "package", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "runtime.win.system.runtime.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/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.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/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.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.3.0": { + "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/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.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "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/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "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/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.4": { + "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "type": "package", + "path": "system.net.http/4.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.4.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/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.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Private.Uri/4.3.0": { + "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "type": "package", + "path": "system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.3.0.nupkg.sha512", + "system.private.uri.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "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/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/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.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/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.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "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.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "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/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.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/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "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/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.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/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "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/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/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/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.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.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" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "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.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/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.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/8.0.0": { + "sha512": "7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==", + "type": "package", + "path": "system.threading.tasks.dataflow/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Tasks.Dataflow.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Tasks.Dataflow.targets", + "lib/net462/System.Threading.Tasks.Dataflow.dll", + "lib/net462/System.Threading.Tasks.Dataflow.xml", + "lib/net6.0/System.Threading.Tasks.Dataflow.dll", + "lib/net6.0/System.Threading.Tasks.Dataflow.xml", + "lib/net7.0/System.Threading.Tasks.Dataflow.dll", + "lib/net7.0/System.Threading.Tasks.Dataflow.xml", + "lib/net8.0/System.Threading.Tasks.Dataflow.dll", + "lib/net8.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.1/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.1/System.Threading.Tasks.Dataflow.xml", + "system.threading.tasks.dataflow.8.0.0.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "TwitchLib.Api/3.10.0-preview-e47ba7f": { + "sha512": "VPX4/cI6j72bPtx9i9Evqd4IBwqNgibxzF42oT2KrtclKbyF4bSCDJSA4yDJ0DKoIMXCW9BFdodJRnfX1H2BDg==", + "type": "package", + "path": "twitchlib.api/3.10.0-preview-e47ba7f", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Api.dll", + "lib/netstandard2.0/TwitchLib.Api.xml", + "twitchlib.api.3.10.0-preview-e47ba7f.nupkg.sha512", + "twitchlib.api.nuspec", + "twitchlib.png" + ] + }, + "TwitchLib.Api.Core/3.10.0-preview-e47ba7f": { + "sha512": "awIARYku4b2Vj3Ix7YPQMtg6JFDX6HyXqIfBMdDPgbahi2HCU0taDS4inGvF5nFkjMUw3tYSFqsdn483vt6F/Q==", + "type": "package", + "path": "twitchlib.api.core/3.10.0-preview-e47ba7f", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Api.Core.dll", + "lib/netstandard2.0/TwitchLib.Api.Core.xml", + "twitchlib.api.core.3.10.0-preview-e47ba7f.nupkg.sha512", + "twitchlib.api.core.nuspec", + "twitchlib.png" + ] + }, + "TwitchLib.Api.Core.Enums/3.10.0-preview-e47ba7f": { + "sha512": "OU+n8Tx4dyvHKdNvB4nC9jA3PUjLK6kNtwUY7zXohafHYL2Kp7VScXYbo07W9d5xphfdXTLInKIA7IPcmfwWTg==", + "type": "package", + "path": "twitchlib.api.core.enums/3.10.0-preview-e47ba7f", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.dll", + "lib/netstandard2.0/TwitchLib.Api.Core.Enums.xml", + "twitchlib.api.core.enums.3.10.0-preview-e47ba7f.nupkg.sha512", + "twitchlib.api.core.enums.nuspec", + "twitchlib.png" + ] + }, + "TwitchLib.Api.Core.Interfaces/3.10.0-preview-e47ba7f": { + "sha512": "Ro8opbvmQ/VaTQChIvV53dFr0INvfrEnLA6S8Eg2jvs5Q/OXPDdM+ECeLbLyvOv1s2EbiXednfJGcXXvndNqAA==", + "type": "package", + "path": "twitchlib.api.core.interfaces/3.10.0-preview-e47ba7f", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.dll", + "lib/netstandard2.0/TwitchLib.Api.Core.Interfaces.xml", + "twitchlib.api.core.interfaces.3.10.0-preview-e47ba7f.nupkg.sha512", + "twitchlib.api.core.interfaces.nuspec", + "twitchlib.png" + ] + }, + "TwitchLib.Api.Core.Models/3.10.0-preview-e47ba7f": { + "sha512": "ok6TTg607NRZZ2ckwPyXQU41WynCwHV2iQdlIuC0Qc5gCPwMg/y1yv2dRRZCLrQvpOw0EQnn8WAuSJbYO/Cwfw==", + "type": "package", + "path": "twitchlib.api.core.models/3.10.0-preview-e47ba7f", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Api.Core.Models.dll", + "lib/netstandard2.0/TwitchLib.Api.Core.Models.xml", + "twitchlib.api.core.models.3.10.0-preview-e47ba7f.nupkg.sha512", + "twitchlib.api.core.models.nuspec", + "twitchlib.png" + ] + }, + "TwitchLib.Api.Helix/3.10.0-preview-e47ba7f": { + "sha512": "3qVOtuoXK1wA78RtbF8LPXY9p+larlnnQTCIGjax9XKRjDhavjIjvfXcY3oBaD2s5VRHKoYn7SQKm5MEpJyzSw==", + "type": "package", + "path": "twitchlib.api.helix/3.10.0-preview-e47ba7f", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Api.Helix.dll", + "lib/netstandard2.0/TwitchLib.Api.Helix.xml", + "twitchlib.api.helix.3.10.0-preview-e47ba7f.nupkg.sha512", + "twitchlib.api.helix.nuspec", + "twitchlib.png" + ] + }, + "TwitchLib.Api.Helix.Models/3.10.0-preview-e47ba7f": { + "sha512": "MWi2Abzq3PGsGkTRuV2yLF23Oe8014jNYBpmmb2pX9bquzGMGANiZLdJDh6N76BSoImxTxHFRcpx7V9H0na5Pg==", + "type": "package", + "path": "twitchlib.api.helix.models/3.10.0-preview-e47ba7f", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.dll", + "lib/netstandard2.0/TwitchLib.Api.Helix.Models.xml", + "twitchlib.api.helix.models.3.10.0-preview-e47ba7f.nupkg.sha512", + "twitchlib.api.helix.models.nuspec", + "twitchlib.png" + ] + }, + "TwitchLib.Client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "sha512": "l110dy01y6C1ECmk2c1A9I2+O57IBe7P29V8iylxPCqfNDcrbJjP67Mf86kiWpofXn9sHuN6GgNihhV986g5kw==", + "type": "package", + "path": "twitchlib.client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Client.dll", + "lib/netstandard2.0/TwitchLib.Client.xml", + "twitchlib.client.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512", + "twitchlib.client.nuspec" + ] + }, + "TwitchLib.Client.Enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "sha512": "yV8fbmaxixp0cVElj3aYQfX4d2jPfeDe4xphZpAuesag5YsL92RHHLYDKu5aOafXlNDBQ14mQc3r+uXibN2sTQ==", + "type": "package", + "path": "twitchlib.client.enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Client.Enums.dll", + "lib/netstandard2.0/TwitchLib.Client.Enums.xml", + "twitchlib.client.enums.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512", + "twitchlib.client.enums.nuspec" + ] + }, + "TwitchLib.Client.Models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8": { + "sha512": "2owS7RTLgwt+bfrZp5hiMQq6YLVEgV54EeU1UInoNfxrVScBBmLJmVNKhawyDjR8OZUZ5BOdGI7ny4xIjGzr4w==", + "type": "package", + "path": "twitchlib.client.models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.Client.Models.dll", + "lib/netstandard2.0/TwitchLib.Client.Models.xml", + "twitchlib.client.models.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512", + "twitchlib.client.models.nuspec" + ] + }, + "TwitchLib.Communication/2.0.0": { + "sha512": "DfmhYAi9p5pjPqnnghhxbNT8UdTH/a35IBASNji8E+0DC0HaF3Af1bcjbe5T8So81udgsbTCm8vHGQWde3WXVQ==", + "type": "package", + "path": "twitchlib.communication/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/TwitchLib.Communication.dll", + "lib/net6.0/TwitchLib.Communication.xml", + "lib/net7.0/TwitchLib.Communication.dll", + "lib/net7.0/TwitchLib.Communication.xml", + "lib/netstandard2.0/TwitchLib.Communication.dll", + "lib/netstandard2.0/TwitchLib.Communication.xml", + "lib/netstandard2.1/TwitchLib.Communication.dll", + "lib/netstandard2.1/TwitchLib.Communication.xml", + "twitchlib.communication.2.0.0.nupkg.sha512", + "twitchlib.communication.nuspec" + ] + }, + "TwitchLib.EventSub.Core/2.5.1": { + "sha512": "sooKwA1dNhP9Nbgyz/yevHZBA2uDOS2qnKx2VNidby15teVD9tziqdxKt2pfto2b3jlChyqKZHahgC0mXwI0sw==", + "type": "package", + "path": "twitchlib.eventsub.core/2.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net5.0/TwitchLib.EventSub.Core.dll", + "lib/net5.0/TwitchLib.EventSub.Core.xml", + "lib/net6.0/TwitchLib.EventSub.Core.dll", + "lib/net6.0/TwitchLib.EventSub.Core.xml", + "lib/net7.0/TwitchLib.EventSub.Core.dll", + "lib/net7.0/TwitchLib.EventSub.Core.xml", + "lib/net8.0/TwitchLib.EventSub.Core.dll", + "lib/net8.0/TwitchLib.EventSub.Core.xml", + "lib/netstandard2.0/TwitchLib.EventSub.Core.dll", + "lib/netstandard2.0/TwitchLib.EventSub.Core.xml", + "lib/netstandard2.1/TwitchLib.EventSub.Core.dll", + "lib/netstandard2.1/TwitchLib.EventSub.Core.xml", + "twitchlib.eventsub.core.2.5.1.nupkg.sha512", + "twitchlib.eventsub.core.nuspec" + ] + }, + "TwitchLib.PubSub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5": { + "sha512": "su8CMpXYxgBb9ZKdEXJ87+Tj33WWoPsY18AWU6aemqEJg+JIi0jP+SVhobre366hv431exHptubvshmisYIGAQ==", + "type": "package", + "path": "twitchlib.pubsub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/TwitchLib.PubSub.dll", + "lib/netstandard2.0/TwitchLib.PubSub.xml", + "twitchlib.pubsub.4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5.nupkg.sha512", + "twitchlib.pubsub.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Microsoft.AspNet.WebApi.Client >= 6.0.0", + "NAudio >= 2.2.1", + "NAudio.Core >= 2.2.1", + "NAudio.Extras >= 2.2.1", + "System.Threading.Tasks.Dataflow >= 8.0.0", + "TwitchLib.Api >= 3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core >= 3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Enums >= 3.10.0-preview-e47ba7f", + "TwitchLib.Api.Core.Interfaces >= 3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix >= 3.10.0-preview-e47ba7f", + "TwitchLib.Api.Helix.Models >= 3.10.0-preview-e47ba7f", + "TwitchLib.Client >= 4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Enums >= 4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Client.Models >= 4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8", + "TwitchLib.Communication >= 2.0.0", + "TwitchLib.EventSub.Core >= 2.5.1", + "TwitchLib.PubSub >= 4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5" + ] + }, + "packageFolders": { + "/root/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/root/Projects/TwitchChatTTS/TwitchChatTTS.csproj", + "projectName": "TwitchChatTTS", + "projectPath": "/root/Projects/TwitchChatTTS/TwitchChatTTS.csproj", + "packagesPath": "/root/.nuget/packages/", + "outputPath": "/root/Projects/TwitchChatTTS/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/root/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Microsoft.AspNet.WebApi.Client": { + "target": "Package", + "version": "[6.0.0, )" + }, + "NAudio": { + "target": "Package", + "version": "[2.2.1, )" + }, + "NAudio.Core": { + "target": "Package", + "version": "[2.2.1, )" + }, + "NAudio.Extras": { + "target": "Package", + "version": "[2.2.1, )" + }, + "System.Threading.Tasks.Dataflow": { + "target": "Package", + "version": "[8.0.0, )" + }, + "TwitchLib.Api": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Core": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Core.Enums": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Core.Interfaces": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Helix": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Api.Helix.Models": { + "target": "Package", + "version": "[3.10.0-preview-e47ba7f, )" + }, + "TwitchLib.Client": { + "target": "Package", + "version": "[4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8, )" + }, + "TwitchLib.Client.Enums": { + "target": "Package", + "version": "[4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8, )" + }, + "TwitchLib.Client.Models": { + "target": "Package", + "version": "[4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8, )" + }, + "TwitchLib.Communication": { + "target": "Package", + "version": "[2.0.0, )" + }, + "TwitchLib.EventSub.Core": { + "target": "Package", + "version": "[2.5.1, )" + }, + "TwitchLib.PubSub": { + "target": "Package", + "version": "[4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.win-x64", + "version": "[6.0.25, 6.0.25]" + }, + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[6.0.25, 6.0.25]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.win-x64", + "version": "[6.0.25, 6.0.25]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/6.0.125/RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/TwitchChatTTS/obj/project.nuget.cache b/TwitchChatTTS/obj/project.nuget.cache new file mode 100644 index 0000000..25b4824 --- /dev/null +++ b/TwitchChatTTS/obj/project.nuget.cache @@ -0,0 +1,115 @@ +{ + "version": 2, + "dgSpecHash": "E7bZS5ng3GWpvqyqydU9SU+2mO9LXmtjOK2m+n5adq0P3uUtnK3gEaL3OdexQsTrffhtQcKJJ8Rz2JaSI+v5Tw==", + "success": true, + "projectFilePath": "/root/Projects/TwitchChatTTS/TwitchChatTTS.csproj", + "expectedPackageFiles": [ + "/root/.nuget/packages/microsoft.aspnet.webapi.client/6.0.0/microsoft.aspnet.webapi.client.6.0.0.nupkg.sha512", + "/root/.nuget/packages/microsoft.extensions.logging.abstractions/7.0.0/microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "/root/.nuget/packages/microsoft.netcore.platforms/7.0.4/microsoft.netcore.platforms.7.0.4.nupkg.sha512", + "/root/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/root/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/microsoft.win32.registry/4.7.0/microsoft.win32.registry.4.7.0.nupkg.sha512", + "/root/.nuget/packages/naudio/2.2.1/naudio.2.2.1.nupkg.sha512", + "/root/.nuget/packages/naudio.asio/2.2.1/naudio.asio.2.2.1.nupkg.sha512", + "/root/.nuget/packages/naudio.core/2.2.1/naudio.core.2.2.1.nupkg.sha512", + "/root/.nuget/packages/naudio.extras/2.2.1/naudio.extras.2.2.1.nupkg.sha512", + "/root/.nuget/packages/naudio.midi/2.2.1/naudio.midi.2.2.1.nupkg.sha512", + "/root/.nuget/packages/naudio.wasapi/2.2.1/naudio.wasapi.2.2.1.nupkg.sha512", + "/root/.nuget/packages/naudio.winmm/2.2.1/naudio.winmm.2.2.1.nupkg.sha512", + "/root/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/root/.nuget/packages/newtonsoft.json.bson/1.0.2/newtonsoft.json.bson.1.0.2.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.collections/4.3.0/runtime.any.system.collections.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.diagnostics.tracing/4.3.0/runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.globalization/4.3.0/runtime.any.system.globalization.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.globalization.calendars/4.3.0/runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.io/4.3.0/runtime.any.system.io.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.reflection/4.3.0/runtime.any.system.reflection.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.reflection.primitives/4.3.0/runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.resources.resourcemanager/4.3.0/runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.runtime/4.3.0/runtime.any.system.runtime.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.runtime.handles/4.3.0/runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.runtime.interopservices/4.3.0/runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.text.encoding/4.3.0/runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.text.encoding.extensions/4.3.0/runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.any.system.threading.tasks/4.3.0/runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "/root/.nuget/packages/runtime.win.microsoft.win32.primitives/4.3.0/runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.win.system.diagnostics.debug/4.3.0/runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.win.system.io.filesystem/4.3.0/runtime.win.system.io.filesystem.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.win.system.net.primitives/4.3.0/runtime.win.system.net.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/runtime.win.system.runtime.extensions/4.3.0/runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.buffers/4.3.0/system.buffers.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.diagnostics.diagnosticsource/4.3.0/system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512", + "/root/.nuget/packages/system.net.http/4.3.4/system.net.http.4.3.4.nupkg.sha512", + "/root/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.private.uri/4.3.0/system.private.uri.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.accesscontrol/4.7.0/system.security.accesscontrol.4.7.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.security.principal.windows/4.7.0/system.security.principal.windows.4.7.0.nupkg.sha512", + "/root/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.threading.overlapped/4.3.0/system.threading.overlapped.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/root/.nuget/packages/system.threading.tasks.dataflow/8.0.0/system.threading.tasks.dataflow.8.0.0.nupkg.sha512", + "/root/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "/root/.nuget/packages/twitchlib.api/3.10.0-preview-e47ba7f/twitchlib.api.3.10.0-preview-e47ba7f.nupkg.sha512", + "/root/.nuget/packages/twitchlib.api.core/3.10.0-preview-e47ba7f/twitchlib.api.core.3.10.0-preview-e47ba7f.nupkg.sha512", + "/root/.nuget/packages/twitchlib.api.core.enums/3.10.0-preview-e47ba7f/twitchlib.api.core.enums.3.10.0-preview-e47ba7f.nupkg.sha512", + "/root/.nuget/packages/twitchlib.api.core.interfaces/3.10.0-preview-e47ba7f/twitchlib.api.core.interfaces.3.10.0-preview-e47ba7f.nupkg.sha512", + "/root/.nuget/packages/twitchlib.api.core.models/3.10.0-preview-e47ba7f/twitchlib.api.core.models.3.10.0-preview-e47ba7f.nupkg.sha512", + "/root/.nuget/packages/twitchlib.api.helix/3.10.0-preview-e47ba7f/twitchlib.api.helix.3.10.0-preview-e47ba7f.nupkg.sha512", + "/root/.nuget/packages/twitchlib.api.helix.models/3.10.0-preview-e47ba7f/twitchlib.api.helix.models.3.10.0-preview-e47ba7f.nupkg.sha512", + "/root/.nuget/packages/twitchlib.client/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8/twitchlib.client.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512", + "/root/.nuget/packages/twitchlib.client.enums/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8/twitchlib.client.enums.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512", + "/root/.nuget/packages/twitchlib.client.models/4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8/twitchlib.client.models.4.0.0-preview-fd131763416cb9f1a31705ca609566d7e7e7fac8.nupkg.sha512", + "/root/.nuget/packages/twitchlib.communication/2.0.0/twitchlib.communication.2.0.0.nupkg.sha512", + "/root/.nuget/packages/twitchlib.eventsub.core/2.5.1/twitchlib.eventsub.core.2.5.1.nupkg.sha512", + "/root/.nuget/packages/twitchlib.pubsub/4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5/twitchlib.pubsub.4.0.0-preview-f833b1ab1ebef37618dba3fbb1e0a661ff183af5.nupkg.sha512", + "/root/.nuget/packages/microsoft.netcore.app.runtime.win-x64/6.0.25/microsoft.netcore.app.runtime.win-x64.6.0.25.nupkg.sha512", + "/root/.nuget/packages/microsoft.aspnetcore.app.runtime.win-x64/6.0.25/microsoft.aspnetcore.app.runtime.win-x64.6.0.25.nupkg.sha512", + "/root/.nuget/packages/microsoft.netcore.app.host.win-x64/6.0.25/microsoft.netcore.app.host.win-x64.6.0.25.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file