EasyNetQ.DI.Ninject 8.0.0-beta5

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

Build status

NuGet Status Nuget Status Nuget Status

Activity Activity Activity

EasyNetQ Logo

A Nice .NET API for RabbitMQ

Initial development was sponsored by travel industry experts 15below

Goals:

  1. To make working with RabbitMQ on .NET as easy as possible.

To connect to a RabbitMQ broker...

    var bus = RabbitHutch.CreateBus("host=localhost");

To publish a message...

    await bus.PubSub.PublishAsync(message);

To publish a message with 5s delay...

    await bus.Scheduler.FuturePublishAsync(message, TimeSpan.FromSeconds(5));

To subscribe to a message...

    await bus.PubSub.SubscribeAsync<MyMessage>(
        "my_subscription_id", msg => Console.WriteLine(msg.Text)
    );

Remote procedure call...

    var request = new TestRequestMessage {Text = "Hello from the client! "};
    await bus.Rpc.RequestAsync<TestRequestMessage, TestResponseMessage>(request);

RPC server...

    await bus.Rpc.RespondAsync<TestRequestMessage, TestResponseMessage>(request =>
        new TestResponseMessage{ Text = request.Text + " all done!" }
    );

Getting started

Just open EasyNetQ.sln in VisualStudio or Rider and build. All the required dependencies for the solution file to build the software are included.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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.  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. 
.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 was computed.  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.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on EasyNetQ.DI.Ninject:

Package Downloads
Revo.EasyNetQ

Event Sourcing, CQRS and DDD framework for modern C#/.NET applications. Framework infrastruture package - event stores, projections, jobs, etc.

ACE

Simple Microservices infrastructure library. Offers three domain message: Action, Command and Event. Event for communication between the Microservices, Action for communication between front-end and Microservices, Command is used for communication between the Aggregates.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on EasyNetQ.DI.Ninject:

