Soenneker.SmartEnum.Abbreviated 3.0.1076

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

A derivative of Ardalis' SmartEnum, adding support for abbreviations

Installation

dotnet add package Soenneker.SmartEnum.Abbreviated

Usage

The AbbreviatedSmartEnum class is an abstract base class that extends the SmartEnum class from Ardalis' library. It provides additional functionality for working with abbreviated enum values.

To create an abbreviated SmartEnum, you need to derive a new class from AbbreviatedSmartEnum<TEnum>.

public class LanguageType : AbbreviatedSmartEnum<LanguageType>
{
    public static readonly LanguageType English = new(nameof(English), 1, "EN");
    public static readonly LanguageType Spanish = new(nameof(Spanish), 2, "ES");
    public static readonly LanguageType French = new(nameof(French), 3, "FR");

    private LanguageType(string name, int value, string abbreviation)
        : base(name, value, abbreviation)
    {
    }
}

and how you use your new SmartEnum:

string abbreviated = LanguageType.English.Abbreviation; // "EN"

// Get the enum value for the "EN" abbreviation
LanguageType english = LanguageType.FromAbbreviation("EN");

// Try to get the enum value for the "ES" abbreviation (case-insensitive)
if (LanguageType.TryFromAbbreviation("es", ignoreCase: true, out LanguageType spanish))
{
    // spanish will be the LanguageType.Spanish value
}

The IgnoreCase and StaticIgnoreCase properties allow you to control whether the abbreviation matching is case-sensitive or case-insensitive, either for a specific instance or globally across all instances of the derived enum class.

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Soenneker.SmartEnum.Abbreviated:

Package Downloads
Soenneker.SmartEnum.AbbreviatedDescriptive

A derivative of AbbreviatedSmartEnum adding support for descriptions

Soenneker.Json.Converters.AbbreviatedSmartEnum

