Soenneker.Twilio.RestClient 2.1.560

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Twilio.RestClient --version 2.1.560                
NuGet\Install-Package Soenneker.Twilio.RestClient -Version 2.1.560                
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.Twilio.RestClient" Version="2.1.560" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Twilio.RestClient --version 2.1.560                
#r "nuget: Soenneker.Twilio.RestClient, 2.1.560"                
#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.Twilio.RestClient as a Cake Addin
#addin nuget:?package=Soenneker.Twilio.RestClient&version=2.1.560

// Install Soenneker.Twilio.RestClient as a Cake Tool
#tool nuget:?package=Soenneker.Twilio.RestClient&version=2.1.560                

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.Twilio.RestClient

An async thread-safe singleton for a Twilio RestClient

Installation

dotnet add package Soenneker.Twilio.RestClient

Why?

This library provides a singleton of a TwilioRestClient.

Internally it implements an HttpClient singleton. This HttpClient has less overhead than new instances of HttpClient and IHttpClientFactory all while correctly handling connection pooling for DNS changes.

See soenneker.utils.httpclientcache for more information.

Usage

  1. Register ITwilioRestClientUtil with DI.
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddTwilioRestClientUtilAsSingleton();
}
  1. Inject ITwilioRestClientUtil via constructor, and retrieve a TwilioRestClient.
public class TestClass
{
    ITwilioRestClientUtil _twilioRestClientUtil;

    public TestClass(ITwilioRestClientUtil twilioRestClientUtil)
    {
        _twilioRestClientUtil = twilioRestClientUtil;
    }

