Soenneker.Utils.String.Trie 3.0.625

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.String.Trie --version 3.0.625
                    
NuGet\Install-Package Soenneker.Utils.String.Trie -Version 3.0.625
                    
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.String.Trie" Version="3.0.625" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.String.Trie" Version="3.0.625" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.String.Trie" />
                    
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.Utils.String.Trie --version 3.0.625
                    
#r "nuget: Soenneker.Utils.String.Trie, 3.0.625"
                    
#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.Utils.String.Trie@3.0.625
                    
#: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.Utils.String.Trie&version=3.0.625
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.String.Trie&version=3.0.625
                    
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.Utils.String.Trie

A utility library for comparing strings via trie (prefix tree) similarity

Installation

dotnet add package Soenneker.Utils.String.Trie

Why?

Imagine you have two strings. Trie-based matching helps you figure out how similar they are by looking at the prefixes they share. Here's why it's handy:

Easy to Understand:

Trie-based matching is straightforward. It helps identify common prefixes between two strings, providing an intuitive measure of similarity.

Not Bothered by Length:

Whether a string is long or short doesn't throw off trie-based matching. It cares more about the common prefixes than the total length of the strings.

Efficient for Big Tasks:

When you're dealing with lots of strings or large texts, trie-based matching is efficient. It quickly identifies common prefixes without getting bogged down by complicated calculations, making it a practical choice for large datasets.

Usage

string str1 = "hello";
string str2 = "hell";