A System.Text.Json AbbreviatedSmartEnum converter

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1086 0 4/4/2025
3.0.1085 69 4/1/2025
3.0.1084 135 4/1/2025
3.0.1083 103 3/31/2025
3.0.1082 161 3/30/2025
3.0.1081 105 3/29/2025
3.0.1080 531 3/25/2025
3.0.1079 501 3/25/2025
3.0.1078 162 3/21/2025
3.0.1077 221 3/18/2025
3.0.1076 201 3/18/2025
3.0.1075 106 3/15/2025
3.0.1074 77 3/15/2025
3.0.1073 231 3/12/2025
3.0.1072 198 3/12/2025
3.0.1071 141 3/12/2025
3.0.1070 197 3/11/2025
3.0.1069 209 3/11/2025
3.0.1068 139 3/11/2025
3.0.1067 201 3/11/2025
3.0.1066 195 3/11/2025
3.0.1065 148 3/11/2025
3.0.1064 202 3/11/2025
3.0.1063 140 3/11/2025
3.0.1062 255 3/7/2025
3.0.1061 247 3/7/2025
3.0.1060 262 3/2/2025
3.0.1059 184 3/2/2025
3.0.1058 115 3/2/2025
3.0.1057 115 3/2/2025
3.0.1056 137 3/1/2025
3.0.1055 137 3/1/2025
3.0.1054 89 3/1/2025
3.0.1053 90 3/1/2025
3.0.1052 83 3/1/2025
3.0.1051 84 3/1/2025
3.0.1050 146 3/1/2025
3.0.1049 81 3/1/2025
3.0.1048 80 3/1/2025
3.0.1047 80 3/1/2025
3.0.1046 130 3/1/2025
3.0.1045 75 3/1/2025
3.0.1044 178 2/25/2025
3.0.1043 137 2/25/2025
3.0.1042 83 2/25/2025
3.0.1041 153 2/25/2025
3.0.1040 135 2/25/2025
3.0.1039 81 2/25/2025
3.0.1038 79 2/25/2025
3.0.1037 152 2/24/2025
3.0.1036 84 2/24/2025
3.0.1035 89 2/24/2025
3.0.1034 139 2/23/2025
3.0.1033 98 2/23/2025
3.0.1032 127 2/22/2025
3.0.1031 83 2/22/2025
3.0.1030 162 2/22/2025
3.0.1029 127 2/22/2025
3.0.1028 88 2/22/2025
3.0.1027 190 2/22/2025
3.0.1026 102 2/22/2025
3.0.1025 88 2/22/2025
3.0.1024 89 2/21/2025
3.0.1023 82 2/21/2025
3.0.1022 222 2/21/2025
3.0.1021 114 2/21/2025
3.0.1020 87 2/21/2025
3.0.1019 311 2/19/2025
3.0.1018 149 2/19/2025
3.0.1017 124 2/19/2025
3.0.1016 91 2/19/2025
3.0.1015 153 2/18/2025
3.0.1014 92 2/18/2025
3.0.1013 328 2/18/2025
3.0.1012 87 2/18/2025
3.0.1011 97 2/18/2025
3.0.1010 95 2/18/2025
3.0.1009 288 2/14/2025
3.0.1008 173 2/14/2025
3.0.1007 92 2/14/2025
3.0.1006 89 2/14/2025
3.0.1005 192 2/13/2025
3.0.1004 236 2/12/2025
3.0.1003 88 2/12/2025
3.0.1002 189 2/12/2025
3.0.1001 137 2/12/2025
3.0.1000 91 2/12/2025
3.0.999 173 2/12/2025
3.0.998 92 2/12/2025
3.0.997 167 2/12/2025
3.0.996 95 2/12/2025
3.0.995 124 2/12/2025
3.0.994 137 2/11/2025
3.0.993 87 2/11/2025
3.0.992 207 2/11/2025
3.0.991 88 2/11/2025
3.0.990 167 2/11/2025
3.0.989 96 2/11/2025
3.0.988 245 2/11/2025
3.0.987 132 2/11/2025
3.0.986 103 2/11/2025
3.0.985 103 2/11/2025
3.0.984 191 2/10/2025
3.0.983 89 2/10/2025
3.0.982 195 2/10/2025
3.0.981 93 2/10/2025
3.0.980 102 2/10/2025
3.0.979 88 2/10/2025
3.0.978 91 2/10/2025
3.0.977 157 2/9/2025
3.0.976 83 2/9/2025
3.0.975 206 2/9/2025
3.0.974 179 2/8/2025
3.0.973 81 2/8/2025
3.0.972 175 2/8/2025
3.0.971 85 2/8/2025
3.0.970 137 2/8/2025
3.0.969 145 2/8/2025
3.0.968 88 2/8/2025
3.0.967 144 2/7/2025
3.0.966 108 2/7/2025
3.0.965 77 2/7/2025
3.0.964 145 2/7/2025
3.0.963 80 2/7/2025
3.0.962 114 2/7/2025
3.0.961 87 2/7/2025
3.0.960 211 2/7/2025
3.0.959 85 2/7/2025
3.0.958 87 2/7/2025
3.0.957 86 2/7/2025
3.0.956 92 2/7/2025
3.0.955 157 2/7/2025
3.0.954 99 2/7/2025
3.0.953 242 2/6/2025
3.0.952 244 2/5/2025
3.0.951 163 2/5/2025
3.0.950 135 2/5/2025
3.0.949 203 2/5/2025
3.0.948 188 2/5/2025
3.0.947 90 2/5/2025
3.0.946 187 2/5/2025
3.0.945 164 2/4/2025
3.0.944 259 1/28/2025
3.0.943 121 1/28/2025
3.0.942 140 1/28/2025
3.0.941 81 1/28/2025
3.0.940 120 1/28/2025
3.0.939 102 1/28/2025
3.0.938 191 1/27/2025
3.0.937 102 1/27/2025
3.0.936 80 1/27/2025
3.0.935 110 1/27/2025
3.0.934 82 1/27/2025
3.0.933 281 1/26/2025
3.0.932 125 1/26/2025
3.0.931 128 1/26/2025
3.0.930 78 1/26/2025
3.0.929 173 1/26/2025
3.0.928 252 1/25/2025
3.0.927 85 1/25/2025
3.0.926 108 1/25/2025
3.0.925 93 1/25/2025
3.0.924 122 1/25/2025
3.0.923 105 1/25/2025
3.0.921 108 1/25/2025
3.0.920 189 1/25/2025
3.0.919 81 1/25/2025
3.0.918 139 1/24/2025
3.0.917 144 1/24/2025
3.0.916 153 1/24/2025
3.0.915 87 1/24/2025
3.0.914 82 1/24/2025
3.0.913 192 1/24/2025
3.0.912 82 1/24/2025
3.0.911 79 1/24/2025
3.0.910 169 1/24/2025
3.0.909 81 1/24/2025
3.0.908 120 1/23/2025
3.0.907 80 1/23/2025
3.0.906 79 1/23/2025
3.0.905 115 1/23/2025
3.0.904 82 1/23/2025
3.0.903 279 1/22/2025
3.0.902 104 1/21/2025
3.0.901 118 1/21/2025
3.0.900 142 1/21/2025
3.0.899 84 1/21/2025
3.0.898 129 1/21/2025
3.0.897 85 1/21/2025
3.0.896 158 1/21/2025
3.0.895 133 1/21/2025
3.0.894 140 1/21/2025
3.0.893 98 1/21/2025
3.0.892 153 1/21/2025
3.0.891 115 1/21/2025
3.0.890 87 1/21/2025
3.0.889 86 1/21/2025
3.0.888 161 1/21/2025
3.0.887 80 1/21/2025
3.0.886 138 1/20/2025
3.0.885 90 1/20/2025
3.0.884 144 1/20/2025
3.0.883 81 1/20/2025
3.0.882 77 1/20/2025
3.0.881 81 1/20/2025
3.0.880 115 1/20/2025
3.0.879 78 1/20/2025
3.0.878 392 1/20/2025
3.0.877 94 1/20/2025
3.0.876 175 1/20/2025
3.0.875 84 1/20/2025
3.0.874 93 1/20/2025
3.0.873 76 1/20/2025
3.0.872 191 1/20/2025
3.0.871 87 1/20/2025
3.0.870 178 1/19/2025
3.0.869 78 1/19/2025
3.0.868 135 1/19/2025
3.0.867 147 1/19/2025
3.0.866 79 1/19/2025
3.0.865 134 1/19/2025
3.0.864 73 1/19/2025
3.0.863 659 1/16/2025
3.0.862 124 1/16/2025
3.0.861 77 1/16/2025
3.0.860 192 1/16/2025
3.0.859 78 1/16/2025
3.0.858 87 1/16/2025
3.0.857 90 1/16/2025
3.0.856 143 1/15/2025
3.0.855 79 1/15/2025
3.0.854 183 1/15/2025
3.0.853 75 1/15/2025
3.0.852 116 1/15/2025
3.0.851 77 1/15/2025
3.0.850 123 1/15/2025
3.0.849 134 1/15/2025
3.0.848 75 1/15/2025
3.0.847 144 1/15/2025
3.0.846 71 1/15/2025
3.0.845 55 1/15/2025
3.0.844 106 1/15/2025
3.0.843 52 1/15/2025
3.0.842 79 1/15/2025
3.0.841 59 1/14/2025
3.0.840 63 1/14/2025
3.0.839 119 1/14/2025
3.0.838 75 1/14/2025
3.0.837 106 1/14/2025
3.0.836 66 1/14/2025
3.0.835 156 1/14/2025
3.0.834 69 1/14/2025
3.0.833 148 1/13/2025
3.0.832 135 1/13/2025
3.0.831 168 1/13/2025
3.0.830 99 1/13/2025
3.0.829 76 1/13/2025
3.0.828 123 1/13/2025
3.0.827 66 1/13/2025
3.0.826 262 1/11/2025
3.0.825 126 1/11/2025
3.0.824 83 1/11/2025
3.0.823 136 1/11/2025
3.0.822 147 1/11/2025
3.0.821 79 1/11/2025
3.0.820 156 1/10/2025
3.0.819 121 1/10/2025
3.0.818 71 1/10/2025
3.0.817 176 1/10/2025
3.0.816 91 1/10/2025
3.0.815 92 1/10/2025
3.0.814 146 1/10/2025
3.0.813 86 1/10/2025
3.0.812 565 1/3/2025
3.0.811 113 1/3/2025
3.0.810 193 1/3/2025
3.0.809 98 1/3/2025
3.0.808 155 1/3/2025
3.0.807 101 1/3/2025
3.0.806 154 1/2/2025
3.0.805 104 1/2/2025
3.0.804 156 1/2/2025
3.0.803 95 1/2/2025
3.0.802 166 1/2/2025
3.0.801 96 1/2/2025
3.0.800 98 1/2/2025
3.0.799 100 1/2/2025
3.0.798 98 1/2/2025
3.0.797 548 1/1/2025
3.0.796 91 1/1/2025
3.0.795 95 12/31/2024
3.0.794 94 12/31/2024
3.0.793 89 12/31/2024
3.0.792 97 12/31/2024
3.0.791 136 12/31/2024
3.0.790 147 12/31/2024
3.0.789 92 12/31/2024
3.0.788 139 12/31/2024
3.0.787 125 12/31/2024
3.0.786 129 12/31/2024
3.0.785 110 12/31/2024
3.0.784 250 12/31/2024
3.0.783 109 12/31/2024
3.0.782 112 12/31/2024
3.0.781 105 12/31/2024
3.0.780 174 12/31/2024
3.0.779 83 12/31/2024
3.0.778 177 12/31/2024
3.0.777 79 12/31/2024
3.0.776 205 12/31/2024
3.0.775 93 12/31/2024
3.0.774 221 12/28/2024
3.0.773 146 12/28/2024
3.0.772 119 12/27/2024
3.0.771 143 12/27/2024
3.0.770 87 12/27/2024
3.0.769 142 12/27/2024
3.0.768 214 12/24/2024
3.0.767 172 12/24/2024
3.0.766 100 12/24/2024
3.0.765 137 12/24/2024
3.0.764 100 12/24/2024
3.0.763 112 12/24/2024
3.0.762 115 12/24/2024
3.0.761 143 12/24/2024
3.0.760 137 12/24/2024
3.0.759 95 12/24/2024
3.0.758 82 12/24/2024
3.0.757 142 12/24/2024
3.0.756 85 12/24/2024
3.0.755 129 12/24/2024
3.0.754 88 12/23/2024
3.0.753 160 12/23/2024
3.0.752 84 12/23/2024
3.0.751 169 12/23/2024
3.0.750 152 12/23/2024
3.0.749 83 12/23/2024
3.0.748 81 12/23/2024
3.0.747 205 12/23/2024
3.0.746 83 12/23/2024
3.0.745 108 12/23/2024
3.0.744 89 12/23/2024
3.0.743 132 12/22/2024
3.0.742 167 12/22/2024
3.0.741 80 12/22/2024
3.0.740 165 12/22/2024
3.0.739 195 12/22/2024
3.0.738 196 12/22/2024
3.0.737 92 12/22/2024
3.0.736 122 12/22/2024
3.0.735 80 12/22/2024
3.0.734 158 12/22/2024
3.0.733 81 12/22/2024
3.0.732 88 12/22/2024
3.0.731 161 12/21/2024
3.0.730 82 12/21/2024
3.0.729 99 12/21/2024
3.0.728 93 12/21/2024
3.0.727 117 12/21/2024
3.0.726 87 12/21/2024
3.0.725 192 12/21/2024
3.0.724 84 12/21/2024
3.0.723 123 12/21/2024
3.0.722 92 12/21/2024
3.0.721 107 12/21/2024
3.0.720 89 12/21/2024
3.0.719 145 12/21/2024
3.0.718 128 12/21/2024
3.0.717 88 12/21/2024
3.0.716 205 12/20/2024
3.0.715 88 12/20/2024
3.0.714 95 12/20/2024
3.0.713 136 12/20/2024
3.0.712 152 12/20/2024
3.0.711 161 12/20/2024
3.0.710 132 12/20/2024
3.0.709 158 12/20/2024
3.0.708 162 12/19/2024
3.0.707 165 12/19/2024
3.0.706 138 12/19/2024
3.0.705 80 12/19/2024
3.0.704 140 12/19/2024
3.0.703 99 12/18/2024
3.0.702 83 12/18/2024
3.0.701 145 12/18/2024
3.0.700 186 12/17/2024
3.0.699 145 12/17/2024
3.0.698 118 12/17/2024
3.0.697 118 12/16/2024
3.0.696 92 12/16/2024
3.0.695 164 12/16/2024
3.0.694 241 12/10/2024
3.0.693 153 12/10/2024
3.0.692 161 12/10/2024
3.0.691 106 12/10/2024
3.0.690 151 12/9/2024
3.0.689 77 12/9/2024
3.0.688 156 12/9/2024
3.0.687 136 12/9/2024
3.0.686 70 12/9/2024
3.0.685 147 12/9/2024
3.0.684 121 12/9/2024
3.0.683 207 12/7/2024
3.0.682 106 12/6/2024
3.0.681 114 12/6/2024
3.0.680 122 12/6/2024
3.0.679 82 12/6/2024
3.0.677 135 12/6/2024
3.0.676 140 12/6/2024
3.0.675 226 12/6/2024
3.0.674 95 12/6/2024
3.0.673 129 12/6/2024
3.0.672 187 12/6/2024
3.0.671 88 12/6/2024
3.0.670 163 12/6/2024
3.0.669 157 12/6/2024
3.0.668 92 12/6/2024
3.0.667 131 12/6/2024
3.0.666 95 12/6/2024
3.0.665 88 12/6/2024
3.0.664 149 12/6/2024
3.0.663 192 12/6/2024
3.0.662 89 12/6/2024
3.0.661 140 12/5/2024
3.0.660 162 12/5/2024
3.0.659 223 12/5/2024
3.0.658 98 12/5/2024
3.0.657 111 12/5/2024
3.0.656 93 12/5/2024
3.0.655 155 12/5/2024
3.0.654 134 12/5/2024
3.0.653 147 12/5/2024
3.0.652 91 12/5/2024
3.0.651 176 12/5/2024
3.0.650 93 12/5/2024
3.0.649 163 12/4/2024
3.0.648 85 12/4/2024
3.0.647 119 12/4/2024
3.0.646 92 12/4/2024
3.0.645 156 12/4/2024
3.0.644 159 12/4/2024
3.0.643 86 12/4/2024
3.0.642 191 12/4/2024
3.0.641 96 12/4/2024
3.0.640 152 12/4/2024
3.0.639 132 12/3/2024
3.0.638 163 12/3/2024
3.0.637 91 12/3/2024
3.0.636 140 12/3/2024
3.0.635 94 12/3/2024
3.0.634 158 12/3/2024
3.0.633 90 12/3/2024
3.0.632 158 12/3/2024
3.0.631 85 12/3/2024
3.0.630 126 12/3/2024
3.0.629 88 12/3/2024
3.0.628 132 12/3/2024
3.0.627 84 12/3/2024
3.0.626 85 12/2/2024
3.0.625 180 12/2/2024
3.0.624 151 12/2/2024
3.0.623 102 12/2/2024
3.0.622 83 12/2/2024
3.0.621 159 12/2/2024
3.0.620 131 12/2/2024
3.0.619 90 12/2/2024
3.0.618 163 12/1/2024
3.0.617 90 12/1/2024
3.0.616 171 12/1/2024
3.0.615 85 12/1/2024
3.0.614 137 12/1/2024
3.0.613 84 12/1/2024
3.0.612 238 11/29/2024
3.0.611 101 11/29/2024
3.0.610 150 11/29/2024
3.0.609 88 11/29/2024
3.0.608 210 11/21/2024
3.0.607 161 11/21/2024
3.0.606 93 11/21/2024
3.0.605 197 11/20/2024
3.0.604 162 11/20/2024
3.0.603 167 11/20/2024
3.0.602 125 11/20/2024
3.0.601 124 11/20/2024
3.0.600 91 11/20/2024
3.0.598 161 11/20/2024
3.0.597 98 11/20/2024
3.0.595 163 11/19/2024
3.0.594 138 11/19/2024
3.0.593 93 11/19/2024
3.0.592 141 11/19/2024
3.0.591 89 11/19/2024
3.0.590 88 11/19/2024
3.0.589 228 11/19/2024
3.0.588 82 11/19/2024
3.0.587 179 11/19/2024
3.0.586 83 11/19/2024
3.0.585 88 11/19/2024
3.0.584 126 11/19/2024
3.0.583 209 11/15/2024
3.0.582 138 11/14/2024
3.0.581 88 11/14/2024
3.0.580 93 11/14/2024
3.0.579 130 11/14/2024
3.0.578 96 11/14/2024
3.0.577 158 11/14/2024
3.0.576 93 11/14/2024
3.0.575 194 11/14/2024
3.0.574 172 11/14/2024
3.0.573 89 11/14/2024
3.0.572 195 11/14/2024
3.0.571 89 11/14/2024
3.0.570 131 11/14/2024
3.0.569 99 11/14/2024
3.0.568 160 11/14/2024
3.0.567 89 11/14/2024
3.0.566 142 11/14/2024
3.0.565 94 11/14/2024
2.1.564 252 11/13/2024
2.1.563 140 11/13/2024
2.1.562 182 11/13/2024
2.1.561 92 11/13/2024
2.1.560 145 11/13/2024
2.1.559 99 11/13/2024
2.1.558 198 11/13/2024
2.1.557 90 11/13/2024
2.1.556 169 11/12/2024
2.1.555 88 11/12/2024
2.1.554 574 11/9/2024
2.1.553 112 11/9/2024
2.1.552 188 11/9/2024
2.1.551 155 11/9/2024
2.1.550 93 11/9/2024
2.1.549 196 11/9/2024
2.1.548 148 11/8/2024
2.1.547 92 11/8/2024
2.1.546 114 11/8/2024
2.1.545 107 11/8/2024
2.1.544 96 11/8/2024
2.1.543 228 11/8/2024
2.1.542 93 11/8/2024
2.1.541 91 11/8/2024
2.1.540 184 11/8/2024
2.1.539 92 11/8/2024
2.1.538 181 11/8/2024
2.1.537 90 11/8/2024
2.1.536 236 11/6/2024
2.1.535 317 11/1/2024
2.1.534 191 11/1/2024
2.1.533 89 11/1/2024
2.1.532 267 10/29/2024
2.1.531 145 10/29/2024
2.1.530 124 10/29/2024
2.1.529 163 10/29/2024
2.1.527 226 10/29/2024
2.1.526 180 10/29/2024
2.1.525 182 10/29/2024
2.1.524 223 10/28/2024
2.1.523 85 10/28/2024
2.1.522 382 10/26/2024
2.1.521 128 10/26/2024
2.1.520 152 10/26/2024
2.1.519 261 10/22/2024
2.1.518 104 10/22/2024
2.1.517 210 10/22/2024
2.1.516 94 10/22/2024
2.1.515 165 10/22/2024
2.1.514 80 10/22/2024
2.1.513 182 10/22/2024
2.1.512 274 10/18/2024
2.1.511 144 10/17/2024
2.1.510 91 10/17/2024
2.1.509 176 10/17/2024
2.1.508 234 10/15/2024
2.1.507 124 10/15/2024
2.1.506 88 10/15/2024
2.1.505 120 10/14/2024
2.1.504 210 10/12/2024
2.1.503 122 10/12/2024
2.1.502 141 10/11/2024
2.1.501 116 10/11/2024
2.1.500 124 10/11/2024
2.1.499 93 10/11/2024
2.1.498 175 10/9/2024
2.1.497 127 10/9/2024
2.1.496 139 10/9/2024
2.1.495 96 10/9/2024
2.1.493 118 10/9/2024
2.1.492 114 10/8/2024
2.1.491 137 10/8/2024
2.1.490 108 10/8/2024
2.1.489 212 10/8/2024
2.1.488 97 10/8/2024
2.1.487 121 10/8/2024
2.1.486 94 10/8/2024
2.1.485 272 10/7/2024
2.1.484 145 10/3/2024
2.1.483 89 10/3/2024
2.1.482 115 10/3/2024
2.1.481 116 10/3/2024
2.1.480 90 10/3/2024
2.1.479 108 10/3/2024
2.1.478 85 10/3/2024
2.1.477 119 10/3/2024
2.1.476 128 10/2/2024
2.1.475 117 10/2/2024
2.1.474 105 10/2/2024
2.1.473 89 10/2/2024
2.1.472 120 10/2/2024
2.1.471 99 10/2/2024
2.1.470 120 10/1/2024
2.1.469 209 10/1/2024
2.1.468 117 10/1/2024
2.1.467 86 10/1/2024
2.1.466 109 10/1/2024
2.1.465 89 10/1/2024
2.1.464 129 10/1/2024
2.1.463 110 9/30/2024
2.1.462 123 9/29/2024
2.1.461 119 9/29/2024
2.1.460 135 9/29/2024
2.1.459 97 9/29/2024
2.1.458 127 9/29/2024
2.1.457 91 9/29/2024
2.1.456 160 9/27/2024
2.1.455 106 9/27/2024
2.1.454 131 9/27/2024
2.1.453 93 9/27/2024
2.1.452 117 9/27/2024
2.1.451 102 9/27/2024
2.1.450 121 9/27/2024
2.1.449 89 9/27/2024
2.1.448 95 9/27/2024
2.1.447 87 9/27/2024
2.1.446 112 9/27/2024
2.1.445 116 9/26/2024
2.1.444 119 9/26/2024
2.1.443 95 9/26/2024
2.1.442 130 9/26/2024
2.1.441 114 9/26/2024
2.1.440 107 9/26/2024
2.1.439 110 9/26/2024
2.1.438 92 9/26/2024
2.1.437 111 9/26/2024
2.1.436 256 9/26/2024
2.1.435 90 9/26/2024
2.1.434 176 9/23/2024
2.1.433 108 9/23/2024
2.1.432 124 9/23/2024
2.1.431 93 9/23/2024
2.1.430 128 9/23/2024
2.1.429 126 9/23/2024
2.1.428 114 9/23/2024
2.1.427 149 9/23/2024
2.1.426 130 9/23/2024
2.1.425 93 9/23/2024
2.1.424 98 9/23/2024
2.1.423 111 9/23/2024
2.1.422 94 9/23/2024
2.1.421 146 9/23/2024
2.1.420 92 9/23/2024
2.1.419 132 9/18/2024
2.1.418 107 9/18/2024
2.1.417 148 9/18/2024
2.1.416 109 9/18/2024
2.1.415 114 9/18/2024
2.1.414 110 9/17/2024
2.1.413 100 9/17/2024
2.1.412 96 9/17/2024
2.1.411 107 9/17/2024
2.1.410 108 9/17/2024
2.1.409 91 9/17/2024
2.1.408 102 9/17/2024
2.1.407 100 9/17/2024
2.1.406 92 9/17/2024
2.1.405 94 9/17/2024
2.1.404 107 9/17/2024
2.1.403 94 9/17/2024
2.1.402 303 9/17/2024
2.1.401 141 9/16/2024
2.1.400 109 9/16/2024
2.1.399 119 9/16/2024
2.1.398 98 9/16/2024
2.1.397 177 9/12/2024
2.1.396 118 9/12/2024
2.1.395 133 9/12/2024
2.1.394 136 9/12/2024
2.1.393 101 9/12/2024
2.1.392 125 9/12/2024
2.1.391 105 9/11/2024
2.1.390 126 9/11/2024
2.1.389 100 9/11/2024
2.1.388 142 9/11/2024
2.1.387 131 9/11/2024
2.1.386 97 9/11/2024
2.1.385 103 9/11/2024
2.1.383 121 9/11/2024
2.1.382 134 9/11/2024
2.1.381 131 9/11/2024
2.1.380 168 9/11/2024
2.1.379 132 9/10/2024
2.1.378 111 9/10/2024
2.1.377 142 9/10/2024
2.1.376 122 9/10/2024
2.1.375 102 9/10/2024
2.1.374 112 9/10/2024
2.1.373 106 9/10/2024
2.1.372 133 9/10/2024
2.1.371 123 9/10/2024
2.1.370 119 9/10/2024
2.1.369 102 9/10/2024
2.1.368 128 9/9/2024
2.1.367 96 9/9/2024
2.1.366 130 9/9/2024
2.1.365 134 9/9/2024
2.1.363 122 9/9/2024
2.1.362 114 9/9/2024
2.1.361 130 9/9/2024
2.1.360 113 9/9/2024
2.1.358 108 9/9/2024
2.1.357 103 9/9/2024
2.1.356 101 9/9/2024
2.1.355 131 9/9/2024
2.1.354 91 9/9/2024
2.1.353 187 9/7/2024
2.1.352 111 9/7/2024
2.1.351 101 9/7/2024
2.1.350 120 9/7/2024
2.1.349 114 9/6/2024
2.1.348 129 9/6/2024
2.1.347 127 9/6/2024
2.1.346 110 9/6/2024
2.1.345 118 9/6/2024
2.1.344 102 9/6/2024
2.1.343 182 9/5/2024
2.1.342 96 9/5/2024
2.1.341 102 9/5/2024
2.1.340 129 9/5/2024
2.1.339 101 9/5/2024
2.1.338 139 9/5/2024
2.1.337 103 9/5/2024
2.1.336 101 9/5/2024
2.1.335 114 9/5/2024
2.1.334 110 9/5/2024
2.1.333 131 9/5/2024
2.1.332 100 9/5/2024
2.1.331 130 9/4/2024
2.1.330 110 9/4/2024
2.1.329 191 9/4/2024
2.1.328 128 9/3/2024
2.1.327 108 9/3/2024
2.1.326 117 9/3/2024
2.1.325 121 9/3/2024
2.1.324 103 9/3/2024
2.1.323 125 9/3/2024
2.1.322 92 9/3/2024
2.1.321 104 9/3/2024
2.1.320 102 9/3/2024
2.1.319 131 8/29/2024
2.1.318 81 8/29/2024
2.1.317 97 8/29/2024
2.1.316 78 8/29/2024
2.1.315 215 8/26/2024
2.1.314 116 8/26/2024
2.1.313 97 8/26/2024
2.1.312 121 8/26/2024
2.1.311 236 8/21/2024
2.1.310 132 8/21/2024
2.1.309 120 8/21/2024
2.1.308 112 8/21/2024
2.1.307 116 8/21/2024
2.1.306 104 8/21/2024
2.1.305 144 8/20/2024
2.1.304 122 8/20/2024
2.1.303 133 8/20/2024
2.1.302 116 8/20/2024
2.1.301 155 8/20/2024
2.1.300 111 8/20/2024
2.1.299 118 8/20/2024
2.1.298 116 8/20/2024
2.1.297 109 8/20/2024
2.1.296 138 8/20/2024
2.1.295 139 8/20/2024
2.1.294 123 8/19/2024
2.1.293 109 8/19/2024
2.1.292 199 8/15/2024
2.1.291 130 8/15/2024
2.1.290 138 8/15/2024
2.1.289 110 8/15/2024
2.1.288 146 8/14/2024
2.1.287 114 8/14/2024
2.1.286 108 8/14/2024
2.1.285 134 8/13/2024
2.1.284 127 8/7/2024
2.1.283 105 8/7/2024
2.1.282 98 8/7/2024
2.1.281 94 8/7/2024
2.1.280 116 8/6/2024
2.1.279 94 8/6/2024
2.1.278 225 8/1/2024
2.1.277 105 8/1/2024
2.1.276 95 8/1/2024
2.1.275 106 8/1/2024
2.1.274 87 8/1/2024
2.1.273 267 7/25/2024
2.1.272 79 7/25/2024
2.1.271 77 7/25/2024
2.1.270 75 7/25/2024
2.1.269 87 7/25/2024
2.1.268 131 7/25/2024
2.1.267 61 7/25/2024
2.1.266 89 7/25/2024
2.1.265 79 7/25/2024
2.1.264 76 7/25/2024
2.1.263 107 7/24/2024
2.1.262 106 7/24/2024
2.1.260 205 7/20/2024
2.1.259 120 7/20/2024
2.1.258 107 7/20/2024
2.1.257 256 7/14/2024
2.1.256 112 7/14/2024
2.1.255 101 7/14/2024
2.1.254 96 7/14/2024
2.1.253 115 7/14/2024
2.1.252 96 7/14/2024
2.1.251 107 7/14/2024
2.1.250 131 7/13/2024
2.1.249 141 7/10/2024
2.1.248 101 7/10/2024
2.1.247 106 7/10/2024
2.1.246 116 7/10/2024
2.1.245 115 7/10/2024
2.1.244 108 7/10/2024
2.1.243 98 7/10/2024
2.1.242 102 7/10/2024
2.1.241 113 7/10/2024
2.1.240 106 7/10/2024
2.1.239 84 7/10/2024
2.1.238 100 7/10/2024
2.1.237 97 7/10/2024
2.1.236 101 7/10/2024
2.1.235 98 7/10/2024
2.1.234 129 7/10/2024
2.1.232 114 7/10/2024
2.1.231 107 7/10/2024
2.1.230 127 7/9/2024
2.1.229 103 7/9/2024
2.1.227 90 7/9/2024
2.1.226 86 7/9/2024
2.1.225 106 7/9/2024
2.1.224 125 7/9/2024
2.1.223 111 7/9/2024
2.1.222 95 7/9/2024
2.1.221 119 7/9/2024
2.1.220 103 7/9/2024
2.1.219 109 7/9/2024
2.1.218 87 7/9/2024
2.1.217 108 7/9/2024
2.1.216 104 7/9/2024
2.1.215 135 7/9/2024
2.1.214 101 7/9/2024
2.1.213 109 7/8/2024
2.1.212 110 7/8/2024
2.1.211 106 7/8/2024
2.1.210 137 7/8/2024
2.1.209 105 7/8/2024
2.1.208 137 7/8/2024
2.1.207 121 7/8/2024
2.1.206 93 7/8/2024
2.1.205 121 7/8/2024
2.1.204 116 7/7/2024
2.1.203 126 7/7/2024
2.1.202 107 7/7/2024
2.1.201 120 7/7/2024
2.1.200 108 7/7/2024
2.1.199 143 7/7/2024
2.1.198 122 7/7/2024
2.1.197 161 7/3/2024
2.1.196 111 7/3/2024
2.1.195 127 7/3/2024
2.1.194 129 7/3/2024
2.1.193 116 7/3/2024
2.1.192 113 7/3/2024
2.1.191 109 7/3/2024
2.1.190 132 7/3/2024
2.1.189 250 6/27/2024
2.1.188 110 6/27/2024
2.1.187 112 6/27/2024
2.1.186 124 6/22/2024
2.1.185 114 6/22/2024
2.1.184 124 6/22/2024
2.1.183 168 6/16/2024
2.1.182 114 6/15/2024
2.1.181 109 6/15/2024
2.1.180 115 6/15/2024
2.1.179 117 6/15/2024
2.1.178 94 6/15/2024
2.1.177 116 6/15/2024
2.1.176 98 6/15/2024
2.1.175 121 6/15/2024
2.1.174 115 6/15/2024
2.1.173 114 6/14/2024
2.1.172 97 6/14/2024
2.1.171 118 6/14/2024
2.1.170 156 6/4/2024
2.1.169 119 6/4/2024
2.1.168 161 6/2/2024
2.1.167 120 6/1/2024
2.1.166 117 6/1/2024
2.1.165 116 6/1/2024
2.1.164 110 6/1/2024
2.1.163 126 6/1/2024
2.1.162 128 6/1/2024
2.1.161 102 6/1/2024
2.1.160 104 6/1/2024
2.1.159 124 6/1/2024
2.1.158 119 5/31/2024
2.1.157 115 5/31/2024
2.1.156 124 5/31/2024
2.1.155 110 5/31/2024
2.1.154 107 5/31/2024
2.1.153 147 5/29/2024
2.1.152 111 5/29/2024
2.1.151 113 5/29/2024
2.1.150 111 5/29/2024
2.1.149 104 5/29/2024
2.1.148 163 5/28/2024
2.1.147 114 5/28/2024
2.1.146 110 5/28/2024
2.1.145 109 5/28/2024
2.1.144 111 5/28/2024
2.1.143 92 5/28/2024
2.1.142 100 5/27/2024
2.1.141 100 5/27/2024
2.1.140 107 5/27/2024
2.1.139 112 5/27/2024
2.1.138 111 5/27/2024
2.1.137 94 5/27/2024
2.1.136 100 5/26/2024
2.1.135 132 5/26/2024
2.1.134 110 5/26/2024
2.1.133 118 5/26/2024
2.1.132 114 5/26/2024
2.1.131 117 5/26/2024
2.1.130 108 5/26/2024
2.1.129 102 5/26/2024
2.1.128 126 5/25/2024
2.1.127 99 5/25/2024
2.1.126 105 5/25/2024
2.1.125 101 5/25/2024
2.1.124 102 5/25/2024
2.1.123 98 5/25/2024
2.1.122 126 5/25/2024
2.1.121 103 5/25/2024
2.1.120 112 5/25/2024
2.1.119 105 5/25/2024
2.1.118 135 5/25/2024
2.1.117 132 5/23/2024
2.1.116 105 5/23/2024
2.1.115 106 5/23/2024
2.1.114 98 5/23/2024
2.1.113 122 5/23/2024
2.1.112 106 5/23/2024
2.1.111 105 5/23/2024
2.1.110 127 5/23/2024
2.1.109 105 5/23/2024
2.1.108 122 5/22/2024
2.1.107 103 5/22/2024
2.1.106 123 5/22/2024
2.1.105 103 5/22/2024
2.1.104 119 5/22/2024
2.1.103 103 5/22/2024
2.1.102 102 5/22/2024
2.1.101 117 5/22/2024
2.1.100 126 5/18/2024
2.1.99 116 5/18/2024
2.1.98 126 5/18/2024
2.1.97 107 5/18/2024
2.1.96 118 5/18/2024
2.1.95 113 5/18/2024
2.1.94 127 5/17/2024
2.1.93 125 5/17/2024
2.1.92 135 5/17/2024
2.1.91 114 5/17/2024
2.1.90 125 5/17/2024
2.1.89 120 5/17/2024
2.1.88 149 5/16/2024
2.1.87 119 5/16/2024
2.1.86 113 5/16/2024
2.1.85 124 5/15/2024
2.1.84 114 5/15/2024
2.1.83 125 5/15/2024
2.1.82 135 5/15/2024
2.1.81 114 5/15/2024
2.1.80 131 5/13/2024
2.1.79 107 5/13/2024
2.1.78 104 5/13/2024
2.1.77 104 5/13/2024
2.1.76 169 4/30/2024
2.1.75 127 4/30/2024
2.1.74 121 4/30/2024
2.1.73 113 4/30/2024
2.1.72 130 4/30/2024
2.1.71 105 4/29/2024
2.1.70 102 4/29/2024
2.1.69 128 4/29/2024
2.1.68 110 4/29/2024
2.1.67 104 4/29/2024
2.1.66 108 4/29/2024
2.1.65 112 4/28/2024
2.1.64 104 4/28/2024
2.1.63 120 4/28/2024
2.1.62 103 4/28/2024
2.1.61 104 4/28/2024
2.1.60 113 4/28/2024
2.1.59 124 4/28/2024
2.1.58 98 4/28/2024
2.1.57 112 4/28/2024
2.1.56 99 4/28/2024
2.1.55 119 4/28/2024
2.1.54 101 4/28/2024
2.1.53 114 4/28/2024
2.1.52 105 4/28/2024
2.1.51 111 4/27/2024
2.1.50 208 4/20/2024
2.1.49 124 4/20/2024
2.1.48 129 4/19/2024
2.1.47 117 4/19/2024
2.1.46 111 4/19/2024
2.1.45 97 4/19/2024
2.1.44 113 4/19/2024
2.1.43 134 4/19/2024
2.1.42 116 4/19/2024
2.1.41 126 4/18/2024
2.1.40 190 4/13/2024
2.1.39 124 4/13/2024
2.1.38 123 4/13/2024
2.1.37 130 4/13/2024
2.1.36 107 4/13/2024
2.1.35 125 4/12/2024
2.1.34 118 4/12/2024
2.1.33 108 4/12/2024
2.1.32 131 4/12/2024
2.1.31 109 4/12/2024
2.1.30 125 4/12/2024
2.1.29 123 4/12/2024
2.1.28 140 4/12/2024
2.1.27 98 4/12/2024
2.1.26 109 4/12/2024
2.1.25 112 4/12/2024
2.1.24 117 4/12/2024
2.1.23 135 4/11/2024
2.1.22 110 4/11/2024
2.1.21 137 4/10/2024
2.1.20 116 4/10/2024
2.1.19 123 4/10/2024
2.1.18 122 4/10/2024
2.1.17 110 4/10/2024
2.1.16 117 4/10/2024
2.1.15 112 4/10/2024
2.1.14 269 4/3/2024
2.1.13 107 4/2/2024
2.1.12 100 4/2/2024
2.1.11 97 4/2/2024
2.1.10 104 4/2/2024
2.1.9 85 4/2/2024
2.1.8 102 4/1/2024
2.1.7 101 4/1/2024
2.1.6 97 4/1/2024
2.1.5 113 3/31/2024
2.1.4 113 3/30/2024
2.1.3 103 3/30/2024
2.1.2 110 3/27/2024