Soenneker.Twilio.RestClient 2.1.1058

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

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

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