Repository Stars
revoframework/Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
Version Downloads Last Updated
8.0.0-beta96 157 3/15/2024
8.0.0-beta95 277 10/22/2023
8.0.0-beta94 186 6/18/2023
8.0.0-beta93 222 6/17/2023
8.0.0-beta92 186 6/17/2023
8.0.0-beta91 193 6/11/2023
8.0.0-beta90 193 5/8/2023
8.0.0-beta9 219 3/21/2023
8.0.0-beta8 224 2/20/2023
8.0.0-beta6 222 1/29/2023
8.0.0-beta5 233 1/20/2023
8.0.0-beta4 252 1/5/2023
8.0.0-beta3 246 12/29/2022
8.0.0-beta2 235 12/16/2022
8.0.0-beta10 205 3/21/2023
8.0.0-beta1 223 12/15/2022
8.0.0-alpha9 230 12/14/2022
8.0.0-alpha8 233 11/30/2022
8.0.0-alpha7 234 11/12/2022
8.0.0-alpha6 241 10/29/2022
8.0.0-alpha5 229 10/5/2022
8.0.0-alpha4 280 10/1/2022
8.0.0-alpha3 294 9/26/2022
8.0.0-alpha2 278 9/21/2022
8.0.0-alpha1 305 9/19/2022
7.8.0 67,747 12/16/2023
7.7.0 587 11/19/2023
7.6.0 744 10/12/2023
7.5.5 572 7/20/2023
7.5.4 248 7/19/2023
7.5.3 270 6/15/2023
7.5.2 368 5/14/2023
7.5.1 627 5/4/2023
7.5.0 536 3/25/2023
7.4.3 49,170 2/3/2023
7.4.1 528 1/31/2023
7.4.0 504 1/29/2023
7.3.12 583 1/23/2023
7.3.11 595 1/22/2023
7.3.10 535 1/19/2023
7.3.9 540 1/17/2023
7.3.8 587 1/4/2023
7.3.7 574 12/22/2022
7.3.6 521 12/19/2022
7.3.5 561 11/30/2022
7.3.4 553 11/30/2022
7.3.3 718 11/24/2022
7.3.2 653 11/15/2022
7.3.1 615 11/12/2022
7.3.0 784 10/29/2022
7.3.0-alpha3 228 10/15/2022
7.3.0-alpha2 221 10/15/2022
7.2.1 825 10/9/2022
7.2.1-alpha1 210 10/6/2022
7.2.0 874 9/17/2022
7.2.0-alpha1 297 9/15/2022
7.1.1-alpha1 305 9/14/2022
7.1.0 817 9/13/2022
7.0.4 788 9/7/2022
7.0.3 736 9/5/2022
7.0.3-alpha1 216 9/5/2022
7.0.2 729 9/5/2022
7.0.1 730 8/27/2022
7.0.0 859 7/23/2022
7.0.0-rc5 273 6/28/2022
7.0.0-rc4 267 6/27/2022
7.0.0-rc3 273 6/20/2022
7.0.0-rc2 254 6/9/2022
7.0.0-rc1 264 6/9/2022
7.0.0-beta9 248 6/8/2022
7.0.0-beta7 251 6/5/2022
7.0.0-beta6 263 5/24/2022
7.0.0-beta5 327 11/18/2021
7.0.0-beta4 315 11/9/2021
7.0.0-beta3 361 11/6/2021
7.0.0-beta2 388 9/29/2021
7.0.0-beta1 366 9/13/2021
7.0.0-alpha9 339 8/25/2021
7.0.0-alpha8 331 8/25/2021
7.0.0-alpha7 344 8/25/2021
7.0.0-alpha6 366 8/16/2021
7.0.0-alpha5 343 8/16/2021
7.0.0-alpha4 518 1/20/2021
7.0.0-alpha3 523 12/31/2020
7.0.0-alpha2 493 12/28/2020
6.5.2 1,413 6/20/2022
6.4.1 763 5/22/2022
6.4.0-alpha0096 527 12/6/2020
6.4.0-alpha0095 534 12/6/2020
6.4.0-alpha0094 593 12/6/2020
6.4.0-alpha.99 326 12/26/2020
6.4.0-alpha.97 333 12/9/2020
6.3.1 41,311 11/28/2020
6.3.0 1,147 11/22/2020
6.2.0 1,051 11/15/2020
6.1.0 968 11/10/2020
6.0.3 903 11/9/2020
6.0.2 1,010 11/6/2020
6.0.1 1,028 11/1/2020
5.6.0 1,050 10/10/2020
5.5.0 1,042 10/5/2020
5.4.1 1,048 10/4/2020
5.4.0 994 10/1/2020
5.3.0-alpha0079 618 6/16/2020
5.3.0-alpha0078 587 6/15/2020
5.3.0-alpha0077 576 6/15/2020
5.3.0-alpha0076 602 6/15/2020
5.3.0-alpha0075 583 6/14/2020
5.3.0-alpha0074 562 6/12/2020
5.3.0-alpha0073 595 6/12/2020
5.3.0-alpha0072 562 6/11/2020
5.3.0-alpha0070 661 6/7/2020
5.2.2 1,002 9/4/2020
5.2.1 996 9/3/2020
5.2.0 1,144 6/7/2020
5.2.0-alpha0073 571 5/26/2020
5.2.0-alpha0072 658 5/25/2020
5.2.0-alpha0071 646 5/25/2020
5.2.0-alpha0070 636 5/24/2020
5.2.0-alpha0069 582 5/24/2020
5.2.0-alpha0066 566 5/21/2020
5.2.0-alpha0065 622 5/20/2020
5.2.0-alpha0064 615 5/17/2020
5.2.0-alpha0057 641 5/10/2020
5.2.0-alpha0056 594 5/8/2020
5.1.2 1,099 5/24/2020
5.1.1 1,089 5/10/2020
5.1.0 1,085 5/7/2020
5.1.0-alpha0055 626 5/3/2020
5.1.0-alpha0054 715 5/3/2020
5.1.0-alpha0053 659 4/30/2020
5.0.5 1,076 5/4/2020
5.0.4 993 5/3/2020
5.0.3 1,053 5/2/2020
5.0.2 1,053 5/2/2020
5.0.1 1,036 5/2/2020
5.0.0 1,125 4/29/2020
4.1.0-alpha0014 628 4/29/2020
4.1.0-alpha0013 633 4/24/2020
4.1.0-alpha0005 619 4/20/2020
4.1.0-alpha0004 634 4/18/2020
4.1.0-alpha0001 637 4/17/2020
4.0.9 1,095 4/29/2020
4.0.8 1,100 4/28/2020
4.0.7 1,068 4/27/2020
4.0.6 1,008 4/24/2020
4.0.5 1,024 4/22/2020
4.0.4 1,028 4/21/2020
4.0.3 997 4/20/2020
4.0.2 1,052 4/20/2020
4.0.1 1,048 4/20/2020
4.0.0 1,007 4/18/2020
3.8.0 1,068 4/17/2020
3.8.0-alpha0048 654 2/28/2020
3.8.0-alpha0042 660 2/13/2020
3.8.0-alpha0041 678 1/8/2020
3.8.0-alpha0040 635 9/26/2019
3.8.0-alpha0039 654 9/25/2019
3.7.1 2,124 9/25/2019
3.7.0 1,072 9/23/2019
3.7.0-alpha0038 697 8/3/2019
3.7.0-alpha0037 689 8/1/2019
3.6.0 1,319 7/17/2019
3.6.0-alpha0036 726 6/4/2019
3.6.0-alpha0035 731 6/2/2019
3.6.0-alpha0034 710 6/2/2019
3.6.0-alpha0033 736 6/2/2019
3.6.0-alpha0031 714 5/4/2019
3.5.2 1,169 7/11/2019
3.5.1 3,087 6/2/2019
3.5.0 1,534 5/2/2019
3.5.0-alpha0036 753 4/10/2019
3.5.0-alpha0031 727 3/25/2019
3.5.0-alpha0030 727 3/21/2019
3.5.0-alpha0029 700 3/19/2019
3.5.0-alpha0027 733 3/18/2019
3.5.0-alpha0026 699 3/18/2019
3.5.0-alpha0025 675 3/17/2019
3.5.0-alpha0024 699 3/16/2019
3.5.0-alpha0021 712 3/15/2019
3.5.0-alpha0020 710 3/14/2019
3.5.0-alpha0019 734 3/14/2019
3.5.0-alpha0018 716 3/14/2019
3.5.0-alpha0013 683 3/14/2019
3.4.5 1,250 3/21/2019
3.4.4 1,198 3/16/2019
3.4.3 1,196 3/14/2019
3.4.2 1,185 3/13/2019
3.4.1 1,134 3/12/2019
3.4.0 1,327 2/19/2019
3.4.0-alpha0022 799 1/27/2019
3.4.0-alpha0021 795 1/25/2019
3.4.0-alpha0020 868 12/21/2018
3.4.0-alpha0019 826 12/6/2018
3.4.0-alpha0018 838 11/21/2018
3.4.0-alpha0017 846 11/20/2018
3.4.0-alpha0016 837 11/5/2018
3.4.0-alpha0015 885 11/2/2018
3.4.0-alpha0011 861 11/1/2018
3.4.0-alpha0010 936 10/3/2018
3.4.0-alpha0009 977 9/16/2018
3.4.0-alpha0008 972 9/1/2018
3.4.0-alpha0007 934 8/29/2018
3.4.0-alpha0006 909 8/28/2018
3.4.0-alpha0005 907 8/28/2018
3.4.0-alpha0004 963 8/23/2018
3.4.0-alpha0003 953 8/22/2018
3.4.0-alpha0002 1,017 8/10/2018
3.4.0-alpha0001 1,065 7/30/2018
3.3.9 1,327 1/25/2019
3.3.8 1,366 1/18/2019
3.3.7 1,363 1/5/2019
3.3.6 1,292 12/19/2018
3.3.5 1,809 11/21/2018
3.3.4 1,348 11/20/2018
3.3.3 1,525 11/11/2018
3.3.2 1,505 10/12/2018
3.3.1 1,440 8/28/2018
3.3.0 2,146 7/18/2018
3.3.0-alpha0007 1,270 7/18/2018
3.3.0-alpha0006 1,286 7/17/2018
3.3.0-alpha0005 1,233 7/17/2018
3.3.0-alpha0004 1,060 7/17/2018
3.3.0-alpha0003 1,274 7/15/2018
3.3.0-alpha0001 1,250 7/11/2018
3.2.0 1,741 7/12/2018
3.1.2 1,527 7/11/2018
3.1.1 1,543 7/4/2018
3.1.0 1,827 6/20/2018
3.1.0-alpha0019 1,261 7/4/2018
3.1.0-alpha0017 1,057 7/2/2018
3.1.0-alpha0016 1,079 6/30/2018
3.1.0-alpha0014 1,106 6/26/2018
3.1.0-alpha0011 1,304 6/23/2018
3.1.0-alpha0010 1,262 6/20/2018
3.1.0-alpha0009 1,251 6/20/2018
3.1.0-alpha0008 1,045 6/19/2018
3.1.0-alpha0007 1,267 6/17/2018
3.1.0-alpha0006 1,292 6/14/2018
3.1.0-alpha0005 1,086 6/14/2018
3.1.0-alpha0004 1,337 5/28/2018
3.0.1 1,605 7/4/2018
3.0.0 1,988 5/24/2018
2.4.0-alpha0027 1,126 5/23/2018
2.4.0-alpha0026 1,289 5/23/2018
2.4.0-alpha0025 1,274 5/22/2018
2.4.0-alpha0024 1,256 5/18/2018
2.4.0-alpha0023 1,361 5/16/2018
2.4.0-alpha0022 1,448 5/16/2018
2.4.0-alpha0021 1,384 5/15/2018
2.4.0-alpha0020 1,371 5/15/2018
2.4.0-alpha0019 1,415 4/20/2018
2.4.0-alpha0017 1,107 4/19/2018
2.4.0-alpha0016 1,303 4/13/2018
2.4.0-alpha0015 1,263 4/3/2018
2.4.0-alpha0014 1,342 4/1/2018
2.4.0-alpha0013 1,672 3/30/2018
2.4.0-alpha0009 1,133 2/20/2018
2.4.0-alpha0002 1,180 12/1/2017
2.3.3 2,246 4/24/2018
2.3.1 2,431 2/20/2018
2.3.0 1,635 2/19/2018
2.3.0-alpha0006 1,120 11/21/2017
2.3.0-alpha0005 1,125 11/13/2017
2.3.0-alpha0002 1,160 9/18/2017
2.2.0 2,292 11/13/2017
2.2.0-alpha0009 1,107 9/14/2017
2.2.0-alpha0008 1,133 9/11/2017
2.2.0-alpha0007 1,139 9/10/2017
2.2.0-alpha0006 1,113 8/18/2017
2.2.0-alpha0002 1,184 8/18/2017
2.1.0 1,733 8/18/2017
2.1.0-alpha0022 1,118 8/18/2017
2.1.0-alpha0020 1,142 7/24/2017
2.1.0-alpha0018 1,184 7/13/2017
2.1.0-alpha0016 1,182 7/12/2017
2.1.0-alpha0011 1,211 7/11/2017
2.1.0-alpha0005 1,128 7/3/2017
2.1.0-alpha0002 1,187 7/3/2017
2.0.4 1,679 7/24/2017
2.0.4-unstable0013 1,269 6/26/2017
2.0.4-unstable0011 1,260 6/26/2017
2.0.4-unstable0010 1,286 6/11/2017
2.0.4-unstable0009 1,290 6/1/2017
2.0.4-unstable0007 1,303 5/4/2017
2.0.4-unstable0004 1,300 5/1/2017
2.0.4-unstable0003 1,291 5/1/2017
2.0.4-unstable0002 1,293 4/30/2017
2.0.4-unstable0001 1,289 4/27/2017
2.0.4-alpha0038 1,200 7/1/2017
2.0.3-unstable0064 1,235 4/27/2017
2.0.3-unstable0058 1,218 3/28/2017
2.0.3-unstable0057 1,251 3/15/2017
2.0.3-unstable0055 1,291 2/10/2017
2.0.3-unstable0053 1,241 2/9/2017
2.0.3-unstable0052 1,266 2/8/2017
1.1.4.506 1,860 7/6/2017
1.1.3.500 1,742 6/28/2017
1.1.2.497 1,679 6/21/2017
1.1.1.494 1,689 5/30/2017
1.1.0.492 1,717 5/4/2017
1.0.4.483 1,711 4/26/2017
1.0.3.481 1,701 4/4/2017
1.0.2.478 1,637 3/15/2017
1.0.1.475 1,749 2/10/2017
1.0.0.469 1,754 2/8/2017
1.0.0 1,723 6/30/2017
0.63.7.467 1,692 2/7/2017
0.63.6.463 1,691 2/7/2017
0.63.6.460 1,687 2/5/2017
0.63.5.454 3,047 10/17/2016
0.63.4.453 1,755 10/10/2016
0.63.3.452 1,693 9/26/2016
0.63.1.451 8,839 9/19/2016
0.63.1.450 1,779 9/11/2016
0.63.0.448 1,754 8/12/2016
0.62.1.445 1,683 8/8/2016
0.62.0.444 1,740 8/8/2016
0.61.1.443 1,724 8/5/2016
0.61.0.442 2,049 8/2/2016
0.60.1.441 1,962 7/31/2016
0.60.0.440 1,784 7/25/2016
0.59.0.439 1,767 7/18/2016
0.59.0.437 1,753 7/18/2016
0.59.0.436 1,739 7/18/2016
0.59.0.434 1,735 6/6/2016
0.58.0.433 1,806 5/2/2016
0.57.2.432 1,759 5/2/2016
0.57.2.431 2,114 4/25/2016
0.57.2.430 1,897 4/20/2016
0.57.1.429 1,769 4/20/2016
0.57.0.428 1,786 4/18/2016
0.56.0.427 2,569 4/1/2016
0.55.1.426 2,192 3/17/2016
0.55.0.425 1,801 3/1/2016
0.54.3.424 2,002 2/2/2016
0.54.2.423 1,714 2/1/2016
0.54.1.421 1,772 2/1/2016
0.54.0.420 1,743 1/28/2016
0.53.6.419 1,750 1/25/2016
0.53.6.418 1,828 1/6/2016
0.53.5.417 1,828 1/6/2016
0.53.5.416 1,779 1/5/2016
0.53.4.415 1,789 12/23/2015
0.53.3.414 1,913 12/9/2015
0.53.2.413 2,150 12/1/2015
0.53.1.412 1,968 11/28/2015
0.53.0.411 1,929 11/19/2015
0.52.0.410 1,836 11/18/2015
0.51.0.409 1,841 11/17/2015
0.51.0.408 1,852 11/16/2015
0.50.12.407 1,866 10/22/2015
0.50.12.406 1,843 10/22/2015
0.50.11.404 1,761 10/20/2015
0.50.10.403 1,864 10/10/2015
0.50.9.401 2,182 10/5/2015
0.50.8.400 1,861 9/28/2015
0.50.7.399 1,887 8/18/2015
0.50.6.398 1,865 8/11/2015
0.50.5.397 1,883 8/11/2015
0.50.5.396 1,963 8/11/2015
0.50.4.395 2,088 8/8/2015
0.50.3.394 2,017 8/7/2015
0.50.2.393 1,922 8/1/2015
0.50.1.392 1,884 6/17/2015
0.50.0.391 1,797 6/8/2015
0.49.3.390 1,924 5/20/2015
0.49.2.389 1,847 5/18/2015
0.49.1.388 1,850 5/18/2015
0.49.0.387 1,840 5/17/2015
0.48.1.386 1,872 5/10/2015
0.48.0.385 1,813 5/10/2015
0.47.10.384 1,898 5/8/2015
0.47.10.383 1,843 5/6/2015
0.47.10.382 1,841 5/5/2015
0.47.10.381 2,035 4/27/2015
0.47.10.380 4,747 4/1/2015
0.47.10.379 1,775 4/1/2015
0.47.9.378 1,887 3/31/2015
0.47.9.377 1,858 3/31/2015
0.47.9.376 1,837 3/30/2015
0.47.8.375 1,859 3/28/2015
0.47.7.374 1,854 3/25/2015
0.47.6.373 1,829 3/18/2015
0.47.5.372 1,805 3/17/2015
0.47.4.371 1,890 3/16/2015
0.47.3.370 1,925 3/15/2015
0.47.2.369 1,896 3/12/2015
0.47.1.368 2,319 3/4/2015
0.47.0.367 1,904 3/4/2015
0.46.1.366 2,208 3/3/2015
0.46.0.365 2,139 3/2/2015
0.45.0.364 1,872 3/2/2015
0.44.3.363 2,392 2/24/2015
0.44.2.362 2,063 2/24/2015
0.44.1.361 2,288 2/22/2015
0.44.0.360 2,145 2/18/2015
0.43.1.359 2,249 2/12/2015
0.43.0.358 1,923 2/7/2015
0.42.0.357 1,894 2/5/2015
0.41.0.356 1,902 2/4/2015
0.40.6.355 1,984 2/3/2015
0.40.3.354 1,778 2/2/2015
0.40.3.353 1,831 1/26/2015
0.40.3.352 1,852 1/20/2015
0.40.3.351 1,876 1/19/2015
0.40.2.350 1,874 1/19/2015
0.40.1.349 1,853 1/17/2015
0.40.1.348 1,947 1/15/2015
0.40.1.347 1,919 1/13/2015
0.40.1.346 1,814 1/12/2015
0.40.0.345 1,806 1/9/2015
0.40.0.344 1,790 1/9/2015
0.40.0.343 1,806 1/8/2015
0.40.0.342 1,882 1/8/2015
0.39.6.340 1,907 1/6/2015
0.39.5.339 1,826 1/5/2015
0.39.4.338 2,139 1/1/2015
0.39.4.337 2,335 12/23/2014
0.39.4.336 2,157 12/13/2014
0.39.2.335 2,150 12/12/2014
0.39.2.334 2,106 12/9/2014
0.39.2.333 2,056 12/5/2014
0.39.1.332 2,105 12/3/2014
0.39.1.331 2,044 12/2/2014
0.39.0.330 2,069 12/1/2014
0.38.2.329 2,084 11/26/2014
0.38.2.328 2,057 11/26/2014
0.38.1.327 2,046 11/25/2014
0.38.0.326 2,161 11/22/2014
0.38.0.325 2,081 11/20/2014
0.38.0.324 2,109 11/14/2014
0.37.2.323 2,043 11/14/2014
0.37.2.322 2,466 11/5/2014
0.37.2.321 1,999 10/29/2014
0.37.2.320 1,956 10/29/2014
0.37.2.319 1,899 10/28/2014
0.37.1.318 1,897 10/25/2014
0.37.1.317 1,869 10/16/2014
0.37.1.316 1,938 10/13/2014
0.37.0.315 1,931 10/12/2014
0.36.5.314 1,933 10/11/2014
0.36.5.313 1,968 10/9/2014
0.36.4.312 1,966 10/8/2014
0.36.4.311 2,048 10/8/2014
0.36.4.310 2,032 10/3/2014
0.36.3.309 1,884 10/1/2014
0.36.2.308 2,001 9/28/2014
0.36.1.307 1,957 9/20/2014
0.36.1.306 1,870 9/17/2014
0.36.0.305 1,913 9/15/2014
0.35.6.304 2,050 9/1/2014
0.35.6.303 1,982 8/28/2014
0.35.6.302 1,936 8/16/2014
0.35.6.301 1,915 8/15/2014
0.35.5.300 1,910 8/14/2014
0.35.4.299 1,975 8/14/2014
0.35.4.298 2,011 8/13/2014
0.35.4.297 1,870 8/11/2014
0.35.3.296 1,870 8/10/2014
0.35.3.295 2,041 8/8/2014
0.35.3.294 2,005 8/5/2014
0.35.1.288 1,944 8/1/2014
0.35.1.287 2,016 8/1/2014
0.35.1.286 1,958 8/1/2014
0.35.1.285 1,926 7/29/2014
0.35.1.284 1,945 7/23/2014
0.35.1.283 1,911 7/23/2014
0.35.0.282 1,961 7/22/2014
0.35.0.281 1,934 7/15/2014
0.34.0.280 1,868 7/11/2014
0.34.0.279 1,887 7/9/2014
0.33.2.278 1,871 7/9/2014
0.33.2.277 1,968 7/2/2014
0.33.1.276 2,042 6/24/2014
0.33.1.275 1,929 6/19/2014
0.33.0.274 2,024 6/19/2014
0.33.0.273 2,021 6/16/2014
0.32.3.272 1,958 6/14/2014
0.32.2.271 2,012 6/5/2014
0.32.1.270 1,968 6/1/2014
0.32.1.269 1,966 6/1/2014
0.32.1.268 1,859 5/26/2014
0.32.0.267 1,926 5/23/2014
0.32.0.266 1,991 5/22/2014
0.32.0.265 1,972 5/21/2014
0.32.0.264 1,892 5/21/2014
0.32.0.263 1,923 5/20/2014
0.32.0.262 1,983 5/19/2014
0.31.1.261 2,012 5/19/2014
0.31.1.260 1,954 5/19/2014
0.31.0.259 1,960 5/16/2014
0.30.2.258 1,955 5/15/2014
0.30.2.257 1,964 5/14/2014
0.30.2.254 1,979 5/8/2014
0.30.2.252 2,117 4/30/2014
0.30.2.251 1,946 4/30/2014
0.30.1.250 2,158 4/29/2014
0.30.0.249 2,008 4/28/2014
0.30.0.248 2,322 4/24/2014
0.30.0.247 2,198 4/17/2014
0.29.0.246 2,186 4/16/2014
0.28.5.245 2,099 4/14/2014
0.28.4.242 2,142 4/5/2014
0.28.4.241 2,117 4/4/2014
0.28.4.240 2,029 4/3/2014
0.28.4.232 2,007 3/31/2014
0.28.3.231 2,090 3/27/2014
0.28.3.230 2,066 3/27/2014
0.28.3.229 2,133 3/19/2014
0.28.2.227 2,084 3/14/2014
0.28.2.226 2,063 3/13/2014
0.28.2.225 2,028 3/5/2014
0.28.1.224 2,030 3/4/2014
0.27.5.222 2,024 2/28/2014
0.27.5.221 1,982 2/28/2014
0.27.4.220 2,104 2/26/2014
0.27.3.219 1,957 2/25/2014
0.27.2.218 1,974 2/25/2014
0.27.1.216 1,981 2/14/2014
0.27.0.215 1,971 2/12/2014
0.26.7.214 2,092 2/12/2014
0.26.7.213 2,028 2/11/2014
0.26.7.212 2,020 2/10/2014
0.26.7.211 2,054 2/10/2014
0.26.6.210 1,931 2/10/2014
0.26.5.209 1,975 2/10/2014
0.26.5.208 1,981 2/5/2014
0.26.5.207 1,991 2/4/2014
0.26.4.206 1,997 2/4/2014
0.26.3.204 1,951 2/4/2014
0.26.3.203 1,971 2/3/2014
0.26.3.202 1,977 1/30/2014
0.26.3.198 1,991 1/30/2014
0.26.2.194 1,978 1/23/2014
0.26.1.193 1,988 1/20/2014
0.26.1.191 1,989 1/17/2014
0.26.1.189 2,049 1/16/2014
0.26.1.188 2,046 1/15/2014
0.26.1.187 1,984 1/15/2014
0.26.1.186 1,992 1/13/2014
0.26.1.185 1,990 1/3/2014
0.26.1.184 2,019 1/2/2014
0.26.1.183 2,015 12/20/2013
0.26.0.182 1,991 12/19/2013
0.26.0.181 2,031 12/16/2013
0.25.4.180 1,966 12/16/2013
0.25.4.179 1,951 12/16/2013
0.25.3.178 1,969 12/13/2013
0.25.3.177 2,000 12/13/2013