diff --git a/01-Introduction/Alarms.cs b/01-Introduction/Alarms.cs index 569c57a4..bb8a79b8 100644 --- a/01-Introduction/Alarms.cs +++ b/01-Introduction/Alarms.cs @@ -10,7 +10,21 @@ public class Alarms { public int countAlarms(int[] volume, int S) { - return default(int); + int count=0; + int j=0; + while (S>0) + { + S = S - volume[0]; + var tmp = volume[0]; + for(var i = 1; i < volume.Length; i++) + { + volume[i - 1] = volume[i]; + } + volume[volume.Length - 1] = tmp; + count++; + } + + return count; } #region Testing code @@ -56,7 +70,7 @@ private static Boolean KawigiEdit_RunTest(int testNum, int[] p0, int p1, Boolean Console.WriteLine(""); return res; } - public static void Run() { + public static void Main() { Boolean all_right; all_right = true; diff --git a/01-Introduction/Ameba.cs b/01-Introduction/Ameba.cs index 05d77ead..57d7ebe6 100644 --- a/01-Introduction/Ameba.cs +++ b/01-Introduction/Ameba.cs @@ -10,7 +10,18 @@ public class Ameba { public int simulate(int[] X, int A) { - return default(int); + int i=0; + int len = X.Length; + while (i= board.Length || nextCol < 0 || nextCol >= board[0].Length) { +return "Dead"; +} + +// If not out of bounds, check if the next position is not an obstacle to move the robot +if (board[nextRow][nextCol] != '#') { +robotRow = nextRow; +robotCol = nextCol; +} +} + +return "Alive"; + + } #region Testing code @@ -71,7 +116,7 @@ private static Boolean KawigiEdit_RunTest(int testNum, string[] p0, string p1, B return res; } - public static void Run() + public static void Main() { Boolean all_right; all_right = true; @@ -133,4 +178,4 @@ public static void Run() } #endregion -} \ No newline at end of file +} diff --git a/03-LINQ/GoldSavings.App/GoldSavings.App.csproj b/03-LINQ/GoldSavings.App/GoldSavings.App.csproj index 62429232..9f1c41a1 100644 --- a/03-LINQ/GoldSavings.App/GoldSavings.App.csproj +++ b/03-LINQ/GoldSavings.App/GoldSavings.App.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net7.0 GoldSavings.App enable enable diff --git a/03-LINQ/GoldSavings.App/Program.cs b/03-LINQ/GoldSavings.App/Program.cs index b07ca14c..425acce8 100644 --- a/03-LINQ/GoldSavings.App/Program.cs +++ b/03-LINQ/GoldSavings.App/Program.cs @@ -1,6 +1,7 @@ using GoldSavings.App.Model; using GoldSavings.App.Client; namespace GoldSavings.App; +using System.Xml.Serialization; class Program { @@ -19,5 +20,202 @@ static void Main(string[] args) Console.WriteLine($"The price for {goldPrice.Date} is {goldPrice.Price}"); } + + //Zadanie 1.3 + // Pobierz ceny złota za ostatni rok + DateTime lastYear = DateTime.Today.AddYears(-1); + DateTime today = DateTime.Today; + List lastYearPrices = goldClient.GetGoldPrices(lastYear, today).GetAwaiter().GetResult(); + + // Znajdź TOP 3 najwyższe i najniższe ceny + var top3HighestPrices = lastYearPrices.OrderByDescending(p => p.Price).Take(3).ToList(); + var top3LowestPrices = lastYearPrices.OrderBy(p => p.Price).Take(3).ToList(); + + var top3HighestPricesQuery = (from p in lastYearPrices orderby p.Price descending select p).Take(3).ToList(); + var top3LowestPricesQuery = (from p in lastYearPrices orderby p.Price ascending select p).Take(3).ToList(); + + Console.WriteLine("TOP 3 highest gold prices in the last year:"); + foreach (var price in top3HighestPrices) + { + Console.WriteLine($"Date: {price.Date}, Price: {price.Price}"); + } + foreach (var price in top3HighestPricesQuery) + { + Console.WriteLine($"Date: {price.Date}, Price: {price.Price}"); + } + + Console.WriteLine("TOP 3 lowest gold prices in the last year:"); + foreach (var price in top3LowestPrices) + { + Console.WriteLine($"Date: {price.Date}, Price: {price.Price}"); + } + foreach (var price in top3LowestPricesQuery) + { + Console.WriteLine($"Date: {price.Date}, Price: {price.Price}"); + } + + + //zadanie 1.4 + // Pobierz ceny złota w styczniu 2020 + DateTime startJanuary2020 = new DateTime(2020, 01, 01); + DateTime endJanuary2020 = new DateTime(2020, 01, 31); + List january2020Prices = goldClient.GetGoldPrices(startJanuary2020, endJanuary2020).GetAwaiter().GetResult(); + + // Oblicz średnią cenę zakupu w styczniu 2020 + double averageBuyPrice = january2020Prices.Average(p => p.Price); + + List allPricesAfterJanuary2020 = new List(); + + DateTime startPeriod = new DateTime(2020, 02, 01); // Start od lutego 2020 + DateTime endPeriod = DateTime.Today; // Do dzisiaj + DateTime tempEnd; + + while (startPeriod < endPeriod) + { + tempEnd = startPeriod.AddYears(1) > endPeriod ? endPeriod : startPeriod.AddYears(1).AddDays(-1); + List yearlyPrices = goldClient.GetGoldPrices(startPeriod, tempEnd).GetAwaiter().GetResult(); + allPricesAfterJanuary2020.AddRange(yearlyPrices); + startPeriod = tempEnd.AddDays(1); + } + + var profitableDaysQuery = (from p in allPricesAfterJanuary2020 where ((p.Price - averageBuyPrice) / averageBuyPrice * 100) > 5 select p.Date).ToList(); + + + // Sprawdź, kiedy zysk przekroczył 5% + List profitableDays = new List(); + foreach (var price in allPricesAfterJanuary2020) + { + double profit = (price.Price - averageBuyPrice) / averageBuyPrice * 100; // Zysk w procentach + //Console.WriteLine($"Date: {price.Date.ToShortDateString()}, Profit: {profit}%"); // Dodane do debugowania + if (profit > 5) // 5% zysku + { + profitableDays.Add(price.Date); + } + + } + + // Wyświetl dni, w których zysk przekroczył 5% + Console.WriteLine("Days when the profit exceeded 5%:"); + //foreach (var day in profitableDays) + //{ + //Console.WriteLine(day.ToShortDateString()); + //} + + + //zadanie 1.5 + + List combinedPrices = new List(); + // Pobieranie danych za każdy rok oddzielnie i łączenie ich w jedną listę + for (int year = 2019; year <= 2022; year++) + { + DateTime startOfYear = new DateTime(year, 01, 01); + DateTime endOfYear = new DateTime(year, 12, 31); + List yearlyPrices = goldClient.GetGoldPrices(startOfYear, endOfYear).GetAwaiter().GetResult(); + combinedPrices.AddRange(yearlyPrices); + } + + // Sortowanie połączonych danych cenowych od najniższej do najwyższej ceny + var sortedPrices = combinedPrices.OrderBy(p => p.Price).ToList(); + + // Wybieranie dat dla cen na pozycjach 11-13 w rankingu + if (sortedPrices.Count >= 13) // Upewnienie się, że mamy wystarczającą ilość danych + { + var secondTenDates = sortedPrices.Skip(10).Take(3).Select(p => p.Date).ToList(); + var secondTenDatesQuery = (from p in combinedPrices + orderby p.Price + select p.Date) + .Skip(10) + .Take(3) + .ToList(); + + Console.WriteLine("Dates that open the second ten of the gold price ranking from 2019 to 2022:"); + foreach (var date in secondTenDates) + { + Console.WriteLine(date.ToShortDateString()); + } + foreach (var date in secondTenDatesQuery) + { + Console.WriteLine(date.ToShortDateString()); + } + } + else + { + Console.WriteLine("Not enough data to determine the second ten of the gold price ranking."); + } + + + //Zadanie 1.6 + // Lista lat, dla których chcemy obliczyć średnie ceny + int[] years = new int[] { 2021, 2022, 2023 }; + foreach (int year in years) + { + DateTime startOfYear = new DateTime(year, 01, 01); + DateTime endOfYear = new DateTime(year, 12, 31); + + // Pobieranie danych cenowych za dany rok + List yearlyPrices = goldClient.GetGoldPrices(startOfYear, endOfYear).GetAwaiter().GetResult(); + + // Obliczanie średniej ceny złota za dany rok, jeśli są dostępne jakiekolwiek dane + if (yearlyPrices.Count > 0) + { + double averagePrice = yearlyPrices.Average(p => p.Price); + Console.WriteLine($"The average gold price in {year} was: {averagePrice}"); + double averagePriceQuery = (from p in yearlyPrices select p.Price).Average(); + Console.WriteLine($"[Query] The average gold price in {year} was: {averagePriceQuery}"); + } + else + { + Console.WriteLine($"No data available for the year {year}."); + } + } + + + //Zadanie 1.7 + // Znajdowanie najlepszego dnia na zakup + var bestBuy = combinedPrices.OrderBy(p => p.Price).FirstOrDefault(); + + // Znajdowanie najlepszego dnia na sprzedaż po dacie zakupu + var bestSell = combinedPrices.Where(p => p.Date > bestBuy.Date).OrderByDescending(p => p.Price).FirstOrDefault(); + + // Obliczanie zwrotu z inwestycji (ROI), tylko jeśli znaleziono obie daty + if (bestBuy != null && bestSell != null) + { + double roi = (bestSell.Price - bestBuy.Price) / bestBuy.Price * 100; + + // Wyświetlanie wyników + Console.WriteLine($"Najlepszy moment na zakup: {bestBuy.Date.ToShortDateString()}, cena: {bestBuy.Price}"); + Console.WriteLine($"Najlepszy moment na sprzedaż: {bestSell.Date.ToShortDateString()}, cena: {bestSell.Price}"); + Console.WriteLine($"Zwrot z inwestycji: {roi}%"); + } + else + { + Console.WriteLine("Nie można znaleźć optymalnych dat zakupu i sprzedaży w dostępnych danych."); + } + + //Zadanie 1.8 + string filePath = @"prices.xml"; + SavePricesToXml(combinedPrices, filePath); + + //Zadanie 1.9 + List prices = LoadPricesFromXml(filePath); + } + + //Zadanie 1.8 + public static void SavePricesToXml(List prices, string filePath) + { + // Tworzenie XmlSerializer do serializacji obiektów GoldPrice + XmlSerializer serializer = new XmlSerializer(typeof(List)); + + // Utworzenie strumienia plikowego z użyciem ścieżki filePath + using (FileStream fileStream = new FileStream(filePath, FileMode.Create)) + { + // Serializacja listy prices do pliku XML + serializer.Serialize(fileStream, prices); + } + } + + //Zadanie 1.9 + public static List LoadPricesFromXml(string filePath) => + (List)new XmlSerializer(typeof(List)).Deserialize(new FileStream(filePath, FileMode.Open, FileAccess.Read)); } diff --git a/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.deps.json b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.deps.json new file mode 100644 index 00000000..297c7619 --- /dev/null +++ b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "GoldSavings.App/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "GoldSavings.App.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + } + } + }, + "libraries": { + "GoldSavings.App/1.0.0": { + "type": "project", + "serviceable": false, + "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" + } + } +} \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.dll new file mode 100644 index 00000000..acfe2f99 Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.exe b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.exe new file mode 100644 index 00000000..e40e0101 Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.exe differ diff --git a/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.pdb b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.pdb new file mode 100644 index 00000000..ef05700a Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.pdb differ diff --git a/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.runtimeconfig.json b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.runtimeconfig.json new file mode 100644 index 00000000..184be8b5 --- /dev/null +++ b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/GoldSavings.App.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/bin/Debug/net7.0/Newtonsoft.Json.dll b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/Newtonsoft.Json.dll new file mode 100644 index 00000000..d035c38b Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Debug/net7.0/Newtonsoft.Json.dll differ diff --git a/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.deps.json b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.deps.json new file mode 100644 index 00000000..297c7619 --- /dev/null +++ b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "GoldSavings.App/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "GoldSavings.App.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + } + } + }, + "libraries": { + "GoldSavings.App/1.0.0": { + "type": "project", + "serviceable": false, + "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" + } + } +} \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.dll new file mode 100644 index 00000000..c06bae89 Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.exe b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.exe new file mode 100644 index 00000000..e40e0101 Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.exe differ diff --git a/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.pdb b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.pdb new file mode 100644 index 00000000..4445d5c5 Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.pdb differ diff --git a/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.runtimeconfig.json b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.runtimeconfig.json new file mode 100644 index 00000000..398903e0 --- /dev/null +++ b/03-LINQ/GoldSavings.App/bin/Release/net7.0/GoldSavings.App.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + }, + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/bin/Release/net7.0/Newtonsoft.Json.dll b/03-LINQ/GoldSavings.App/bin/Release/net7.0/Newtonsoft.Json.dll new file mode 100644 index 00000000..d035c38b Binary files /dev/null and b/03-LINQ/GoldSavings.App/bin/Release/net7.0/Newtonsoft.Json.dll differ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 00000000..4257f4bc --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.AssemblyInfo.cs b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.AssemblyInfo.cs new file mode 100644 index 00000000..eabb9a6f --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.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("GoldSavings.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("GoldSavings.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("GoldSavings.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Wygenerowane przez klasę WriteCodeFragment programu MSBuild. + diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.AssemblyInfoInputs.cache b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.AssemblyInfoInputs.cache new file mode 100644 index 00000000..58f4371d --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a5dfd0d305b20995633e4cccf8b6b69afe745a18 diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 00000000..f2dff43a --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GoldSavings.App +build_property.ProjectDir = C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.GlobalUsings.g.cs b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.GlobalUsings.g.cs new file mode 100644 index 00000000..8578f3d0 --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.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/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.assets.cache b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.assets.cache new file mode 100644 index 00000000..05ce5a13 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.assets.cache differ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.AssemblyReference.cache b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.AssemblyReference.cache new file mode 100644 index 00000000..6a5a59b1 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.AssemblyReference.cache differ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.CopyComplete b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.CopyComplete new file mode 100644 index 00000000..e69de29b diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.CoreCompileInputs.cache b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.CoreCompileInputs.cache new file mode 100644 index 00000000..6156172e --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +70c4d6b2dd5efe5df0b4d997c6948a276cce4012 diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.FileListAbsolute.txt b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.FileListAbsolute.txt new file mode 100644 index 00000000..feeec5e2 --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Debug\net7.0\GoldSavings.App.exe +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Debug\net7.0\GoldSavings.App.deps.json +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Debug\net7.0\GoldSavings.App.runtimeconfig.json +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Debug\net7.0\GoldSavings.App.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Debug\net7.0\GoldSavings.App.pdb +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Debug\net7.0\Newtonsoft.Json.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.csproj.AssemblyReference.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.AssemblyInfoInputs.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.AssemblyInfo.cs +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.csproj.CoreCompileInputs.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.csproj.CopyComplete +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\refint\GoldSavings.App.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.pdb +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\GoldSavings.App.genruntimeconfig.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Debug\net7.0\ref\GoldSavings.App.dll diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.dll new file mode 100644 index 00000000..acfe2f99 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.genruntimeconfig.cache b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.genruntimeconfig.cache new file mode 100644 index 00000000..bdf7062c --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.genruntimeconfig.cache @@ -0,0 +1 @@ +1a5ff76052112157fa307c59d658382902198a56 diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.pdb b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.pdb new file mode 100644 index 00000000..ef05700a Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/GoldSavings.App.pdb differ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/apphost.exe b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/apphost.exe new file mode 100644 index 00000000..e40e0101 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/apphost.exe differ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/ref/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/ref/GoldSavings.App.dll new file mode 100644 index 00000000..242f3cc6 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/ref/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/obj/Debug/net7.0/refint/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/refint/GoldSavings.App.dll new file mode 100644 index 00000000..242f3cc6 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Debug/net7.0/refint/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.dgspec.json b/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.dgspec.json new file mode 100644 index 00000000..61672f0c --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.dgspec.json @@ -0,0 +1,67 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\GoldSavings.App.csproj": {} + }, + "projects": { + "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\GoldSavings.App.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\GoldSavings.App.csproj", + "projectName": "GoldSavings.App", + "projectPath": "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\GoldSavings.App.csproj", + "packagesPath": "C:\\Users\\Agawu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Agawu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.g.props b/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.g.props new file mode 100644 index 00000000..05d8eeae --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Agawu\.nuget\packages\ + PackageReference + 6.6.0 + + + + + \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.g.targets b/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.g.targets new file mode 100644 index 00000000..3dc06ef3 --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/GoldSavings.App.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/03-LINQ/GoldSavings.App/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 00000000..4257f4bc --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.AssemblyInfo.cs b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.AssemblyInfo.cs new file mode 100644 index 00000000..88077d3d --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.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("GoldSavings.App")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("GoldSavings.App")] +[assembly: System.Reflection.AssemblyTitleAttribute("GoldSavings.App")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Wygenerowane przez klasę WriteCodeFragment programu MSBuild. + diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.AssemblyInfoInputs.cache b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.AssemblyInfoInputs.cache new file mode 100644 index 00000000..fc0ea0e4 --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cac29ff5d0a3ad0332796e11c5c37b17de29f496 diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 00000000..f2dff43a --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GoldSavings.App +build_property.ProjectDir = C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\ diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.GlobalUsings.g.cs b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.GlobalUsings.g.cs new file mode 100644 index 00000000..8578f3d0 --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.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/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.assets.cache b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.assets.cache new file mode 100644 index 00000000..9f0c13f8 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.assets.cache differ diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.AssemblyReference.cache b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.AssemblyReference.cache new file mode 100644 index 00000000..6a5a59b1 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.AssemblyReference.cache differ diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.CopyComplete b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.CopyComplete new file mode 100644 index 00000000..e69de29b diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.CoreCompileInputs.cache b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.CoreCompileInputs.cache new file mode 100644 index 00000000..6e002bbf --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9eb6cd6bfee9fc0aa148f8b583099a322512eb80 diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.FileListAbsolute.txt b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.FileListAbsolute.txt new file mode 100644 index 00000000..2a594d4c --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Release\net7.0\GoldSavings.App.exe +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Release\net7.0\GoldSavings.App.deps.json +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Release\net7.0\GoldSavings.App.runtimeconfig.json +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Release\net7.0\GoldSavings.App.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Release\net7.0\GoldSavings.App.pdb +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\bin\Release\net7.0\Newtonsoft.Json.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.csproj.AssemblyReference.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.AssemblyInfoInputs.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.AssemblyInfo.cs +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.csproj.CoreCompileInputs.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.csproj.CopyComplete +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\refint\GoldSavings.App.dll +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.pdb +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\GoldSavings.App.genruntimeconfig.cache +C:\Users\Agawu\OneDrive\Pulpit\Studia\Semestr VIII\tsd2024\03-LINQ\GoldSavings.App\obj\Release\net7.0\ref\GoldSavings.App.dll diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.dll new file mode 100644 index 00000000..c06bae89 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.genruntimeconfig.cache b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.genruntimeconfig.cache new file mode 100644 index 00000000..023f22bf --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.genruntimeconfig.cache @@ -0,0 +1 @@ +36a6852ee441fd4b5caa3de492afeea2eb067438 diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.pdb b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.pdb new file mode 100644 index 00000000..4445d5c5 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Release/net7.0/GoldSavings.App.pdb differ diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/apphost.exe b/03-LINQ/GoldSavings.App/obj/Release/net7.0/apphost.exe new file mode 100644 index 00000000..e40e0101 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Release/net7.0/apphost.exe differ diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/ref/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/obj/Release/net7.0/ref/GoldSavings.App.dll new file mode 100644 index 00000000..186f2425 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Release/net7.0/ref/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/obj/Release/net7.0/refint/GoldSavings.App.dll b/03-LINQ/GoldSavings.App/obj/Release/net7.0/refint/GoldSavings.App.dll new file mode 100644 index 00000000..186f2425 Binary files /dev/null and b/03-LINQ/GoldSavings.App/obj/Release/net7.0/refint/GoldSavings.App.dll differ diff --git a/03-LINQ/GoldSavings.App/obj/project.assets.json b/03-LINQ/GoldSavings.App/obj/project.assets.json new file mode 100644 index 00000000..440a646f --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/project.assets.json @@ -0,0 +1,119 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "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" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "Newtonsoft.Json >= 13.0.3" + ] + }, + "packageFolders": { + "C:\\Users\\Agawu\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\GoldSavings.App.csproj", + "projectName": "GoldSavings.App", + "projectPath": "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\GoldSavings.App.csproj", + "packagesPath": "C:\\Users\\Agawu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Agawu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.302\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/obj/project.nuget.cache b/03-LINQ/GoldSavings.App/obj/project.nuget.cache new file mode 100644 index 00000000..2c5e3971 --- /dev/null +++ b/03-LINQ/GoldSavings.App/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "RVEpLRKw1Zrqz/MneMhKiUtyDW0jTOPtXvJkk6H3O6gFZX5DbxezQJNpNiaI1Eoy6c8y0izDcB3AeysMYbRiug==", + "success": true, + "projectFilePath": "C:\\Users\\Agawu\\OneDrive\\Pulpit\\Studia\\Semestr VIII\\tsd2024\\03-LINQ\\GoldSavings.App\\GoldSavings.App.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Agawu\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/03-LINQ/GoldSavings.App/prices.xml b/03-LINQ/GoldSavings.App/prices.xml new file mode 100644 index 00000000..7b1b60f7 --- /dev/null +++ b/03-LINQ/GoldSavings.App/prices.xml @@ -0,0 +1,4051 @@ + + + + 2019-01-02T00:00:00 + 154.94 + + + 2019-01-03T00:00:00 + 155.18 + + + 2019-01-04T00:00:00 + 156.94 + + + 2019-01-07T00:00:00 + 155.22 + + + 2019-01-08T00:00:00 + 156.12 + + + 2019-01-09T00:00:00 + 155.34 + + + 2019-01-10T00:00:00 + 155.4 + + + 2019-01-11T00:00:00 + 155.19 + + + 2019-01-14T00:00:00 + 154.53 + + + 2019-01-15T00:00:00 + 155.68 + + + 2019-01-16T00:00:00 + 156.25 + + + 2019-01-17T00:00:00 + 156.31 + + + 2019-01-18T00:00:00 + 156.1 + + + 2019-01-21T00:00:00 + 155.64 + + + 2019-01-22T00:00:00 + 155.31 + + + 2019-01-23T00:00:00 + 155.51 + + + 2019-01-24T00:00:00 + 155.33 + + + 2019-01-25T00:00:00 + 156.18 + + + 2019-01-28T00:00:00 + 157.63 + + + 2019-01-29T00:00:00 + 157.4 + + + 2019-01-30T00:00:00 + 157.91 + + + 2019-01-31T00:00:00 + 158.35 + + + 2019-02-01T00:00:00 + 158.55 + + + 2019-02-04T00:00:00 + 157.91 + + + 2019-02-05T00:00:00 + 157.82 + + + 2019-02-06T00:00:00 + 158.61 + + + 2019-02-07T00:00:00 + 159.12 + + + 2019-02-08T00:00:00 + 159.71 + + + 2019-02-11T00:00:00 + 160.8 + + + 2019-02-12T00:00:00 + 160.4 + + + 2019-02-13T00:00:00 + 161.66 + + + 2019-02-14T00:00:00 + 161.5 + + + 2019-02-15T00:00:00 + 162.38 + + + 2019-02-18T00:00:00 + 162.23 + + + 2019-02-19T00:00:00 + 163.17 + + + 2019-02-20T00:00:00 + 164.32 + + + 2019-02-21T00:00:00 + 165.11 + + + 2019-02-22T00:00:00 + 163.7 + + + 2019-02-25T00:00:00 + 163.41 + + + 2019-02-26T00:00:00 + 163.63 + + + 2019-02-27T00:00:00 + 162.41 + + + 2019-02-28T00:00:00 + 161.13 + + + 2019-03-01T00:00:00 + 160.53 + + + 2019-03-04T00:00:00 + 159.95 + + + 2019-03-05T00:00:00 + 156.61 + + + 2019-03-06T00:00:00 + 156.77 + + + 2019-03-07T00:00:00 + 157.25 + + + 2019-03-08T00:00:00 + 157.17 + + + 2019-03-11T00:00:00 + 160.13 + + + 2019-03-12T00:00:00 + 158.76 + + + 2019-03-13T00:00:00 + 158.94 + + + 2019-03-14T00:00:00 + 160 + + + 2019-03-15T00:00:00 + 158.34 + + + 2019-03-18T00:00:00 + 159.32 + + + 2019-03-19T00:00:00 + 159 + + + 2019-03-20T00:00:00 + 159.01 + + + 2019-03-21T00:00:00 + 158.32 + + + 2019-03-22T00:00:00 + 158.25 + + + 2019-03-25T00:00:00 + 159.99 + + + 2019-03-26T00:00:00 + 161.09 + + + 2019-03-27T00:00:00 + 160.68 + + + 2019-03-28T00:00:00 + 160.49 + + + 2019-03-29T00:00:00 + 159.07 + + + 2019-04-01T00:00:00 + 159.79 + + + 2019-04-02T00:00:00 + 159.15 + + + 2019-04-03T00:00:00 + 159.3 + + + 2019-04-04T00:00:00 + 158.46 + + + 2019-04-05T00:00:00 + 157.64 + + + 2019-04-08T00:00:00 + 158.32 + + + 2019-04-09T00:00:00 + 159.63 + + + 2019-04-10T00:00:00 + 159.19 + + + 2019-04-11T00:00:00 + 159.58 + + + 2019-04-12T00:00:00 + 158.54 + + + 2019-04-15T00:00:00 + 157.7 + + + 2019-04-16T00:00:00 + 156.22 + + + 2019-04-17T00:00:00 + 155.14 + + + 2019-04-18T00:00:00 + 154.97 + + + 2019-04-19T00:00:00 + 155.88 + + + 2019-04-23T00:00:00 + 156.09 + + + 2019-04-24T00:00:00 + 155.6 + + + 2019-04-25T00:00:00 + 156.32 + + + 2019-04-26T00:00:00 + 158.7 + + + 2019-04-29T00:00:00 + 159 + + + 2019-04-30T00:00:00 + 158.26 + + + 2019-05-02T00:00:00 + 158.07 + + + 2019-05-06T00:00:00 + 156.95 + + + 2019-05-07T00:00:00 + 157.5 + + + 2019-05-08T00:00:00 + 157.67 + + + 2019-05-09T00:00:00 + 158.36 + + + 2019-05-10T00:00:00 + 158.83 + + + 2019-05-13T00:00:00 + 158.25 + + + 2019-05-14T00:00:00 + 159.65 + + + 2019-05-15T00:00:00 + 160 + + + 2019-05-16T00:00:00 + 160.63 + + + 2019-05-17T00:00:00 + 158.89 + + + 2019-05-20T00:00:00 + 158.73 + + + 2019-05-21T00:00:00 + 158.22 + + + 2019-05-22T00:00:00 + 157.86 + + + 2019-05-23T00:00:00 + 158.15 + + + 2019-05-24T00:00:00 + 159.7 + + + 2019-05-27T00:00:00 + 158.47 + + + 2019-05-28T00:00:00 + 158.22 + + + 2019-05-29T00:00:00 + 157.77 + + + 2019-05-30T00:00:00 + 158.88 + + + 2019-05-31T00:00:00 + 158.74 + + + 2019-06-03T00:00:00 + 160.34 + + + 2019-06-04T00:00:00 + 162.17 + + + 2019-06-05T00:00:00 + 161.98 + + + 2019-06-06T00:00:00 + 162.79 + + + 2019-06-07T00:00:00 + 163.45 + + + 2019-06-10T00:00:00 + 163.6 + + + 2019-06-11T00:00:00 + 161.25 + + + 2019-06-12T00:00:00 + 160.62 + + + 2019-06-13T00:00:00 + 161.21 + + + 2019-06-14T00:00:00 + 162.08 + + + 2019-06-17T00:00:00 + 163.89 + + + 2019-06-18T00:00:00 + 163.81 + + + 2019-06-19T00:00:00 + 164.31 + + + 2019-06-21T00:00:00 + 168.99 + + + 2019-06-24T00:00:00 + 169.37 + + + 2019-06-25T00:00:00 + 168.83 + + + 2019-06-26T00:00:00 + 172 + + + 2019-06-27T00:00:00 + 169.46 + + + 2019-06-28T00:00:00 + 168.75 + + + 2019-07-01T00:00:00 + 169.13 + + + 2019-07-02T00:00:00 + 167.27 + + + 2019-07-03T00:00:00 + 168.12 + + + 2019-07-04T00:00:00 + 170.87 + + + 2019-07-05T00:00:00 + 171.12 + + + 2019-07-08T00:00:00 + 168.28 + + + 2019-07-09T00:00:00 + 170.39 + + + 2019-07-10T00:00:00 + 170.34 + + + 2019-07-11T00:00:00 + 172.36 + + + 2019-07-12T00:00:00 + 172.07 + + + 2019-07-15T00:00:00 + 171.49 + + + 2019-07-16T00:00:00 + 171.9 + + + 2019-07-17T00:00:00 + 171.65 + + + 2019-07-18T00:00:00 + 172.46 + + + 2019-07-19T00:00:00 + 172.86 + + + 2019-07-22T00:00:00 + 175.23 + + + 2019-07-23T00:00:00 + 173.82 + + + 2019-07-24T00:00:00 + 174.14 + + + 2019-07-25T00:00:00 + 175.39 + + + 2019-07-26T00:00:00 + 173.92 + + + 2019-07-29T00:00:00 + 174.9 + + + 2019-07-30T00:00:00 + 175.42 + + + 2019-07-31T00:00:00 + 176.45 + + + 2019-08-01T00:00:00 + 176.73 + + + 2019-08-02T00:00:00 + 175.76 + + + 2019-08-05T00:00:00 + 179.97 + + + 2019-08-06T00:00:00 + 182.5 + + + 2019-08-07T00:00:00 + 181.29 + + + 2019-08-08T00:00:00 + 186.89 + + + 2019-08-09T00:00:00 + 185.33 + + + 2019-08-12T00:00:00 + 185.92 + + + 2019-08-13T00:00:00 + 187.28 + + + 2019-08-14T00:00:00 + 186.52 + + + 2019-08-16T00:00:00 + 189.51 + + + 2019-08-19T00:00:00 + 191.38 + + + 2019-08-20T00:00:00 + 188.63 + + + 2019-08-21T00:00:00 + 190.62 + + + 2019-08-22T00:00:00 + 189.5 + + + 2019-08-23T00:00:00 + 189.96 + + + 2019-08-26T00:00:00 + 190.36 + + + 2019-08-27T00:00:00 + 190.18 + + + 2019-08-28T00:00:00 + 193.75 + + + 2019-08-29T00:00:00 + 195.45 + + + 2019-08-30T00:00:00 + 196.03 + + + 2019-09-02T00:00:00 + 195.17 + + + 2019-09-03T00:00:00 + 195.35 + + + 2019-09-04T00:00:00 + 197.18 + + + 2019-09-05T00:00:00 + 195.93 + + + 2019-09-06T00:00:00 + 193.35 + + + 2019-09-09T00:00:00 + 192.6 + + + 2019-09-10T00:00:00 + 190.73 + + + 2019-09-11T00:00:00 + 189.18 + + + 2019-09-12T00:00:00 + 188.48 + + + 2019-09-13T00:00:00 + 191.77 + + + 2019-09-16T00:00:00 + 189.07 + + + 2019-09-17T00:00:00 + 188.3 + + + 2019-09-18T00:00:00 + 190.32 + + + 2019-09-19T00:00:00 + 190.08 + + + 2019-09-20T00:00:00 + 189.46 + + + 2019-09-23T00:00:00 + 189.87 + + + 2019-09-24T00:00:00 + 195.68 + + + 2019-09-25T00:00:00 + 194.77 + + + 2019-09-26T00:00:00 + 195.89 + + + 2019-09-27T00:00:00 + 194.17 + + + 2019-09-30T00:00:00 + 192.34 + + + 2019-10-01T00:00:00 + 191 + + + 2019-10-02T00:00:00 + 190.18 + + + 2019-10-03T00:00:00 + 192.69 + + + 2019-10-04T00:00:00 + 193.42 + + + 2019-10-07T00:00:00 + 190.24 + + + 2019-10-08T00:00:00 + 190.66 + + + 2019-10-09T00:00:00 + 190.76 + + + 2019-10-10T00:00:00 + 190.85 + + + 2019-10-11T00:00:00 + 188.52 + + + 2019-10-14T00:00:00 + 186.17 + + + 2019-10-15T00:00:00 + 186.69 + + + 2019-10-16T00:00:00 + 186.31 + + + 2019-10-17T00:00:00 + 185.91 + + + 2019-10-18T00:00:00 + 185.42 + + + 2019-10-21T00:00:00 + 184.47 + + + 2019-10-22T00:00:00 + 183.72 + + + 2019-10-23T00:00:00 + 183.44 + + + 2019-10-24T00:00:00 + 184.86 + + + 2019-10-25T00:00:00 + 185.01 + + + 2019-10-28T00:00:00 + 187.11 + + + 2019-10-29T00:00:00 + 184.86 + + + 2019-10-30T00:00:00 + 184.5 + + + 2019-10-31T00:00:00 + 184.15 + + + 2019-11-04T00:00:00 + 185.18 + + + 2019-11-05T00:00:00 + 184.89 + + + 2019-11-06T00:00:00 + 183.38 + + + 2019-11-07T00:00:00 + 183.94 + + + 2019-11-08T00:00:00 + 183.73 + + + 2019-11-12T00:00:00 + 181.15 + + + 2019-11-13T00:00:00 + 181.06 + + + 2019-11-14T00:00:00 + 182.96 + + + 2019-11-15T00:00:00 + 183.94 + + + 2019-11-18T00:00:00 + 183.21 + + + 2019-11-19T00:00:00 + 182.94 + + + 2019-11-20T00:00:00 + 183.11 + + + 2019-11-21T00:00:00 + 183.56 + + + 2019-11-22T00:00:00 + 182.72 + + + 2019-11-25T00:00:00 + 182.92 + + + 2019-11-26T00:00:00 + 183.04 + + + 2019-11-27T00:00:00 + 182.59 + + + 2019-11-28T00:00:00 + 183.08 + + + 2019-11-29T00:00:00 + 183.58 + + + 2019-12-02T00:00:00 + 184.46 + + + 2019-12-03T00:00:00 + 183.44 + + + 2019-12-04T00:00:00 + 183.85 + + + 2019-12-05T00:00:00 + 183.3 + + + 2019-12-06T00:00:00 + 183 + + + 2019-12-09T00:00:00 + 180.68 + + + 2019-12-10T00:00:00 + 181.91 + + + 2019-12-11T00:00:00 + 182.33 + + + 2019-12-12T00:00:00 + 182.32 + + + 2019-12-13T00:00:00 + 181.71 + + + 2019-12-16T00:00:00 + 180.27 + + + 2019-12-17T00:00:00 + 182.05 + + + 2019-12-18T00:00:00 + 181.31 + + + 2019-12-19T00:00:00 + 181.51 + + + 2019-12-20T00:00:00 + 181.76 + + + 2019-12-23T00:00:00 + 182.17 + + + 2019-12-24T00:00:00 + 182.95 + + + 2019-12-27T00:00:00 + 184.47 + + + 2019-12-30T00:00:00 + 185.97 + + + 2019-12-31T00:00:00 + 185.19 + + + 2020-01-02T00:00:00 + 185.97 + + + 2020-01-03T00:00:00 + 186.58 + + + 2020-01-07T00:00:00 + 193.28 + + + 2020-01-08T00:00:00 + 190.86 + + + 2020-01-09T00:00:00 + 192.67 + + + 2020-01-10T00:00:00 + 190.72 + + + 2020-01-13T00:00:00 + 191.17 + + + 2020-01-14T00:00:00 + 189.86 + + + 2020-01-15T00:00:00 + 188.88 + + + 2020-01-16T00:00:00 + 189.2 + + + 2020-01-17T00:00:00 + 189.76 + + + 2020-01-20T00:00:00 + 190.57 + + + 2020-01-21T00:00:00 + 192 + + + 2020-01-22T00:00:00 + 190.96 + + + 2020-01-23T00:00:00 + 191.24 + + + 2020-01-24T00:00:00 + 192.5 + + + 2020-01-27T00:00:00 + 193.49 + + + 2020-01-28T00:00:00 + 196.72 + + + 2020-01-29T00:00:00 + 196.59 + + + 2020-01-30T00:00:00 + 196.65 + + + 2020-01-31T00:00:00 + 197.16 + + + 2020-02-03T00:00:00 + 198.62 + + + 2020-02-04T00:00:00 + 196.77 + + + 2020-02-05T00:00:00 + 194.25 + + + 2020-02-06T00:00:00 + 193.04 + + + 2020-02-07T00:00:00 + 194.37 + + + 2020-02-10T00:00:00 + 196.92 + + + 2020-02-11T00:00:00 + 197.24 + + + 2020-02-12T00:00:00 + 197.12 + + + 2020-02-13T00:00:00 + 196.1 + + + 2020-02-14T00:00:00 + 198.02 + + + 2020-02-17T00:00:00 + 198.77 + + + 2020-02-18T00:00:00 + 199.16 + + + 2020-02-19T00:00:00 + 201.66 + + + 2020-02-20T00:00:00 + 204.03 + + + 2020-02-21T00:00:00 + 206.23 + + + 2020-02-24T00:00:00 + 209.33 + + + 2020-02-25T00:00:00 + 213.77 + + + 2020-02-26T00:00:00 + 210.24 + + + 2020-02-27T00:00:00 + 208 + + + 2020-02-28T00:00:00 + 209.32 + + + 2020-03-02T00:00:00 + 203.18 + + + 2020-03-03T00:00:00 + 200.7 + + + 2020-03-04T00:00:00 + 201.55 + + + 2020-03-05T00:00:00 + 203.43 + + + 2020-03-06T00:00:00 + 205.32 + + + 2020-03-09T00:00:00 + 206.94 + + + 2020-03-10T00:00:00 + 203.78 + + + 2020-03-11T00:00:00 + 202.58 + + + 2020-03-12T00:00:00 + 203.03 + + + 2020-03-13T00:00:00 + 195.14 + + + 2020-03-16T00:00:00 + 196.31 + + + 2020-03-17T00:00:00 + 187.64 + + + 2020-03-18T00:00:00 + 199.83 + + + 2020-03-19T00:00:00 + 196.29 + + + 2020-03-20T00:00:00 + 201.08 + + + 2020-03-23T00:00:00 + 203.73 + + + 2020-03-24T00:00:00 + 209.18 + + + 2020-03-25T00:00:00 + 219.02 + + + 2020-03-26T00:00:00 + 217.94 + + + 2020-03-27T00:00:00 + 220.69 + + + 2020-03-30T00:00:00 + 213.86 + + + 2020-03-31T00:00:00 + 212.97 + + + 2020-04-01T00:00:00 + 214.5 + + + 2020-04-02T00:00:00 + 211.38 + + + 2020-04-03T00:00:00 + 217.88 + + + 2020-04-06T00:00:00 + 219.87 + + + 2020-04-07T00:00:00 + 223.92 + + + 2020-04-08T00:00:00 + 221.23 + + + 2020-04-09T00:00:00 + 221.46 + + + 2020-04-10T00:00:00 + 225.54 + + + 2020-04-14T00:00:00 + 224.58 + + + 2020-04-15T00:00:00 + 233.33 + + + 2020-04-16T00:00:00 + 229.43 + + + 2020-04-17T00:00:00 + 231.51 + + + 2020-04-20T00:00:00 + 227.94 + + + 2020-04-21T00:00:00 + 225.11 + + + 2020-04-22T00:00:00 + 225.94 + + + 2020-04-23T00:00:00 + 229.55 + + + 2020-04-24T00:00:00 + 234.96 + + + 2020-04-27T00:00:00 + 232.5 + + + 2020-04-28T00:00:00 + 229.91 + + + 2020-04-29T00:00:00 + 227.57 + + + 2020-04-30T00:00:00 + 228.94 + + + 2020-05-04T00:00:00 + 226.25 + + + 2020-05-05T00:00:00 + 228.84 + + + 2020-05-06T00:00:00 + 229.09 + + + 2020-05-07T00:00:00 + 228.52 + + + 2020-05-08T00:00:00 + 231.01 + + + 2020-05-11T00:00:00 + 230.47 + + + 2020-05-12T00:00:00 + 230.64 + + + 2020-05-13T00:00:00 + 230.39 + + + 2020-05-14T00:00:00 + 231.32 + + + 2020-05-15T00:00:00 + 235.31 + + + 2020-05-18T00:00:00 + 235.07 + + + 2020-05-19T00:00:00 + 235.48 + + + 2020-05-20T00:00:00 + 232.71 + + + 2020-05-21T00:00:00 + 233.94 + + + 2020-05-22T00:00:00 + 229.3 + + + 2020-05-25T00:00:00 + 231.34 + + + 2020-05-26T00:00:00 + 230.92 + + + 2020-05-27T00:00:00 + 226.13 + + + 2020-05-28T00:00:00 + 220.67 + + + 2020-05-29T00:00:00 + 222.19 + + + 2020-06-01T00:00:00 + 222.49 + + + 2020-06-02T00:00:00 + 220.78 + + + 2020-06-03T00:00:00 + 220.14 + + + 2020-06-04T00:00:00 + 214.5 + + + 2020-06-05T00:00:00 + 216.31 + + + 2020-06-08T00:00:00 + 212.28 + + + 2020-06-09T00:00:00 + 213.04 + + + 2020-06-10T00:00:00 + 217.35 + + + 2020-06-12T00:00:00 + 218.98 + + + 2020-06-15T00:00:00 + 219.01 + + + 2020-06-16T00:00:00 + 216.73 + + + 2020-06-17T00:00:00 + 215.99 + + + 2020-06-18T00:00:00 + 219.17 + + + 2020-06-19T00:00:00 + 218.85 + + + 2020-06-22T00:00:00 + 221.64 + + + 2020-06-23T00:00:00 + 224.71 + + + 2020-06-24T00:00:00 + 223.56 + + + 2020-06-25T00:00:00 + 223.68 + + + 2020-06-26T00:00:00 + 223.79 + + + 2020-06-29T00:00:00 + 223.06 + + + 2020-06-30T00:00:00 + 225.88 + + + 2020-07-01T00:00:00 + 226.3 + + + 2020-07-02T00:00:00 + 225.43 + + + 2020-07-03T00:00:00 + 225.9 + + + 2020-07-06T00:00:00 + 226.65 + + + 2020-07-07T00:00:00 + 227.55 + + + 2020-07-08T00:00:00 + 228.37 + + + 2020-07-09T00:00:00 + 230.98 + + + 2020-07-10T00:00:00 + 230.05 + + + 2020-07-13T00:00:00 + 229.83 + + + 2020-07-14T00:00:00 + 229.91 + + + 2020-07-15T00:00:00 + 229.23 + + + 2020-07-16T00:00:00 + 226.96 + + + 2020-07-17T00:00:00 + 229.12 + + + 2020-07-20T00:00:00 + 228.16 + + + 2020-07-21T00:00:00 + 227.66 + + + 2020-07-22T00:00:00 + 229.92 + + + 2020-07-23T00:00:00 + 229.51 + + + 2020-07-24T00:00:00 + 229.84 + + + 2020-07-27T00:00:00 + 232.55 + + + 2020-07-28T00:00:00 + 234.4 + + + 2020-07-29T00:00:00 + 234.2 + + + 2020-07-30T00:00:00 + 235.89 + + + 2020-07-31T00:00:00 + 236.33 + + + 2020-08-03T00:00:00 + 234.78 + + + 2020-08-04T00:00:00 + 236.13 + + + 2020-08-05T00:00:00 + 237.6 + + + 2020-08-06T00:00:00 + 244.59 + + + 2020-08-07T00:00:00 + 247.5 + + + 2020-08-10T00:00:00 + 243.58 + + + 2020-08-11T00:00:00 + 245.78 + + + 2020-08-12T00:00:00 + 233.16 + + + 2020-08-13T00:00:00 + 233.27 + + + 2020-08-14T00:00:00 + 232.39 + + + 2020-08-17T00:00:00 + 232.78 + + + 2020-08-18T00:00:00 + 235.17 + + + 2020-08-19T00:00:00 + 238.27 + + + 2020-08-20T00:00:00 + 233.95 + + + 2020-08-21T00:00:00 + 230.27 + + + 2020-08-24T00:00:00 + 229.93 + + + 2020-08-25T00:00:00 + 232.96 + + + 2020-08-26T00:00:00 + 228.25 + + + 2020-08-27T00:00:00 + 231.63 + + + 2020-08-28T00:00:00 + 230.61 + + + 2020-08-31T00:00:00 + 232.73 + + + 2020-09-01T00:00:00 + 232.36 + + + 2020-09-02T00:00:00 + 232.76 + + + 2020-09-03T00:00:00 + 232.82 + + + 2020-09-04T00:00:00 + 232.95 + + + 2020-09-07T00:00:00 + 232.44 + + + 2020-09-08T00:00:00 + 233.53 + + + 2020-09-09T00:00:00 + 231.33 + + + 2020-09-10T00:00:00 + 237.07 + + + 2020-09-11T00:00:00 + 237.77 + + + 2020-09-14T00:00:00 + 235 + + + 2020-09-15T00:00:00 + 236.28 + + + 2020-09-16T00:00:00 + 234.67 + + + 2020-09-17T00:00:00 + 236.68 + + + 2020-09-18T00:00:00 + 234.76 + + + 2020-09-21T00:00:00 + 235.73 + + + 2020-09-22T00:00:00 + 233.05 + + + 2020-09-23T00:00:00 + 235.06 + + + 2020-09-24T00:00:00 + 231.28 + + + 2020-09-25T00:00:00 + 232.45 + + + 2020-09-28T00:00:00 + 233.28 + + + 2020-09-29T00:00:00 + 234.26 + + + 2020-09-30T00:00:00 + 237.6 + + + 2020-10-01T00:00:00 + 234.54 + + + 2020-10-02T00:00:00 + 235.51 + + + 2020-10-05T00:00:00 + 234.76 + + + 2020-10-06T00:00:00 + 234.87 + + + 2020-10-07T00:00:00 + 234.88 + + + 2020-10-08T00:00:00 + 231.01 + + + 2020-10-09T00:00:00 + 231.65 + + + 2020-10-12T00:00:00 + 234.42 + + + 2020-10-13T00:00:00 + 234.81 + + + 2020-10-14T00:00:00 + 230.66 + + + 2020-10-15T00:00:00 + 235.21 + + + 2020-10-16T00:00:00 + 236.65 + + + 2020-10-19T00:00:00 + 238.73 + + + 2020-10-20T00:00:00 + 237.49 + + + 2020-10-21T00:00:00 + 237.6 + + + 2020-10-22T00:00:00 + 239.44 + + + 2020-10-23T00:00:00 + 236.74 + + + 2020-10-26T00:00:00 + 236.63 + + + 2020-10-27T00:00:00 + 236.58 + + + 2020-10-28T00:00:00 + 238.1 + + + 2020-10-29T00:00:00 + 236.35 + + + 2020-10-30T00:00:00 + 237.54 + + + 2020-11-02T00:00:00 + 239.36 + + + 2020-11-03T00:00:00 + 240.35 + + + 2020-11-04T00:00:00 + 239.69 + + + 2020-11-05T00:00:00 + 238.23 + + + 2020-11-06T00:00:00 + 239.02 + + + 2020-11-09T00:00:00 + 238.33 + + + 2020-11-10T00:00:00 + 226.87 + + + 2020-11-12T00:00:00 + 228.36 + + + 2020-11-13T00:00:00 + 229.03 + + + 2020-11-16T00:00:00 + 231.09 + + + 2020-11-17T00:00:00 + 229.03 + + + 2020-11-18T00:00:00 + 230.06 + + + 2020-11-19T00:00:00 + 226.93 + + + 2020-11-20T00:00:00 + 226.17 + + + 2020-11-23T00:00:00 + 227.23 + + + 2020-11-24T00:00:00 + 222.54 + + + 2020-11-25T00:00:00 + 217.7 + + + 2020-11-26T00:00:00 + 218.58 + + + 2020-11-27T00:00:00 + 218.41 + + + 2020-11-30T00:00:00 + 215.19 + + + 2020-12-01T00:00:00 + 211.74 + + + 2020-12-02T00:00:00 + 217.55 + + + 2020-12-03T00:00:00 + 217.04 + + + 2020-12-04T00:00:00 + 217.86 + + + 2020-12-07T00:00:00 + 217.83 + + + 2020-12-08T00:00:00 + 221.27 + + + 2020-12-09T00:00:00 + 221.71 + + + 2020-12-10T00:00:00 + 217.05 + + + 2020-12-11T00:00:00 + 216.88 + + + 2020-12-14T00:00:00 + 216.92 + + + 2020-12-15T00:00:00 + 215.16 + + + 2020-12-16T00:00:00 + 217.5 + + + 2020-12-17T00:00:00 + 216.33 + + + 2020-12-18T00:00:00 + 220.39 + + + 2020-12-21T00:00:00 + 219.53 + + + 2020-12-22T00:00:00 + 224.12 + + + 2020-12-23T00:00:00 + 222.82 + + + 2020-12-24T00:00:00 + 222.55 + + + 2020-12-28T00:00:00 + 222.92 + + + 2020-12-29T00:00:00 + 220.86 + + + 2020-12-30T00:00:00 + 221.62 + + + 2020-12-31T00:00:00 + 223.95 + + + 2021-01-04T00:00:00 + 228.1 + + + 2021-01-05T00:00:00 + 231.16 + + + 2021-01-07T00:00:00 + 230 + + + 2021-01-08T00:00:00 + 226.28 + + + 2021-01-11T00:00:00 + 221.11 + + + 2021-01-12T00:00:00 + 221.35 + + + 2021-01-13T00:00:00 + 220.15 + + + 2021-01-14T00:00:00 + 221.96 + + + 2021-01-15T00:00:00 + 220.99 + + + 2021-01-18T00:00:00 + 221.54 + + + 2021-01-19T00:00:00 + 222.16 + + + 2021-01-20T00:00:00 + 220.72 + + + 2021-01-21T00:00:00 + 222.66 + + + 2021-01-22T00:00:00 + 223.39 + + + 2021-01-25T00:00:00 + 221.93 + + + 2021-01-26T00:00:00 + 223.29 + + + 2021-01-27T00:00:00 + 223.91 + + + 2021-01-28T00:00:00 + 222.23 + + + 2021-01-29T00:00:00 + 223.89 + + + 2021-02-01T00:00:00 + 224.46 + + + 2021-02-02T00:00:00 + 223.56 + + + 2021-02-03T00:00:00 + 219.91 + + + 2021-02-04T00:00:00 + 220.41 + + + 2021-02-05T00:00:00 + 215.38 + + + 2021-02-08T00:00:00 + 217.7 + + + 2021-02-09T00:00:00 + 220.11 + + + 2021-02-10T00:00:00 + 218.69 + + + 2021-02-11T00:00:00 + 219.03 + + + 2021-02-12T00:00:00 + 219.58 + + + 2021-02-15T00:00:00 + 217.17 + + + 2021-02-16T00:00:00 + 215.89 + + + 2021-02-17T00:00:00 + 213.11 + + + 2021-02-18T00:00:00 + 213.47 + + + 2021-02-19T00:00:00 + 211.8 + + + 2021-02-22T00:00:00 + 212.47 + + + 2021-02-23T00:00:00 + 215.79 + + + 2021-02-24T00:00:00 + 214.76 + + + 2021-02-25T00:00:00 + 213.55 + + + 2021-02-26T00:00:00 + 211.39 + + + 2021-03-01T00:00:00 + 208.69 + + + 2021-03-02T00:00:00 + 209.5 + + + 2021-03-03T00:00:00 + 209.29 + + + 2021-03-04T00:00:00 + 206.37 + + + 2021-03-05T00:00:00 + 208.37 + + + 2021-03-08T00:00:00 + 209.4 + + + 2021-03-09T00:00:00 + 209.72 + + + 2021-03-10T00:00:00 + 212.56 + + + 2021-03-11T00:00:00 + 212 + + + 2021-03-12T00:00:00 + 212.26 + + + 2021-03-15T00:00:00 + 211.13 + + + 2021-03-16T00:00:00 + 212.97 + + + 2021-03-17T00:00:00 + 214.86 + + + 2021-03-18T00:00:00 + 215.08 + + + 2021-03-19T00:00:00 + 214.77 + + + 2021-03-22T00:00:00 + 216.83 + + + 2021-03-23T00:00:00 + 216.4 + + + 2021-03-24T00:00:00 + 215.04 + + + 2021-03-25T00:00:00 + 217.54 + + + 2021-03-26T00:00:00 + 219.27 + + + 2021-03-29T00:00:00 + 218.86 + + + 2021-03-30T00:00:00 + 217.04 + + + 2021-03-31T00:00:00 + 214.42 + + + 2021-04-01T00:00:00 + 215.72 + + + 2021-04-02T00:00:00 + 218.79 + + + 2021-04-06T00:00:00 + 216.33 + + + 2021-04-07T00:00:00 + 218.6 + + + 2021-04-08T00:00:00 + 215.76 + + + 2021-04-09T00:00:00 + 216.53 + + + 2021-04-12T00:00:00 + 213.89 + + + 2021-04-13T00:00:00 + 212.5 + + + 2021-04-14T00:00:00 + 215.48 + + + 2021-04-15T00:00:00 + 212.4 + + + 2021-04-16T00:00:00 + 214.78 + + + 2021-04-19T00:00:00 + 216.66 + + + 2021-04-20T00:00:00 + 215.74 + + + 2021-04-21T00:00:00 + 215.7 + + + 2021-04-22T00:00:00 + 219.39 + + + 2021-04-23T00:00:00 + 217.76 + + + 2021-04-26T00:00:00 + 216.87 + + + 2021-04-27T00:00:00 + 214.72 + + + 2021-04-28T00:00:00 + 216.97 + + + 2021-04-29T00:00:00 + 216.18 + + + 2021-04-30T00:00:00 + 214.13 + + + 2021-05-04T00:00:00 + 214.51 + + + 2021-05-05T00:00:00 + 219.29 + + + 2021-05-06T00:00:00 + 218.52 + + + 2021-05-07T00:00:00 + 221.92 + + + 2021-05-10T00:00:00 + 223.57 + + + 2021-05-11T00:00:00 + 221.85 + + + 2021-05-12T00:00:00 + 220.62 + + + 2021-05-13T00:00:00 + 220.47 + + + 2021-05-14T00:00:00 + 220.66 + + + 2021-05-17T00:00:00 + 220.88 + + + 2021-05-18T00:00:00 + 222.24 + + + 2021-05-19T00:00:00 + 222.37 + + + 2021-05-20T00:00:00 + 225.19 + + + 2021-05-21T00:00:00 + 223.91 + + + 2021-05-24T00:00:00 + 221.81 + + + 2021-05-25T00:00:00 + 222.43 + + + 2021-05-26T00:00:00 + 221.74 + + + 2021-05-27T00:00:00 + 224.11 + + + 2021-05-28T00:00:00 + 224.57 + + + 2021-05-31T00:00:00 + 224.6 + + + 2021-06-01T00:00:00 + 224.35 + + + 2021-06-02T00:00:00 + 223.46 + + + 2021-06-04T00:00:00 + 219.99 + + + 2021-06-07T00:00:00 + 224.5 + + + 2021-06-08T00:00:00 + 222.54 + + + 2021-06-09T00:00:00 + 223.33 + + + 2021-06-10T00:00:00 + 222.6 + + + 2021-06-11T00:00:00 + 223.58 + + + 2021-06-14T00:00:00 + 222.32 + + + 2021-06-15T00:00:00 + 223.04 + + + 2021-06-16T00:00:00 + 223.98 + + + 2021-06-17T00:00:00 + 223.38 + + + 2021-06-18T00:00:00 + 216.93 + + + 2021-06-21T00:00:00 + 217.77 + + + 2021-06-22T00:00:00 + 218.09 + + + 2021-06-23T00:00:00 + 217.62 + + + 2021-06-24T00:00:00 + 218.18 + + + 2021-06-25T00:00:00 + 218 + + + 2021-06-28T00:00:00 + 216.83 + + + 2021-06-29T00:00:00 + 216.15 + + + 2021-06-30T00:00:00 + 213.99 + + + 2021-07-01T00:00:00 + 215.62 + + + 2021-07-02T00:00:00 + 218.52 + + + 2021-07-05T00:00:00 + 219.74 + + + 2021-07-06T00:00:00 + 218.72 + + + 2021-07-07T00:00:00 + 221.24 + + + 2021-07-08T00:00:00 + 221.78 + + + 2021-07-09T00:00:00 + 223.23 + + + 2021-07-12T00:00:00 + 223.15 + + + 2021-07-13T00:00:00 + 221.17 + + + 2021-07-14T00:00:00 + 224.72 + + + 2021-07-15T00:00:00 + 228.35 + + + 2021-07-16T00:00:00 + 226.52 + + + 2021-07-19T00:00:00 + 227.61 + + + 2021-07-20T00:00:00 + 227.38 + + + 2021-07-21T00:00:00 + 228.65 + + + 2021-07-22T00:00:00 + 226.17 + + + 2021-07-23T00:00:00 + 224.46 + + + 2021-07-26T00:00:00 + 224.79 + + + 2021-07-27T00:00:00 + 225.24 + + + 2021-07-28T00:00:00 + 225.83 + + + 2021-07-29T00:00:00 + 224.39 + + + 2021-07-30T00:00:00 + 227.11 + + + 2021-08-02T00:00:00 + 225.47 + + + 2021-08-03T00:00:00 + 223.51 + + + 2021-08-04T00:00:00 + 223.3 + + + 2021-08-05T00:00:00 + 225.63 + + + 2021-08-06T00:00:00 + 222.83 + + + 2021-08-09T00:00:00 + 218.33 + + + 2021-08-10T00:00:00 + 217.41 + + + 2021-08-11T00:00:00 + 215.75 + + + 2021-08-12T00:00:00 + 219.46 + + + 2021-08-13T00:00:00 + 219.52 + + + 2021-08-16T00:00:00 + 222.04 + + + 2021-08-17T00:00:00 + 222.43 + + + 2021-08-18T00:00:00 + 223.2 + + + 2021-08-19T00:00:00 + 222.83 + + + 2021-08-20T00:00:00 + 224.76 + + + 2021-08-23T00:00:00 + 224.8 + + + 2021-08-24T00:00:00 + 226.59 + + + 2021-08-25T00:00:00 + 227.25 + + + 2021-08-26T00:00:00 + 223.54 + + + 2021-08-27T00:00:00 + 223.51 + + + 2021-08-30T00:00:00 + 225.37 + + + 2021-08-31T00:00:00 + 223.9 + + + 2021-09-01T00:00:00 + 223.98 + + + 2021-09-02T00:00:00 + 222.74 + + + 2021-09-03T00:00:00 + 221.72 + + + 2021-09-06T00:00:00 + 222.78 + + + 2021-09-07T00:00:00 + 222.81 + + + 2021-09-08T00:00:00 + 220.41 + + + 2021-09-09T00:00:00 + 219.42 + + + 2021-09-10T00:00:00 + 220.14 + + + 2021-09-13T00:00:00 + 221.58 + + + 2021-09-14T00:00:00 + 222.04 + + + 2021-09-15T00:00:00 + 222.16 + + + 2021-09-16T00:00:00 + 222.27 + + + 2021-09-17T00:00:00 + 218.32 + + + 2021-09-20T00:00:00 + 219.53 + + + 2021-09-21T00:00:00 + 221.98 + + + 2021-09-22T00:00:00 + 224.42 + + + 2021-09-23T00:00:00 + 225 + + + 2021-09-24T00:00:00 + 220.85 + + + 2021-09-27T00:00:00 + 220.53 + + + 2021-09-28T00:00:00 + 221.67 + + + 2021-09-29T00:00:00 + 220.43 + + + 2021-09-30T00:00:00 + 221.64 + + + 2021-10-01T00:00:00 + 223.7 + + + 2021-10-04T00:00:00 + 224.14 + + + 2021-10-05T00:00:00 + 222.07 + + + 2021-10-06T00:00:00 + 223.72 + + + 2021-10-07T00:00:00 + 226.27 + + + 2021-10-08T00:00:00 + 222.83 + + + 2021-10-11T00:00:00 + 226.76 + + + 2021-10-12T00:00:00 + 225.26 + + + 2021-10-13T00:00:00 + 225.45 + + + 2021-10-14T00:00:00 + 227.56 + + + 2021-10-15T00:00:00 + 227.87 + + + 2021-10-18T00:00:00 + 224.61 + + + 2021-10-19T00:00:00 + 224.35 + + + 2021-10-20T00:00:00 + 224.33 + + + 2021-10-21T00:00:00 + 225.37 + + + 2021-10-22T00:00:00 + 225.69 + + + 2021-10-25T00:00:00 + 230.09 + + + 2021-10-26T00:00:00 + 229.27 + + + 2021-10-27T00:00:00 + 228.15 + + + 2021-10-28T00:00:00 + 229.81 + + + 2021-10-29T00:00:00 + 231.56 + + + 2021-11-02T00:00:00 + 228.74 + + + 2021-11-03T00:00:00 + 228.97 + + + 2021-11-04T00:00:00 + 224.99 + + + 2021-11-05T00:00:00 + 229.89 + + + 2021-11-08T00:00:00 + 231.2 + + + 2021-11-09T00:00:00 + 232.88 + + + 2021-11-10T00:00:00 + 232.78 + + + 2021-11-12T00:00:00 + 237.35 + + + 2021-11-15T00:00:00 + 242.62 + + + 2021-11-16T00:00:00 + 242.17 + + + 2021-11-17T00:00:00 + 245.46 + + + 2021-11-18T00:00:00 + 247.06 + + + 2021-11-19T00:00:00 + 245.9 + + + 2021-11-22T00:00:00 + 248.08 + + + 2021-11-23T00:00:00 + 244.39 + + + 2021-11-24T00:00:00 + 240.97 + + + 2021-11-25T00:00:00 + 239.31 + + + 2021-11-26T00:00:00 + 239.16 + + + 2021-11-29T00:00:00 + 241.76 + + + 2021-11-30T00:00:00 + 239.02 + + + 2021-12-01T00:00:00 + 239.08 + + + 2021-12-02T00:00:00 + 236.17 + + + 2021-12-03T00:00:00 + 230.55 + + + 2021-12-06T00:00:00 + 231.03 + + + 2021-12-07T00:00:00 + 232.3 + + + 2021-12-08T00:00:00 + 233.59 + + + 2021-12-09T00:00:00 + 233.47 + + + 2021-12-10T00:00:00 + 233.22 + + + 2021-12-13T00:00:00 + 233.96 + + + 2021-12-14T00:00:00 + 235.69 + + + 2021-12-15T00:00:00 + 234.74 + + + 2021-12-16T00:00:00 + 233.12 + + + 2021-12-17T00:00:00 + 236.34 + + + 2021-12-20T00:00:00 + 237.61 + + + 2021-12-21T00:00:00 + 237.83 + + + 2021-12-22T00:00:00 + 236.08 + + + 2021-12-23T00:00:00 + 236.23 + + + 2021-12-24T00:00:00 + 237.67 + + + 2021-12-27T00:00:00 + 236.72 + + + 2021-12-28T00:00:00 + 237.32 + + + 2021-12-29T00:00:00 + 235.76 + + + 2021-12-30T00:00:00 + 235.25 + + + 2021-12-31T00:00:00 + 235.9 + + + 2022-01-03T00:00:00 + 235.72 + + + 2022-01-04T00:00:00 + 236.56 + + + 2022-01-05T00:00:00 + 235.69 + + + 2022-01-07T00:00:00 + 232.4 + + + 2022-01-10T00:00:00 + 232.13 + + + 2022-01-11T00:00:00 + 231.13 + + + 2022-01-12T00:00:00 + 232.98 + + + 2022-01-13T00:00:00 + 233.53 + + + 2022-01-14T00:00:00 + 230.98 + + + 2022-01-17T00:00:00 + 232.08 + + + 2022-01-18T00:00:00 + 231.27 + + + 2022-01-19T00:00:00 + 232.17 + + + 2022-01-20T00:00:00 + 234.55 + + + 2022-01-21T00:00:00 + 236.33 + + + 2022-01-24T00:00:00 + 236.04 + + + 2022-01-25T00:00:00 + 235.85 + + + 2022-01-26T00:00:00 + 241.08 + + + 2022-01-27T00:00:00 + 240.16 + + + 2022-01-28T00:00:00 + 237.18 + + + 2022-01-31T00:00:00 + 235.98 + + + 2022-02-01T00:00:00 + 237.5 + + + 2022-02-02T00:00:00 + 235.47 + + + 2022-02-03T00:00:00 + 233.6 + + + 2022-02-04T00:00:00 + 232.1 + + + 2022-02-07T00:00:00 + 230.09 + + + 2022-02-08T00:00:00 + 232.49 + + + 2022-02-09T00:00:00 + 232.6 + + + 2022-02-10T00:00:00 + 232.32 + + + 2022-02-11T00:00:00 + 231.43 + + + 2022-02-14T00:00:00 + 233.51 + + + 2022-02-15T00:00:00 + 242.63 + + + 2022-02-16T00:00:00 + 236.17 + + + 2022-02-17T00:00:00 + 236.39 + + + 2022-02-18T00:00:00 + 241.61 + + + 2022-02-21T00:00:00 + 242.29 + + + 2022-02-22T00:00:00 + 242.23 + + + 2022-02-23T00:00:00 + 245.09 + + + 2022-02-24T00:00:00 + 244.57 + + + 2022-02-25T00:00:00 + 256.97 + + + 2022-02-28T00:00:00 + 252.6 + + + 2022-03-01T00:00:00 + 257.67 + + + 2022-03-02T00:00:00 + 260.71 + + + 2022-03-03T00:00:00 + 268.47 + + + 2022-03-04T00:00:00 + 268.37 + + + 2022-03-07T00:00:00 + 274.61 + + + 2022-03-08T00:00:00 + 291.2 + + + 2022-03-09T00:00:00 + 295.77 + + + 2022-03-10T00:00:00 + 282.32 + + + 2022-03-11T00:00:00 + 279.11 + + + 2022-03-14T00:00:00 + 277.98 + + + 2022-03-15T00:00:00 + 271.56 + + + 2022-03-16T00:00:00 + 264.53 + + + 2022-03-17T00:00:00 + 263.44 + + + 2022-03-18T00:00:00 + 265.78 + + + 2022-03-21T00:00:00 + 265.81 + + + 2022-03-22T00:00:00 + 264.04 + + + 2022-03-23T00:00:00 + 263.07 + + + 2022-03-24T00:00:00 + 265.66 + + + 2022-03-25T00:00:00 + 273.63 + + + 2022-03-28T00:00:00 + 270.91 + + + 2022-03-29T00:00:00 + 266.46 + + + 2022-03-30T00:00:00 + 263.55 + + + 2022-03-31T00:00:00 + 259.22 + + + 2022-04-01T00:00:00 + 261.01 + + + 2022-04-04T00:00:00 + 260.39 + + + 2022-04-05T00:00:00 + 261.11 + + + 2022-04-06T00:00:00 + 263.96 + + + 2022-04-07T00:00:00 + 264.41 + + + 2022-04-08T00:00:00 + 265.46 + + + 2022-04-11T00:00:00 + 266.55 + + + 2022-04-12T00:00:00 + 267.18 + + + 2022-04-13T00:00:00 + 270.61 + + + 2022-04-14T00:00:00 + 272.45 + + + 2022-04-15T00:00:00 + 268.77 + + + 2022-04-19T00:00:00 + 270.56 + + + 2022-04-20T00:00:00 + 270.83 + + + 2022-04-21T00:00:00 + 267.69 + + + 2022-04-22T00:00:00 + 266.18 + + + 2022-04-25T00:00:00 + 268 + + + 2022-04-26T00:00:00 + 263.14 + + + 2022-04-27T00:00:00 + 266.2 + + + 2022-04-28T00:00:00 + 269.52 + + + 2022-04-29T00:00:00 + 270.89 + + + 2022-05-02T00:00:00 + 270.82 + + + 2022-05-04T00:00:00 + 267.21 + + + 2022-05-05T00:00:00 + 266.38 + + + 2022-05-06T00:00:00 + 267.8 + + + 2022-05-09T00:00:00 + 269.33 + + + 2022-05-10T00:00:00 + 267.94 + + + 2022-05-11T00:00:00 + 264.1 + + + 2022-05-12T00:00:00 + 263.11 + + + 2022-05-13T00:00:00 + 264.96 + + + 2022-05-16T00:00:00 + 261.2 + + + 2022-05-17T00:00:00 + 260.56 + + + 2022-05-18T00:00:00 + 260.42 + + + 2022-05-19T00:00:00 + 257.75 + + + 2022-05-20T00:00:00 + 262.25 + + + 2022-05-23T00:00:00 + 258.48 + + + 2022-05-24T00:00:00 + 258.83 + + + 2022-05-25T00:00:00 + 258.56 + + + 2022-05-26T00:00:00 + 255.79 + + + 2022-05-27T00:00:00 + 256.63 + + + 2022-05-30T00:00:00 + 255.82 + + + 2022-05-31T00:00:00 + 254.17 + + + 2022-06-01T00:00:00 + 252.15 + + + 2022-06-02T00:00:00 + 253.99 + + + 2022-06-03T00:00:00 + 254.67 + + + 2022-06-06T00:00:00 + 253.23 + + + 2022-06-07T00:00:00 + 253.45 + + + 2022-06-08T00:00:00 + 255.33 + + + 2022-06-09T00:00:00 + 255.58 + + + 2022-06-10T00:00:00 + 253.63 + + + 2022-06-13T00:00:00 + 255.15 + + + 2022-06-14T00:00:00 + 260.21 + + + 2022-06-15T00:00:00 + 260.02 + + + 2022-06-17T00:00:00 + 261.04 + + + 2022-06-20T00:00:00 + 264.25 + + + 2022-06-21T00:00:00 + 262.18 + + + 2022-06-22T00:00:00 + 259.86 + + + 2022-06-23T00:00:00 + 262.57 + + + 2022-06-24T00:00:00 + 265.79 + + + 2022-06-27T00:00:00 + 262.09 + + + 2022-06-28T00:00:00 + 260.53 + + + 2022-06-29T00:00:00 + 259.52 + + + 2022-06-30T00:00:00 + 260.25 + + + 2022-07-01T00:00:00 + 261.87 + + + 2022-07-04T00:00:00 + 260.67 + + + 2022-07-05T00:00:00 + 261.82 + + + 2022-07-06T00:00:00 + 261.76 + + + 2022-07-07T00:00:00 + 263.93 + + + 2022-07-08T00:00:00 + 264.3 + + + 2022-07-11T00:00:00 + 265.01 + + + 2022-07-12T00:00:00 + 265.25 + + + 2022-07-13T00:00:00 + 268.65 + + + 2022-07-14T00:00:00 + 267.39 + + + 2022-07-15T00:00:00 + 263.96 + + + 2022-07-18T00:00:00 + 263.09 + + + 2022-07-19T00:00:00 + 260.61 + + + 2022-07-20T00:00:00 + 256.64 + + + 2022-07-21T00:00:00 + 255.7 + + + 2022-07-22T00:00:00 + 255.91 + + + 2022-07-25T00:00:00 + 262.05 + + + 2022-07-26T00:00:00 + 255.14 + + + 2022-07-27T00:00:00 + 255.61 + + + 2022-07-28T00:00:00 + 259.8 + + + 2022-07-29T00:00:00 + 264.72 + + + 2022-08-01T00:00:00 + 261.36 + + + 2022-08-02T00:00:00 + 263.76 + + + 2022-08-03T00:00:00 + 263.12 + + + 2022-08-04T00:00:00 + 261.43 + + + 2022-08-05T00:00:00 + 265.67 + + + 2022-08-08T00:00:00 + 262.38 + + + 2022-08-09T00:00:00 + 264.58 + + + 2022-08-10T00:00:00 + 265.04 + + + 2022-08-11T00:00:00 + 266.11 + + + 2022-08-12T00:00:00 + 261.16 + + + 2022-08-16T00:00:00 + 259.66 + + + 2022-08-17T00:00:00 + 264.09 + + + 2022-08-18T00:00:00 + 262.05 + + + 2022-08-19T00:00:00 + 263.75 + + + 2022-08-22T00:00:00 + 264.91 + + + 2022-08-23T00:00:00 + 264.31 + + + 2022-08-24T00:00:00 + 269.69 + + + 2022-08-25T00:00:00 + 269.54 + + + 2022-08-26T00:00:00 + 268.06 + + + 2022-08-29T00:00:00 + 267.23 + + + 2022-08-30T00:00:00 + 269.23 + + + 2022-08-31T00:00:00 + 262.63 + + + 2022-09-01T00:00:00 + 261.29 + + + 2022-09-02T00:00:00 + 255.79 + + + 2022-09-05T00:00:00 + 260.3 + + + 2022-09-06T00:00:00 + 262.34 + + + 2022-09-07T00:00:00 + 259.29 + + + 2022-09-08T00:00:00 + 260.47 + + + 2022-09-09T00:00:00 + 259.78 + + + 2022-09-12T00:00:00 + 256.71 + + + 2022-09-13T00:00:00 + 256.59 + + + 2022-09-14T00:00:00 + 254.12 + + + 2022-09-15T00:00:00 + 258.74 + + + 2022-09-16T00:00:00 + 256.35 + + + 2022-09-19T00:00:00 + 253.6 + + + 2022-09-20T00:00:00 + 252.91 + + + 2022-09-21T00:00:00 + 252.08 + + + 2022-09-22T00:00:00 + 257.56 + + + 2022-09-23T00:00:00 + 259.84 + + + 2022-09-26T00:00:00 + 257.84 + + + 2022-09-27T00:00:00 + 259.51 + + + 2022-09-28T00:00:00 + 259.95 + + + 2022-09-29T00:00:00 + 267.62 + + + 2022-09-30T00:00:00 + 267.74 + + + 2022-10-03T00:00:00 + 266.24 + + + 2022-10-04T00:00:00 + 263.95 + + + 2022-10-05T00:00:00 + 268.01 + + + 2022-10-06T00:00:00 + 264.49 + + + 2022-10-07T00:00:00 + 269.98 + + + 2022-10-10T00:00:00 + 270.4 + + + 2022-10-11T00:00:00 + 270.79 + + + 2022-10-12T00:00:00 + 268.52 + + + 2022-10-13T00:00:00 + 268.63 + + + 2022-10-14T00:00:00 + 264.45 + + + 2022-10-17T00:00:00 + 262.86 + + + 2022-10-18T00:00:00 + 265.04 + + + 2022-10-19T00:00:00 + 260.06 + + + 2022-10-20T00:00:00 + 256.49 + + + 2022-10-21T00:00:00 + 257.77 + + + 2022-10-24T00:00:00 + 258.87 + + + 2022-10-25T00:00:00 + 258.04 + + + 2022-10-26T00:00:00 + 258.74 + + + 2022-10-27T00:00:00 + 254.76 + + + 2022-10-28T00:00:00 + 251.94 + + + 2022-10-31T00:00:00 + 251.58 + + + 2022-11-02T00:00:00 + 250.43 + + + 2022-11-03T00:00:00 + 251.86 + + + 2022-11-04T00:00:00 + 252.9 + + + 2022-11-07T00:00:00 + 258.25 + + + 2022-11-08T00:00:00 + 253.31 + + + 2022-11-09T00:00:00 + 253.08 + + + 2022-11-10T00:00:00 + 258.2 + + + 2022-11-14T00:00:00 + 267.73 + + + 2022-11-15T00:00:00 + 258.09 + + + 2022-11-16T00:00:00 + 257.09 + + + 2022-11-17T00:00:00 + 256.79 + + + 2022-11-18T00:00:00 + 256.62 + + + 2022-11-21T00:00:00 + 255.34 + + + 2022-11-22T00:00:00 + 257.37 + + + 2022-11-23T00:00:00 + 256.91 + + + 2022-11-24T00:00:00 + 254.46 + + + 2022-11-25T00:00:00 + 254.55 + + + 2022-11-28T00:00:00 + 254.07 + + + 2022-11-29T00:00:00 + 251.7 + + + 2022-11-30T00:00:00 + 254.5 + + + 2022-12-01T00:00:00 + 254.08 + + + 2022-12-02T00:00:00 + 260.35 + + + 2022-12-05T00:00:00 + 255.3 + + + 2022-12-06T00:00:00 + 253.74 + + + 2022-12-07T00:00:00 + 255.42 + + + 2022-12-08T00:00:00 + 256.9 + + + 2022-12-09T00:00:00 + 257.64 + + + 2022-12-12T00:00:00 + 256.13 + + + 2022-12-13T00:00:00 + 255.17 + + + 2022-12-14T00:00:00 + 261.06 + + + 2022-12-15T00:00:00 + 255.62 + + + 2022-12-16T00:00:00 + 252.87 + + + 2022-12-19T00:00:00 + 254.88 + + + 2022-12-20T00:00:00 + 254.23 + + + 2022-12-21T00:00:00 + 256.61 + + + 2022-12-22T00:00:00 + 256.83 + + + 2022-12-23T00:00:00 + 253.13 + + + 2022-12-27T00:00:00 + 252.98 + + + 2022-12-28T00:00:00 + 252.81 + + + 2022-12-29T00:00:00 + 255.85 + + + 2022-12-30T00:00:00 + 257.02 + + \ No newline at end of file