double similarity = TrieStringSimilarityUtil.CalculateSimilarityPercentage(str1, str2); // 80
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.679 9 9/3/2025
3.0.678 129 8/11/2025
3.0.677 90 6/27/2025
3.0.676 155 5/27/2025
3.0.674 155 5/7/2025
3.0.673 151 5/5/2025
3.0.672 149 5/5/2025
3.0.670 184 4/8/2025
3.0.669 170 4/8/2025
3.0.668 165 4/8/2025
3.0.667 171 4/8/2025
3.0.666 160 4/8/2025
3.0.665 170 4/8/2025
3.0.664 168 4/8/2025
3.0.663 172 4/7/2025
3.0.662 175 4/7/2025
3.0.661 181 4/7/2025
3.0.660 163 4/7/2025
3.0.659 167 4/7/2025
3.0.658 162 4/7/2025
3.0.657 168 4/7/2025
3.0.656 179 4/6/2025
3.0.655 168 4/6/2025
3.0.654 157 4/6/2025
3.0.653 144 4/6/2025
3.0.652 126 4/6/2025
3.0.651 122 4/6/2025
3.0.650 127 4/6/2025
3.0.649 122 4/6/2025
3.0.648 105 4/5/2025
3.0.647 95 4/5/2025
3.0.646 97 4/5/2025
3.0.645 107 4/5/2025
3.0.644 91 4/5/2025
3.0.643 94 4/5/2025
3.0.642 109 4/5/2025
3.0.641 159 4/4/2025
3.0.640 159 4/1/2025
3.0.639 170 3/31/2025
3.0.638 171 3/31/2025
3.0.637 99 3/29/2025
3.0.636 485 3/25/2025
3.0.635 478 3/25/2025
3.0.634 124 3/21/2025
3.0.633 136 3/21/2025
3.0.632 149 3/18/2025
3.0.631 156 3/18/2025
3.0.630 81 3/15/2025
3.0.629 80 3/15/2025
3.0.628 77 3/15/2025
3.0.627 165 3/12/2025
3.0.626 170 3/12/2025
3.0.625 163 3/12/2025
3.0.624 169 3/11/2025
3.0.623 160 3/11/2025
3.0.622 169 3/11/2025
3.0.621 176 3/11/2025
3.0.620 157 3/11/2025
3.0.619 160 3/11/2025
3.0.618 221 3/7/2025
3.0.617 229 3/7/2025
3.0.616 107 3/2/2025
3.0.615 112 3/2/2025
3.0.614 103 3/2/2025
3.0.613 109 3/2/2025
3.0.612 107 3/1/2025
3.0.611 104 3/1/2025
3.0.610 111 3/1/2025
3.0.609 108 3/1/2025
3.0.608 110 3/1/2025
3.0.607 105 3/1/2025
3.0.606 99 3/1/2025
3.0.605 99 3/1/2025
3.0.604 116 2/25/2025
3.0.603 116 2/25/2025
3.0.602 111 2/25/2025
3.0.601 117 2/25/2025
3.0.600 99 2/24/2025
3.0.599 129 2/23/2025
3.0.598 106 2/23/2025
3.0.597 104 2/22/2025
3.0.596 97 2/22/2025
3.0.595 106 2/22/2025
3.0.594 112 2/22/2025
3.0.593 114 2/22/2025
3.0.592 110 2/21/2025
3.0.591 103 2/21/2025
3.0.590 121 2/21/2025
3.0.589 126 2/19/2025
3.0.588 125 2/19/2025
3.0.587 111 2/19/2025
3.0.586 119 2/18/2025
3.0.585 119 2/18/2025
3.0.584 140 2/18/2025
3.0.583 122 2/14/2025
3.0.582 115 2/13/2025
3.0.581 126 2/12/2025
3.0.580 122 2/12/2025
3.0.579 110 2/12/2025
3.0.578 108 2/12/2025
3.0.577 110 2/12/2025
3.0.576 113 2/11/2025
3.0.575 116 2/11/2025
3.0.574 123 2/11/2025
3.0.573 117 2/11/2025
3.0.572 121 2/11/2025
3.0.571 120 2/11/2025
3.0.570 131 2/10/2025
3.0.569 110 2/10/2025
3.0.568 110 2/10/2025
3.0.567 112 2/10/2025
3.0.566 112 2/9/2025
3.0.565 104 2/8/2025
3.0.564 117 2/8/2025
3.0.563 107 2/8/2025
3.0.562 113 2/8/2025
3.0.561 119 2/8/2025
3.0.560 107 2/7/2025
3.0.559 117 2/7/2025
3.0.558 105 2/7/2025
3.0.557 105 2/7/2025
3.0.556 120 2/7/2025
3.0.555 106 2/6/2025
3.0.554 132 2/5/2025
3.0.553 119 2/5/2025
3.0.552 116 2/5/2025
3.0.551 107 2/5/2025
3.0.550 107 2/5/2025
3.0.549 115 2/5/2025
3.0.548 100 2/5/2025
3.0.547 112 1/28/2025
3.0.546 107 1/28/2025
3.0.545 106 1/28/2025
3.0.544 96 1/27/2025
3.0.543 94 1/27/2025
3.0.542 93 1/27/2025
3.0.541 105 1/27/2025
3.0.540 111 1/26/2025
3.0.539 97 1/26/2025
3.0.538 107 1/25/2025
3.0.537 105 1/25/2025
3.0.536 109 1/25/2025
3.0.535 94 1/25/2025
3.0.534 95 1/24/2025
3.0.533 110 1/24/2025
3.0.532 105 1/24/2025
3.0.531 106 1/24/2025
3.0.530 104 1/24/2025
3.0.529 98 1/24/2025
3.0.528 108 1/23/2025
3.0.527 115 1/23/2025
3.0.526 112 1/21/2025
3.0.525 110 1/21/2025
3.0.524 119 1/21/2025
3.0.523 104 1/21/2025
3.0.522 98 1/21/2025
3.0.521 111 1/21/2025
3.0.520 103 1/21/2025
3.0.519 114 1/21/2025
3.0.518 110 1/21/2025
3.0.517 102 1/21/2025
3.0.516 111 1/21/2025
3.0.515 113 1/21/2025
3.0.514 102 1/20/2025
3.0.513 112 1/20/2025
3.0.512 104 1/20/2025
3.0.511 107 1/20/2025
3.0.510 104 1/20/2025
3.0.509 107 1/20/2025
3.0.508 111 1/20/2025
3.0.507 101 1/20/2025
3.0.506 99 1/20/2025
3.0.505 115 1/19/2025
3.0.504 100 1/19/2025
3.0.503 99 1/19/2025
3.0.502 104 1/19/2025
3.0.501 101 1/19/2025
3.0.500 105 1/19/2025
3.0.499 93 1/19/2025
3.0.498 108 1/18/2025
3.0.497 96 1/18/2025
3.0.496 99 1/17/2025
3.0.495 107 1/17/2025
3.0.494 100 1/17/2025
3.0.493 110 1/17/2025
3.0.492 105 1/16/2025
3.0.491 97 1/16/2025
3.0.490 108 1/16/2025
3.0.489 111 1/16/2025
3.0.488 106 1/16/2025
3.0.487 101 1/16/2025
3.0.486 111 1/15/2025
3.0.485 104 1/15/2025
3.0.484 100 1/15/2025
3.0.483 98 1/15/2025
3.0.482 110 1/15/2025
3.0.481 100 1/15/2025
3.0.480 84 1/15/2025
3.0.479 70 1/15/2025
3.0.478 94 1/14/2025
3.0.477 89 1/14/2025
3.0.476 94 1/14/2025
3.0.475 94 1/14/2025
3.0.474 102 1/14/2025
3.0.473 94 1/13/2025
3.0.472 98 1/13/2025
3.0.471 95 1/13/2025
3.0.470 90 1/13/2025
3.0.469 105 1/11/2025
3.0.468 114 1/11/2025
3.0.467 105 1/11/2025
3.0.466 103 1/11/2025
3.0.465 117 1/10/2025
3.0.464 94 1/10/2025
3.0.463 86 1/10/2025
3.0.462 109 1/10/2025
3.0.461 107 1/10/2025
3.0.460 116 1/10/2025
3.0.459 135 1/3/2025
3.0.458 140 1/3/2025
3.0.457 128 1/3/2025
3.0.456 111 1/3/2025
3.0.455 121 1/2/2025
3.0.454 115 1/2/2025
3.0.453 129 1/2/2025
3.0.452 119 1/2/2025
3.0.451 123 1/1/2025
3.0.450 142 1/1/2025
3.0.449 120 1/1/2025
3.0.448 124 1/1/2025
3.0.447 127 1/1/2025
3.0.446 132 1/1/2025
3.0.445 118 1/1/2025
3.0.444 123 1/1/2025
3.0.443 130 12/31/2024
3.0.442 120 12/31/2024
3.0.441 119 12/31/2024
3.0.440 126 12/31/2024
3.0.439 134 12/31/2024
3.0.438 132 12/31/2024
3.0.437 107 12/31/2024
3.0.436 112 12/31/2024
3.0.435 108 12/31/2024
3.0.434 99 12/31/2024
3.0.433 124 12/31/2024
3.0.432 110 12/30/2024
3.0.431 112 12/28/2024
3.0.430 99 12/28/2024
3.0.429 113 12/27/2024
3.0.428 121 12/27/2024
3.0.427 112 12/24/2024
3.0.426 113 12/24/2024
3.0.425 102 12/24/2024
3.0.424 109 12/23/2024
3.0.423 112 12/23/2024
3.0.422 113 12/23/2024
3.0.421 100 12/23/2024
3.0.420 115 12/23/2024
3.0.419 104 12/23/2024
3.0.418 115 12/22/2024
3.0.417 112 12/22/2024
3.0.416 112 12/22/2024
3.0.415 124 12/22/2024
3.0.414 114 12/22/2024
3.0.413 119 12/22/2024
3.0.412 111 12/21/2024
3.0.411 104 12/21/2024
3.0.410 113 12/21/2024
3.0.409 105 12/21/2024
3.0.408 103 12/21/2024
3.0.407 111 12/21/2024
3.0.406 111 12/20/2024
3.0.405 114 12/20/2024
3.0.404 115 12/20/2024
3.0.403 114 12/20/2024
3.0.402 106 12/20/2024
3.0.401 115 12/19/2024
3.0.400 102 12/19/2024
3.0.399 108 12/19/2024
3.0.398 102 12/19/2024
3.0.397 116 12/18/2024
3.0.396 112 12/18/2024
3.0.395 118 12/16/2024
3.0.394 113 12/16/2024
3.0.393 106 12/10/2024
3.0.392 109 12/10/2024
3.0.391 114 12/10/2024
3.0.390 107 12/9/2024
3.0.389 117 12/9/2024
3.0.388 107 12/9/2024
3.0.387 102 12/9/2024
3.0.386 105 12/9/2024
3.0.385 106 12/7/2024
3.0.384 115 12/6/2024
3.0.383 120 12/6/2024
3.0.382 101 12/6/2024
3.0.381 116 12/6/2024
3.0.380 119 12/6/2024
3.0.379 110 12/6/2024
3.0.377 116 12/6/2024
3.0.376 110 12/5/2024
3.0.375 125 12/5/2024
3.0.374 115 12/5/2024
3.0.373 115 12/5/2024
3.0.372 107 12/5/2024
3.0.371 108 12/5/2024
3.0.370 117 12/5/2024
3.0.369 113 12/4/2024
3.0.368 118 12/4/2024
3.0.367 109 12/4/2024
3.0.366 121 12/4/2024
3.0.365 110 12/4/2024
3.0.364 120 12/3/2024
3.0.363 112 12/3/2024
3.0.362 118 12/3/2024
3.0.361 109 12/3/2024
3.0.360 109 12/3/2024
3.0.359 106 12/3/2024
3.0.358 105 12/3/2024
3.0.357 112 12/2/2024
3.0.356 101 12/2/2024
3.0.355 106 12/2/2024
3.0.354 116 12/2/2024
3.0.353 115 12/1/2024
3.0.352 110 12/1/2024
3.0.351 114 12/1/2024
3.0.350 120 12/1/2024
3.0.349 119 11/29/2024
3.0.348 104 11/29/2024
3.0.347 107 11/21/2024
3.0.346 104 11/21/2024
3.0.345 119 11/20/2024
3.0.344 107 11/20/2024
3.0.343 119 11/20/2024
3.0.342 120 11/20/2024
3.0.341 120 11/20/2024
3.0.340 111 11/19/2024
3.0.339 114 11/19/2024
3.0.338 106 11/19/2024
3.0.337 104 11/19/2024
3.0.336 114 11/19/2024
3.0.335 115 11/19/2024
3.0.334 150 11/15/2024
3.0.333 112 11/14/2024
3.0.332 108 11/14/2024
3.0.331 101 11/14/2024
3.0.330 104 11/14/2024
3.0.329 111 11/14/2024
3.0.328 111 11/14/2024
3.0.327 111 11/14/2024
3.0.326 118 11/14/2024
3.0.325 117 11/14/2024
3.0.324 125 11/14/2024
3.0.323 116 11/14/2024
3.0.322 113 11/14/2024
3.0.321 113 11/14/2024
2.1.320 114 11/13/2024
2.1.319 115 11/13/2024
2.1.318 114 11/13/2024
2.1.317 112 11/13/2024
2.1.316 112 11/13/2024
2.1.315 111 11/12/2024
2.1.314 128 11/9/2024
2.1.313 119 11/9/2024
2.1.312 118 11/9/2024
2.1.311 115 11/8/2024
2.1.310 104 11/8/2024
2.1.309 113 11/8/2024
2.1.308 127 11/8/2024
2.1.307 128 11/8/2024
2.1.306 127 11/6/2024
2.1.305 118 11/1/2024
2.1.304 113 11/1/2024
2.1.303 111 11/1/2024
2.1.302 108 10/31/2024
2.1.301 113 10/29/2024
2.1.300 113 10/29/2024
2.1.299 116 10/29/2024
2.1.298 106 10/29/2024
2.1.297 124 10/29/2024
2.1.296 110 10/29/2024
2.1.295 112 10/28/2024
2.1.294 122 10/26/2024
2.1.293 114 10/26/2024
2.1.292 112 10/22/2024
2.1.291 124 10/22/2024
2.1.290 109 10/22/2024
2.1.289 110 10/22/2024
2.1.288 116 10/22/2024
2.1.287 117 10/18/2024
2.1.286 103 10/17/2024
2.1.285 123 10/17/2024
2.1.284 109 10/15/2024
2.1.283 108 10/15/2024
2.1.282 106 10/14/2024
2.1.281 112 10/12/2024
2.1.280 111 10/12/2024
2.1.279 109 10/12/2024
2.1.278 112 10/11/2024
2.1.277 116 10/9/2024
2.1.276 120 10/9/2024
2.1.275 110 10/9/2024
2.1.274 102 10/9/2024
2.1.273 107 10/9/2024
2.1.272 116 10/8/2024
2.1.271 118 10/8/2024
2.1.270 112 10/8/2024
2.1.269 118 10/8/2024
2.1.268 110 10/3/2024
2.1.267 113 10/3/2024
2.1.266 118 10/3/2024
2.1.265 112 10/3/2024
2.1.264 112 10/3/2024
2.1.263 112 10/2/2024
2.1.262 110 10/2/2024
2.1.261 122 10/2/2024
2.1.260 116 10/2/2024
2.1.259 110 10/2/2024
2.1.258 114 10/1/2024
2.1.257 112 10/1/2024
2.1.256 122 10/1/2024
2.1.255 124 10/1/2024
2.1.254 115 9/29/2024
2.1.253 117 9/29/2024
2.1.252 106 9/29/2024
2.1.251 110 9/29/2024
2.1.250 118 9/29/2024
2.1.249 109 9/27/2024
2.1.248 113 9/27/2024
2.1.247 104 9/27/2024
2.1.246 109 9/27/2024
2.1.245 114 9/27/2024
2.1.244 127 9/27/2024
2.1.243 117 9/27/2024
2.1.242 114 9/26/2024
2.1.241 111 9/26/2024
2.1.240 115 9/26/2024
2.1.239 108 9/26/2024
2.1.238 111 9/26/2024
2.1.237 113 9/26/2024
2.1.236 106 9/26/2024
2.1.235 109 9/26/2024
2.1.234 106 9/23/2024
2.1.233 112 9/23/2024
2.1.232 110 9/23/2024
2.1.231 108 9/23/2024
2.1.230 112 9/23/2024
2.1.229 111 9/23/2024
2.1.228 113 9/23/2024
2.1.227 108 9/23/2024
2.1.226 126 9/18/2024
2.1.225 132 9/18/2024
2.1.224 112 9/18/2024
2.1.223 116 9/18/2024
2.1.222 119 9/18/2024
2.1.221 123 9/17/2024
2.1.220 124 9/17/2024
2.1.218 125 9/17/2024
2.1.217 121 9/17/2024
2.1.216 133 9/17/2024
2.1.215 111 9/17/2024
2.1.214 107 9/17/2024
2.1.213 108 9/16/2024
2.1.212 131 9/16/2024
2.1.211 127 9/12/2024
2.1.210 130 9/12/2024
2.1.209 136 9/11/2024
2.1.208 133 9/11/2024
2.1.207 132 9/11/2024
2.1.206 137 9/11/2024
2.1.205 130 9/11/2024
2.1.204 144 9/10/2024
2.1.203 146 9/10/2024
2.1.202 116 9/10/2024
2.1.201 130 9/10/2024
2.1.200 129 9/10/2024
2.1.199 143 9/10/2024
2.1.198 139 9/10/2024
2.1.197 114 9/9/2024
2.1.195 123 9/9/2024
2.1.194 115 9/9/2024
2.1.193 130 9/9/2024
2.1.192 135 9/9/2024
2.1.191 130 9/7/2024
2.1.190 103 9/7/2024
2.1.189 133 9/7/2024
2.1.188 131 9/6/2024
2.1.187 140 9/6/2024
2.1.186 138 9/6/2024
2.1.185 133 9/5/2024
2.1.184 137 9/5/2024
2.1.183 115 9/5/2024
2.1.182 133 9/5/2024
2.1.181 122 9/5/2024
2.1.180 122 9/5/2024
2.1.179 120 9/5/2024
2.1.178 113 9/5/2024
2.1.177 116 9/4/2024
2.1.176 120 9/4/2024
2.1.175 125 9/3/2024
2.1.174 132 9/3/2024
2.1.173 121 9/3/2024
2.1.172 139 9/3/2024
2.1.171 112 9/3/2024
2.1.170 119 9/3/2024
2.1.169 128 8/29/2024
2.1.168 122 8/29/2024
2.1.167 123 8/29/2024
2.1.166 129 8/26/2024
2.1.165 116 8/26/2024
2.1.164 142 8/26/2024
2.1.163 135 8/21/2024
2.1.162 155 8/21/2024
2.1.161 146 8/21/2024
2.1.160 136 8/21/2024
2.1.159 157 8/20/2024
2.1.158 154 8/20/2024
2.1.157 133 8/20/2024
2.1.156 131 8/20/2024
2.1.155 147 8/20/2024
2.1.154 139 8/20/2024
2.1.153 154 8/19/2024
2.1.152 149 8/15/2024
2.1.151 161 8/15/2024
2.1.150 153 8/15/2024
2.1.149 145 8/14/2024
2.1.148 130 8/14/2024
2.1.147 123 8/14/2024
2.1.146 142 8/13/2024
2.1.145 118 8/7/2024
2.1.144 112 8/7/2024
2.1.143 118 8/7/2024
2.1.142 117 8/6/2024
2.1.141 108 8/6/2024
2.1.140 95 8/1/2024
2.1.139 88 8/1/2024
2.1.137 109 7/25/2024
2.1.136 115 7/25/2024
2.1.135 111 7/25/2024
2.1.134 114 7/25/2024
2.1.133 101 7/25/2024
2.1.132 119 7/25/2024
2.1.131 116 7/25/2024
2.1.130 114 7/24/2024
2.1.129 118 7/24/2024
2.1.128 110 7/20/2024
2.1.127 132 7/20/2024
2.1.126 130 7/20/2024
2.1.125 126 7/14/2024
2.1.124 128 7/14/2024
2.1.123 125 7/14/2024
2.1.122 121 7/14/2024
2.1.121 127 7/14/2024
2.1.120 130 7/10/2024
2.1.119 123 7/10/2024
2.1.118 122 7/10/2024
2.1.117 109 7/10/2024
2.1.115 120 7/10/2024
2.1.114 113 7/10/2024
2.1.113 128 7/10/2024
2.1.112 124 7/10/2024
2.1.111 109 7/10/2024
2.1.109 126 7/10/2024
2.1.108 131 7/9/2024
2.1.106 94 7/9/2024
2.1.105 113 7/9/2024
2.1.104 109 7/9/2024
2.1.103 125 7/9/2024
2.1.102 126 7/9/2024
2.1.101 126 7/9/2024
2.1.100 125 7/9/2024
2.1.99 120 7/9/2024
2.1.98 107 7/8/2024
2.1.97 136 7/8/2024
2.1.96 126 7/8/2024
2.1.95 125 7/8/2024
2.1.94 135 7/8/2024
2.1.93 122 7/8/2024
2.1.92 126 7/7/2024
2.1.91 126 7/7/2024
2.1.90 130 7/3/2024
2.1.89 117 7/3/2024
2.1.88 132 7/3/2024
2.1.87 128 7/3/2024
2.1.86 115 7/3/2024
2.1.85 122 6/27/2024
2.1.84 110 6/27/2024
2.1.83 106 6/27/2024
2.1.82 149 6/22/2024
2.1.81 134 6/22/2024
2.1.80 132 6/22/2024
2.1.79 130 6/16/2024
2.1.78 107 6/15/2024
2.1.77 115 6/15/2024
2.1.76 129 6/15/2024
2.1.75 117 6/15/2024
2.1.74 132 6/15/2024
2.1.73 123 6/15/2024
2.1.72 130 6/15/2024
2.1.71 112 6/14/2024
2.1.70 132 6/4/2024
2.1.69 120 6/4/2024
2.1.68 139 6/2/2024
2.1.67 142 6/2/2024
2.1.66 140 6/1/2024
2.1.65 118 6/1/2024
2.1.64 129 6/1/2024
2.1.63 129 6/1/2024
2.1.62 133 6/1/2024
2.1.61 126 6/1/2024
2.1.60 131 6/1/2024
2.1.59 117 5/31/2024
2.1.58 136 5/31/2024
2.1.57 138 5/31/2024
2.1.56 126 5/31/2024
2.1.55 135 5/29/2024
2.1.54 127 5/29/2024
2.1.53 134 5/29/2024
2.1.52 126 5/28/2024
2.1.51 131 5/28/2024
2.1.50 133 5/28/2024
2.1.49 136 5/28/2024
2.1.48 134 5/28/2024
2.1.47 105 5/27/2024
2.1.46 122 5/27/2024
2.1.45 131 5/27/2024
2.1.44 124 5/27/2024
2.1.43 128 5/26/2024
2.1.42 131 5/26/2024
2.1.41 133 5/26/2024
2.1.40 120 5/26/2024
2.1.39 131 5/26/2024
2.1.38 137 5/26/2024
2.1.37 109 5/25/2024
2.1.36 131 5/25/2024
2.1.35 145 5/25/2024
2.1.34 142 5/25/2024
2.1.33 137 5/25/2024
2.1.32 127 5/23/2024
2.1.31 122 5/23/2024
2.1.30 136 5/23/2024
2.1.29 132 5/23/2024
2.1.28 118 5/23/2024
2.1.27 134 5/23/2024
2.1.26 138 5/23/2024
2.1.25 128 5/22/2024
2.1.24 135 5/22/2024
2.1.23 137 5/22/2024
2.1.22 137 5/22/2024
2.1.21 116 5/18/2024
2.1.20 106 5/18/2024
2.1.19 107 5/18/2024
2.1.18 117 5/18/2024
2.1.17 111 5/17/2024
2.1.16 126 5/17/2024
2.1.15 88 5/17/2024
2.1.14 120 5/16/2024
2.1.13 109 5/16/2024
2.1.12 126 5/16/2024
2.1.11 115 5/15/2024
2.1.10 112 5/15/2024
2.1.9 124 5/15/2024
2.1.8 107 5/14/2024
2.1.7 94 5/14/2024
2.1.6 90 5/14/2024
2.1.5 104 5/14/2024
2.1.4 72 5/14/2024
2.1.3 118 5/14/2024
2.1.2 95 5/14/2024
2.1.1 102 5/14/2024