NExpect 2.0.32-2306151140.93d85dc

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

// Install NExpect as a Cake Tool
#tool nuget:?package=NExpect&version=2.0.32-2306151140.93d85dc&prerelease                

NExpect

An assertions framework for .NET with a BDD-like feel, inspired by Chai and Jasmine, designed to be user-extensible

Build and Test

Nuget current version badge

Goals

  • Expect(NExpect).To.Be.Readable();
    • Because code is for co-workers, not compilers. And your tests are part of your documentation.
  • Expect(NExpect).To.Be.Expressive();
    • Because the intent of a test should be easy to understand. The reader can delve into the details when she cares to.
  • Expect(NExpect).To.Be.Extensible();
    • Because I can't predict every use-case. I believe that your assertions framework should enable expressive, readable tests through extension.

Tutorial / blog posts:

https://fluffynuts.github.io/NExpect dev.to

Usage

  1. Download from nuget.org: install-package nexpect
  2. Import Expectations statically:
using static NExpect.Expectations;
  1. Expect inside your tests, with fluent syntax:
// simple equality checks
Expect(1).To.Equal(1);
Expect(true).To.Not.Be.False(); // alt. grammar
Expect(null).To.Be.Null();
// - with negation, order doesn't matter
Expect("moo").Not.To.Equal("cow");
Expect("moo").To.Not.Equal("cow");
Expect(true).Not.To.Be.False();
Expect(false).To.Not.Be.True();

// exceptions
Expect(() => { }).Not.To.Throw();
Expect(() =>
  {
    throw new ArgumentException("moo", "moo cow");
  }).To.Throw<ArgumentException>()
  .With.Message.Containing("moo")
  .And.("cow");

// smarter string tests, with fluency
Expect(someString).To.Contain("moo").And("cow");
Expect("moo, said the cow")
    .To.Start.With("moo")
    .And.Contain("said")
    .Then("the")
    .And.End.With("cow");

// collection tests
Expect(someCollection).To.Contain.Exactly(2)
  .Matched.By(item => item.IsWhatWeWant());
Expect(someCollection).To.Contain.Only(1)
  .Deep.Equal.To(new { id = 42, name = "Douglas" });
Expect(someFlags).To.Contain.At.Least(3)
  .Equal.To(true);
Expect(new[] { 1, 2, 3 })
  .To.Be.Ordered.Ascending();
Expect(new[] { "c", "b", "a" })
  .To.Be.Ordered.Descending();

// type testing
Expect(someObject).To.Be
  .An.Instance.Of<Cow>();

// deep and intersection equality testing
var person = new {
  id = 1,
  name = "bob"
};
Expect(person)
  .To.Deep.Equal(new { id = 1, name = "bob" });
Expect(person)
  .To.Intersection.Equal(new { name = "bob" });

Extending

Mostly, you can extend by adding extension methods for ICanAddMatcher<T> where T is the type you want. You can also extend at any point in the grammar -- some of the "better" points are ITo<T>, IBe<T>, IHave<T>, IA<T>, IAn<T>. You will need another namespace import:

using NExpect.MatcherLogic

And your extension methods can be like:

public static class MyMatchers
{
  public static void Five(this IBe<int> continuation)
  {
    continuation.AddMatcher(actual =>
    {
      var passed = actual == 5;
      var message = passed
                    ? $"Expected {actual} not to be 5"
                    : $"Expected {actual} to be 5";
      return new MatcherResult(passed, message);
    });
  }
}
// somewhere else...
[Test]
public void FifteenDividedByThree_ShouldEqual_Five()
{
  var result = 15 / 3;
  Expect(result).To.Be.Five();
}
// Yes, yes, simple example is simple.

If you've ever written a Jasmine matcher, this should feel familiar.

If you have a bunch of existing expectations that you'd like to wrap up into a nicely-named matcher, .Compose has you covered:

// before
var cow = animalFactory.MakeCow();
var beetle = animalFactory.MakeBeetle();

// animal factory should make a Jersey cow
Expect(cow.Classification).To.Equal("Mammal");
Expect(cow.Legs).To.Equal(4);
Expect(cow.HasTail).To.Be.True();
Expect(cow.HasHorns).To.Be.True();
Expect(cow.HasSpots).To.Be.True();

