Soenneker.SmartEnum.Abbreviated 3.0.1102

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.1102
                    
NuGet\Install-Package Soenneker.SmartEnum.Abbreviated -Version 3.0.1102
                    
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.1102" />
                    
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.1102" />
                    
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.1102
                    
#r "nuget: Soenneker.SmartEnum.Abbreviated, 3.0.1102"
                    
#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.SmartEnum.Abbreviated@3.0.1102
                    
#: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.SmartEnum.Abbreviated&version=3.0.1102
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.SmartEnum.Abbreviated&version=3.0.1102
                    
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.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.  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.

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