Soenneker.Utils.HttpClientCache 3.0.1091

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.HttpClientCache --version 3.0.1091                
NuGet\Install-Package Soenneker.Utils.HttpClientCache -Version 3.0.1091                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.Utils.HttpClientCache" Version="3.0.1091" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Utils.HttpClientCache --version 3.0.1091                
#r "nuget: Soenneker.Utils.HttpClientCache, 3.0.1091"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Soenneker.Utils.HttpClientCache as a Cake Addin
#addin nuget:?package=Soenneker.Utils.HttpClientCache&version=3.0.1091

// Install Soenneker.Utils.HttpClientCache as a Cake Tool
#tool nuget:?package=Soenneker.Utils.HttpClientCache&version=3.0.1091                

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Why?

'Long-lived' HttpClient static/singleton instances is the recommended use pattern in .NET. Avoid the unnecessary overhead of IHttpClientFactory, and definitely avoid creating a new HttpClient instance per request.

HttpClientCache provides a thread-safe singleton HttpClient instance per key via dependency injection. HttpClients are created lazily, and disposed on application shutdown (or manually if you want).

See Guidelines for using HttpClient

Installation

dotnet add package Soenneker.Utils.HttpClientCache

Usage

  1. Register IHttpClientCache within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddHttpClientCache();
}
  1. Inject IHttpClientCache via constructor, and retrieve a fresh HttpClient.

Example:

public class TestClass
{
    IHttpClientCache _httpClientCache;

    public TestClass(IHttpClientCache httpClientCache)
    {
        _httpClientCache = httpClientCache;
    }

