EasyNetQ.DI.Ninject 8.0.0-beta3

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-beta3
                    
NuGet\Install-Package EasyNetQ.DI.Ninject -Version 8.0.0-beta3
                    
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-beta3" />
                    
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-beta3" />
                    
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-beta3
                    
#r "nuget: EasyNetQ.DI.Ninject, 8.0.0-beta3"
                    
#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=EasyNetQ.DI.Ninject&version=8.0.0-beta3&prerelease
                    
Install EasyNetQ.DI.Ninject as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Ninject&version=8.0.0-beta3&prerelease
                    
Install EasyNetQ.DI.Ninject 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. 
.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 111 3/15/2024
8.0.0-beta95 253 10/22/2023
8.0.0-beta94 141 6/18/2023
8.0.0-beta93 159 6/17/2023
8.0.0-beta92 126 6/17/2023
8.0.0-beta91 144 6/11/2023
8.0.0-beta90 123 5/8/2023
8.0.0-beta9 144 3/21/2023
8.0.0-beta8 154 2/20/2023
8.0.0-beta6 158 1/29/2023
8.0.0-beta5 176 1/20/2023
8.0.0-beta4 180 1/5/2023
8.0.0-beta3 187 12/29/2022
8.0.0-beta2 168 12/16/2022
8.0.0-beta10 157 3/21/2023
8.0.0-beta1 156 12/15/2022
8.0.0-alpha9 169 12/14/2022
8.0.0-alpha8 168 11/30/2022
8.0.0-alpha7 168 11/12/2022
8.0.0-alpha6 174 10/29/2022
8.0.0-alpha5 166 10/5/2022
8.0.0-alpha4 211 10/1/2022
8.0.0-alpha3 232 9/26/2022
8.0.0-alpha2 224 9/21/2022
8.0.0-alpha1 239 9/19/2022
7.8.0 41,638 12/16/2023
7.7.0 540 11/19/2023
7.6.0 502 10/12/2023
7.5.5 463 7/20/2023
7.5.4 198 7/19/2023
7.5.3 214 6/15/2023
7.5.2 308 5/14/2023
7.5.1 577 5/4/2023
7.5.0 467 3/25/2023
7.4.3 43,361 2/3/2023
7.4.1 463 1/31/2023
7.4.0 442 1/29/2023
7.3.12 521 1/23/2023
7.3.11 528 1/22/2023
7.3.10 482 1/19/2023
7.3.9 479 1/17/2023
7.3.8 525 1/4/2023
7.3.7 506 12/22/2022
7.3.6 459 12/19/2022
7.3.5 496 11/30/2022
7.3.4 492 11/30/2022
7.3.3 661 11/24/2022
7.3.2 589 11/15/2022
7.3.1 565 11/12/2022
7.3.0 722 10/29/2022
7.3.0-alpha3 162 10/15/2022
7.3.0-alpha2 165 10/15/2022
7.2.1 758 10/9/2022
7.2.1-alpha1 142 10/6/2022
7.2.0 813 9/17/2022
7.2.0-alpha1 229 9/15/2022
7.1.1-alpha1 237 9/14/2022
7.1.0 760 9/13/2022
7.0.4 732 9/7/2022
7.0.3 674 9/5/2022
7.0.3-alpha1 162 9/5/2022
7.0.2 677 9/5/2022
7.0.1 678 8/27/2022
7.0.0 797 7/23/2022
7.0.0-rc5 218 6/28/2022
7.0.0-rc4 193 6/27/2022
7.0.0-rc3 194 6/20/2022
7.0.0-rc2 182 6/9/2022
7.0.0-rc1 185 6/9/2022
7.0.0-beta9 179 6/8/2022
7.0.0-beta7 187 6/5/2022
7.0.0-beta6 188 5/24/2022
7.0.0-beta5 259 11/18/2021
7.0.0-beta4 241 11/9/2021
7.0.0-beta3 295 11/6/2021
7.0.0-beta2 313 9/29/2021
7.0.0-beta1 296 9/13/2021
7.0.0-alpha9 277 8/25/2021
7.0.0-alpha8 255 8/25/2021
7.0.0-alpha7 262 8/25/2021
7.0.0-alpha6 282 8/16/2021
7.0.0-alpha5 267 8/16/2021
7.0.0-alpha4 434 1/20/2021
7.0.0-alpha3 439 12/31/2020
7.0.0-alpha2 410 12/28/2020
6.5.2 1,343 6/20/2022
6.4.1 693 5/22/2022
6.4.0-alpha0096 444 12/6/2020
6.4.0-alpha0095 451 12/6/2020
6.4.0-alpha0094 505 12/6/2020
6.4.0-alpha.99 234 12/26/2020
6.4.0-alpha.97 245 12/9/2020
6.3.1 41,143 11/28/2020
6.3.0 1,050 11/22/2020
6.2.0 963 11/15/2020
6.1.0 876 11/10/2020
6.0.3 812 11/9/2020
6.0.2 921 11/6/2020
6.0.1 936 11/1/2020
5.6.0 961 10/10/2020
5.5.0 958 10/5/2020
5.4.1 958 10/4/2020
5.4.0 920 10/1/2020
5.3.0-alpha0079 534 6/16/2020
5.3.0-alpha0078 502 6/15/2020
5.3.0-alpha0077 501 6/15/2020
5.3.0-alpha0076 515 6/15/2020
5.3.0-alpha0075 500 6/14/2020
5.3.0-alpha0074 488 6/12/2020
5.3.0-alpha0073 514 6/12/2020
5.3.0-alpha0072 486 6/11/2020
5.3.0-alpha0070 570 6/7/2020
5.2.2 921 9/4/2020
5.2.1 908 9/3/2020
5.2.0 1,063 6/7/2020
5.2.0-alpha0073 492 5/26/2020
5.2.0-alpha0072 563 5/25/2020
5.2.0-alpha0071 552 5/25/2020
5.2.0-alpha0070 542 5/24/2020
5.2.0-alpha0069 492 5/24/2020
5.2.0-alpha0066 482 5/21/2020
5.2.0-alpha0065 530 5/20/2020
5.2.0-alpha0064 537 5/17/2020
5.2.0-alpha0057 542 5/10/2020
5.2.0-alpha0056 499 5/8/2020
5.1.2 1,010 5/24/2020
5.1.1 994 5/10/2020
5.1.0 990 5/7/2020
5.1.0-alpha0055 535 5/3/2020
5.1.0-alpha0054 616 5/3/2020
5.1.0-alpha0053 564 4/30/2020
5.0.5 978 5/4/2020
5.0.4 911 5/3/2020
5.0.3 965 5/2/2020
5.0.2 951 5/2/2020
5.0.1 946 5/2/2020
5.0.0 1,036 4/29/2020
4.1.0-alpha0014 538 4/29/2020
4.1.0-alpha0013 541 4/24/2020
4.1.0-alpha0005 526 4/20/2020
4.1.0-alpha0004 545 4/18/2020
4.1.0-alpha0001 546 4/17/2020
4.0.9 1,005 4/29/2020
4.0.8 1,011 4/28/2020
4.0.7 987 4/27/2020
4.0.6 919 4/24/2020
4.0.5 940 4/22/2020
4.0.4 947 4/21/2020
4.0.3 913 4/20/2020
4.0.2 953 4/20/2020
4.0.1 958 4/20/2020
4.0.0 916 4/18/2020
3.8.0 969 4/17/2020
3.8.0-alpha0048 576 2/28/2020
3.8.0-alpha0042 578 2/13/2020
3.8.0-alpha0041 589 1/8/2020
3.8.0-alpha0040 544 9/26/2019
3.8.0-alpha0039 563 9/25/2019
3.7.1 2,031 9/25/2019
3.7.0 990 9/23/2019
3.7.0-alpha0038 601 8/3/2019
3.7.0-alpha0037 606 8/1/2019
3.6.0 1,226 7/17/2019
3.6.0-alpha0036 643 6/4/2019
3.6.0-alpha0035 631 6/2/2019
3.6.0-alpha0034 611 6/2/2019
3.6.0-alpha0033 643 6/2/2019
3.6.0-alpha0031 620 5/4/2019
3.5.2 1,088 7/11/2019
3.5.1 2,986 6/2/2019
3.5.0 1,438 5/2/2019
3.5.0-alpha0036 655 4/10/2019
3.5.0-alpha0031 633 3/25/2019
3.5.0-alpha0030 630 3/21/2019
3.5.0-alpha0029 619 3/19/2019
3.5.0-alpha0027 638 3/18/2019
3.5.0-alpha0026 614 3/18/2019
3.5.0-alpha0025 575 3/17/2019
3.5.0-alpha0024 606 3/16/2019
3.5.0-alpha0021 614 3/15/2019
3.5.0-alpha0020 628 3/14/2019
3.5.0-alpha0019 630 3/14/2019
3.5.0-alpha0018 618 3/14/2019
3.5.0-alpha0013 594 3/14/2019
3.4.5 1,152 3/21/2019
3.4.4 1,100 3/16/2019
3.4.3 1,096 3/14/2019
3.4.2 1,085 3/13/2019
3.4.1 1,037 3/12/2019
3.4.0 1,234 2/19/2019
3.4.0-alpha0022 714 1/27/2019
3.4.0-alpha0021 715 1/25/2019
3.4.0-alpha0020 776 12/21/2018
3.4.0-alpha0019 736 12/6/2018
3.4.0-alpha0018 726 11/21/2018
3.4.0-alpha0017 743 11/20/2018
3.4.0-alpha0016 751 11/5/2018
3.4.0-alpha0015 785 11/2/2018
3.4.0-alpha0011 765 11/1/2018
3.4.0-alpha0010 838 10/3/2018
3.4.0-alpha0009 868 9/16/2018
3.4.0-alpha0008 860 9/1/2018
3.4.0-alpha0007 845 8/29/2018
3.4.0-alpha0006 807 8/28/2018
3.4.0-alpha0005 802 8/28/2018
3.4.0-alpha0004 864 8/23/2018
3.4.0-alpha0003 847 8/22/2018
3.4.0-alpha0002 910 8/10/2018
3.4.0-alpha0001 900 7/30/2018
3.3.9 1,236 1/25/2019
3.3.8 1,275 1/18/2019
3.3.7 1,264 1/5/2019
3.3.6 1,199 12/19/2018
3.3.5 1,716 11/21/2018
3.3.4 1,261 11/20/2018
3.3.3 1,413 11/11/2018
3.3.2 1,401 10/12/2018
3.3.1 1,350 8/28/2018
3.3.0 1,905 7/18/2018
3.3.0-alpha0007 1,030 7/18/2018
3.3.0-alpha0006 1,053 7/17/2018
3.3.0-alpha0005 1,001 7/17/2018
3.3.0-alpha0004 892 7/17/2018
3.3.0-alpha0003 1,039 7/15/2018
3.3.0-alpha0001 1,001 7/11/2018
3.2.0 1,513 7/12/2018
3.1.2 1,358 7/11/2018
3.1.1 1,370 7/4/2018
3.1.0 1,595 6/20/2018
3.1.0-alpha0019 1,016 7/4/2018
3.1.0-alpha0017 889 7/2/2018
3.1.0-alpha0016 913 6/30/2018
3.1.0-alpha0014 934 6/26/2018
3.1.0-alpha0011 1,060 6/23/2018
3.1.0-alpha0010 1,020 6/20/2018
3.1.0-alpha0009 1,003 6/20/2018
3.1.0-alpha0008 878 6/19/2018
3.1.0-alpha0007 1,020 6/17/2018
3.1.0-alpha0006 1,056 6/14/2018
3.1.0-alpha0005 908 6/14/2018
3.1.0-alpha0004 1,102 5/28/2018
3.0.1 1,435 7/4/2018
3.0.0 1,747 5/24/2018
2.4.0-alpha0027 963 5/23/2018
2.4.0-alpha0026 1,052 5/23/2018
2.4.0-alpha0025 1,025 5/22/2018
2.4.0-alpha0024 1,012 5/18/2018
2.4.0-alpha0023 1,106 5/16/2018
2.4.0-alpha0022 1,206 5/16/2018
2.4.0-alpha0021 1,149 5/15/2018
2.4.0-alpha0020 1,133 5/15/2018
2.4.0-alpha0019 1,166 4/20/2018
2.4.0-alpha0017 940 4/19/2018
2.4.0-alpha0016 1,076 4/13/2018
2.4.0-alpha0015 1,025 4/3/2018
2.4.0-alpha0014 1,105 4/1/2018
2.4.0-alpha0013 1,375 3/30/2018
2.4.0-alpha0009 968 2/20/2018
2.4.0-alpha0002 1,010 12/1/2017
2.3.3 2,000 4/24/2018
2.3.1 2,200 2/20/2018
2.3.0 1,462 2/19/2018
2.3.0-alpha0006 964 11/21/2017
2.3.0-alpha0005 955 11/13/2017
2.3.0-alpha0002 980 9/18/2017
2.2.0 2,119 11/13/2017
2.2.0-alpha0009 943 9/14/2017
2.2.0-alpha0008 956 9/11/2017
2.2.0-alpha0007 976 9/10/2017
2.2.0-alpha0006 943 8/18/2017
2.2.0-alpha0002 1,014 8/18/2017
2.1.0 1,565 8/18/2017
2.1.0-alpha0022 951 8/18/2017
2.1.0-alpha0020 969 7/24/2017
2.1.0-alpha0018 1,009 7/13/2017
2.1.0-alpha0016 1,016 7/12/2017
2.1.0-alpha0011 1,036 7/11/2017
2.1.0-alpha0005 964 7/3/2017
2.1.0-alpha0002 1,021 7/3/2017
2.0.4 1,509 7/24/2017
2.0.4-unstable0013 1,096 6/26/2017
2.0.4-unstable0011 1,087 6/26/2017
2.0.4-unstable0010 1,121 6/11/2017
2.0.4-unstable0009 1,120 6/1/2017
2.0.4-unstable0007 1,147 5/4/2017
2.0.4-unstable0004 1,130 5/1/2017
2.0.4-unstable0003 1,130 5/1/2017
2.0.4-unstable0002 1,137 4/30/2017
2.0.4-unstable0001 1,123 4/27/2017
2.0.4-alpha0038 1,029 7/1/2017
2.0.3-unstable0064 1,066 4/27/2017
2.0.3-unstable0058 1,060 3/28/2017
2.0.3-unstable0057 1,081 3/15/2017
2.0.3-unstable0055 1,119 2/10/2017
2.0.3-unstable0053 1,070 2/9/2017
2.0.3-unstable0052 1,088 2/8/2017
1.1.4.506 1,698 7/6/2017
1.1.3.500 1,563 6/28/2017
1.1.2.497 1,514 6/21/2017
1.1.1.494 1,517 5/30/2017
1.1.0.492 1,543 5/4/2017
1.0.4.483 1,543 4/26/2017
1.0.3.481 1,525 4/4/2017
1.0.2.478 1,470 3/15/2017
1.0.1.475 1,577 2/10/2017
1.0.0.469 1,564 2/8/2017
1.0.0 1,567 6/30/2017
0.63.7.467 1,523 2/7/2017
0.63.6.463 1,524 2/7/2017
0.63.6.460 1,511 2/5/2017
0.63.5.454 2,871 10/17/2016
0.63.4.453 1,576 10/10/2016
0.63.3.452 1,523 9/26/2016
0.63.1.451 8,665 9/19/2016
0.63.1.450 1,612 9/11/2016
0.63.0.448 1,594 8/12/2016
0.62.1.445 1,522 8/8/2016
0.62.0.444 1,563 8/8/2016
0.61.1.443 1,558 8/5/2016
0.61.0.442 1,878 8/2/2016
0.60.1.441 1,780 7/31/2016
0.60.0.440 1,603 7/25/2016
0.59.0.439 1,590 7/18/2016
0.59.0.437 1,575 7/18/2016
0.59.0.436 1,567 7/18/2016
0.59.0.434 1,562 6/6/2016
0.58.0.433 1,633 5/2/2016
0.57.2.432 1,590 5/2/2016
0.57.2.431 1,934 4/25/2016
0.57.2.430 1,728 4/20/2016
0.57.1.429 1,607 4/20/2016
0.57.0.428 1,616 4/18/2016
0.56.0.427 2,400 4/1/2016
0.55.1.426 2,013 3/17/2016
0.55.0.425 1,630 3/1/2016
0.54.3.424 1,825 2/2/2016
0.54.2.423 1,547 2/1/2016
0.54.1.421 1,603 2/1/2016
0.54.0.420 1,564 1/28/2016
0.53.6.419 1,579 1/25/2016
0.53.6.418 1,649 1/6/2016
0.53.5.417 1,646 1/6/2016
0.53.5.416 1,593 1/5/2016
0.53.4.415 1,613 12/23/2015
0.53.3.414 1,739 12/9/2015
0.53.2.413 1,976 12/1/2015
0.53.1.412 1,796 11/28/2015
0.53.0.411 1,761 11/19/2015
0.52.0.410 1,675 11/18/2015
0.51.0.409 1,663 11/17/2015
0.51.0.408 1,679 11/16/2015
0.50.12.407 1,693 10/22/2015
0.50.12.406 1,664 10/22/2015
0.50.11.404 1,588 10/20/2015
0.50.10.403 1,677 10/10/2015
0.50.9.401 2,004 10/5/2015
0.50.8.400 1,683 9/28/2015
0.50.7.399 1,705 8/18/2015
0.50.6.398 1,685 8/11/2015
0.50.5.397 1,694 8/11/2015
0.50.5.396 1,797 8/11/2015
0.50.4.395 1,907 8/8/2015
0.50.3.394 1,850 8/7/2015
0.50.2.393 1,739 8/1/2015
0.50.1.392 1,712 6/17/2015
0.50.0.391 1,620 6/8/2015
0.49.3.390 1,746 5/20/2015
0.49.2.389 1,683 5/18/2015
0.49.1.388 1,669 5/18/2015
0.49.0.387 1,669 5/17/2015
0.48.1.386 1,697 5/10/2015
0.48.0.385 1,631 5/10/2015
0.47.10.384 1,717 5/8/2015
0.47.10.383 1,678 5/6/2015
0.47.10.382 1,676 5/5/2015
0.47.10.381 1,859 4/27/2015
0.47.10.380 4,490 4/1/2015
0.47.10.379 1,597 4/1/2015
0.47.9.378 1,690 3/31/2015
0.47.9.377 1,672 3/31/2015
0.47.9.376 1,663 3/30/2015
0.47.8.375 1,676 3/28/2015
0.47.7.374 1,683 3/25/2015
0.47.6.373 1,657 3/18/2015
0.47.5.372 1,618 3/17/2015
0.47.4.371 1,709 3/16/2015
0.47.3.370 1,748 3/15/2015
0.47.2.369 1,726 3/12/2015
0.47.1.368 2,140 3/4/2015
0.47.0.367 1,737 3/4/2015
0.46.1.366 2,029 3/3/2015
0.46.0.365 1,959 3/2/2015
0.45.0.364 1,693 3/2/2015
0.44.3.363 2,215 2/24/2015
0.44.2.362 1,879 2/24/2015
0.44.1.361 2,107 2/22/2015
0.44.0.360 1,970 2/18/2015
0.43.1.359 2,070 2/12/2015
0.43.0.358 1,745 2/7/2015
0.42.0.357 1,711 2/5/2015
0.41.0.356 1,727 2/4/2015
0.40.6.355 1,807 2/3/2015
0.40.3.354 1,603 2/2/2015
0.40.3.353 1,645 1/26/2015
0.40.3.352 1,683 1/20/2015
0.40.3.351 1,690 1/19/2015
0.40.2.350 1,702 1/19/2015
0.40.1.349 1,670 1/17/2015
0.40.1.348 1,766 1/15/2015
0.40.1.347 1,740 1/13/2015
0.40.1.346 1,635 1/12/2015
0.40.0.345 1,638 1/9/2015
0.40.0.344 1,615 1/9/2015
0.40.0.343 1,630 1/8/2015
0.40.0.342 1,702 1/8/2015
0.39.6.340 1,730 1/6/2015
0.39.5.339 1,638 1/5/2015
0.39.4.338 1,956 1/1/2015
0.39.4.337 2,163 12/23/2014
0.39.4.336 1,973 12/13/2014
0.39.2.335 1,973 12/12/2014
0.39.2.334 1,932 12/9/2014
0.39.2.333 1,872 12/5/2014
0.39.1.332 1,924 12/3/2014
0.39.1.331 1,864 12/2/2014
0.39.0.330 1,890 12/1/2014
0.38.2.329 1,903 11/26/2014
0.38.2.328 1,871 11/26/2014
0.38.1.327 1,859 11/25/2014
0.38.0.326 1,983 11/22/2014
0.38.0.325 1,904 11/20/2014
0.38.0.324 1,931 11/14/2014
0.37.2.323 1,869 11/14/2014
0.37.2.322 2,297 11/5/2014
0.37.2.321 1,829 10/29/2014
0.37.2.320 1,777 10/29/2014
0.37.2.319 1,714 10/28/2014
0.37.1.318 1,731 10/25/2014
0.37.1.317 1,704 10/16/2014
0.37.1.316 1,756 10/13/2014
0.37.0.315 1,753 10/12/2014
0.36.5.314 1,754 10/11/2014
0.36.5.313 1,789 10/9/2014
0.36.4.312 1,790 10/8/2014
0.36.4.311 1,871 10/8/2014
0.36.4.310 1,849 10/3/2014
0.36.3.309 1,714 10/1/2014
0.36.2.308 1,823 9/28/2014
0.36.1.307 1,774 9/20/2014
0.36.1.306 1,701 9/17/2014
0.36.0.305 1,745 9/15/2014
0.35.6.304 1,864 9/1/2014
0.35.6.303 1,793 8/28/2014
0.35.6.302 1,758 8/16/2014
0.35.6.301 1,728 8/15/2014
0.35.5.300 1,729 8/14/2014
0.35.4.299 1,793 8/14/2014
0.35.4.298 1,834 8/13/2014
0.35.4.297 1,695 8/11/2014
0.35.3.296 1,686 8/10/2014
0.35.3.295 1,868 8/8/2014
0.35.3.294 1,840 8/5/2014
0.35.1.288 1,768 8/1/2014
0.35.1.287 1,839 8/1/2014
0.35.1.286 1,782 8/1/2014
0.35.1.285 1,746 7/29/2014
0.35.1.284 1,777 7/23/2014
0.35.1.283 1,726 7/23/2014
0.35.0.282 1,767 7/22/2014
0.35.0.281 1,756 7/15/2014
0.34.0.280 1,693 7/11/2014
0.34.0.279 1,709 7/9/2014
0.33.2.278 1,690 7/9/2014
0.33.2.277 1,787 7/2/2014
0.33.1.276 1,861 6/24/2014
0.33.1.275 1,744 6/19/2014
0.33.0.274 1,843 6/19/2014
0.33.0.273 1,851 6/16/2014
0.32.3.272 1,773 6/14/2014
0.32.2.271 1,833 6/5/2014
0.32.1.270 1,787 6/1/2014
0.32.1.269 1,779 6/1/2014
0.32.1.268 1,677 5/26/2014
0.32.0.267 1,735 5/23/2014
0.32.0.266 1,800 5/22/2014
0.32.0.265 1,787 5/21/2014
0.32.0.264 1,711 5/21/2014
0.32.0.263 1,742 5/20/2014
0.32.0.262 1,804 5/19/2014
0.31.1.261 1,826 5/19/2014
0.31.1.260 1,766 5/19/2014
0.31.0.259 1,773 5/16/2014
0.30.2.258 1,761 5/15/2014
0.30.2.257 1,790 5/14/2014
0.30.2.254 1,790 5/8/2014
0.30.2.252 1,926 4/30/2014
0.30.2.251 1,760 4/30/2014
0.30.1.250 1,976 4/29/2014
0.30.0.249 1,814 4/28/2014
0.30.0.248 2,133 4/24/2014
0.30.0.247 2,024 4/17/2014
0.29.0.246 2,006 4/16/2014
0.28.5.245 1,917 4/14/2014
0.28.4.242 1,958 4/5/2014
0.28.4.241 1,936 4/4/2014
0.28.4.240 1,845 4/3/2014
0.28.4.232 1,828 3/31/2014
0.28.3.231 1,909 3/27/2014
0.28.3.230 1,883 3/27/2014
0.28.3.229 1,952 3/19/2014
0.28.2.227 1,901 3/14/2014
0.28.2.226 1,892 3/13/2014
0.28.2.225 1,833 3/5/2014
0.28.1.224 1,843 3/4/2014
0.27.5.222 1,840 2/28/2014
0.27.5.221 1,797 2/28/2014
0.27.4.220 1,925 2/26/2014
0.27.3.219 1,749 2/25/2014
0.27.2.218 1,788 2/25/2014
0.27.1.216 1,798 2/14/2014
0.27.0.215 1,798 2/12/2014
0.26.7.214 1,903 2/12/2014
0.26.7.213 1,837 2/11/2014
0.26.7.212 1,843 2/10/2014
0.26.7.211 1,867 2/10/2014
0.26.6.210 1,743 2/10/2014
0.26.5.209 1,800 2/10/2014
0.26.5.208 1,806 2/5/2014
0.26.5.207 1,802 2/4/2014
0.26.4.206 1,810 2/4/2014
0.26.3.204 1,763 2/4/2014
0.26.3.203 1,794 2/3/2014
0.26.3.202 1,787 1/30/2014
0.26.3.198 1,802 1/30/2014
0.26.2.194 1,791 1/23/2014
0.26.1.193 1,798 1/20/2014
0.26.1.191 1,805 1/17/2014
0.26.1.189 1,857 1/16/2014
0.26.1.188 1,843 1/15/2014
0.26.1.187 1,797 1/15/2014
0.26.1.186 1,798 1/13/2014
0.26.1.185 1,795 1/3/2014
0.26.1.184 1,845 1/2/2014
0.26.1.183 1,827 12/20/2013
0.26.0.182 1,807 12/19/2013
0.26.0.181 1,847 12/16/2013
0.25.4.180 1,775 12/16/2013
0.25.4.179 1,766 12/16/2013
0.25.3.178 1,771 12/13/2013
0.25.3.177 1,810 12/13/2013