// Animal factory should make a rhinoceros beetle
Expect(beetle.Classification).To.Equal("Insect");
Expect(beetle.Legs).To.Equal(6);
Expect(beetle.HasTail).To.Be.False();
Expect(beetle.HasHorns).To.Be.True();
Expect(beetle.HasSpots).To.Be.False();
// after
var cow = animalFactory.MakeJerseyCow();
var beetle = animalFactory.MakeRhinocerosBeetle();

Expect(cow).To.Be.A.JerseyCow();
Expect(beetle).To.Be.A.RhinocerosBeetle();


// elsewhere:

public static class AnimalMatchers
{
  // the IMore<T> interface allows fluent chaining of expectations
  //  eg:
  //  Expect(cow).To.Be.A.JerseyCow()
  //     .And
  //     .Not.To.Be.A.FrieslandCow();
  public static IMore<Animal> JerseyCow(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      Expect(cow.Classification).To.Equal("Mammal");
      Expect(cow.Legs).To.Equal(4);
      Expect(cow.HasTail).To.Be.True();
      Expect(cow.HasHorns).To.Be.True();
      Expect(cow.HasSpots).To.Be.True();
    });
  }
  public static IMore<Animal> RhinocerosBeetle(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      Expect(beetle.Classification).To.Equal("Insect");
      Expect(beetle.Legs).To.Equal(6);
      Expect(beetle.HasTail).To.Be.False();
      Expect(beetle.HasHorns).To.Be.True();
      Expect(beetle.HasSpots).To.Be.False();
    });
  }
}

When one of the inner expectations fails, NExpect attempts to construct a nice failure message. As with all expectations, you can always make failures easier to understand with a custom message string or generator:

using NExpect.Implementations;
using NExpect.MatcherLogic;
using NExpect;
using static NExpect.Expectations;

public static class AnimalMatchers
{
  public static IMore<Animal> JerseyCow(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      // the Stringify extension method, available on all types,
      // comes from NExpect.Implementation.MessageHelpers and
      // produces a string representation of the object it's
      // operating on which is similar to JSON, so it's easier
      // to read what the object was
      var customMessage = $"Expected {actual.Stringify()} to be a cow";
      Expect(cow.Classification).To.Equal("Mammal", customMessage);
      Expect(cow.Legs).To.Equal(4, customMessage);
      Expect(cow.HasTail).To.Be.True(customMessage);
      Expect(cow.HasHorns).To.Be.True(customMessage);
      Expect(cow.HasSpots).To.Be.True(customMessage);
    });
  }
  public static IMore<Animal> RhinocerosBeetle(this IA<Animal> a)
  {
    return a.Compose(actual =>
    {
      // we can use a generator func to delay generation of the message
      //  which is especially helpful if message generation is expensive
      //  and we'd only like to spend that cpu time on a failure
      Func<string> customMessageGenerator = () => $"Expected {actual.Stringify()} to be a cow";
      Expect(beetle.Classification).To.Equal("Insect", customMessageGenerator);
      Expect(beetle.Legs).To.Equal(6, customMessageGenerator);
      Expect(beetle.HasTail).To.Be.False(customMessageGenerator);
      Expect(beetle.HasHorns).To.Be.True(customMessageGenerator);
      Expect(beetle.HasSpots).To.Be.False(customMessageGenerator);
    });
  }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on NExpect:

Package Downloads
NExpect.Matchers.NSubstitute

This library offers NSubistitute-specific extensions so you can have Expect-style syntax for your NSubstitute assertions. For example, one may previously have done: ``` Expect(result).To.Equal(expected); someService.Received(1).SomeMethodCall(); ``` and now you can keep it consistent: ``` Expect(result).To.Equal(expected); Expect(someService).To.Have.Received(1).SomeMethodCall(); ```

NExpect.Matchers.AspNetCore

This library adds ASP.Net core extensions for NExpect so you can test your [Route] and [Http*] annotations like so: ``` Expect(typeof(SomeController) .To.Have.Method(nameof(SomeController.MethodName)) .Supporting(HttpMethod.Delete) .And(HttpMethod.Post) .With.Route("first-route") .And.Route("second-route"); ```

NExpect.Matchers.Xml

This library offers XML-specific assertions so you can, for instance: ``` var doc = XDocument.Parse(someXml); Expect(doc) .To.Have.Element("//path/to/element") .With.Attribute("some-attribute") .Having.Value("expected-attribute-value"); ```

NExpect.Matchers.AspNetMvc

