Soenneker.Reflection.Cache 2.1.69

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Reflection.Cache --version 2.1.69
                    
NuGet\Install-Package Soenneker.Reflection.Cache -Version 2.1.69
                    
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.Reflection.Cache" Version="2.1.69" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Reflection.Cache" Version="2.1.69" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Reflection.Cache" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Reflection.Cache --version 2.1.69
                    
#r "nuget: Soenneker.Reflection.Cache, 2.1.69"
                    
#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.
#:package Soenneker.Reflection.Cache@2.1.69
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Reflection.Cache&version=2.1.69
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Reflection.Cache&version=2.1.69
                    
Install as a Cake Tool

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.Reflection.Cache

The fastest .NET Reflection cache

Why?

System.Reflection is slow. If you need to call Reflection code repeatedly, this library can drastically speed up subsequent calls. It's thread-safe and supports concurrency.

Installation

dotnet add package Soenneker.Reflection.Cache

This cache can either be added to DI like so:

public void ConfigureServices(IServiceCollection services)
{
    services.AddReflectionCacheAsSingleton(); // or AddReflectionCacheAsScoped()
}

and you could access it like:

public class MyService
{
    private readonly IReflectionCache _cache;

    public MyService(IReflectionCache cache)
    {
        _cache = cache;
    }
}

or you can instantiate it manually:

var cache = new ReflectionCache(threadSafe: true); // can be disabled for extra speed

Usage

var type1 = Type.GetType("System.String"); // <-- regular Reflection
var type2 = cache.GetType("System.String"); // <-- cached Reflection
bool areEqual = type1 == type2; // true

Keep in mind:

cache.GetType("System.String"); // <-- as slow as regular Reflection
cache.GetType("System.String"); // <-- very fast because the first call was cached

⚠️ Important ⚠️

Be mindful of the "cache chain". Use the Cached methods and types until you need to get the final Reflection type you need from the cache.

There are two methods for most operations like this:

Type typeofString = cache.GetType("System.String"); // <-- caches, stops the cache chain
CachedType type = cache.GetCachedType("System.String"); // <-- caches, continues the cache chain
Scenario: Retrieving parameters from a method

✅ Good:

CachedType cachedType = cache.GetCachedType("System.String");
CachedMethod cachedMethodInfo = cachedType.GetCachedMethod("Intern");
ParameterInfo?[] parameters = cachedMethodInfo.GetParameters(); // < -- parameters are now cached

❌ Bad:

CachedType cachedType = cache.GetCachedType("System.String");
MethodInfo methodInfo = cachedType.GetMethod("Intern"); // <-- uh oh, a non-cached Reflection type
ParameterInfo?[] parameters = methodInfo.GetParameters(); // <-- not cached, repeat calls are slow

