Soenneker.Twilio.RestClient 2.1.705

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.705                
NuGet\Install-Package Soenneker.Twilio.RestClient -Version 2.1.705                
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.705" />                
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.705                
#r "nuget: Soenneker.Twilio.RestClient, 2.1.705"                
#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.705

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

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.918 0 9/16/2024
2.1.917 0 9/16/2024
2.1.916 0 9/16/2024
2.1.915 0 9/16/2024
2.1.914 14 9/16/2024
2.1.913 24 9/16/2024
2.1.912 22 9/16/2024
2.1.911 48 9/12/2024
2.1.910 46 9/12/2024
2.1.909 45 9/12/2024
2.1.908 42 9/12/2024
2.1.907 42 9/12/2024
2.1.906 48 9/12/2024
2.1.905 50 9/12/2024
2.1.904 50 9/12/2024
2.1.903 46 9/12/2024
2.1.902 52 9/12/2024
2.1.901 47 9/12/2024
2.1.900 51 9/12/2024
2.1.899 49 9/12/2024
2.1.898 47 9/11/2024
2.1.897 53 9/11/2024
2.1.896 57 9/11/2024
2.1.895 48 9/11/2024
2.1.894 62 9/11/2024
2.1.893 65 9/11/2024
2.1.892 65 9/11/2024
2.1.891 62 9/11/2024
2.1.890 63 9/11/2024
2.1.889 59 9/11/2024
2.1.888 58 9/11/2024
2.1.887 58 9/11/2024
2.1.886 57 9/11/2024
2.1.885 60 9/11/2024
2.1.884 55 9/11/2024
2.1.883 58 9/11/2024
2.1.882 69 9/11/2024
2.1.881 65 9/11/2024
2.1.880 82 9/11/2024
2.1.879 73 9/10/2024
2.1.878 72 9/10/2024
2.1.877 72 9/10/2024
2.1.876 65 9/10/2024
2.1.875 65 9/10/2024
2.1.874 62 9/10/2024
2.1.873 64 9/10/2024
2.1.872 65 9/10/2024
2.1.871 66 9/10/2024
2.1.870 67 9/10/2024
2.1.869 62 9/10/2024
2.1.868 59 9/10/2024
2.1.867 64 9/10/2024
2.1.866 61 9/10/2024
2.1.865 66 9/9/2024
2.1.864 60 9/9/2024
2.1.863 60 9/9/2024
2.1.862 69 9/9/2024
2.1.861 64 9/9/2024
2.1.860 68 9/9/2024
2.1.859 64 9/9/2024
2.1.858 72 9/9/2024
2.1.857 73 9/9/2024
2.1.856 64 9/9/2024
2.1.855 71 9/9/2024
2.1.854 64 9/9/2024
2.1.853 62 9/9/2024
2.1.852 63 9/9/2024
2.1.851 67 9/9/2024
2.1.850 78 9/9/2024
2.1.845 73 9/9/2024
2.1.843 61 9/9/2024
2.1.842 70 9/9/2024
2.1.841 68 9/9/2024
2.1.840 67 9/7/2024
2.1.839 71 9/7/2024
2.1.838 69 9/7/2024
2.1.837 70 9/7/2024
2.1.836 78 9/7/2024
2.1.835 76 9/7/2024
2.1.834 66 9/7/2024
2.1.833 72 9/7/2024
2.1.832 71 9/6/2024
2.1.831 76 9/6/2024
2.1.830 68 9/6/2024
2.1.829 68 9/6/2024
2.1.828 69 9/6/2024
2.1.827 76 9/6/2024
2.1.826 68 9/6/2024
2.1.825 75 9/6/2024
2.1.824 71 9/6/2024
2.1.823 67 9/6/2024
2.1.822 79 9/6/2024
2.1.821 72 9/6/2024
2.1.820 73 9/5/2024
2.1.819 65 9/5/2024
2.1.818 71 9/5/2024
2.1.817 60 9/5/2024
2.1.816 66 9/5/2024
2.1.815 72 9/5/2024
2.1.814 69 9/5/2024
2.1.813 69 9/5/2024
2.1.812 75 9/5/2024
2.1.811 67 9/5/2024
2.1.810 69 9/5/2024
2.1.809 70 9/5/2024
2.1.808 67 9/5/2024
2.1.807 79 9/5/2024
2.1.806 62 9/5/2024
2.1.805 65 9/5/2024
2.1.804 73 9/5/2024
2.1.803 61 9/5/2024
2.1.802 64 9/5/2024
2.1.801 65 9/5/2024
2.1.800 77 9/5/2024
2.1.799 73 9/5/2024
2.1.798 68 9/5/2024
2.1.797 67 9/5/2024
2.1.796 84 9/5/2024
2.1.795 71 9/4/2024
2.1.794 71 9/4/2024
2.1.793 71 9/4/2024
2.1.792 69 9/4/2024
2.1.791 65 9/4/2024
2.1.790 65 9/4/2024
2.1.789 64 9/4/2024
2.1.788 57 9/4/2024
2.1.787 68 9/3/2024
2.1.786 64 9/3/2024
2.1.785 70 9/3/2024
2.1.784 63 9/3/2024
2.1.783 56 9/3/2024
2.1.782 67 9/3/2024
2.1.781 67 9/3/2024
2.1.780 60 9/3/2024
2.1.779 61 9/3/2024
2.1.778 68 9/3/2024
2.1.777 65 9/3/2024
2.1.776 59 9/3/2024
2.1.775 68 9/3/2024
2.1.774 59 9/3/2024
2.1.773 59 9/3/2024
2.1.772 67 9/3/2024
2.1.771 60 9/3/2024
2.1.770 78 8/30/2024
2.1.769 70 8/29/2024
2.1.768 68 8/29/2024
2.1.767 70 8/29/2024
2.1.766 66 8/29/2024
2.1.765 69 8/29/2024
2.1.764 67 8/29/2024
2.1.763 66 8/29/2024
2.1.762 64 8/29/2024
2.1.761 83 8/26/2024
2.1.760 70 8/26/2024
2.1.759 74 8/26/2024
2.1.758 73 8/26/2024
2.1.757 71 8/26/2024
2.1.756 74 8/26/2024
2.1.755 84 8/26/2024
2.1.754 67 8/26/2024
2.1.753 79 8/26/2024
2.1.752 102 8/21/2024
2.1.750 90 8/21/2024
2.1.749 94 8/21/2024
2.1.748 76 8/21/2024
2.1.747 77 8/21/2024
2.1.746 72 8/21/2024
2.1.745 95 8/21/2024
2.1.744 84 8/21/2024
2.1.743 88 8/21/2024
2.1.742 93 8/21/2024
2.1.741 87 8/21/2024
2.1.740 86 8/20/2024
2.1.739 87 8/20/2024
2.1.738 81 8/20/2024
2.1.737 85 8/20/2024
2.1.736 85 8/20/2024
2.1.735 83 8/20/2024
2.1.734 92 8/20/2024
2.1.733 86 8/20/2024
2.1.732 84 8/20/2024
2.1.731 90 8/20/2024
2.1.730 83 8/20/2024
2.1.729 80 8/20/2024
2.1.728 84 8/20/2024
2.1.727 90 8/20/2024
2.1.726 96 8/20/2024
2.1.725 94 8/20/2024
2.1.723 90 8/20/2024
2.1.722 95 8/19/2024
2.1.721 87 8/19/2024
2.1.720 86 8/19/2024
2.1.719 89 8/15/2024
2.1.718 82 8/15/2024
2.1.717 86 8/15/2024
2.1.716 90 8/15/2024
2.1.715 100 8/15/2024
2.1.714 88 8/15/2024
2.1.713 83 8/15/2024
2.1.712 87 8/15/2024
2.1.711 84 8/15/2024
2.1.710 81 8/15/2024
2.1.709 80 8/15/2024
2.1.708 90 8/14/2024
2.1.707 87 8/14/2024
2.1.706 85 8/14/2024
2.1.705 90 8/14/2024
2.1.704 86 8/13/2024
2.1.703 88 8/13/2024
2.1.702 89 8/13/2024
2.1.701 69 8/7/2024
2.1.700 71 8/7/2024
2.1.699 65 8/7/2024
2.1.698 73 8/7/2024
2.1.697 68 8/7/2024
2.1.696 74 8/7/2024
2.1.695 67 8/7/2024
2.1.694 67 8/7/2024
2.1.693 59 8/6/2024
2.1.692 56 8/6/2024
2.1.691 54 8/6/2024
2.1.690 51 8/6/2024
2.1.689 52 8/6/2024
2.1.688 50 8/6/2024
2.1.687 67 8/1/2024
2.1.686 66 8/1/2024
2.1.685 69 8/1/2024
2.1.684 67 8/1/2024
2.1.683 66 8/1/2024
2.1.682 62 8/1/2024
2.1.681 66 8/1/2024
2.1.680 62 8/1/2024
2.1.679 61 8/1/2024
2.1.678 46 7/25/2024
2.1.677 45 7/25/2024
2.1.676 49 7/25/2024
2.1.675 48 7/25/2024
2.1.674 45 7/25/2024
2.1.673 47 7/25/2024
2.1.672 51 7/25/2024
2.1.671 52 7/25/2024
2.1.670 39 7/25/2024
2.1.669 50 7/25/2024
2.1.668 54 7/24/2024
2.1.667 47 7/24/2024
2.1.666 47 7/24/2024
2.1.665 40 7/24/2024
2.1.664 42 7/24/2024
2.1.663 89 7/20/2024
2.1.660 68 7/20/2024
2.1.659 63 7/20/2024
2.1.658 74 7/20/2024
2.1.657 68 7/20/2024
2.1.656 69 7/20/2024
2.1.655 67 7/14/2024
2.1.654 69 7/14/2024
2.1.653 62 7/14/2024
2.1.652 62 7/14/2024
2.1.651 64 7/14/2024
2.1.650 67 7/14/2024
2.1.649 63 7/14/2024
2.1.648 64 7/14/2024
2.1.647 68 7/14/2024
2.1.646 62 7/14/2024
2.1.645 64 7/14/2024
2.1.644 62 7/14/2024
2.1.643 62 7/14/2024
2.1.642 57 7/14/2024
2.1.641 63 7/14/2024
2.1.640 65 7/11/2024
2.1.639 75 7/11/2024
2.1.638 66 7/10/2024
2.1.637 82 7/10/2024
2.1.636 74 7/10/2024
2.1.634 71 7/10/2024
2.1.633 74 7/10/2024
2.1.632 77 7/10/2024
2.1.631 68 7/10/2024
2.1.630 81 7/10/2024
2.1.629 82 7/10/2024
2.1.628 70 7/10/2024
2.1.627 71 7/10/2024
2.1.626 77 7/10/2024
2.1.625 74 7/10/2024
2.1.624 75 7/10/2024
2.1.623 66 7/10/2024
2.1.620 77 7/10/2024
2.1.619 64 7/10/2024
2.1.618 77 7/10/2024
2.1.617 74 7/9/2024
2.1.616 69 7/9/2024
2.1.613 69 7/9/2024
2.1.612 62 7/9/2024
2.1.611 73 7/9/2024
2.1.610 72 7/9/2024
2.1.609 59 7/9/2024
2.1.608 64 7/9/2024
2.1.607 61 7/9/2024
2.1.606 67 7/9/2024
2.1.605 75 7/9/2024
2.1.604 77 7/9/2024
2.1.603 59 7/9/2024
2.1.602 73 7/9/2024
2.1.601 86 7/9/2024
2.1.600 75 7/9/2024
2.1.599 81 7/9/2024
2.1.598 78 7/9/2024
2.1.597 73 7/9/2024
2.1.596 72 7/9/2024
2.1.595 75 7/9/2024
2.1.594 68 7/9/2024
2.1.593 79 7/9/2024
2.1.592 85 7/9/2024
2.1.591 88 7/9/2024
2.1.590 79 7/9/2024
2.1.588 71 7/8/2024
2.1.587 79 7/8/2024
2.1.586 76 7/8/2024
2.1.585 83 7/8/2024
2.1.584 80 7/8/2024
2.1.583 73 7/8/2024
2.1.582 88 7/8/2024
2.1.581 70 7/8/2024
2.1.580 73 7/8/2024
2.1.579 75 7/8/2024
2.1.578 81 7/8/2024
2.1.577 85 7/8/2024
2.1.576 87 7/8/2024
2.1.575 79 7/8/2024
2.1.574 79 7/8/2024
2.1.573 75 7/8/2024
2.1.572 86 7/8/2024
2.1.571 88 7/7/2024
2.1.570 73 7/7/2024
2.1.569 69 7/7/2024
2.1.568 78 7/7/2024
2.1.567 77 7/7/2024
2.1.566 85 7/7/2024
2.1.565 84 7/7/2024
2.1.564 71 7/7/2024
2.1.563 79 7/7/2024
2.1.562 89 7/7/2024
2.1.561 82 7/5/2024
2.1.560 88 7/4/2024
2.1.559 81 7/3/2024
2.1.558 86 7/3/2024
2.1.557 83 7/3/2024
2.1.556 80 7/3/2024
2.1.555 90 7/3/2024
2.1.554 79 7/3/2024
2.1.553 83 7/3/2024
2.1.552 79 7/3/2024
2.1.551 86 7/3/2024
2.1.550 87 7/3/2024
2.1.549 83 7/3/2024
2.1.548 84 7/3/2024
2.1.547 80 7/3/2024
2.1.546 78 7/3/2024
2.1.545 77 7/3/2024
2.1.544 86 7/2/2024
2.1.543 77 7/2/2024
2.1.542 84 6/30/2024
2.1.541 82 6/30/2024
2.1.540 76 6/28/2024
2.1.539 84 6/28/2024
2.1.538 88 6/27/2024
2.1.537 84 6/27/2024
2.1.536 84 6/27/2024
2.1.535 83 6/27/2024
2.1.534 80 6/27/2024
2.1.533 79 6/27/2024
2.1.532 84 6/27/2024
2.1.531 83 6/22/2024
2.1.530 76 6/22/2024
2.1.529 83 6/22/2024
2.1.528 93 6/22/2024
2.1.527 82 6/22/2024
2.1.526 88 6/22/2024
2.1.525 80 6/22/2024
2.1.524 88 6/22/2024
2.1.523 90 6/18/2024
2.1.522 86 6/16/2024
2.1.521 101 6/16/2024
2.1.520 87 6/16/2024
2.1.519 91 6/15/2024
2.1.518 89 6/15/2024
2.1.517 89 6/15/2024
2.1.516 88 6/15/2024
2.1.515 87 6/15/2024
2.1.514 88 6/15/2024
2.1.513 80 6/15/2024
2.1.512 91 6/15/2024
2.1.511 85 6/15/2024
2.1.510 88 6/15/2024
2.1.509 81 6/15/2024
2.1.508 86 6/15/2024
2.1.507 78 6/15/2024
2.1.506 82 6/15/2024
2.1.505 88 6/15/2024
2.1.504 85 6/15/2024
2.1.503 85 6/15/2024
2.1.502 93 6/14/2024
2.1.501 74 6/14/2024
2.1.500 86 6/14/2024
2.1.499 84 6/14/2024
2.1.498 81 6/6/2024
2.1.497 72 6/4/2024
2.1.496 70 6/4/2024
2.1.495 82 6/4/2024
2.1.494 83 6/2/2024
2.1.493 75 6/2/2024
2.1.492 79 6/2/2024
2.1.491 76 6/2/2024
2.1.490 77 6/2/2024
2.1.489 81 6/1/2024
2.1.488 78 6/1/2024
2.1.487 70 6/1/2024
2.1.486 72 6/1/2024
2.1.485 77 6/1/2024
2.1.484 72 6/1/2024
2.1.483 69 6/1/2024
2.1.482 69 6/1/2024
2.1.481 71 6/1/2024
2.1.480 66 6/1/2024
2.1.479 74 6/1/2024
2.1.478 80 6/1/2024
2.1.477 77 6/1/2024
2.1.476 74 6/1/2024
2.1.475 75 6/1/2024
2.1.474 72 6/1/2024
2.1.473 77 6/1/2024
2.1.472 75 5/31/2024
2.1.471 74 5/31/2024
2.1.470 69 5/31/2024
2.1.469 84 5/31/2024
2.1.468 77 5/31/2024
2.1.467 65 5/31/2024
2.1.466 59 5/31/2024
2.1.465 76 5/31/2024
2.1.464 73 5/31/2024
2.1.463 73 5/31/2024
2.1.462 74 5/31/2024
2.1.461 72 5/29/2024
2.1.460 88 5/29/2024
2.1.459 80 5/29/2024
2.1.458 81 5/29/2024
2.1.457 81 5/29/2024
2.1.456 84 5/29/2024
2.1.455 85 5/29/2024
2.1.454 80 5/29/2024
2.1.453 70 5/28/2024
2.1.452 75 5/28/2024
2.1.451 72 5/28/2024
2.1.450 73 5/28/2024
2.1.449 85 5/28/2024
2.1.448 76 5/28/2024
2.1.447 78 5/28/2024
2.1.446 75 5/28/2024
2.1.445 79 5/28/2024
2.1.444 79 5/28/2024
2.1.443 78 5/28/2024
2.1.442 77 5/28/2024
2.1.441 82 5/27/2024
2.1.440 75 5/27/2024
2.1.439 69 5/27/2024
2.1.438 77 5/27/2024
2.1.437 82 5/27/2024
2.1.436 82 5/27/2024
2.1.435 80 5/27/2024
2.1.434 81 5/27/2024
2.1.433 80 5/27/2024
2.1.432 81 5/27/2024
2.1.431 80 5/27/2024
2.1.430 83 5/26/2024
2.1.429 77 5/26/2024
2.1.428 85 5/26/2024
2.1.427 82 5/26/2024
2.1.426 85 5/26/2024
2.1.425 81 5/26/2024
2.1.424 84 5/26/2024
2.1.423 81 5/26/2024
2.1.422 90 5/26/2024
2.1.421 83 5/26/2024
2.1.420 99 5/26/2024
2.1.419 93 5/26/2024
2.1.418 90 5/26/2024
2.1.417 86 5/26/2024
2.1.416 81 5/26/2024
2.1.415 88 5/26/2024
2.1.414 83 5/25/2024
2.1.413 77 5/25/2024
2.1.412 80 5/25/2024
2.1.411 96 5/25/2024
2.1.410 81 5/25/2024
2.1.409 83 5/25/2024
2.1.408 87 5/25/2024
2.1.407 84 5/25/2024
2.1.406 90 5/25/2024
2.1.405 87 5/25/2024
2.1.404 88 5/25/2024
2.1.403 91 5/25/2024
2.1.402 77 5/25/2024
2.1.401 82 5/25/2024
2.1.400 87 5/25/2024
2.1.399 82 5/25/2024
2.1.398 85 5/25/2024
2.1.397 86 5/25/2024
2.1.396 90 5/24/2024
2.1.395 95 5/23/2024
2.1.394 88 5/23/2024
2.1.393 85 5/23/2024
2.1.392 90 5/23/2024
2.1.391 86 5/23/2024
2.1.390 81 5/23/2024
2.1.389 78 5/23/2024
2.1.388 70 5/23/2024
2.1.387 69 5/23/2024
2.1.386 86 5/23/2024
2.1.385 85 5/23/2024
2.1.384 85 5/23/2024
2.1.383 81 5/23/2024
2.1.382 78 5/23/2024
2.1.381 88 5/23/2024
2.1.380 81 5/23/2024
2.1.379 82 5/23/2024
2.1.378 85 5/23/2024
2.1.377 92 5/22/2024
2.1.376 90 5/22/2024
2.1.375 89 5/22/2024
2.1.374 88 5/22/2024
2.1.373 90 5/22/2024
2.1.372 87 5/22/2024
2.1.371 86 5/22/2024
2.1.370 83 5/22/2024
2.1.369 81 5/22/2024
2.1.368 80 5/22/2024
2.1.367 83 5/22/2024
2.1.366 80 5/19/2024
2.1.365 77 5/18/2024
2.1.364 80 5/18/2024
2.1.363 74 5/18/2024
2.1.362 73 5/18/2024
2.1.361 71 5/18/2024
2.1.360 75 5/18/2024
2.1.359 72 5/18/2024
2.1.358 77 5/18/2024
2.1.357 85 5/18/2024
2.1.356 82 5/17/2024
2.1.355 76 5/17/2024
2.1.354 77 5/17/2024
2.1.353 89 5/17/2024
2.1.352 79 5/17/2024
2.1.351 78 5/17/2024
2.1.350 81 5/17/2024
2.1.349 80 5/17/2024
2.1.348 84 5/16/2024
2.1.347 78 5/16/2024
2.1.346 79 5/16/2024
2.1.345 78 5/16/2024
2.1.344 77 5/16/2024
2.1.343 65 5/16/2024
2.1.342 75 5/16/2024
2.1.341 84 5/15/2024
2.1.340 79 5/15/2024
2.1.339 60 5/15/2024
2.1.338 51 5/15/2024
2.1.337 91 5/15/2024
2.1.336 85 5/14/2024
2.1.335 76 5/13/2024
2.1.334 71 5/13/2024
2.1.333 83 5/13/2024
2.1.332 74 5/13/2024
2.1.331 88 5/13/2024
2.1.330 75 5/13/2024
2.1.329 74 5/13/2024
2.1.328 82 5/13/2024
2.1.327 71 5/13/2024
2.1.326 65 5/3/2024
2.1.325 55 5/3/2024
2.1.324 100 4/30/2024
2.1.323 83 4/30/2024
2.1.322 88 4/30/2024
2.1.321 82 4/30/2024
2.1.320 88 4/30/2024
2.1.319 90 4/30/2024
2.1.318 94 4/30/2024
2.1.317 88 4/30/2024
2.1.316 89 4/30/2024
2.1.315 83 4/30/2024
2.1.314 88 4/30/2024
2.1.313 84 4/29/2024
2.1.312 82 4/29/2024
2.1.311 82 4/29/2024
2.1.310 91 4/29/2024
2.1.309 80 4/29/2024
2.1.308 87 4/29/2024
2.1.307 75 4/29/2024
2.1.306 90 4/29/2024
2.1.305 81 4/29/2024
2.1.304 82 4/29/2024
2.1.303 83 4/28/2024
2.1.302 83 4/28/2024
2.1.301 74 4/28/2024
2.1.300 90 4/28/2024
2.1.299 87 4/28/2024
2.1.298 80 4/28/2024
2.1.297 90 4/28/2024
2.1.296 84 4/28/2024
2.1.295 77 4/28/2024
2.1.294 81 4/28/2024
2.1.293 82 4/28/2024
2.1.292 76 4/28/2024
2.1.291 79 4/28/2024
2.1.290 75 4/28/2024
2.1.289 81 4/28/2024
2.1.288 88 4/28/2024
2.1.287 77 4/28/2024
2.1.286 80 4/28/2024
2.1.285 88 4/28/2024
2.1.284 78 4/28/2024
2.1.283 93 4/28/2024
2.1.282 83 4/28/2024
2.1.281 91 4/28/2024
2.1.280 81 4/28/2024
2.1.279 81 4/28/2024
2.1.278 75 4/28/2024
2.1.277 92 4/27/2024
2.1.276 77 4/27/2024
2.1.275 87 4/20/2024
2.1.274 90 4/20/2024
2.1.273 93 4/20/2024
2.1.272 85 4/20/2024
2.1.271 86 4/20/2024
2.1.270 89 4/19/2024
2.1.269 81 4/19/2024
2.1.268 84 4/19/2024
2.1.267 82 4/19/2024
2.1.266 79 4/19/2024
2.1.265 85 4/19/2024
2.1.264 86 4/19/2024
2.1.263 91 4/19/2024
2.1.262 77 4/19/2024
2.1.261 77 4/19/2024
2.1.260 92 4/19/2024
2.1.259 84 4/18/2024
2.1.258 86 4/18/2024
2.1.257 81 4/15/2024
2.1.256 97 4/14/2024
2.1.255 85 4/13/2024
2.1.254 82 4/13/2024
2.1.253 86 4/13/2024
2.1.252 88 4/13/2024
2.1.251 80 4/13/2024
2.1.250 93 4/12/2024
2.1.249 97 4/12/2024
2.1.248 84 4/12/2024
2.1.247 67 4/12/2024
2.1.246 78 4/12/2024
2.1.245 76 4/12/2024
2.1.244 85 4/12/2024
2.1.243 82 4/12/2024
2.1.242 74 4/12/2024
2.1.241 79 4/12/2024
2.1.240 76 4/12/2024
2.1.239 83 4/12/2024
2.1.238 84 4/12/2024
2.1.237 88 4/12/2024
2.1.236 90 4/12/2024
2.1.235 87 4/12/2024
2.1.234 85 4/12/2024
2.1.233 74 4/12/2024
2.1.232 93 4/12/2024
2.1.231 104 4/12/2024
2.1.230 80 4/12/2024
2.1.229 79 4/12/2024
2.1.228 82 4/11/2024
2.1.227 75 4/10/2024
2.1.226 87 4/10/2024
2.1.225 82 4/10/2024
2.1.224 69 4/10/2024
2.1.223 81 4/10/2024
2.1.222 75 4/10/2024
2.1.221 71 4/10/2024
2.1.220 76 4/10/2024
2.1.219 73 4/10/2024
2.1.218 79 4/10/2024
2.1.217 77 4/10/2024
2.1.216 76 4/4/2024
2.1.215 76 4/3/2024
2.1.214 77 4/2/2024
2.1.213 89 4/2/2024
2.1.212 92 4/2/2024
2.1.211 83 4/2/2024
2.1.210 78 4/2/2024
2.1.209 99 4/2/2024
2.1.208 91 4/2/2024
2.1.207 90 4/1/2024
2.1.206 87 4/1/2024
2.1.205 90 4/1/2024
2.1.204 98 4/1/2024
2.1.203 102 4/1/2024
2.1.202 90 3/30/2024
2.1.201 91 3/29/2024
2.1.200 88 3/29/2024
2.1.199 93 3/29/2024
2.1.198 85 3/29/2024
2.1.197 89 3/29/2024
2.1.196 93 3/25/2024
2.1.195 95 3/25/2024
2.1.194 92 3/25/2024
2.1.193 86 3/25/2024
2.1.192 78 3/25/2024
2.1.191 92 3/25/2024
2.1.190 94 3/25/2024
2.1.189 89 3/25/2024
2.1.188 96 3/25/2024
2.1.187 101 3/25/2024
2.1.186 92 3/25/2024
2.1.185 96 3/25/2024
2.1.184 108 3/21/2024
2.1.183 88 3/21/2024
2.1.182 83 3/21/2024
2.1.181 92 3/21/2024
2.1.180 103 3/20/2024
2.1.179 82 3/20/2024
2.1.178 98 3/20/2024
2.1.177 88 3/20/2024
2.1.176 88 3/19/2024
2.1.175 94 3/19/2024
2.1.174 103 3/19/2024
2.1.173 103 3/19/2024
2.1.172 97 3/19/2024
2.1.171 82 3/19/2024
2.1.170 98 3/19/2024
2.1.169 88 3/19/2024
2.1.168 92 3/19/2024
2.1.167 101 3/19/2024
2.1.166 98 3/19/2024
2.1.165 106 3/19/2024
2.1.164 102 3/19/2024
2.1.163 105 3/19/2024
2.1.162 93 3/19/2024
2.1.161 97 3/19/2024
2.1.160 90 3/18/2024
2.1.159 92 3/18/2024
2.1.158 104 3/16/2024
2.1.157 113 3/16/2024
2.1.156 107 3/16/2024
2.1.155 103 3/16/2024
2.1.154 115 3/16/2024
2.1.153 107 3/16/2024
2.1.152 106 3/15/2024
2.1.151 95 3/15/2024
2.1.150 102 3/15/2024
2.1.149 101 3/14/2024
2.1.148 91 3/13/2024
2.1.147 103 3/13/2024
2.1.146 87 3/13/2024
2.1.145 105 3/13/2024
2.1.144 102 3/13/2024
2.1.143 97 3/13/2024
2.1.142 92 3/13/2024
2.1.141 93 3/13/2024
2.1.140 98 3/13/2024
2.1.139 109 3/13/2024
2.1.138 101 3/13/2024
2.1.137 101 3/13/2024
2.1.136 99 3/13/2024
2.1.135 106 3/13/2024
2.1.134 101 3/13/2024
2.1.133 92 3/13/2024
2.1.132 100 3/13/2024
2.1.131 112 3/13/2024
2.1.130 108 3/13/2024
2.1.129 96 3/13/2024
2.1.128 107 3/13/2024
2.1.127 106 3/13/2024
2.1.126 108 3/12/2024
2.1.125 101 3/12/2024
2.1.124 114 3/12/2024
2.1.123 94 3/12/2024
2.1.122 110 3/12/2024
2.1.121 101 3/12/2024
2.1.120 96 3/12/2024
2.1.119 107 3/12/2024
2.1.118 113 3/12/2024
2.1.117 102 3/12/2024
2.1.116 102 3/11/2024
2.1.115 107 3/11/2024
2.1.114 107 3/11/2024
2.1.113 105 3/11/2024
2.1.112 102 3/11/2024
2.1.111 104 3/11/2024
2.1.110 107 3/11/2024
2.1.109 89 3/11/2024
2.1.108 92 3/11/2024
2.1.107 91 3/11/2024
2.1.106 86 3/11/2024
2.1.105 90 3/11/2024
2.1.104 109 3/10/2024
2.1.103 115 3/10/2024
2.1.102 104 3/10/2024
2.1.101 112 3/10/2024
2.1.100 105 3/10/2024
2.1.99 111 3/10/2024
2.1.98 111 3/9/2024
2.1.97 106 3/8/2024
2.1.96 103 3/8/2024
2.1.95 111 3/8/2024
2.1.94 109 3/8/2024
2.1.93 109 3/8/2024
2.1.92 104 3/8/2024
2.1.91 99 3/8/2024
2.1.90 96 3/8/2024
2.1.89 102 3/8/2024
2.1.88 105 3/8/2024
2.1.87 111 3/8/2024
2.1.86 102 3/8/2024
2.1.85 99 3/8/2024
2.1.84 106 3/8/2024
2.1.83 108 3/8/2024
2.1.82 104 3/8/2024
2.1.81 101 3/6/2024
2.1.80 104 3/6/2024
2.1.79 105 3/6/2024
2.1.78 102 3/6/2024
2.1.77 108 3/6/2024
2.1.76 100 3/6/2024
2.1.75 106 3/6/2024
2.1.74 102 3/4/2024
2.1.73 108 3/4/2024
2.1.72 99 3/4/2024
2.1.71 93 3/4/2024
2.1.70 101 3/4/2024
2.1.69 103 3/4/2024
2.1.68 105 3/4/2024
2.1.67 94 3/4/2024
2.1.66 99 3/4/2024
2.1.65 92 3/4/2024
2.1.64 99 3/4/2024
2.1.63 102 3/4/2024
2.1.62 100 3/4/2024
2.1.61 100 3/4/2024
2.1.60 110 3/3/2024
2.1.59 101 3/3/2024
2.1.58 91 3/3/2024
2.1.57 99 3/3/2024
2.1.56 100 3/3/2024
2.1.55 85 3/3/2024
2.1.54 103 3/3/2024
2.1.53 94 3/3/2024
2.1.52 95 3/2/2024
2.1.51 96 3/2/2024
2.1.50 99 3/2/2024
2.1.49 90 3/2/2024
2.1.48 103 3/2/2024
2.1.47 93 3/2/2024
2.1.46 92 3/2/2024
2.1.45 93 3/2/2024
2.1.44 83 3/2/2024
2.1.43 100 3/2/2024
2.1.42 92 3/2/2024
2.1.41 88 3/2/2024
2.1.40 94 3/2/2024
2.1.39 90 3/2/2024
2.1.38 97 3/2/2024
2.1.37 95 3/2/2024
2.1.36 105 3/2/2024
2.1.35 103 3/1/2024
2.1.34 93 2/29/2024
2.1.33 95 2/29/2024
2.1.32 91 2/29/2024
2.1.31 94 2/29/2024
2.1.30 95 2/29/2024
2.1.29 87 2/29/2024
2.1.28 87 2/29/2024
2.1.27 88 2/29/2024
2.1.26 84 2/29/2024
2.1.25 85 2/29/2024
2.1.24 90 2/29/2024
2.1.23 87 2/29/2024
2.1.22 87 2/29/2024
2.1.21 86 2/29/2024
2.1.20 89 2/29/2024
2.1.19 97 2/29/2024
2.1.18 95 2/29/2024
2.1.17 106 2/27/2024
2.1.16 92 2/27/2024
2.1.15 96 2/26/2024
2.1.14 86 2/26/2024
2.1.13 85 2/26/2024
2.1.12 85 2/26/2024
2.1.11 92 2/26/2024
2.1.10 96 2/26/2024
2.1.9 93 2/26/2024
2.1.8 92 2/26/2024
2.1.7 92 2/26/2024
2.1.6 96 2/26/2024
2.1.5 98 2/25/2024
2.1.4 99 2/25/2024
2.1.3 99 2/25/2024
2.1.2 99 2/24/2024
2.1.1 95 2/24/2024