    public async ValueTask<string> GetGoogleSource()
    {
        HttpClient httpClient = await _httpClientCache.Get(nameof(TestClass));

        var response = await httpClient.GetAsync("https://www.google.com");
        response.EnsureSuccessStatusCode();

        var responseString = await response.Content.ReadAsStringAsync();
        return responseString;
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (25)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.HttpClientCache:

Package Downloads
Soenneker.Cosmos.Client

A utility library for Azure Cosmos client accessibility

Soenneker.Blob.Container

A utility library for Azure Blob storage container operations

Soenneker.Validators.Email.Disposable.Online

A validation module checking for disposable email addresses via online sources

Soenneker.Queue.Client

A utility library for Azure Queue (Storage) client accessibility

Soenneker.Blob.Service

A utility library for Azure Blob storage service client operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1166 0 12/22/2024
3.0.1165 0 12/22/2024
3.0.1164 0 12/22/2024
3.0.1163 0 12/22/2024
3.0.1162 0 12/22/2024
3.0.1161 4 12/21/2024
3.0.1160 2 12/21/2024
3.0.1159 33 12/21/2024
3.0.1158 24 12/21/2024
3.0.1157 174 12/21/2024
3.0.1156 428 12/21/2024
3.0.1155 28 12/21/2024
3.0.1154 345 12/21/2024
3.0.1153 26 12/21/2024
3.0.1152 420 12/21/2024
3.0.1151 30 12/21/2024
3.0.1150 303 12/21/2024
3.0.1149 28 12/21/2024
3.0.1148 524 12/21/2024
3.0.1147 84 12/20/2024
3.0.1146 34 12/20/2024
3.0.1145 574 12/20/2024
3.0.1144 34 12/20/2024
3.0.1143 661 12/20/2024
3.0.1142 269 12/20/2024
3.0.1141 34 12/20/2024
3.0.1140 268 12/20/2024
3.0.1139 202 12/20/2024
3.0.1138 37 12/20/2024
3.0.1137 452 12/20/2024
3.0.1136 548 12/19/2024
3.0.1135 221 12/19/2024
3.0.1134 211 12/19/2024
3.0.1133 37 12/19/2024
3.0.1132 336 12/19/2024
3.0.1131 246 12/19/2024
3.0.1130 31 12/19/2024
3.0.1129 245 12/18/2024
3.0.1128 241 12/18/2024
3.0.1127 1,627 12/17/2024
3.0.1126 663 12/17/2024
3.0.1125 1,310 12/16/2024
3.0.1124 527 12/16/2024
3.0.1123 2,531 12/10/2024
3.0.1122 663 12/10/2024
3.0.1121 752 12/10/2024
3.0.1120 274 12/10/2024
3.0.1119 71 12/10/2024
3.0.1118 1,024 12/9/2024
3.0.1117 890 12/9/2024
3.0.1116 580 12/9/2024
3.0.1115 1,178 12/9/2024
3.0.1114 313 12/9/2024
3.0.1113 61 12/9/2024
3.0.1112 1,377 12/9/2024
3.0.1111 849 12/9/2024
3.0.1110 67 12/9/2024
3.0.1109 1,768 12/7/2024
3.0.1108 282 12/7/2024
3.0.1107 493 12/6/2024
3.0.1106 654 12/6/2024
3.0.1105 198 12/6/2024
3.0.1104 628 12/6/2024
3.0.1103 73 12/6/2024
3.0.1102 948 12/6/2024
3.0.1100 2,582 12/6/2024
3.0.1099 1,284 12/6/2024
3.0.1098 194 12/6/2024
3.0.1097 964 12/6/2024
3.0.1096 215 12/6/2024
3.0.1095 80 12/6/2024
3.0.1094 1,570 12/6/2024
3.0.1093 68 12/6/2024
3.0.1092 1,170 12/6/2024
3.0.1091 80 12/6/2024
3.0.1090 848 12/6/2024
3.0.1089 76 12/6/2024
3.0.1088 1,508 12/5/2024
3.0.1087 717 12/5/2024
3.0.1086 1,019 12/5/2024
3.0.1085 2,419 12/5/2024
3.0.1084 481 12/5/2024
3.0.1083 74 12/5/2024
3.0.1082 1,240 12/5/2024
3.0.1081 65 12/5/2024
3.0.1080 1,030 12/5/2024
3.0.1079 66 12/5/2024
3.0.1078 867 12/5/2024
3.0.1077 420 12/5/2024
3.0.1076 79 12/5/2024
3.0.1075 703 12/5/2024
3.0.1074 81 12/5/2024
3.0.1073 1,194 12/4/2024
3.0.1072 479 12/4/2024
3.0.1071 67 12/4/2024
3.0.1070 1,035 12/4/2024
3.0.1069 82 12/4/2024
3.0.1068 287 12/4/2024
3.0.1067 831 12/4/2024
3.0.1066 81 12/4/2024
3.0.1065 966 12/4/2024
3.0.1064 75 12/4/2024
3.0.1063 481 12/4/2024
3.0.1062 1,044 12/4/2024
3.0.1061 787 12/3/2024
3.0.1060 75 12/3/2024
3.0.1059 363 12/3/2024
3.0.1058 67 12/3/2024
3.0.1057 313 12/3/2024
3.0.1056 1,158 12/3/2024
3.0.1055 77 12/3/2024
3.0.1054 1,152 12/3/2024
3.0.1053 818 12/3/2024
3.0.1052 74 12/3/2024
3.0.1051 1,304 12/3/2024
3.0.1050 348 12/3/2024
3.0.1049 67 12/3/2024
3.0.1048 1,154 12/2/2024
3.0.1047 1,353 12/2/2024
3.0.1046 745 12/2/2024
3.0.1045 923 12/2/2024
3.0.1044 484 12/2/2024
3.0.1043 65 12/2/2024
3.0.1042 1,530 12/2/2024
3.0.1041 84 12/2/2024
3.0.1040 571 12/2/2024
3.0.1039 513 12/1/2024
3.0.1038 78 12/1/2024
3.0.1037 1,142 12/1/2024
3.0.1036 73 12/1/2024
3.0.1035 2,384 12/1/2024
3.0.1034 235 12/1/2024
3.0.1033 522 12/1/2024
3.0.1032 560 12/1/2024
3.0.1031 1,767 11/29/2024
3.0.1030 168 11/29/2024
3.0.1029 588 11/29/2024
3.0.1028 988 11/29/2024
3.0.1027 75 11/29/2024
3.0.1026 2,045 11/21/2024
3.0.1025 697 11/21/2024
3.0.1024 470 11/21/2024
3.0.1023 756 11/20/2024
3.0.1022 1,872 11/20/2024
3.0.1021 645 11/20/2024
3.0.1020 174 11/20/2024
3.0.1019 140 11/20/2024
3.0.1018 215 11/20/2024
3.0.1017 75 11/20/2024
3.0.1016 139 11/20/2024
3.0.1015 71 11/20/2024
3.0.1014 1,463 11/20/2024
3.0.1013 510 11/20/2024
3.0.1012 76 11/20/2024
3.0.1011 639 11/20/2024
3.0.1010 632 11/20/2024
3.0.1009 114 11/19/2024
3.0.1008 798 11/19/2024
3.0.1007 71 11/19/2024
3.0.1006 1,910 11/19/2024
3.0.1005 67 11/19/2024
3.0.1004 77 11/19/2024
3.0.1003 872 11/19/2024
3.0.1002 68 11/19/2024
3.0.1001 3,226 11/19/2024
3.0.1000 73 11/19/2024
3.0.999 3,135 11/15/2024
3.0.998 513 11/15/2024
3.0.997 719 11/14/2024
3.0.996 117 11/14/2024
3.0.995 71 11/14/2024
3.0.993 1,116 11/14/2024
3.0.992 78 11/14/2024
3.0.991 1,026 11/14/2024
3.0.990 106 11/14/2024
3.0.989 2,318 11/14/2024
3.0.988 79 11/14/2024
3.0.987 1,953 11/14/2024
3.0.986 87 11/14/2024
3.0.985 1,249 11/14/2024
3.0.984 325 11/14/2024
3.0.983 77 11/14/2024
3.0.982 746 11/14/2024
2.1.981 1,712 11/13/2024
2.1.980 2,077 11/13/2024
2.1.979 651 11/13/2024
2.1.978 751 11/13/2024
2.1.977 1,236 11/13/2024
2.1.976 76 11/13/2024
2.1.975 1,227 11/13/2024
2.1.974 86 11/13/2024
2.1.973 968 11/13/2024
2.1.972 326 11/12/2024
2.1.971 80 11/12/2024
2.1.970 1,819 11/12/2024
2.1.969 3,574 11/9/2024
2.1.968 818 11/9/2024
2.1.967 830 11/9/2024
2.1.966 86 11/9/2024
2.1.965 543 11/9/2024
2.1.964 100 11/9/2024
2.1.963 78 11/9/2024
2.1.962 985 11/8/2024
2.1.961 75 11/8/2024
2.1.960 241 11/8/2024
2.1.959 82 11/8/2024
2.1.958 87 11/8/2024
2.1.957 1,240 11/8/2024
2.1.956 3,231 11/8/2024
2.1.955 1,914 11/8/2024
2.1.954 77 11/8/2024
2.1.953 762 11/8/2024
2.1.952 4,125 11/6/2024
2.1.951 1,740 11/5/2024
2.1.950 1,440 11/1/2024
2.1.949 252 11/1/2024
2.1.948 1,208 11/1/2024
2.1.947 587 11/1/2024
2.1.946 2,465 10/29/2024
2.1.945 502 10/29/2024
2.1.944 73 10/29/2024
2.1.943 510 10/29/2024
2.1.942 612 10/29/2024
2.1.941 1,015 10/29/2024
2.1.939 1,625 10/29/2024
2.1.938 284 10/29/2024
2.1.937 71 10/29/2024
2.1.936 2,605 10/29/2024
2.1.935 69 10/29/2024
2.1.934 609 10/28/2024
2.1.933 1,223 10/28/2024
2.1.932 1,996 10/26/2024
2.1.931 231 10/26/2024
2.1.930 733 10/26/2024
2.1.929 957 10/26/2024
2.1.928 2,890 10/22/2024
2.1.927 638 10/22/2024
2.1.926 1,109 10/22/2024
2.1.925 500 10/22/2024
2.1.924 347 10/22/2024
2.1.923 790 10/22/2024
2.1.922 597 10/22/2024
2.1.921 68 10/22/2024
2.1.920 1,017 10/22/2024
2.1.919 2,052 10/18/2024
2.1.918 419 10/18/2024
2.1.917 678 10/17/2024
2.1.916 1,200 10/17/2024
2.1.915 73 10/17/2024
2.1.914 1,535 10/15/2024
2.1.913 522 10/15/2024
2.1.912 326 10/15/2024
2.1.911 771 10/15/2024
2.1.910 583 10/14/2024
2.1.909 79 10/14/2024
2.1.908 2,153 10/12/2024
2.1.907 448 10/12/2024
2.1.906 760 10/12/2024
2.1.905 748 10/11/2024
2.1.904 79 10/11/2024
2.1.903 1,239 10/11/2024
2.1.902 83 10/11/2024
2.1.901 1,963 10/9/2024
2.1.900 487 10/9/2024
2.1.899 1,187 10/9/2024
2.1.898 823 10/9/2024
2.1.897 802 10/9/2024
2.1.896 271 10/9/2024
2.1.895 83 10/9/2024
2.1.894 538 10/8/2024
2.1.893 860 10/8/2024
2.1.892 151 10/8/2024
2.1.891 1,104 10/8/2024
2.1.890 1,776 10/8/2024
2.1.889 86 10/8/2024
2.1.888 1,403 10/8/2024
2.1.887 1,445 10/4/2024
2.1.886 825 10/3/2024
2.1.885 923 10/3/2024
2.1.884 265 10/3/2024
2.1.883 599 10/3/2024
2.1.882 78 10/3/2024
2.1.881 953 10/3/2024
2.1.880 80 10/3/2024
2.1.879 530 10/3/2024
2.1.878 1,082 10/3/2024
2.1.877 400 10/3/2024
2.1.876 1,297 10/2/2024
2.1.875 644 10/2/2024
2.1.874 425 10/2/2024
2.1.873 968 10/2/2024
2.1.872 77 10/2/2024
2.1.871 84 10/2/2024
2.1.870 1,102 10/2/2024
2.1.869 533 10/2/2024
2.1.868 76 10/2/2024
2.1.867 338 10/2/2024
2.1.866 1,162 10/2/2024
2.1.865 105 10/2/2024
2.1.864 1,723 10/1/2024
2.1.863 732 10/1/2024
2.1.862 564 10/1/2024
2.1.861 901 10/1/2024
2.1.860 78 10/1/2024
2.1.859 656 10/1/2024
2.1.858 313 10/1/2024
2.1.857 79 10/1/2024
2.1.856 763 10/1/2024
2.1.855 82 10/1/2024
2.1.854 2,563 9/29/2024
2.1.853 263 9/29/2024
2.1.852 385 9/29/2024
2.1.851 696 9/29/2024
2.1.850 443 9/29/2024
2.1.849 805 9/29/2024
2.1.848 73 9/29/2024
2.1.847 546 9/29/2024
2.1.846 86 9/29/2024
2.1.845 982 9/29/2024
2.1.844 77 9/29/2024
2.1.843 2,116 9/27/2024
2.1.842 510 9/27/2024
2.1.841 633 9/27/2024
2.1.839 482 9/27/2024
2.1.838 86 9/27/2024
2.1.837 2,022 9/27/2024
2.1.836 828 9/27/2024
2.1.835 78 9/27/2024
2.1.834 1,103 9/27/2024
2.1.833 273 9/27/2024
2.1.832 95 9/27/2024
2.1.831 1,648 9/27/2024
2.1.830 434 9/27/2024
2.1.829 1,067 9/26/2024
2.1.828 1,227 9/26/2024
2.1.827 78 9/26/2024
2.1.826 1,338 9/26/2024
2.1.825 88 9/26/2024
2.1.824 612 9/26/2024
2.1.823 79 9/26/2024
2.1.822 369 9/26/2024
2.1.821 456 9/26/2024
2.1.820 1,147 9/26/2024
2.1.819 82 9/26/2024
2.1.818 1,468 9/26/2024
2.1.817 1,823 9/25/2024
2.1.816 1,535 9/23/2024
2.1.815 188 9/23/2024
2.1.814 415 9/23/2024
2.1.813 93 9/23/2024
2.1.812 667 9/23/2024
2.1.811 103 9/23/2024
2.1.810 633 9/23/2024
2.1.809 86 9/23/2024
2.1.808 672 9/23/2024
2.1.807 855 9/23/2024
2.1.806 91 9/23/2024
2.1.805 2,239 9/23/2024
2.1.804 1,045 9/23/2024
2.1.803 86 9/23/2024
2.1.802 1,180 9/23/2024
2.1.801 83 9/23/2024
2.1.800 1,177 9/23/2024
2.1.799 77 9/23/2024
2.1.798 610 9/23/2024
2.1.797 81 9/23/2024
2.1.796 3,116 9/18/2024
2.1.795 477 9/18/2024
2.1.794 739 9/18/2024
2.1.793 487 9/18/2024
2.1.792 576 9/18/2024
2.1.791 151 9/18/2024
2.1.790 419 9/17/2024
2.1.789 95 9/17/2024
2.1.788 592 9/17/2024
2.1.787 96 9/17/2024
2.1.786 649 9/17/2024
2.1.785 146 9/17/2024
2.1.784 1,182 9/17/2024
2.1.783 545 9/17/2024
2.1.782 835 9/17/2024
2.1.781 96 9/17/2024
2.1.780 118 9/17/2024
2.1.779 96 9/17/2024
2.1.778 1,156 9/17/2024
2.1.777 483 9/17/2024
2.1.776 508 9/17/2024
2.1.775 95 9/17/2024
2.1.774 1,263 9/17/2024
2.1.773 4,447 9/16/2024
2.1.772 605 9/16/2024
2.1.771 381 9/16/2024
2.1.770 677 9/16/2024
2.1.769 618 9/16/2024
2.1.768 1,967 9/12/2024
2.1.767 493 9/12/2024
2.1.766 581 9/12/2024
2.1.765 1,119 9/12/2024
2.1.764 662 9/12/2024
2.1.763 101 9/12/2024
2.1.762 1,142 9/11/2024
2.1.761 553 9/11/2024
2.1.760 900 9/11/2024
2.1.759 97 9/11/2024
2.1.757 2,081 9/11/2024
2.1.756 611 9/11/2024
2.1.754 294 9/11/2024
2.1.753 364 9/11/2024
2.1.752 369 9/11/2024
2.1.751 635 9/11/2024
2.1.750 107 9/11/2024
2.1.749 1,486 9/11/2024
2.1.748 3,334 9/10/2024
2.1.747 1,766 9/10/2024
2.1.746 305 9/10/2024
2.1.745 241 9/10/2024
2.1.744 571 9/10/2024
2.1.743 92 9/10/2024
2.1.742 640 9/10/2024
2.1.741 94 9/10/2024
2.1.740 809 9/10/2024
2.1.738 312 9/10/2024
2.1.737 1,225 9/9/2024
2.1.736 90 9/9/2024
2.1.734 1,274 9/9/2024
2.1.733 92 9/9/2024
2.1.730 2,040 9/9/2024
2.1.729 90 9/9/2024
2.1.728 1,741 9/9/2024
2.1.727 2,074 9/9/2024
2.1.726 2,735 9/7/2024
2.1.725 599 9/7/2024
2.1.724 714 9/7/2024
2.1.723 965 9/6/2024
2.1.722 1,529 9/6/2024
2.1.721 925 9/6/2024
2.1.720 192 9/6/2024
2.1.719 906 9/6/2024
2.1.718 117 9/6/2024
2.1.717 429 9/6/2024
2.1.716 1,467 9/5/2024
2.1.715 93 9/5/2024
2.1.714 675 9/5/2024
2.1.713 98 9/5/2024
2.1.712 969 9/5/2024
2.1.711 246 9/5/2024
2.1.710 99 9/5/2024
2.1.709 2,800 9/5/2024
2.1.708 725 9/5/2024
2.1.707 101 9/5/2024
2.1.706 787 9/5/2024
2.1.705 1,111 9/5/2024
2.1.704 675 9/4/2024
2.1.703 98 9/4/2024
2.1.702 596 9/4/2024
2.1.701 94 9/4/2024
2.1.700 2,579 9/4/2024
2.1.699 412 9/4/2024
2.1.698 834 9/4/2024
2.1.697 657 9/3/2024
2.1.696 296 9/3/2024
2.1.695 98 9/3/2024
2.1.694 1,546 9/3/2024
2.1.693 1,685 9/3/2024
2.1.692 385 9/3/2024
2.1.691 693 9/3/2024
2.1.690 91 9/3/2024
2.1.689 951 9/3/2024
2.1.688 87 9/3/2024
2.1.687 425 9/3/2024
2.1.686 2,818 8/30/2024
2.1.685 282 8/29/2024
2.1.684 552 8/29/2024
2.1.683 1,028 8/29/2024
2.1.682 603 8/29/2024
2.1.681 87 8/29/2024
2.1.680 1,524 8/26/2024
2.1.679 554 8/26/2024
2.1.678 464 8/26/2024
2.1.677 1,360 8/26/2024
2.1.676 109 8/26/2024
2.1.675 1,429 8/21/2024
2.1.674 984 8/21/2024
2.1.673 611 8/21/2024
2.1.672 709 8/21/2024
2.1.671 117 8/21/2024
2.1.670 491 8/21/2024
2.1.669 120 8/21/2024
2.1.668 1,364 8/20/2024
2.1.667 126 8/20/2024
2.1.666 1,253 8/20/2024
2.1.665 111 8/20/2024
2.1.664 335 8/20/2024
2.1.663 1,197 8/20/2024
2.1.662 104 8/20/2024
2.1.661 326 8/20/2024
2.1.660 105 8/20/2024
2.1.659 1,393 8/20/2024
2.1.658 1,643 8/20/2024
2.1.657 900 8/19/2024
2.1.656 113 8/19/2024
2.1.655 1,786 8/15/2024
2.1.654 485 8/15/2024
2.1.653 507 8/15/2024
2.1.652 611 8/15/2024
2.1.651 767 8/15/2024
2.1.650 933 8/15/2024
2.1.649 2,356 8/14/2024
2.1.648 112 8/14/2024
2.1.647 760 8/14/2024
2.1.646 444 8/14/2024
2.1.645 215 8/13/2024
2.1.644 2,349 8/7/2024
2.1.643 271 8/7/2024
2.1.642 646 8/7/2024
2.1.641 389 8/7/2024
2.1.640 1,403 8/6/2024
2.1.639 162 8/6/2024
2.1.638 81 8/6/2024
2.1.637 879 8/6/2024
2.1.636 1,274 8/1/2024
2.1.635 597 8/1/2024
2.1.634 450 8/1/2024
2.1.633 265 8/1/2024
2.1.632 73 8/1/2024
2.1.631 634 8/1/2024
2.1.630 73 8/1/2024
2.1.629 860 8/1/2024
2.1.628 2,345 7/25/2024
2.1.627 350 7/25/2024
2.1.626 577 7/25/2024
2.1.625 624 7/25/2024
2.1.624 73 7/25/2024
2.1.623 442 7/25/2024
2.1.622 229 7/25/2024
2.1.621 290 7/25/2024
2.1.620 516 7/25/2024
2.1.619 149 7/24/2024
2.1.618 471 7/24/2024
2.1.617 179 7/24/2024
2.1.616 311 7/24/2024
2.1.615 4,216 7/20/2024
2.1.614 76 7/20/2024
2.1.612 503 7/20/2024
2.1.611 644 7/20/2024
2.1.610 539 7/20/2024
2.1.609 2,091 7/14/2024
2.1.608 437 7/14/2024
2.1.607 429 7/14/2024
2.1.606 840 7/14/2024
2.1.605 462 7/14/2024
2.1.604 84 7/14/2024
2.1.603 1,098 7/14/2024
2.1.602 204 7/14/2024
2.1.601 76 7/14/2024
2.1.600 2,056 7/10/2024
2.1.599 223 7/10/2024
2.1.598 204 7/10/2024
2.1.597 195 7/10/2024
2.1.596 178 7/10/2024
2.1.594 381 7/10/2024
2.1.593 1,060 7/10/2024
2.1.592 78 7/10/2024
2.1.591 692 7/10/2024
2.1.590 110 7/10/2024
2.1.589 77 7/10/2024
2.1.588 1,566 7/10/2024
2.1.587 65 7/10/2024
2.1.586 578 7/10/2024
2.1.585 84 7/10/2024
2.1.584 81 7/10/2024
2.1.583 87 7/10/2024
2.1.581 278 7/10/2024
2.1.580 83 7/10/2024
2.1.579 1,133 7/9/2024
2.1.578 75 7/9/2024
2.1.576 970 7/9/2024
2.1.575 76 7/9/2024
2.1.574 161 7/9/2024
2.1.573 2,923 7/9/2024
2.1.572 81 7/9/2024
2.1.571 815 7/9/2024
2.1.570 1,385 7/9/2024
2.1.569 148 7/9/2024
2.1.568 1,079 7/9/2024
2.1.567 955 7/9/2024
2.1.566 81 7/9/2024
2.1.565 711 7/9/2024
2.1.564 86 7/9/2024
2.1.563 975 7/9/2024
2.1.562 84 7/9/2024
2.1.560 603 7/8/2024
2.1.559 1,406 7/8/2024
2.1.558 94 7/8/2024
2.1.557 897 7/8/2024
2.1.556 1,209 7/8/2024
2.1.555 205 7/8/2024
2.1.554 895 7/8/2024
2.1.553 217 7/8/2024
2.1.552 95 7/8/2024
2.1.551 1,032 7/8/2024
2.1.550 743 7/7/2024
2.1.549 82 7/7/2024
2.1.548 635 7/7/2024
2.1.547 94 7/7/2024
2.1.546 200 7/7/2024
2.1.545 93 7/7/2024
2.1.544 1,105 7/7/2024
2.1.543 90 7/7/2024
2.1.542 1,103 7/7/2024
2.1.541 557 7/7/2024
2.1.540 2,100 7/5/2024
2.1.539 1,106 7/4/2024
2.1.538 1,052 7/3/2024
2.1.537 664 7/3/2024
2.1.536 458 7/3/2024
2.1.535 311 7/3/2024
2.1.534 1,303 7/3/2024
2.1.533 126 7/3/2024
2.1.532 1,079 7/3/2024
2.1.531 79 7/3/2024
2.1.530 743 7/3/2024
2.1.529 1,293 7/2/2024
2.1.528 1,255 6/30/2024
2.1.527 1,225 6/28/2024
2.1.526 582 6/27/2024
2.1.525 661 6/27/2024
2.1.524 752 6/27/2024
2.1.523 1,220 6/22/2024
2.1.522 879 6/22/2024
2.1.521 753 6/22/2024
2.1.520 100 6/22/2024
2.1.519 1,402 6/16/2024
2.1.518 515 6/16/2024
2.1.517 514 6/15/2024
2.1.516 871 6/15/2024
2.1.515 433 6/15/2024
2.1.514 443 6/15/2024
2.1.513 95 6/15/2024
2.1.512 1,336 6/15/2024
2.1.511 93 6/15/2024
2.1.510 1,070 6/15/2024
2.1.509 915 6/15/2024
2.1.508 435 6/14/2024
2.1.507 89 6/14/2024
2.1.506 3,141 6/4/2024
2.1.505 1,226 6/2/2024
2.1.504 177 6/2/2024
2.1.503 305 6/2/2024
2.1.502 304 6/1/2024
2.1.501 360 6/1/2024
2.1.500 651 6/1/2024
2.1.499 94 6/1/2024
2.1.498 809 6/1/2024
2.1.497 231 6/1/2024
2.1.496 99 6/1/2024
2.1.495 901 6/1/2024
2.1.494 93 6/1/2024
2.1.493 2,156 5/31/2024
2.1.492 601 5/31/2024
2.1.491 399 5/31/2024
2.1.490 597 5/31/2024
2.1.489 360 5/31/2024
2.1.488 820 5/31/2024
2.1.487 1,289 5/29/2024
2.1.486 500 5/29/2024
2.1.485 708 5/29/2024
2.1.484 603 5/29/2024
2.1.483 96 5/29/2024
2.1.482 1,421 5/28/2024
2.1.481 412 5/28/2024
2.1.480 415 5/28/2024
2.1.479 450 5/28/2024
2.1.478 72 5/28/2024
2.1.477 980 5/28/2024
2.1.476 72 5/28/2024
2.1.475 344 5/28/2024
2.1.474 1,308 5/27/2024
2.1.473 1,282 5/27/2024
2.1.472 485 5/27/2024
2.1.471 532 5/27/2024
2.1.470 899 5/26/2024
2.1.469 81 5/26/2024
2.1.468 1,226 5/26/2024
2.1.467 148 5/26/2024
2.1.466 410 5/26/2024
2.1.465 671 5/26/2024
2.1.464 1,095 5/26/2024
2.1.463 81 5/26/2024
2.1.462 717 5/26/2024
2.1.461 86 5/26/2024
2.1.460 241 5/25/2024
2.1.459 350 5/25/2024
2.1.458 81 5/25/2024
2.1.457 1,129 5/25/2024
2.1.456 84 5/25/2024
2.1.455 1,122 5/25/2024
2.1.454 87 5/25/2024
2.1.453 1,449 5/25/2024
2.1.452 118 5/25/2024
2.1.451 565 5/25/2024
2.1.450 80 5/25/2024
2.1.449 473 5/25/2024
2.1.448 1,863 5/23/2024
2.1.447 588 5/23/2024
2.1.446 643 5/23/2024
2.1.445 67 5/23/2024
2.1.444 683 5/23/2024
2.1.443 90 5/23/2024
2.1.442 601 5/23/2024
2.1.441 84 5/23/2024
2.1.440 912 5/23/2024
2.1.439 93 5/23/2024
2.1.438 643 5/22/2024
2.1.437 898 5/22/2024
2.1.436 89 5/22/2024
2.1.435 647 5/22/2024
2.1.434 95 5/22/2024
2.1.433 92 5/22/2024
2.1.432 1,057 5/22/2024
2.1.431 713 5/22/2024
2.1.430 1,222 5/19/2024
2.1.429 477 5/18/2024
2.1.428 513 5/18/2024
2.1.427 572 5/18/2024
2.1.426 378 5/18/2024
2.1.425 111 5/18/2024
2.1.424 824 5/17/2024
2.1.423 107 5/17/2024
2.1.422 526 5/17/2024
2.1.421 1,428 5/17/2024
2.1.420 105 5/17/2024
2.1.419 918 5/16/2024
2.1.418 425 5/16/2024
2.1.417 758 5/16/2024
2.1.416 111 5/16/2024
2.1.415 756 5/15/2024
2.1.414 99 5/15/2024
2.1.413 804 5/15/2024
2.1.412 1,370 5/14/2024
2.1.411 111 5/14/2024
2.1.410 1,607 5/13/2024
2.1.409 613 5/13/2024
2.1.408 487 5/13/2024
2.1.407 375 5/13/2024
2.1.406 81 5/13/2024
2.1.405 1,852 5/3/2024
2.1.404 884 4/30/2024
2.1.403 191 4/30/2024
2.1.402 465 4/30/2024
2.1.401 526 4/30/2024
2.1.400 731 4/30/2024
2.1.399 654 4/30/2024
2.1.398 458 4/29/2024
2.1.397 344 4/29/2024
2.1.396 104 4/29/2024
2.1.395 1,498 4/29/2024
2.1.394 495 4/29/2024
2.1.393 1,057 4/29/2024
2.1.392 295 4/28/2024
2.1.391 103 4/28/2024
2.1.390 823 4/28/2024
2.1.389 118 4/28/2024
2.1.388 913 4/28/2024
2.1.387 594 4/28/2024
2.1.386 107 4/28/2024
2.1.385 922 4/28/2024
2.1.384 101 4/28/2024
2.1.383 632 4/28/2024
2.1.382 101 4/28/2024
2.1.381 1,552 4/28/2024
2.1.380 815 4/27/2024
2.1.379 109 4/27/2024
2.1.378 108 4/27/2024
2.1.377 2,073 4/20/2024
2.1.376 790 4/20/2024
2.1.375 695 4/19/2024
2.1.374 358 4/19/2024
2.1.373 99 4/19/2024
2.1.372 1,352 4/19/2024
2.1.371 695 4/19/2024
2.1.370 681 4/19/2024
2.1.369 472 4/19/2024
2.1.368 157 4/18/2024
2.1.367 105 4/18/2024
2.1.366 1,490 4/15/2024
2.1.365 578 4/14/2024
2.1.364 669 4/13/2024
2.1.363 763 4/12/2024
2.1.362 105 4/12/2024
2.1.361 602 4/12/2024
2.1.360 343 4/12/2024
2.1.359 588 4/12/2024
2.1.358 107 4/12/2024
2.1.357 939 4/12/2024
2.1.356 122 4/12/2024
2.1.355 997 4/12/2024
2.1.354 111 4/12/2024
2.1.353 396 4/11/2024
2.1.352 592 4/11/2024
2.1.351 101 4/11/2024
2.1.350 810 4/10/2024
2.1.349 105 4/10/2024
2.1.348 788 4/9/2024
2.1.347 101 4/9/2024
2.1.346 1,680 4/2/2024
2.1.345 284 4/2/2024
2.1.344 391 4/1/2024
2.1.343 160 4/1/2024
2.1.342 1,081 3/29/2024
2.1.341 107 3/29/2024
2.1.340 887 3/25/2024
2.1.339 94 3/25/2024
2.1.338 768 3/25/2024
2.1.337 1,071 3/20/2024
2.1.336 113 3/20/2024
2.1.335 1,207 3/19/2024
2.1.334 114 3/19/2024
2.1.333 426 3/19/2024
2.1.332 437 3/19/2024
2.1.331 736 3/18/2024
2.1.330 105 3/18/2024
2.1.329 716 3/18/2024
2.1.328 737 3/16/2024
2.1.327 430 3/15/2024
2.1.326 909 3/13/2024
2.1.325 515 3/13/2024
2.1.324 152 3/13/2024
2.1.323 136 3/13/2024
2.1.322 692 3/13/2024
2.1.321 118 3/13/2024
2.1.320 407 3/13/2024
2.1.319 107 3/13/2024
2.1.318 106 3/13/2024
2.1.317 420 3/12/2024
2.1.316 113 3/12/2024
2.1.315 485 3/12/2024
2.1.314 593 3/12/2024
2.1.313 640 3/12/2024
2.1.312 423 3/11/2024
2.1.311 867 3/11/2024
2.1.310 378 3/11/2024
2.1.309 675 3/10/2024
2.1.308 110 3/10/2024
2.1.307 869 3/8/2024
2.1.306 250 3/8/2024
2.1.305 555 3/8/2024
2.1.304 113 3/8/2024
2.1.303 575 3/8/2024
2.1.302 103 3/8/2024
2.1.301 1,019 3/6/2024
2.1.300 120 3/6/2024
2.1.299 899 3/4/2024
2.1.298 537 3/4/2024
2.1.297 436 3/4/2024
2.1.296 130 3/4/2024
2.1.295 1,158 3/3/2024
2.1.294 247 3/2/2024
2.1.293 595 3/2/2024
2.1.292 113 3/2/2024
2.1.291 1,945 2/29/2024
2.1.290 408 2/29/2024
2.1.289 104 2/29/2024
2.1.288 239 2/29/2024
2.1.287 101 2/29/2024
2.1.286 679 2/29/2024
2.1.285 1,209 2/26/2024
2.1.284 112 2/26/2024
2.1.283 522 2/25/2024
2.1.282 181 2/25/2024
2.1.281 798 2/23/2024
2.1.280 468 2/23/2024
2.1.279 456 2/22/2024
2.1.278 226 2/22/2024
2.1.277 328 2/22/2024
2.1.276 112 2/22/2024
2.1.275 228 2/21/2024
2.1.274 117 2/21/2024
2.1.273 520 2/21/2024
2.1.272 130 2/21/2024
2.1.271 116 2/21/2024
2.1.270 536 2/21/2024
2.1.269 310 2/21/2024
2.1.268 117 2/21/2024
2.1.267 260 2/21/2024
2.1.266 103 2/21/2024
2.1.265 286 2/21/2024
2.1.264 106 2/21/2024
2.1.263 394 2/21/2024
2.1.262 536 2/20/2024
2.1.261 319 2/20/2024
2.1.260 140 2/20/2024
2.1.259 220 2/20/2024
2.1.258 452 2/20/2024
2.1.257 249 2/20/2024
2.1.256 316 2/19/2024
2.1.255 465 2/19/2024
2.1.254 99 2/19/2024
2.1.253 716 2/17/2024
2.1.252 103 2/17/2024
2.1.251 303 2/17/2024
2.1.250 427 2/16/2024
2.1.249 95 2/16/2024
2.1.248 330 2/16/2024
2.1.247 297 2/16/2024
2.1.246 104 2/16/2024
2.1.245 369 2/16/2024
2.1.244 99 2/16/2024
2.1.243 101 2/16/2024
2.1.242 369 2/16/2024
2.1.241 109 2/16/2024
2.1.240 995 2/13/2024
2.1.239 112 2/13/2024
2.1.238 596 2/13/2024
2.1.237 434 2/13/2024
2.1.236 206 2/13/2024
2.1.235 102 2/13/2024
2.1.234 173 2/13/2024
2.1.233 447 2/13/2024
2.1.232 116 2/13/2024
2.1.231 560 2/12/2024
2.1.230 382 2/12/2024
2.1.229 134 2/11/2024
2.1.228 118 2/11/2024
2.1.227 547 2/11/2024
2.1.226 271 2/11/2024
2.1.225 348 2/11/2024
2.1.224 225 2/11/2024
2.1.223 902 2/10/2024
2.1.222 197 2/10/2024
2.1.221 276 2/9/2024
2.1.220 301 2/9/2024
2.1.219 486 2/9/2024
2.1.218 355 2/9/2024
2.1.217 456 2/9/2024
2.1.216 115 2/9/2024
2.1.215 325 2/8/2024
2.1.214 428 2/8/2024
2.1.213 122 2/8/2024
2.1.212 331 2/8/2024
2.1.211 169 2/8/2024
2.1.210 544 2/8/2024
2.1.209 145 2/8/2024
2.1.208 650 2/7/2024
2.1.207 143 2/7/2024
2.1.206 150 2/7/2024
2.1.205 430 2/7/2024
2.1.204 293 2/7/2024
2.1.203 110 2/7/2024
2.1.202 287 2/7/2024
2.1.201 121 2/7/2024
2.1.200 435 2/6/2024
2.1.199 118 2/6/2024
2.1.198 846 2/5/2024
2.1.197 111 2/5/2024
2.1.196 532 2/4/2024
2.1.195 185 2/4/2024
2.1.194 748 2/2/2024
2.1.193 114 2/2/2024
2.1.192 675 1/31/2024
2.1.191 118 1/31/2024
2.1.190 529 1/30/2024
2.1.189 457 1/29/2024
2.1.188 361 1/29/2024
2.1.187 107 1/29/2024
2.1.186 106 1/29/2024
2.1.185 421 1/29/2024
2.1.184 278 1/29/2024
2.1.183 97 1/29/2024
2.1.182 291 1/28/2024
2.1.181 113 1/28/2024
2.1.180 231 1/28/2024
2.1.179 416 1/28/2024
2.1.178 111 1/28/2024
2.1.177 234 1/28/2024
2.1.176 279 1/28/2024
2.1.175 106 1/28/2024
2.1.174 754 1/28/2024
2.1.173 170 1/27/2024
2.1.172 107 1/27/2024
2.1.171 489 1/27/2024
2.1.170 107 1/27/2024
2.1.169 210 1/27/2024
2.1.168 116 1/27/2024
2.1.167 456 1/27/2024
2.1.166 106 1/27/2024
2.1.165 476 1/27/2024
2.1.164 106 1/27/2024
2.1.163 212 1/27/2024
2.1.162 126 1/26/2024
2.1.161 98 1/26/2024
2.1.160 666 1/26/2024
2.1.159 113 1/26/2024
2.1.158 460 1/26/2024
2.1.157 98 1/26/2024
2.1.156 218 1/26/2024
2.1.155 211 1/26/2024
2.1.154 103 1/26/2024
2.1.153 170 1/26/2024
2.1.152 97 1/26/2024
2.1.151 621 1/25/2024
2.1.150 117 1/25/2024
2.1.149 314 1/25/2024
2.1.148 109 1/25/2024
2.1.147 613 1/25/2024
2.1.146 186 1/25/2024
2.1.145 111 1/25/2024
2.1.144 319 1/25/2024
2.1.143 743 1/19/2024
2.1.142 113 1/19/2024
2.1.141 633 1/15/2024
2.1.140 145 1/15/2024
2.1.139 127 1/15/2024
2.1.138 605 1/15/2024
2.1.137 128 1/15/2024
2.1.136 264 1/15/2024
2.1.135 130 1/15/2024
2.1.134 432 1/15/2024
2.1.133 262 1/15/2024
2.1.132 770 1/14/2024
2.1.131 110 1/14/2024
2.1.130 597 1/13/2024
2.1.129 109 1/13/2024
2.1.128 605 1/12/2024
2.1.127 138 1/12/2024
2.1.126 574 1/11/2024
2.1.125 414 1/11/2024
2.1.124 739 1/8/2024
2.1.123 306 1/7/2024
2.1.122 533 1/5/2024
2.1.121 274 1/5/2024
2.1.120 118 1/5/2024
2.1.119 437 1/5/2024
2.1.118 466 1/5/2024
2.1.117 124 1/5/2024
2.1.116 645 1/3/2024
2.1.115 154 1/3/2024
2.1.114 424 1/1/2024
2.1.113 172 1/1/2024
2.1.112 751 12/30/2023
2.1.111 290 12/28/2023
2.1.110 202 12/28/2023
2.1.109 262 12/28/2023
2.1.108 235 12/28/2023
2.1.107 144 12/28/2023
2.1.106 534 12/28/2023
2.1.105 201 12/27/2023
2.1.104 128 12/27/2023
2.1.103 155 12/27/2023
2.1.102 121 12/27/2023
2.1.101 690 12/25/2023
2.1.100 113 12/25/2023
2.1.99 254 12/25/2023
2.1.98 128 12/25/2023
2.1.97 424 12/25/2023
2.1.96 312 12/25/2023
2.1.95 178 12/25/2023
2.1.94 123 12/25/2023
2.1.93 154 12/25/2023
2.1.92 146 12/25/2023
2.1.91 635 12/24/2023
2.1.90 216 12/24/2023
2.1.89 382 12/23/2023
2.1.88 173 12/23/2023
2.1.87 126 12/23/2023
2.1.86 246 12/23/2023
2.1.85 127 12/23/2023
2.1.84 428 12/23/2023
2.1.83 125 12/23/2023
2.1.82 423 12/23/2023
2.1.81 129 12/23/2023
2.1.80 251 12/23/2023
2.1.79 534 12/19/2023
2.1.78 121 12/19/2023
2.1.77 211 12/19/2023
2.1.76 938 12/11/2023
2.1.75 262 12/11/2023
2.1.74 276 12/10/2023
2.1.73 208 12/10/2023
2.1.72 148 12/10/2023
2.1.71 506 12/10/2023
2.1.70 170 12/9/2023
2.1.69 248 12/9/2023
2.1.68 260 12/9/2023
2.1.67 153 12/9/2023
2.1.66 164 12/9/2023
2.1.65 212 12/9/2023
2.1.64 127 12/9/2023
2.1.63 342 12/9/2023
2.1.62 519 12/6/2023
2.1.61 213 12/6/2023
2.1.60 251 12/6/2023
2.1.59 165 12/6/2023
2.1.58 279 12/5/2023
2.1.57 264 12/5/2023
2.1.56 181 12/5/2023
2.1.55 211 12/5/2023
2.1.54 202 12/5/2023
2.1.53 150 12/5/2023
2.1.52 224 12/5/2023
2.1.51 156 12/4/2023
2.1.50 135 12/4/2023
2.1.49 421 12/4/2023
2.1.48 133 12/4/2023
2.1.47 131 12/4/2023
2.1.46 380 11/28/2023
2.1.45 158 11/27/2023
2.1.44 203 11/27/2023
2.1.43 144 11/26/2023
2.1.42 245 11/23/2023
2.1.41 134 11/23/2023
2.1.40 324 11/23/2023
2.1.39 280 11/23/2023
2.1.38 216 11/23/2023
2.1.37 148 11/23/2023
2.1.36 168 11/23/2023
2.1.35 423 11/22/2023
2.1.34 191 11/20/2023
2.1.33 209 11/20/2023
2.1.32 274 11/20/2023
2.1.31 136 11/20/2023
2.1.30 282 11/19/2023
2.1.29 127 11/19/2023
2.1.28 167 11/19/2023
2.1.27 144 11/19/2023
2.1.26 240 11/19/2023
2.1.25 139 11/19/2023
2.1.24 155 11/19/2023
2.1.23 131 11/19/2023
2.1.22 134 11/19/2023
2.1.21 315 11/18/2023
2.1.20 149 11/18/2023
2.1.19 153 11/18/2023
2.1.18 132 11/18/2023
2.1.17 129 11/18/2023
2.1.16 142 11/17/2023
2.1.15 132 11/17/2023
2.1.14 138 11/17/2023
2.1.13 146 11/17/2023
2.1.12 164 11/17/2023
2.1.11 119 11/17/2023
2.1.10 135 11/17/2023
2.1.9 139 11/17/2023
2.1.8 152 11/17/2023
2.1.7 142 11/17/2023
2.1.6 165 11/17/2023
2.1.5 141 11/17/2023
2.1.4 142 11/16/2023
2.1.3 138 11/16/2023
2.0.37 835 11/15/2023
2.0.36 136 11/15/2023
2.0.35 141 11/15/2023
2.0.34 137 11/15/2023
1.0.33 141 11/14/2023
1.0.32 131 11/14/2023
1.0.31 347 11/13/2023
1.0.30 132 11/13/2023
1.0.29 169 11/10/2023
1.0.28 133 11/10/2023
1.0.27 136 11/9/2023
1.0.26 131 11/9/2023
1.0.25 132 11/9/2023
1.0.24 133 11/7/2023
1.0.23 128 11/7/2023
1.0.22 126 11/6/2023
1.0.21 135 11/6/2023
1.0.20 154 11/3/2023
1.0.19 144 11/3/2023
1.0.18 153 11/2/2023
1.0.17 142 11/2/2023
1.0.16 151 11/1/2023
1.0.15 140 11/1/2023
1.0.14 180 10/26/2023
1.0.13 154 10/26/2023
1.0.12 170 10/19/2023
1.0.11 169 10/19/2023
1.0.10 170 10/18/2023
1.0.9 167 10/18/2023
1.0.8 164 10/17/2023
1.0.7 153 10/17/2023
1.0.6 186 10/16/2023
1.0.5 180 10/16/2023
1.0.4 180 10/13/2023
1.0.3 173 10/13/2023
1.0.2 172 10/12/2023
1.0.1 195 10/1/2023