Tips

  • Almost all of the Cached methods (e.g. GetCachedParameters() vs GetParameters() are faster due to the final preparation needed to match the System.Reflection methods.
  • Work with the Cached objects instead of Reflection objects if possible. They're faster to retrieve and allow for more efficient downstream chaining.
  • Thread safety can be disabled for more speed. It's enabled by default.
  • Consider if caching is even necessary for your use case. If you're only calling Reflection once, it may not be worth it.
  • Caching isn't free. Be thoughtful of your memory footprint and where/when you dispose of the cache.

Notes

  • A cache removal mechanism is needing to be built yet.
  • Many Reflection functionalities are not yet implemented, and could benefit from caching.
  • If you see something that could be improved (performance or allocation), please open an issue or PR.

Benchmarks (.NET 8.0)

GetType() 5,772% faster

Method Mean Error StdDev Ratio RatioSD
GetType_string_NoCache 1,022.30 ns 9.462 ns 8.851 ns baseline
GetType_string_Cache 17.52 ns 0.303 ns 0.283 ns 58.38x faster 1.12x
GetType_string_threadSafe_Cache 24.73 ns 0.139 ns 0.116 ns 41.29x faster 0.33x
GetCachedType_type_Cache 12.21 ns 0.234 ns 0.218 ns 83.76x faster 1.74x
GetCachedType_type_ThreadSafe_Cache 19.01 ns 0.067 ns 0.052 ns 53.73x faster 0.47x

GetMethods() 24,842% faster

Method Mean Error StdDev Ratio RatioSD
GetMethods_NoCache 256.526 ns 1.4587 ns 1.2180 ns baseline
GetMethods_Cache 1.030 ns 0.0412 ns 0.0385 ns 249.428x faster 10.30x

GetMethod() 37% faster

Method Mean Error StdDev Ratio RatioSD
GetMethod_NoCache 23.06 ns 0.234 ns 0.208 ns baseline
GetMethod_Cache 16.77 ns 0.079 ns 0.070 ns 1.37x faster 0.01x

GetMembers() 83,924% faster

Method Mean Error StdDev Ratio RatioSD
GetMembers_NoCache 550.2334 ns 4.1411 ns 3.8736 ns baseline
GetMembers_Cache 0.6579 ns 0.0515 ns 0.0481 ns 840.247x faster 58.17x
GetMembers_ThreadSafe_Cache 0.7273 ns 0.0307 ns 0.0287 ns 757.728x faster 31.76x

GetMember() 1,043% faster

Method Mean Error StdDev Ratio RatioSD
GetMember_NoCache 136.57 ns 1.353 ns 1.266 ns baseline
GetMember_Cache 11.95 ns 0.091 ns 0.081 ns 11.43x faster 0.12x

GetProperties() 8,960% faster

Method Mean Error StdDev Ratio RatioSD
GetProperties_NoCache 58.5363 ns 0.3463 ns 0.3070 ns baseline
GetProperties_Cache 0.6502 ns 0.0370 ns 0.0328 ns 90.25x faster 4.59x
GetProperties_ThreadSafe_Cache 0.7169 ns 0.0129 ns 0.0108 ns 81.72x faster 1.36x

GetProperty() 57% faster

Method Mean Error StdDev Ratio RatioSD
GetProperty_NoCache 25.61 ns 0.382 ns 0.357 ns baseline
GetProperty_Cache 16.23 ns 0.074 ns 0.062 ns 1.57x faster 0.01x

GetFields() 419% faster

Method Mean Error StdDev Ratio RatioSD
GetFields_NoCache 48.941 ns 0.9092 ns 0.8505 ns baseline
GetFields_Cache 1.141 ns 0.0512 ns 0.0479 ns 42.95x faster 1.32x
GetFields_ThreadSafe_Cache 1.178 ns 0.0144 ns 0.0128 ns 41.56x faster 0.79x

GetInterfaces() 1,439% faster

Method Mean Error StdDev Ratio RatioSD
GetInterfaces_NoCache 13.1880 ns 0.1197 ns 0.0999 ns baseline
GetInterfaces_Cache 0.8649 ns 0.0469 ns 0.0439 ns 15.39x faster 0.58x

GetInterface() 144% faster

Method Mean Error StdDev Ratio RatioSD
GetInterface_NoCache 32.84 ns 0.411 ns 0.364 ns baseline
GetInterface_Cache 13.47 ns 0.227 ns 0.212 ns 2.44x faster 0.05x

GetConstructors() 4,054% faster

Method Mean Error StdDev Ratio RatioSD
GetConstructors_NoCache 38.4477 ns 0.2020 ns 0.1687 ns baseline
GetConstructors_Cache 0.9280 ns 0.0109 ns 0.0102 ns 41.54x faster 0.36x
GetConstructors_ThreadSafe_Cache 1.0120 ns 0.0689 ns 0.0645 ns 38.39x faster 2.42x

GetConstructor() 601% faster

Method Mean Error StdDev Ratio RatioSD
GetConstructor_NoCache 18.16 ns 0.298 ns 0.278 ns baseline
GetConstructor_NoCache_Parameters 127.18 ns 1.592 ns 1.489 ns 7.01x slower 0.16x
GetConstructor_Cache 10.36 ns 0.057 ns 0.048 ns 1.76x faster 0.03x
GetConstructor_Cache_Parameters 21.12 ns 0.366 ns 0.342 ns 1.16x slower 0.02x

Activator.CreateInstance(params) vs cachedConstructor.CreateInstance(params) 242% faster

Method Mean Error StdDev Ratio RatioSD
Activator_Create_with_parameters 325.58 ns 1.713 ns 1.431 ns baseline
Cache_CreateInstance_with_parameters 95.61 ns 1.943 ns 1.908 ns 3.42x faster 0.07x

GetCustomAttributes() 1,658% faster

Method Mean Error StdDev Ratio RatioSD
GetAttributes_NoCache 2,560.76 ns 6.740 ns 6.305 ns baseline
GetAttributes_Cache 15.35 ns 0.287 ns 0.268 ns 166.858x faster 2.97x

GetGenericTypeDefinition() 499% faster

Method Mean Error StdDev Ratio RatioSD
GetGenericTypeDefinition_NoCache 1.8759 ns 0.0481 ns 0.0450 ns baseline
GetGenericTypeDefinition_Cache 0.3159 ns 0.0313 ns 0.0293 ns 5.99x faster 0.58x

IsAssignableFrom() 51% faster

Method Mean Error StdDev Ratio RatioSD
IsAssignableFrom_NoCache 9.355 ns 0.1357 ns 0.1270 ns baseline
IsAssignableFrom_Cache 6.198 ns 0.0794 ns 0.0742 ns 1.51x faster 0.04x

MakeGenericType() 1,485% faster

Method Mean Error StdDev Ratio RatioSD
MakeGenericType_NoCache 158.56 ns 0.900 ns 0.842 ns baseline
MakeGenericType_Cache 10.01 ns 0.216 ns 0.202 ns 15.85x faster 0.31x

GetElementType() 1,847% faster

Method Mean Error StdDev Ratio RatioSD
GetElementType_NoCache 4.9175 ns 0.0442 ns 0.0369 ns baseline
GetElementType_Cache 0.2585 ns 0.0204 ns 0.0191 ns 19.47x faster 1.06x

Properties on Type (e.g. typeof(string).IsNullable)

Method Mean Error StdDev Median
IsAbstract_NoCache 2.4277 ns 0.0319 ns 0.0299 ns 2.4152 ns
IsAbstract_Cache 0.0000 ns 0.0000 ns 0.0000 ns 0.0000 ns
IsInterface_NoCache 0.7720 ns 0.0219 ns 0.0194 ns 0.7662 ns
IsInterface_Cache 0.0045 ns 0.0076 ns 0.0071 ns 0.0000 ns
IsGenericType_NoCache 0.8707 ns 0.0281 ns 0.0262 ns 0.8732 ns
IsGenericType_Cache 0.2667 ns 0.0195 ns 0.0182 ns 0.2651 ns
IsEnum_NoCache 0.5322 ns 0.0242 ns 0.0227 ns 0.5291 ns
IsEnum_Cache 0.2612 ns 0.0251 ns 0.0235 ns 0.2526 ns
IsNullable_NoCache 1.4296 ns 0.0297 ns 0.0278 ns 1.4305 ns
IsNullable_Cache 0.2312 ns 0.0077 ns 0.0065 ns 0.2278 ns
IsByRef_NoCache 1.8439 ns 0.0332 ns 0.0310 ns 1.8410 ns
IsByRef_Cache 0.0012 ns 0.0025 ns 0.0022 ns 0.0000 ns
IsArray_NoCache 2.2914 ns 0.0484 ns 0.0452 ns 2.2652 ns
IsArray_Cache 0.0060 ns 0.0102 ns 0.0096 ns 0.0000 ns

Notes:

  • These benchmarks are built over iterations. The first operation is going to be as slow as the Reflection it sits in front of.
  • Many of these are based off of a test class TestType which is located in the test library.
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Soenneker.Reflection.Cache:

Package Downloads
Soenneker.Utils.AutoBogus

The .NET Bogus autogenerator

Soenneker.Utils.String

A utility library for useful String operations

Soenneker.Swashbuckle.IntellenumSchemaFilter

A Swashbuckle Schema filter for Intellenum

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.555 17,924 9/10/2025
3.0.554 353 9/9/2025
3.0.553 18,118 9/3/2025
3.0.552 151 9/3/2025
3.0.551 152 9/3/2025
3.0.550 5,250 9/3/2025
3.0.549 149 9/3/2025
3.0.548 26,164 8/11/2025
3.0.547 140 8/11/2025
3.0.546 164 8/11/2025
3.0.545 139 8/11/2025
3.0.544 139 8/11/2025
3.0.543 142 8/11/2025
3.0.542 24,953 8/5/2025
3.0.541 27,547 7/8/2025
3.0.540 17,985 6/28/2025
3.0.539 1,535 6/28/2025
3.0.538 1,416 6/28/2025
3.0.537 211 6/28/2025
3.0.535 29,676 6/10/2025
3.0.534 18,146 5/27/2025
3.0.533 161 5/27/2025
3.0.532 2,900 5/27/2025
3.0.531 157 5/27/2025
3.0.530 163 5/27/2025
3.0.529 13,279 5/23/2025
3.0.528 148 5/23/2025
3.0.527 305 5/22/2025
3.0.526 162 5/22/2025
3.0.525 153 5/22/2025
3.0.524 21,367 5/13/2025
3.0.523 10,349 5/8/2025
3.0.522 166 5/8/2025
3.0.521 178 5/7/2025
3.0.520 158 5/7/2025
3.0.519 163 5/7/2025
3.0.518 15,112 5/5/2025
3.0.517 401 5/5/2025
3.0.516 157 5/5/2025
3.0.515 2,678 5/5/2025
3.0.514 6,815 5/5/2025
3.0.513 150 5/5/2025
3.0.512 162 5/5/2025
3.0.511 146 5/5/2025
3.0.510 281 5/5/2025
3.0.509 170 5/5/2025
3.0.508 33,401 4/9/2025
3.0.507 338 4/8/2025
3.0.506 186 4/8/2025
3.0.505 182 4/8/2025
3.0.504 180 4/8/2025
3.0.503 283 4/8/2025
3.0.502 14,985 4/8/2025
3.0.501 24,982 4/7/2025
3.0.500 278 4/6/2025
3.0.499 4,473 4/6/2025
3.0.498 182 4/6/2025
3.0.497 2,418 4/6/2025
3.0.496 3,030 4/6/2025
3.0.495 157 4/6/2025
3.0.494 185 4/6/2025
3.0.493 127 4/6/2025
3.0.492 2,722 4/6/2025
3.0.491 122 4/6/2025
3.0.490 123 4/6/2025
3.0.489 116 4/6/2025
3.0.488 284 4/5/2025
3.0.487 13,244 4/5/2025
3.0.486 5,020 4/4/2025
3.0.485 57,540 3/20/2025
3.0.484 16,503 3/14/2025
3.0.482 8,810 3/11/2025
3.0.481 202 3/11/2025
3.0.480 603 3/11/2025
3.0.479 7,455 3/11/2025
3.0.478 18,033 3/2/2025
3.0.477 1,378 3/1/2025
3.0.476 3,162 3/1/2025
3.0.475 116 3/1/2025
3.0.474 124 3/1/2025
3.0.473 131 3/1/2025
3.0.472 2,961 3/1/2025
3.0.471 109 3/1/2025
3.0.470 2,439 3/1/2025
3.0.469 116 3/1/2025
3.0.468 116 3/1/2025
3.0.467 122 3/1/2025
3.0.466 100 3/1/2025
3.0.465 101 3/1/2025
3.0.464 14,775 2/25/2025
3.0.463 12,188 2/22/2025
3.0.462 6,251 2/22/2025
3.0.461 1,659 2/21/2025
3.0.460 806 2/21/2025
3.0.459 13,211 2/18/2025
3.0.458 5,855 2/18/2025
3.0.457 11,970 2/13/2025
3.0.456 9,799 2/12/2025
3.0.455 1,572 2/11/2025
3.0.454 456 2/11/2025
3.0.453 116 2/11/2025
3.0.452 121 2/11/2025
3.0.451 3,375 2/11/2025
3.0.450 548 2/11/2025
3.0.449 3,949 2/11/2025
3.0.448 1,724 2/11/2025
3.0.447 471 2/10/2025
3.0.446 3,268 2/10/2025
3.0.445 531 2/10/2025
3.0.444 612 2/10/2025
3.0.443 102 2/10/2025
3.0.442 125 2/10/2025
3.0.441 128 2/10/2025
3.0.440 122 2/10/2025
3.0.439 13,089 2/8/2025
3.0.438 1,069 2/8/2025
3.0.437 366 2/8/2025
3.0.436 2,779 2/7/2025
3.0.435 130 2/7/2025
3.0.434 370 2/7/2025
3.0.433 118 2/7/2025
3.0.432 1,216 2/7/2025
3.0.431 128 2/7/2025
3.0.430 3,660 2/7/2025
3.0.429 119 2/7/2025
3.0.428 430 2/7/2025
3.0.427 121 2/7/2025
3.0.426 4,758 2/7/2025
3.0.425 113 2/7/2025
3.0.424 117 2/7/2025
3.0.423 119 2/7/2025
3.0.422 116 2/7/2025
3.0.421 15,027 2/5/2025
3.0.420 7,787 2/4/2025
3.0.419 10,976 1/27/2025
3.0.418 2,607 1/27/2025
3.0.417 99 1/27/2025
3.0.416 14,434 1/25/2025
3.0.415 6,181 1/24/2025
3.0.414 9,747 1/24/2025
3.0.413 1,600 1/24/2025
3.0.412 2,030 1/23/2025
3.0.411 5,779 1/23/2025
3.0.410 10,804 1/21/2025
3.0.409 2,453 1/21/2025
3.0.408 6,213 1/21/2025
3.0.407 3,457 1/20/2025
3.0.406 4,018 1/20/2025
3.0.405 4,297 1/20/2025
3.0.404 2,630 1/20/2025
3.0.403 273 1/20/2025
3.0.402 109 1/20/2025
3.0.401 112 1/20/2025
3.0.400 105 1/20/2025
3.0.399 501 1/20/2025
3.0.398 115 1/20/2025
3.0.397 8,745 1/19/2025
3.0.396 7,089 1/18/2025
3.0.395 7,342 1/17/2025
3.0.394 5,275 1/17/2025
3.0.393 9,161 1/16/2025
3.0.392 2,763 1/16/2025
3.0.391 4,147 1/15/2025
3.0.390 5,814 1/15/2025
3.0.389 114 1/15/2025
3.0.388 1,695 1/14/2025
3.0.387 73 1/14/2025
3.0.386 70 1/14/2025
3.0.385 122 1/14/2025
3.0.384 74 1/14/2025
3.0.383 1,217 1/14/2025
3.0.382 51 1/14/2025
3.0.381 2,885 1/13/2025
3.0.380 10,115 1/13/2025
3.0.379 7,973 1/11/2025
3.0.378 699 1/10/2025
3.0.377 87 1/10/2025
3.0.376 2,055 1/10/2025
3.0.375 100 1/10/2025
3.0.374 183 1/10/2025
3.0.373 88 1/10/2025
3.0.372 3,528 1/10/2025
3.0.371 80 1/10/2025
3.0.370 86 1/10/2025
3.0.369 80 1/10/2025
3.0.368 17,067 1/2/2025
3.0.367 130 1/2/2025
3.0.366 2,089 1/2/2025
3.0.365 129 1/2/2025
3.0.364 804 1/2/2025
3.0.363 129 1/2/2025
3.0.362 124 1/2/2025
3.0.361 126 1/2/2025
3.0.360 451 1/2/2025
3.0.359 9,930 1/1/2025
3.0.358 159 1/1/2025
3.0.357 132 1/1/2025
3.0.356 137 1/1/2025
3.0.355 2,783 12/31/2024
3.0.354 128 12/31/2024
3.0.353 117 12/31/2024
3.0.352 120 12/31/2024
3.0.351 109 12/31/2024
3.0.350 124 12/31/2024
3.0.349 124 12/31/2024
3.0.348 123 12/31/2024
3.0.347 963 12/31/2024
3.0.346 5,415 12/31/2024
3.0.345 5,047 12/31/2024
3.0.344 105 12/31/2024
3.0.343 101 12/31/2024
3.0.342 490 12/31/2024
3.0.341 100 12/31/2024
3.0.340 121 12/31/2024
3.0.339 118 12/31/2024
3.0.338 4,691 12/31/2024
3.0.337 11,033 12/27/2024
3.0.336 7,223 12/24/2024
3.0.335 515 12/24/2024
3.0.334 110 12/24/2024
3.0.333 107 12/24/2024
3.0.332 285 12/24/2024
3.0.331 119 12/24/2024
3.0.330 115 12/24/2024
3.0.329 115 12/24/2024
3.0.328 119 12/24/2024
3.0.327 107 12/24/2024
3.0.326 3,010 12/23/2024
3.0.325 2,169 12/23/2024
3.0.324 513 12/23/2024
3.0.323 3,585 12/23/2024
3.0.322 3,300 12/23/2024
3.0.321 2,163 12/22/2024
3.0.320 3,167 12/22/2024
3.0.319 6,878 12/22/2024
3.0.318 4,138 12/22/2024
3.0.317 154 12/22/2024
3.0.316 119 12/22/2024
3.0.315 157 12/21/2024
3.0.314 117 12/21/2024
3.0.313 3,375 12/21/2024
3.0.312 117 12/21/2024
3.0.311 112 12/21/2024
3.0.310 3,261 12/21/2024
3.0.309 117 12/21/2024
3.0.308 113 12/21/2024
3.0.307 515 12/21/2024
3.0.306 121 12/21/2024
3.0.305 106 12/21/2024
3.0.304 380 12/21/2024
3.0.303 426 12/21/2024
3.0.302 128 12/21/2024
3.0.301 411 12/20/2024
3.0.300 119 12/20/2024
3.0.299 7,872 12/20/2024
3.0.298 124 12/20/2024
3.0.297 5,888 12/20/2024
3.0.296 2,291 12/19/2024
3.0.295 116 12/19/2024
3.0.294 3,879 12/19/2024
3.0.293 1,737 12/18/2024
3.0.292 121 12/18/2024
3.0.291 124 12/18/2024
3.0.290 122 12/18/2024
3.0.289 6,925 12/17/2024
3.0.288 112 12/17/2024
3.0.287 728 12/16/2024
3.0.286 114 12/16/2024
3.0.285 100 12/16/2024
3.0.284 116 12/16/2024
3.0.283 111 12/16/2024
3.0.282 44,104 12/9/2024
3.0.281 4,104 12/9/2024
3.0.280 122 12/9/2024
3.0.279 7,429 12/6/2024
3.0.278 115 12/6/2024
3.0.277 195 12/6/2024
3.0.276 228 12/6/2024
3.0.275 5,313 12/6/2024
3.0.274 127 12/6/2024
3.0.273 2,754 12/6/2024
3.0.272 5,704 12/5/2024
3.0.271 117 12/5/2024
3.0.270 12,517 12/5/2024
3.0.269 2,292 12/4/2024
3.0.268 2,143 12/4/2024
3.0.267 6,382 12/4/2024
3.0.266 5,728 12/3/2024
3.0.265 1,832 12/3/2024
3.0.264 1,483 12/3/2024
3.0.263 2,469 12/3/2024
3.0.262 114 12/3/2024
3.0.261 2,164 12/2/2024
3.0.260 6,943 12/2/2024
3.0.259 2,686 12/1/2024
3.0.258 126 12/1/2024
3.0.257 22,555 11/20/2024
3.0.256 4,105 11/19/2024
3.0.255 5,789 11/19/2024
3.0.254 101 11/19/2024
3.0.253 100 11/19/2024
3.0.252 117 11/19/2024
3.0.251 3,648 11/19/2024
3.0.250 106 11/19/2024
3.0.249 106 11/19/2024
3.0.248 109 11/19/2024
3.0.247 15,513 11/14/2024
3.0.246 3,937 11/14/2024
3.0.245 5,159 11/14/2024
3.0.244 130 11/14/2024
3.0.243 133 11/14/2024
3.0.242 139 11/14/2024
3.0.241 128 11/14/2024
3.0.240 123 11/14/2024
3.0.239 130 11/14/2024
3.0.238 127 11/14/2024
2.1.237 3,916 11/13/2024
2.1.236 9,810 11/12/2024
2.1.235 398 11/12/2024
2.1.234 127 11/12/2024
2.1.233 10,493 11/8/2024
2.1.232 3,680 11/8/2024
2.1.231 3,590 11/8/2024
2.1.230 15,677 10/31/2024
2.1.229 297 10/31/2024
2.1.228 7,142 10/29/2024
2.1.227 12,214 10/22/2024
2.1.226 22,399 10/22/2024
2.1.225 12,631 10/14/2024
2.1.224 6,217 10/11/2024
2.1.223 922 10/11/2024
2.1.222 7,967 10/8/2024
2.1.221 7,241 10/8/2024
2.1.220 121 10/8/2024
2.1.219 10,080 10/3/2024
2.1.218 12,363 10/2/2024
2.1.217 7,618 10/1/2024
2.1.216 7,489 9/29/2024
2.1.215 1,459 9/28/2024
2.1.214 6,594 9/27/2024
2.1.213 122 9/27/2024
2.1.212 340 9/27/2024
2.1.211 133 9/27/2024
2.1.210 129 9/27/2024
2.1.209 121 9/27/2024
2.1.208 133 9/27/2024
2.1.207 3,258 9/27/2024
2.1.206 8,778 9/26/2024
2.1.205 1,740 9/26/2024
2.1.204 7,466 9/25/2024
2.1.203 6,149 9/23/2024
2.1.202 5,234 9/23/2024
2.1.201 3,840 9/23/2024
2.1.200 136 9/23/2024
2.1.199 978 9/23/2024
2.1.198 140 9/23/2024
2.1.197 658 9/22/2024
2.1.196 126 9/22/2024
2.1.195 10,536 9/17/2024
2.1.194 695 9/17/2024
2.1.193 188 9/17/2024
2.1.192 124 9/17/2024
2.1.191 134 9/17/2024
2.1.190 132 9/17/2024
2.1.189 138 9/17/2024
2.1.188 26,719 9/11/2024
2.1.187 3,889 9/11/2024
2.1.186 9,888 9/10/2024
2.1.185 1,685 9/9/2024
2.1.184 3,211 9/9/2024
2.1.183 6,614 9/9/2024
2.1.182 9,113 9/6/2024
2.1.181 5,070 9/5/2024
2.1.180 2,137 9/5/2024
2.1.179 2,664 9/5/2024
2.1.178 131 9/5/2024
2.1.177 1,215 9/5/2024
2.1.176 144 9/5/2024
2.1.175 141 9/5/2024
2.1.174 8,565 9/4/2024
2.1.173 8,978 9/3/2024
2.1.172 3,090 9/3/2024
2.1.171 18,732 8/21/2024
2.1.170 1,700 8/20/2024
2.1.169 363 8/20/2024
2.1.168 167 8/20/2024
2.1.167 164 8/20/2024
2.1.166 2,644 8/20/2024
2.1.165 157 8/20/2024
2.1.164 152 8/20/2024
2.1.163 8,232 8/19/2024
2.1.162 8,660 8/13/2024
2.1.161 10,067 8/6/2024
2.1.160 31,391 8/1/2024
2.1.159 3,797 7/31/2024
2.1.158 7,123 7/25/2024
2.1.157 88 7/25/2024
2.1.156 2,345 7/24/2024
2.1.155 18,415 7/14/2024
2.1.154 8,228 7/10/2024
2.1.153 3,903 7/10/2024
2.1.151 1,831 7/9/2024
2.1.149 188 7/9/2024
2.1.148 6,343 7/9/2024
2.1.147 3,963 7/9/2024
2.1.146 137 7/9/2024
2.1.145 1,741 7/9/2024
2.1.144 125 7/9/2024
2.1.143 3,513 7/9/2024
2.1.141 654 7/8/2024
2.1.140 133 7/8/2024
2.1.139 119 7/8/2024
2.1.138 2,057 7/8/2024
2.1.137 8,917 7/7/2024
2.1.136 1,099 7/7/2024
2.1.135 14,027 7/3/2024
2.1.134 16,674 6/15/2024
2.1.133 13,243 6/1/2024
2.1.132 114 6/1/2024
2.1.131 686 6/1/2024
2.1.130 5,809 5/31/2024
2.1.129 3,510 5/29/2024
2.1.128 3,896 5/28/2024
2.1.127 2,491 5/27/2024
2.1.126 7,219 5/25/2024
2.1.125 1,916 5/25/2024
2.1.124 196 5/25/2024
2.1.123 140 5/25/2024
2.1.122 1,985 5/25/2024
2.1.121 148 5/25/2024
2.1.120 149 5/25/2024
2.1.119 158 5/25/2024
2.1.118 143 5/25/2024
2.1.117 21,604 5/23/2024
2.1.116 2,051 5/22/2024
2.1.115 1,558 5/22/2024
2.1.114 150 5/22/2024
2.1.113 135 5/22/2024
2.1.112 281 5/22/2024
2.1.111 3,998 5/22/2024
2.1.110 6,914 5/17/2024
2.1.109 7,239 5/14/2024
2.1.108 122 5/14/2024
2.1.107 29,430 4/29/2024
2.1.106 170 4/29/2024
2.1.105 4,007 4/28/2024
2.1.104 2,538 4/28/2024
2.1.103 147 4/28/2024
2.1.102 2,956 4/28/2024
2.1.101 135 4/28/2024
2.1.100 1,723 4/28/2024
2.1.99 130 4/28/2024
2.1.98 152 4/28/2024
2.1.97 148 4/28/2024
2.1.96 746 4/27/2024
2.1.95 136 4/27/2024
2.1.94 1,646 4/27/2024
2.1.93 13,277 4/12/2024
2.1.92 3,369 4/12/2024
2.1.91 154 4/12/2024
2.1.90 161 4/12/2024
2.1.89 194 4/12/2024
2.1.88 207 4/12/2024
2.1.87 153 4/12/2024
2.1.86 2,510 4/12/2024
2.1.85 161 4/12/2024
2.1.84 8,276 4/9/2024
2.1.83 4,000 4/1/2024
2.1.82 9,739 3/25/2024
2.1.81 4,275 3/19/2024
2.1.80 6,272 3/13/2024
2.1.79 153 3/13/2024
2.1.78 1,055 3/13/2024
2.1.77 145 3/13/2024
2.1.76 152 3/13/2024
2.1.75 2,992 3/12/2024
2.1.74 157 3/12/2024
2.1.73 8,039 3/8/2024
2.1.72 3,876 3/6/2024
2.1.71 2,128 3/4/2024
2.1.70 3,908 3/2/2024
2.1.69 1,679 3/2/2024
2.1.68 2,620 2/29/2024
2.1.67 4,857 2/25/2024
2.1.66 4,547 2/22/2024
2.1.65 2,213 2/21/2024
2.1.64 710 2/21/2024
2.1.63 1,440 2/21/2024
2.1.62 147 2/21/2024
2.1.61 170 2/21/2024
2.1.60 147 2/21/2024
2.1.59 153 2/21/2024
2.1.58 1,270 2/20/2024
2.1.57 3,329 2/20/2024
2.1.56 2,860 2/19/2024
2.1.55 170 2/19/2024
2.1.54 137 2/19/2024
2.1.53 169 2/18/2024
2.1.52 4,194 2/16/2024
2.1.51 167 2/16/2024
2.1.50 840 2/16/2024
2.1.49 1,347 2/16/2024
2.1.48 886 2/16/2024
2.1.47 1,620 2/16/2024
2.1.46 2,265 2/13/2024
2.1.45 2,248 2/13/2024
2.1.44 160 2/13/2024
2.1.43 155 2/13/2024
2.1.42 3,338 2/11/2024
2.1.41 2,380 2/11/2024
2.1.40 1,281 2/10/2024
2.1.39 150 2/10/2024
2.1.38 149 2/10/2024
2.1.37 194 2/9/2024
2.1.36 2,555 2/9/2024
2.1.35 1,610 2/9/2024
2.1.34 162 2/9/2024
2.1.33 1,519 2/8/2024
2.1.32 1,275 2/8/2024
2.1.31 1,227 2/8/2024
2.1.30 2,957 2/6/2024
2.1.29 1,161 2/6/2024
2.1.28 144 2/6/2024
2.1.27 2,347 2/6/2024
2.1.26 161 2/6/2024
2.1.25 215 2/5/2024
2.1.24 2,980 2/4/2024
2.1.23 154 2/4/2024
2.1.22 1,361 2/2/2024
2.1.21 135 2/1/2024
2.1.20 162 2/1/2024
2.1.19 179 2/1/2024
2.1.18 150 1/31/2024
2.1.17 134 1/31/2024
2.1.16 1,794 1/30/2024
2.1.15 4,156 1/28/2024
2.1.14 7,891 1/27/2024
2.1.13 926 1/26/2024
2.1.12 6,141 1/25/2024
2.1.11 137 1/25/2024
2.1.10 151 1/25/2024
2.1.9 135 1/25/2024
2.1.8 145 1/25/2024
2.1.7 2,370 1/23/2024
2.1.6 145 1/21/2024