    public async ValueTask SendMessage()
    {
        var message = await MessageResource.CreateAsync(
            new PhoneNumber("+11234567890"),
            from: new PhoneNumber("+10987654321"),
            body: "Hello World!",
            client: await _twilioRestClientUtil.Get()
        );

        Console.WriteLine(message.Sid);
    }
Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2.1.640 22 7/11/2024
2.1.639 30 7/11/2024
2.1.638 27 7/10/2024
2.1.637 34 7/10/2024
2.1.636 39 7/10/2024
2.1.634 33 7/10/2024
2.1.633 29 7/10/2024
2.1.632 28 7/10/2024
2.1.631 25 7/10/2024
2.1.630 42 7/10/2024
2.1.629 41 7/10/2024
2.1.628 35 7/10/2024
2.1.627 47 7/10/2024
2.1.626 40 7/10/2024
2.1.625 43 7/10/2024
2.1.624 56 7/10/2024
2.1.623 47 7/10/2024
2.1.620 50 7/10/2024
2.1.619 45 7/10/2024
2.1.618 55 7/10/2024
2.1.617 61 7/9/2024
2.1.616 44 7/9/2024
2.1.613 43 7/9/2024
2.1.612 38 7/9/2024
2.1.611 60 7/9/2024
2.1.610 45 7/9/2024
2.1.609 44 7/9/2024
2.1.608 49 7/9/2024
2.1.607 48 7/9/2024
2.1.606 40 7/9/2024
2.1.605 54 7/9/2024
2.1.604 47 7/9/2024
2.1.603 45 7/9/2024
2.1.602 57 7/9/2024
2.1.601 72 7/9/2024
2.1.600 52 7/9/2024
2.1.599 52 7/9/2024
2.1.598 64 7/9/2024
2.1.597 49 7/9/2024
2.1.596 57 7/9/2024
2.1.595 55 7/9/2024
2.1.594 47 7/9/2024
2.1.593 64 7/9/2024
2.1.592 71 7/9/2024
2.1.591 73 7/9/2024
2.1.590 49 7/9/2024
2.1.588 59 7/8/2024
2.1.587 52 7/8/2024
2.1.586 54 7/8/2024
2.1.585 57 7/8/2024
2.1.584 58 7/8/2024
2.1.583 53 7/8/2024
2.1.582 60 7/8/2024
2.1.581 57 7/8/2024
2.1.580 60 7/8/2024
2.1.579 60 7/8/2024
2.1.578 60 7/8/2024
2.1.577 60 7/8/2024
2.1.576 62 7/8/2024
2.1.575 66 7/8/2024
2.1.574 56 7/8/2024
2.1.573 54 7/8/2024
2.1.572 61 7/8/2024
2.1.571 62 7/7/2024
2.1.570 60 7/7/2024
2.1.569 57 7/7/2024
2.1.568 59 7/7/2024
2.1.567 64 7/7/2024
2.1.566 59 7/7/2024
2.1.565 59 7/7/2024
2.1.564 51 7/7/2024
2.1.563 52 7/7/2024
2.1.562 74 7/7/2024
2.1.561 68 7/5/2024
2.1.560 66 7/4/2024
2.1.559 70 7/3/2024
2.1.558 74 7/3/2024
2.1.557 72 7/3/2024
2.1.556 68 7/3/2024
2.1.555 79 7/3/2024
2.1.554 67 7/3/2024
2.1.553 72 7/3/2024
2.1.552 67 7/3/2024
2.1.551 75 7/3/2024
2.1.550 74 7/3/2024
2.1.549 70 7/3/2024
2.1.548 72 7/3/2024
2.1.547 69 7/3/2024
2.1.546 67 7/3/2024
2.1.545 65 7/3/2024
2.1.544 74 7/2/2024
2.1.543 64 7/2/2024
2.1.542 72 6/30/2024
2.1.541 70 6/30/2024
2.1.540 67 6/28/2024
2.1.539 74 6/28/2024
2.1.538 78 6/27/2024
2.1.537 74 6/27/2024
2.1.536 74 6/27/2024
2.1.535 73 6/27/2024
2.1.534 71 6/27/2024
2.1.533 70 6/27/2024
2.1.532 73 6/27/2024
2.1.531 73 6/22/2024
2.1.530 65 6/22/2024
2.1.529 72 6/22/2024
2.1.528 82 6/22/2024
2.1.527 71 6/22/2024
2.1.526 77 6/22/2024
2.1.525 69 6/22/2024
2.1.524 77 6/22/2024
2.1.523 83 6/18/2024
2.1.522 78 6/16/2024
2.1.521 94 6/16/2024
2.1.520 80 6/16/2024
2.1.519 85 6/15/2024
2.1.518 83 6/15/2024
2.1.517 83 6/15/2024
2.1.516 82 6/15/2024
2.1.515 81 6/15/2024
2.1.514 82 6/15/2024
2.1.513 74 6/15/2024
2.1.512 85 6/15/2024
2.1.511 79 6/15/2024
2.1.510 82 6/15/2024
2.1.509 75 6/15/2024
2.1.508 80 6/15/2024
2.1.507 73 6/15/2024
2.1.506 76 6/15/2024
2.1.505 83 6/15/2024
2.1.504 79 6/15/2024
2.1.503 79 6/15/2024
2.1.502 87 6/14/2024
2.1.501 68 6/14/2024
2.1.500 80 6/14/2024
2.1.499 78 6/14/2024
2.1.498 74 6/6/2024
2.1.497 66 6/4/2024
2.1.496 64 6/4/2024
2.1.495 75 6/4/2024
2.1.494 76 6/2/2024
2.1.493 68 6/2/2024
2.1.492 72 6/2/2024
2.1.491 69 6/2/2024
2.1.490 70 6/2/2024
2.1.489 74 6/1/2024
2.1.488 71 6/1/2024
2.1.487 63 6/1/2024
2.1.486 65 6/1/2024
2.1.485 70 6/1/2024
2.1.484 65 6/1/2024
2.1.483 62 6/1/2024
2.1.482 62 6/1/2024
2.1.481 64 6/1/2024
2.1.480 59 6/1/2024
2.1.479 67 6/1/2024
2.1.478 73 6/1/2024
2.1.477 70 6/1/2024
2.1.476 67 6/1/2024
2.1.475 68 6/1/2024
2.1.474 65 6/1/2024
2.1.473 69 6/1/2024
2.1.472 68 5/31/2024
2.1.471 67 5/31/2024
2.1.470 62 5/31/2024
2.1.469 77 5/31/2024
2.1.468 70 5/31/2024
2.1.467 58 5/31/2024
2.1.466 52 5/31/2024
2.1.465 69 5/31/2024
2.1.464 66 5/31/2024
2.1.463 67 5/31/2024
2.1.462 66 5/31/2024
2.1.461 66 5/29/2024
2.1.460 82 5/29/2024
2.1.459 74 5/29/2024
2.1.458 73 5/29/2024
2.1.457 73 5/29/2024
2.1.456 77 5/29/2024
2.1.455 78 5/29/2024
2.1.454 73 5/29/2024
2.1.453 64 5/28/2024
2.1.452 69 5/28/2024
2.1.451 66 5/28/2024
2.1.450 67 5/28/2024
2.1.449 79 5/28/2024
2.1.448 70 5/28/2024
2.1.447 72 5/28/2024
2.1.446 69 5/28/2024
2.1.445 73 5/28/2024
2.1.444 73 5/28/2024
2.1.443 71 5/28/2024
2.1.442 71 5/28/2024
2.1.441 76 5/27/2024
2.1.440 69 5/27/2024
2.1.439 63 5/27/2024
2.1.438 71 5/27/2024
2.1.437 76 5/27/2024
2.1.436 76 5/27/2024
2.1.435 74 5/27/2024
2.1.434 75 5/27/2024
2.1.433 74 5/27/2024
2.1.432 75 5/27/2024
2.1.431 74 5/27/2024
2.1.430 77 5/26/2024
2.1.429 71 5/26/2024
2.1.428 79 5/26/2024
2.1.427 76 5/26/2024
2.1.426 79 5/26/2024
2.1.425 75 5/26/2024
2.1.424 78 5/26/2024
2.1.423 75 5/26/2024
2.1.422 84 5/26/2024
2.1.421 77 5/26/2024
2.1.420 93 5/26/2024
2.1.419 86 5/26/2024
2.1.418 84 5/26/2024
2.1.417 79 5/26/2024
2.1.416 74 5/26/2024
2.1.415 82 5/26/2024
2.1.414 77 5/25/2024
2.1.413 71 5/25/2024
2.1.412 74 5/25/2024
2.1.411 90 5/25/2024
2.1.410 75 5/25/2024
2.1.409 77 5/25/2024
2.1.408 81 5/25/2024
2.1.407 78 5/25/2024
2.1.406 84 5/25/2024
2.1.405 81 5/25/2024
2.1.404 82 5/25/2024
2.1.403 85 5/25/2024
2.1.402 71 5/25/2024
2.1.401 76 5/25/2024
2.1.400 81 5/25/2024
2.1.399 76 5/25/2024
2.1.398 79 5/25/2024
2.1.397 80 5/25/2024
2.1.396 84 5/24/2024
2.1.395 89 5/23/2024
2.1.394 82 5/23/2024
2.1.393 79 5/23/2024
2.1.392 84 5/23/2024
2.1.391 80 5/23/2024
2.1.390 75 5/23/2024
2.1.389 72 5/23/2024
2.1.388 64 5/23/2024
2.1.387 63 5/23/2024
2.1.386 79 5/23/2024
2.1.385 79 5/23/2024
2.1.384 79 5/23/2024
2.1.383 75 5/23/2024
2.1.382 73 5/23/2024
2.1.381 82 5/23/2024
2.1.380 75 5/23/2024
2.1.379 77 5/23/2024
2.1.378 79 5/23/2024
2.1.377 86 5/22/2024
2.1.376 84 5/22/2024
2.1.375 83 5/22/2024
2.1.374 82 5/22/2024
2.1.373 84 5/22/2024
2.1.372 81 5/22/2024
2.1.371 80 5/22/2024
2.1.370 77 5/22/2024
2.1.369 75 5/22/2024
2.1.368 74 5/22/2024
2.1.367 79 5/22/2024
2.1.366 74 5/19/2024
2.1.365 72 5/18/2024
2.1.364 75 5/18/2024
2.1.363 69 5/18/2024
2.1.362 68 5/18/2024
2.1.361 66 5/18/2024
2.1.360 70 5/18/2024
2.1.359 66 5/18/2024
2.1.358 72 5/18/2024
2.1.357 80 5/18/2024
2.1.356 77 5/17/2024
2.1.355 71 5/17/2024
2.1.354 72 5/17/2024
2.1.353 84 5/17/2024
2.1.352 74 5/17/2024
2.1.351 73 5/17/2024
2.1.350 76 5/17/2024
2.1.349 75 5/17/2024
2.1.348 79 5/16/2024
2.1.347 73 5/16/2024
2.1.346 74 5/16/2024
2.1.345 73 5/16/2024
2.1.344 74 5/16/2024
2.1.343 62 5/16/2024
2.1.342 66 5/16/2024
2.1.341 81 5/15/2024
2.1.340 75 5/15/2024
2.1.339 57 5/15/2024
2.1.338 48 5/15/2024
2.1.337 80 5/15/2024
2.1.336 80 5/14/2024
2.1.335 73 5/13/2024
2.1.334 68 5/13/2024
2.1.333 74 5/13/2024
2.1.332 71 5/13/2024
2.1.331 79 5/13/2024
2.1.330 72 5/13/2024
2.1.329 66 5/13/2024
2.1.328 73 5/13/2024
2.1.327 68 5/13/2024
2.1.326 61 5/3/2024
2.1.325 51 5/3/2024
2.1.324 96 4/30/2024
2.1.323 79 4/30/2024
2.1.322 84 4/30/2024
2.1.321 77 4/30/2024
2.1.320 79 4/30/2024
2.1.319 86 4/30/2024
2.1.318 90 4/30/2024
2.1.317 78 4/30/2024
2.1.316 85 4/30/2024
2.1.315 79 4/30/2024
2.1.314 84 4/30/2024
2.1.313 80 4/29/2024
2.1.312 78 4/29/2024
2.1.311 78 4/29/2024
2.1.310 87 4/29/2024
2.1.309 76 4/29/2024
2.1.308 77 4/29/2024
2.1.307 71 4/29/2024
2.1.306 86 4/29/2024
2.1.305 72 4/29/2024
2.1.304 78 4/29/2024
2.1.303 79 4/28/2024
2.1.302 79 4/28/2024
2.1.301 70 4/28/2024
2.1.300 86 4/28/2024
2.1.299 83 4/28/2024
2.1.298 76 4/28/2024
2.1.297 86 4/28/2024
2.1.296 80 4/28/2024
2.1.295 73 4/28/2024
2.1.294 77 4/28/2024
2.1.293 78 4/28/2024
2.1.292 72 4/28/2024
2.1.291 75 4/28/2024
2.1.290 71 4/28/2024
2.1.289 69 4/28/2024
2.1.288 79 4/28/2024
2.1.287 73 4/28/2024
2.1.286 71 4/28/2024
2.1.285 78 4/28/2024
2.1.284 74 4/28/2024
2.1.283 84 4/28/2024
2.1.282 79 4/28/2024
2.1.281 87 4/28/2024
2.1.280 77 4/28/2024
2.1.279 77 4/28/2024
2.1.278 71 4/28/2024
2.1.277 82 4/27/2024
2.1.276 73 4/27/2024
2.1.275 82 4/20/2024
2.1.274 78 4/20/2024
2.1.273 88 4/20/2024
2.1.272 81 4/20/2024
2.1.271 81 4/20/2024
2.1.270 78 4/19/2024
2.1.269 75 4/19/2024
2.1.268 77 4/19/2024
2.1.267 76 4/19/2024
2.1.266 73 4/19/2024
2.1.265 73 4/19/2024
2.1.264 80 4/19/2024
2.1.263 86 4/19/2024
2.1.262 73 4/19/2024
2.1.261 71 4/19/2024
2.1.260 80 4/19/2024
2.1.259 78 4/18/2024
2.1.258 74 4/18/2024
2.1.257 73 4/15/2024
2.1.256 93 4/14/2024
2.1.255 79 4/13/2024
2.1.254 76 4/13/2024
2.1.253 80 4/13/2024
2.1.252 82 4/13/2024
2.1.251 74 4/13/2024
2.1.250 87 4/12/2024
2.1.249 86 4/12/2024
2.1.248 73 4/12/2024
2.1.247 61 4/12/2024
2.1.246 72 4/12/2024
2.1.245 64 4/12/2024
2.1.244 73 4/12/2024
2.1.243 78 4/12/2024
2.1.242 69 4/12/2024
2.1.241 74 4/12/2024
2.1.240 64 4/12/2024
2.1.239 76 4/12/2024
2.1.238 73 4/12/2024
2.1.237 76 4/12/2024
2.1.236 84 4/12/2024
2.1.235 75 4/12/2024
2.1.234 80 4/12/2024
2.1.233 68 4/12/2024
2.1.232 88 4/12/2024
2.1.231 93 4/12/2024
2.1.230 75 4/12/2024
2.1.229 68 4/12/2024
2.1.228 73 4/11/2024
2.1.227 69 4/10/2024
2.1.226 82 4/10/2024
2.1.225 78 4/10/2024
2.1.224 64 4/10/2024
2.1.223 76 4/10/2024
2.1.222 70 4/10/2024
2.1.221 65 4/10/2024
2.1.220 70 4/10/2024
2.1.219 67 4/10/2024
2.1.218 73 4/10/2024
2.1.217 71 4/10/2024
2.1.216 70 4/4/2024
2.1.215 70 4/3/2024
2.1.214 70 4/2/2024
2.1.213 83 4/2/2024
2.1.212 86 4/2/2024
2.1.211 77 4/2/2024
2.1.210 72 4/2/2024
2.1.209 93 4/2/2024
2.1.208 85 4/2/2024
2.1.207 84 4/1/2024
2.1.206 81 4/1/2024
2.1.205 84 4/1/2024
2.1.204 86 4/1/2024
2.1.203 95 4/1/2024
2.1.202 86 3/30/2024
2.1.201 87 3/29/2024
2.1.200 84 3/29/2024
2.1.199 89 3/29/2024
2.1.198 81 3/29/2024
2.1.197 85 3/29/2024
2.1.196 87 3/25/2024
2.1.195 89 3/25/2024
2.1.194 86 3/25/2024
2.1.193 82 3/25/2024
2.1.192 74 3/25/2024
2.1.191 86 3/25/2024
2.1.190 88 3/25/2024
2.1.189 83 3/25/2024
2.1.188 90 3/25/2024
2.1.187 95 3/25/2024
2.1.186 86 3/25/2024
2.1.185 90 3/25/2024
2.1.184 103 3/21/2024
2.1.183 83 3/21/2024
2.1.182 78 3/21/2024
2.1.181 87 3/21/2024
2.1.180 92 3/20/2024
2.1.179 77 3/20/2024
2.1.178 93 3/20/2024
2.1.177 83 3/20/2024
2.1.176 84 3/19/2024
2.1.175 90 3/19/2024
2.1.174 93 3/19/2024
2.1.173 98 3/19/2024
2.1.172 92 3/19/2024
2.1.171 77 3/19/2024
2.1.170 93 3/19/2024
2.1.169 83 3/19/2024
2.1.168 87 3/19/2024
2.1.167 96 3/19/2024
2.1.166 93 3/19/2024
2.1.165 101 3/19/2024
2.1.164 97 3/19/2024
2.1.163 100 3/19/2024
2.1.162 88 3/19/2024
2.1.161 92 3/19/2024
2.1.160 85 3/18/2024
2.1.159 88 3/18/2024
2.1.158 99 3/16/2024
2.1.157 102 3/16/2024
2.1.156 102 3/16/2024
2.1.155 98 3/16/2024
2.1.154 110 3/16/2024
2.1.153 102 3/16/2024
2.1.152 95 3/15/2024
2.1.151 90 3/15/2024
2.1.150 97 3/15/2024
2.1.149 96 3/14/2024
2.1.148 86 3/13/2024
2.1.147 98 3/13/2024
2.1.146 82 3/13/2024
2.1.145 95 3/13/2024
2.1.144 97 3/13/2024
2.1.143 92 3/13/2024
2.1.142 87 3/13/2024
2.1.141 88 3/13/2024
2.1.140 93 3/13/2024
2.1.139 104 3/13/2024
2.1.138 96 3/13/2024
2.1.137 90 3/13/2024
2.1.136 88 3/13/2024
2.1.135 101 3/13/2024
2.1.134 90 3/13/2024
2.1.133 87 3/13/2024
2.1.132 95 3/13/2024
2.1.131 101 3/13/2024
2.1.130 97 3/13/2024
2.1.129 91 3/13/2024
2.1.128 102 3/13/2024
2.1.127 101 3/13/2024
2.1.126 103 3/12/2024
2.1.125 96 3/12/2024
2.1.124 109 3/12/2024
2.1.123 89 3/12/2024
2.1.122 105 3/12/2024
2.1.121 96 3/12/2024
2.1.120 91 3/12/2024
2.1.119 102 3/12/2024
2.1.118 108 3/12/2024
2.1.117 97 3/12/2024
2.1.116 97 3/11/2024
2.1.115 102 3/11/2024
2.1.114 102 3/11/2024
2.1.113 100 3/11/2024
2.1.112 97 3/11/2024
2.1.111 99 3/11/2024
2.1.110 102 3/11/2024
2.1.109 84 3/11/2024
2.1.108 86 3/11/2024
2.1.107 84 3/11/2024
2.1.106 80 3/11/2024
2.1.105 84 3/11/2024
2.1.104 104 3/10/2024
2.1.103 109 3/10/2024
2.1.102 99 3/10/2024
2.1.101 107 3/10/2024
2.1.100 100 3/10/2024
2.1.99 106 3/10/2024
2.1.98 106 3/9/2024
2.1.97 100 3/8/2024
2.1.96 98 3/8/2024
2.1.95 100 3/8/2024
2.1.94 104 3/8/2024
2.1.93 98 3/8/2024
2.1.92 99 3/8/2024
2.1.91 94 3/8/2024
2.1.90 91 3/8/2024
2.1.89 97 3/8/2024
2.1.88 94 3/8/2024
2.1.87 106 3/8/2024
2.1.86 97 3/8/2024
2.1.85 94 3/8/2024
2.1.84 100 3/8/2024
2.1.83 97 3/8/2024
2.1.82 99 3/8/2024
2.1.81 96 3/6/2024
2.1.80 98 3/6/2024
2.1.79 99 3/6/2024
2.1.78 96 3/6/2024
2.1.77 102 3/6/2024
2.1.76 94 3/6/2024
2.1.75 100 3/6/2024
2.1.74 96 3/4/2024
2.1.73 102 3/4/2024
2.1.72 93 3/4/2024
2.1.71 87 3/4/2024
2.1.70 90 3/4/2024
2.1.69 97 3/4/2024
2.1.68 99 3/4/2024
2.1.67 88 3/4/2024
2.1.66 93 3/4/2024
2.1.65 86 3/4/2024
2.1.64 93 3/4/2024
2.1.63 96 3/4/2024
2.1.62 94 3/4/2024
2.1.61 88 3/4/2024
2.1.60 104 3/3/2024
2.1.59 95 3/3/2024
2.1.58 85 3/3/2024
2.1.57 93 3/3/2024
2.1.56 94 3/3/2024
2.1.55 80 3/3/2024
2.1.54 98 3/3/2024
2.1.53 89 3/3/2024
2.1.52 90 3/2/2024
2.1.51 91 3/2/2024
2.1.50 94 3/2/2024
2.1.49 85 3/2/2024
2.1.48 98 3/2/2024
2.1.47 88 3/2/2024
2.1.46 87 3/2/2024
2.1.45 88 3/2/2024
2.1.44 78 3/2/2024
2.1.43 95 3/2/2024
2.1.42 87 3/2/2024
2.1.41 79 3/2/2024
2.1.40 87 3/2/2024
2.1.39 82 3/2/2024
2.1.38 90 3/2/2024
2.1.37 88 3/2/2024
2.1.36 93 3/2/2024
2.1.35 98 3/1/2024
2.1.34 89 2/29/2024
2.1.33 91 2/29/2024
2.1.32 81 2/29/2024
2.1.31 88 2/29/2024
2.1.30 91 2/29/2024
2.1.29 83 2/29/2024
2.1.28 83 2/29/2024
2.1.27 84 2/29/2024
2.1.26 80 2/29/2024
2.1.25 81 2/29/2024
2.1.24 86 2/29/2024
2.1.23 83 2/29/2024
2.1.22 83 2/29/2024
2.1.21 82 2/29/2024
2.1.20 85 2/29/2024
2.1.19 93 2/29/2024
2.1.18 91 2/29/2024
2.1.17 102 2/27/2024
2.1.16 86 2/27/2024
2.1.15 90 2/26/2024
2.1.14 80 2/26/2024
2.1.13 81 2/26/2024
2.1.12 81 2/26/2024
2.1.11 88 2/26/2024
2.1.10 91 2/26/2024
2.1.9 87 2/26/2024
2.1.8 86 2/26/2024
2.1.7 87 2/26/2024
2.1.6 85 2/26/2024
2.1.5 93 2/25/2024
2.1.4 94 2/25/2024
2.1.3 89 2/25/2024
2.1.2 90 2/24/2024
2.1.1 90 2/24/2024