This library adds ASP.Net core extensions for NExpect so you can test your [Route] and [Http*] annotations like so: ``` Expect(typeof(SomeController) .To.Have.Method(nameof(SomeController.MethodName)) .Supporting(HttpMethod.Delete) .And(HttpMethod.Post) .With.Route("first-route") .And.Route("second-route"); ```

NExpect.NSubstitute

NSubstitute extensions for NExpect so you can: ``` Expect(foo).(Not).To.Have.Received().Method(..); ```

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on NExpect:

Repository Stars
clojure/clojure-clr
A port of Clojure to the CLR, part of the Clojure project
Rohland/htmldiff.net
Html Diff algorithm for .NET
fluffynuts/PeanutButter
Tasty, versatile, nutritious; goes with many things in .net.
Version Downloads Last updated
2.0.111 269 12/17/2024
2.0.110 758 11/13/2024
2.0.109 210 11/1/2024
2.0.108 321 10/23/2024
2.0.107 187 10/23/2024
2.0.106 204 10/22/2024
2.0.105 1,462 9/11/2024
2.0.104 944 8/30/2024
2.0.103 213 8/30/2024 2.0.103 is deprecated.
2.0.102 2,084 6/19/2024
2.0.101 224 6/11/2024
2.0.100 288 6/10/2024
2.0.99 269 6/5/2024
2.0.98 199 6/3/2024
2.0.97 176 6/3/2024
2.0.96 189 6/3/2024
2.0.95 345 5/17/2024
2.0.94 791 5/17/2024
2.0.93 235 5/17/2024
2.0.92 430 4/29/2024
2.0.91 1,041 4/17/2024
2.0.90 233 4/15/2024
2.0.89 238 4/8/2024
2.0.88 233 4/5/2024
2.0.87 192 4/5/2024
2.0.86 225 4/5/2024
2.0.85 195 4/5/2024
2.0.84 212 4/4/2024
2.0.83 718 4/3/2024
2.0.82 859 4/2/2024
2.0.81 528 3/13/2024
2.0.80 211 3/13/2024 2.0.80 is deprecated.
2.0.79 281 3/11/2024
2.0.78 276 3/5/2024
2.0.77 371 2/27/2024
2.0.76 226 2/26/2024
2.0.75 304 2/22/2024
2.0.74 241 2/22/2024
2.0.73 264 2/19/2024
2.0.72 232 2/15/2024
2.0.71 468 2/13/2024
2.0.70 361 2/13/2024
2.0.69 608 2/7/2024
2.0.68 254 2/6/2024
2.0.67 304 2/5/2024
2.0.66 254 2/2/2024
2.0.65 871 1/30/2024
2.0.64 395 1/18/2024
2.0.63 498 1/15/2024
2.0.62 232 1/12/2024
2.0.61 198 1/12/2024
2.0.60 270 1/10/2024
2.0.59 276 1/9/2024
2.0.58 1,046 12/13/2023
2.0.57 865 11/28/2023
2.0.56 261 11/28/2023
2.0.55 5,274 11/17/2023
2.0.54 308 11/17/2023
2.0.53 246 11/17/2023
2.0.52 975 10/30/2023
2.0.51 334 10/26/2023
2.0.50 746 10/12/2023
2.0.49 2,714 9/28/2023
2.0.48 589 9/22/2023
2.0.47 235 9/21/2023
2.0.46 294 9/20/2023
2.0.45 443 9/14/2023
2.0.44 243 9/14/2023
2.0.43 792 8/25/2023
2.0.42 252 8/25/2023
2.0.42-2308241227.f6c25ee 79 8/24/2023
2.0.42-2308161448.98b76da 78 8/16/2023
2.0.42-2308161446.ec7a107 75 8/16/2023
2.0.42-2308161429.74c00e2 79 8/16/2023
2.0.41 593 8/14/2023
2.0.40 552 8/4/2023
2.0.39 310 8/4/2023
2.0.38 265 8/4/2023
2.0.37 279 8/4/2023
2.0.36 304 8/4/2023
2.0.35 263 8/4/2023
2.0.34 989 6/22/2023
2.0.33 303 6/22/2023
2.0.32 309 6/22/2023
2.0.32-2306210815 89 6/21/2023
2.0.32-2306210812 62 6/21/2023
2.0.32-2306151149.332886a 89 6/15/2023
2.0.32-2306151140.93d85dc 83 6/15/2023
2.0.32-2306150947.3b80752 85 6/15/2023
2.0.31 438 6/12/2023
2.0.30 527 6/9/2023
2.0.30-2306091428.6fc0bd3 111 6/9/2023
2.0.30-2306091304.51d4d0b 88 6/9/2023
2.0.30-2306091204.1fe4d76 85 6/9/2023
2.0.30-2306090857.5be3155 89 6/9/2023
2.0.30-2306081701.3a525ef 84 6/8/2023
2.0.30-2306081646.5a15be2 82 6/8/2023
2.0.30-2306081628.68f2d91 84 6/8/2023
2.0.30-2306081611.3c4f19f 88 6/8/2023
2.0.30-2306081557.4fa2105 84 6/8/2023
2.0.30-2306081119.fdddf3b 89 6/8/2023
2.0.30-2306081053.68ba9f2 85 6/8/2023
2.0.30-2306080900.1b126b1 87 6/8/2023
2.0.29 945 5/23/2023
2.0.28 459 5/18/2023
2.0.27 400 5/12/2023
2.0.26 363 5/12/2023
2.0.25 490 4/26/2023
2.0.24 11,185 2/1/2023
2.0.23 704 1/30/2023
2.0.22 912 1/26/2023
2.0.21 719 1/25/2023
2.0.20 824 1/25/2023
2.0.19 2,046 11/30/2022
2.0.18 1,598 11/14/2022
2.0.17 4,843 10/19/2022
2.0.16 1,316 10/17/2022
2.0.15 1,240 10/17/2022
2.0.14 1,877 10/3/2022
2.0.13 1,262 10/3/2022
2.0.12 1,326 10/3/2022
2.0.11 1,366 9/27/2022
2.0.10 1,472 9/20/2022
2.0.9 1,452 9/19/2022
2.0.8 1,451 9/15/2022
2.0.7 1,450 9/14/2022
2.0.6 1,320 9/13/2022
2.0.5 1,336 9/13/2022
2.0.4 1,351 9/13/2022
2.0.3 1,390 9/9/2022
2.0.2 1,292 9/9/2022
2.0.1 1,338 9/9/2022
1.0.276 66,028 8/17/2022
1.0.275 1,365 8/17/2022
1.0.274 2,197 7/28/2022
1.0.273 5,536 7/14/2022
1.0.272 1,444 7/14/2022
1.0.271 1,423 7/13/2022
1.0.270 1,634 7/7/2022
1.0.269 1,388 7/7/2022
1.0.268 1,999 6/20/2022
1.0.267 1,574 6/14/2022
1.0.266 1,685 6/9/2022
1.0.265 2,993 5/27/2022
1.0.264 1,558 5/24/2022
1.0.263 1,410 5/23/2022
1.0.262 1,535 5/17/2022
1.0.261 1,409 5/16/2022
1.0.260 1,415 5/16/2022
1.0.259 1,872 5/6/2022
1.0.258 1,419 5/5/2022
1.0.257 1,405 5/5/2022
1.0.256 1,396 5/4/2022
1.0.255 1,436 5/4/2022
1.0.254 2,208 4/5/2022
1.0.253 1,459 4/5/2022
1.0.252 1,425 4/4/2022
1.0.251 1,617 3/22/2022
1.0.250 2,922 2/3/2022
1.0.249 1,497 1/28/2022
1.0.248 1,803 1/27/2022
1.0.247 1,474 1/26/2022
1.0.246 1,441 1/25/2022
1.0.245 1,434 1/18/2022
1.0.244 1,424 1/18/2022
1.0.243 1,282 1/12/2022
1.0.242 1,129 12/10/2021
1.0.241 865 12/10/2021
1.0.240 866 12/10/2021
1.0.239 991 12/6/2021
1.0.238 1,339 12/6/2021
1.0.236 880 12/2/2021
1.0.235 926 12/2/2021
1.0.234 888 12/2/2021
1.0.233 1,119 11/18/2021
1.0.232 892 11/18/2021
1.0.231 1,130 11/9/2021
1.0.230 1,008 11/9/2021
1.0.227 1,136 10/14/2021
1.0.226 1,256 9/2/2021
1.0.225 897 8/31/2021
1.0.224 920 8/30/2021
1.0.223 1,053 8/6/2021
1.0.222 919 8/6/2021
1.0.221 924 8/6/2021
1.0.220 942 8/3/2021
1.0.219 1,003 7/30/2021
1.0.218 1,054 7/7/2021
1.0.217 856 7/7/2021
1.0.216 895 7/7/2021
1.0.215 920 7/6/2021
1.0.214 924 7/6/2021
1.0.213 868 7/6/2021
1.0.212 24,292 5/14/2021
1.0.211 879 5/11/2021
1.0.210 863 5/11/2021
1.0.209 826 5/11/2021
1.0.208 812 5/11/2021
1.0.207 1,160 5/3/2021
1.0.206 966 5/3/2021
1.0.205 896 5/3/2021
1.0.204 848 5/3/2021
1.0.203 878 4/15/2021
1.0.202 880 4/15/2021
1.0.201 828 4/15/2021
1.0.200 841 4/15/2021
1.0.199 840 4/14/2021
1.0.198 972 3/19/2021
1.0.197 868 3/9/2021
1.0.196 889 3/9/2021
1.0.195 866 3/9/2021
1.0.194 950 3/9/2021
1.0.193 950 3/9/2021
1.0.192 974 3/9/2021
1.0.191 965 2/12/2021
1.0.190 1,017 1/21/2021
1.0.189 1,014 1/21/2021
1.0.188 894 1/21/2021
1.0.187 891 1/21/2021
1.0.186 1,218 1/8/2021
1.0.185 946 1/8/2021
1.0.184 5,152 11/13/2020
1.0.183 901 11/13/2020
1.0.182 935 11/13/2020
1.0.181 1,335 10/13/2020
1.0.180 1,077 10/12/2020
1.0.179 1,142 8/31/2020
1.0.178 3,680 8/4/2020
1.0.177 1,069 7/21/2020
1.0.176 981 7/10/2020
1.0.175 1,042 7/10/2020
1.0.174 3,580 5/20/2020
1.0.173 1,056 5/20/2020
1.0.172 1,124 5/20/2020
1.0.171 1,105 5/8/2020
1.0.170 2,044 4/9/2020
1.0.169 1,168 4/3/2020
1.0.168 1,070 3/25/2020
1.0.167 1,183 3/23/2020
1.0.166 1,205 2/6/2020
1.0.165 1,213 12/30/2019
1.0.164 1,087 12/28/2019
1.0.163 1,064 12/28/2019
1.0.162 1,452 12/5/2019
1.0.161 1,046 12/5/2019
1.0.160 1,448 11/20/2019
1.0.159 1,721 10/14/2019
1.0.158 706 10/13/2019
1.0.157 1,187 10/3/2019
1.0.156 1,106 9/17/2019
1.0.155 1,105 9/15/2019
1.0.154 2,793 6/20/2019
1.0.153 1,770 6/20/2019
1.0.152 1,967 6/6/2019
1.0.151 1,788 6/4/2019
1.0.150 1,821 5/25/2019
1.0.149 1,770 5/23/2019
1.0.148 1,756 5/16/2019
1.0.147 1,782 5/16/2019
1.0.146 1,535 5/16/2019
1.0.145 1,488 5/16/2019
1.0.143 2,632 5/14/2019
1.0.142 1,689 5/13/2019
1.0.141 1,417 5/7/2019
1.0.140 1,505 4/16/2019
1.0.139 1,489 4/16/2019
1.0.138 1,402 4/16/2019
1.0.137 1,338 4/16/2019
1.0.136 1,549 1/9/2019
1.0.135 5,664 12/12/2018
1.0.134 1,496 12/12/2018
1.0.132 1,716 8/11/2018
1.0.131 1,653 7/31/2018
1.0.130 1,653 7/25/2018
1.0.129 1,628 7/24/2018
1.0.128 1,653 7/19/2018
1.0.127 1,704 7/4/2018
1.0.126 1,747 6/20/2018
1.0.125 1,747 6/19/2018
1.0.124 1,799 5/24/2018
1.0.123 1,732 5/18/2018
1.0.122 1,879 5/17/2018
1.0.121 1,863 4/29/2018
1.0.120 1,839 4/29/2018
1.0.119 1,794 4/27/2018
1.0.118 1,770 4/26/2018
1.0.117 1,746 4/26/2018
1.0.116 1,734 4/25/2018
1.0.115 1,636 4/23/2018
1.0.114 1,774 4/12/2018
1.0.113 1,824 4/11/2018
1.0.112 1,814 4/4/2018
1.0.111 1,764 4/3/2018
1.0.110 1,769 4/2/2018
1.0.109 1,778 3/29/2018
1.0.108 1,765 3/28/2018
1.0.107 1,778 3/22/2018
1.0.106 1,794 3/22/2018
1.0.105 1,939 2/28/2018
1.0.104 1,859 2/26/2018
1.0.103 1,781 2/25/2018
1.0.102 1,780 2/24/2018
1.0.101 1,653 2/23/2018
1.0.100 1,935 2/23/2018
1.0.99 1,832 1/16/2018
1.0.98 1,834 12/20/2017
1.0.97 1,807 12/10/2017
1.0.96 1,736 12/7/2017
1.0.95 1,771 12/7/2017
1.0.94 1,681 12/6/2017
1.0.93 1,819 12/6/2017
1.0.92 1,741 11/30/2017
1.0.91 1,691 11/30/2017
1.0.90 1,685 11/28/2017
1.0.89 1,640 11/28/2017
1.0.88 1,934 10/18/2017
1.0.87 1,895 10/16/2017
1.0.86 1,880 10/16/2017
1.0.85 1,921 10/15/2017
1.0.84 1,920 10/6/2017
1.0.83 1,933 10/6/2017
1.0.82 1,926 10/5/2017
1.0.81 1,924 10/4/2017
1.0.80 1,954 9/30/2017
1.0.79 2,155 9/28/2017
1.0.78 1,866 9/27/2017
1.0.77 1,894 9/26/2017
1.0.76 1,878 9/26/2017
1.0.75 1,904 9/26/2017
1.0.74 1,865 9/26/2017
1.0.73 1,874 9/26/2017
1.0.72 1,951 9/21/2017
1.0.71 1,943 9/20/2017
1.0.70 1,886 9/20/2017
1.0.69 1,894 9/20/2017
1.0.68 1,898 9/20/2017
1.0.67 1,892 9/18/2017
1.0.66 1,951 9/18/2017
1.0.65 1,916 9/18/2017
1.0.64 1,915 9/18/2017
1.0.63 1,896 9/17/2017
1.0.62 1,880 9/17/2017
1.0.61 1,911 9/17/2017
1.0.60 1,945 9/15/2017
1.0.59 1,935 9/15/2017
1.0.58 1,920 9/12/2017
1.0.57 1,879 9/12/2017
1.0.56 1,916 9/12/2017
1.0.55 1,926 9/12/2017
1.0.54 1,894 9/12/2017
1.0.53 1,916 9/11/2017
1.0.52 1,909 9/11/2017
1.0.51 1,894 9/8/2017
1.0.50 1,912 9/8/2017
1.0.49 1,939 9/6/2017
1.0.48 1,915 9/6/2017
1.0.47 1,918 9/5/2017
1.0.46 1,933 9/5/2017
1.0.45 1,914 9/1/2017
1.0.44 1,914 8/31/2017
1.0.43 1,939 8/31/2017
1.0.42 1,934 8/31/2017
1.0.41 1,922 8/31/2017
1.0.40 1,951 8/31/2017
1.0.39 1,976 8/30/2017
1.0.38 1,710 8/28/2017
1.0.37 1,745 8/22/2017
1.0.36 1,718 8/22/2017
1.0.35 1,699 8/22/2017
1.0.34 1,689 8/21/2017
1.0.33 1,688 8/17/2017
1.0.32 1,739 8/16/2017
1.0.31 1,722 8/16/2017
1.0.30 1,705 8/15/2017
1.0.29 1,696 8/15/2017
1.0.28 1,756 8/15/2017
1.0.27 1,769 8/14/2017
1.0.26 1,687 8/11/2017
1.0.25 1,700 8/11/2017
1.0.24 1,679 8/9/2017
1.0.21 1,697 8/7/2017
1.0.19 1,752 8/7/2017
1.0.17 1,734 8/7/2017
1.0.15 1,728 8/4/2017
1.0.13 1,712 8/4/2017
1.0.11 1,727 8/3/2017
1.0.9 1,742 7/23/2017
1.0.8 1,719 7/23/2017
1.0.7 1,705 7/23/2017
1.0.6 1,714 7/23/2017
1.0.5 1,727 7/22/2017
1.0.4 1,719 7/22/2017
1.0.3 1,719 7/22/2017
1.0.1 1,838 7/21/2017
1.0.0 1,736 7/20/2017