EasyNetQ.DI.Autofac 8.0.0-beta96

Prefix Reserved
This is a prerelease version of EasyNetQ.DI.Autofac.
dotnet add package EasyNetQ.DI.Autofac --version 8.0.0-beta96                
NuGet\Install-Package EasyNetQ.DI.Autofac -Version 8.0.0-beta96                
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.Autofac" Version="8.0.0-beta96" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyNetQ.DI.Autofac --version 8.0.0-beta96                
#r "nuget: EasyNetQ.DI.Autofac, 8.0.0-beta96"                
#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 EasyNetQ.DI.Autofac as a Cake Addin
#addin nuget:?package=EasyNetQ.DI.Autofac&version=8.0.0-beta96&prerelease

// Install EasyNetQ.DI.Autofac as a Cake Tool
#tool nuget:?package=EasyNetQ.DI.Autofac&version=8.0.0-beta96&prerelease                

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.

Contributors

Thanks to all the people who already contributed!

<a href="https://github.com/EasyNetQ/EasyNetQ/graphs/contributors"> <img src="https://contributors-img.web.app/image?repo=EasyNetQ/EasyNetQ" /> </a>

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. 
.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 (1)

Showing the top 1 NuGet packages that depend on EasyNetQ.DI.Autofac:

Package Downloads
PlutoStudio.Framework.RabbitMQ

PlutoStudio framework 是由 Pluto Studio 基于PlutoStudio所开发的一系列Api及框架。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0-beta96 92 3/15/2024
8.0.0-beta95 266 10/22/2023
8.0.0-beta94 175 6/18/2023
8.0.0-beta93 155 6/17/2023
8.0.0-beta92 139 6/17/2023
8.0.0-beta91 149 6/11/2023
8.0.0-beta90 149 5/8/2023
8.0.0-beta9 158 3/21/2023
8.0.0-beta8 162 2/20/2023
8.0.0-beta6 170 1/29/2023
8.0.0-beta5 176 1/20/2023
8.0.0-beta4 195 1/5/2023
8.0.0-beta3 180 12/29/2022
8.0.0-beta2 182 12/16/2022
8.0.0-beta10 133 3/21/2023
8.0.0-beta1 172 12/15/2022
8.0.0-alpha9 165 12/14/2022
8.0.0-alpha8 182 11/30/2022
8.0.0-alpha7 183 11/12/2022
8.0.0-alpha6 178 10/29/2022
8.0.0-alpha5 141 10/5/2022
8.0.0-alpha4 214 10/1/2022
8.0.0-alpha3 236 9/26/2022
8.0.0-alpha2 195 9/21/2022
8.0.0-alpha1 248 9/19/2022
7.8.0 30,437 12/16/2023
7.7.0 1,615 11/19/2023
7.6.0 2,953 10/12/2023
7.5.5 3,128 7/20/2023
7.5.4 183 7/19/2023
7.5.3 5,301 6/15/2023
7.5.2 4,783 5/14/2023
7.5.1 637 5/4/2023
7.5.0 2,334 3/25/2023
7.4.3 17,314 2/3/2023
7.4.1 770 1/31/2023
7.4.0 867 1/29/2023
7.3.12 570 1/23/2023
7.3.11 540 1/22/2023
7.3.10 516 1/19/2023
7.3.9 19,314 1/17/2023
7.3.8 910 1/4/2023
7.3.7 697 12/22/2022
7.3.6 764 12/19/2022
7.3.5 850 11/30/2022
7.3.4 575 11/30/2022
7.3.3 759 11/24/2022
7.3.2 6,264 11/15/2022
7.3.1 652 11/12/2022
7.3.0 12,365 10/29/2022
7.3.0-alpha3 172 10/15/2022
7.2.1 1,051 10/9/2022
7.2.1-alpha1 185 10/6/2022
7.2.0 5,777 9/17/2022
7.2.0-alpha1 240 9/15/2022
7.1.1-alpha1 235 9/14/2022
7.1.0 787 9/13/2022
7.0.4 1,728 9/7/2022
7.0.3 619 9/5/2022
7.0.3-alpha1 149 9/5/2022
7.0.2 700 9/5/2022
7.0.1 903 8/27/2022
7.0.0 3,382 7/23/2022
7.0.0-rc5 164 6/28/2022
7.0.0-rc4 195 6/27/2022
7.0.0-rc3 178 6/20/2022
7.0.0-rc2 190 6/9/2022
7.0.0-rc1 175 6/9/2022
7.0.0-beta9 189 6/8/2022
7.0.0-beta7 197 6/5/2022
7.0.0-beta6 176 5/24/2022
7.0.0-beta5 304 11/18/2021
7.0.0-beta4 236 11/9/2021
7.0.0-beta3 301 11/6/2021
7.0.0-beta2 283 9/29/2021
7.0.0-beta1 287 9/13/2021
7.0.0-alpha9 246 8/25/2021
7.0.0-alpha8 260 8/25/2021
7.0.0-alpha7 244 8/25/2021
7.0.0-alpha6 248 8/16/2021
7.0.0-alpha5 252 8/16/2021
7.0.0-alpha4 961 1/20/2021
7.0.0-alpha3 543 12/31/2020
7.0.0-alpha2 528 12/28/2020
6.5.2 9,165 6/20/2022
6.4.1 4,044 5/22/2022
6.4.0-alpha0096 690 12/6/2020
6.4.0-alpha0095 572 12/6/2020
6.4.0-alpha0094 568 12/6/2020
6.4.0-alpha.99 210 12/26/2020
6.4.0-alpha.97 216 12/9/2020
6.3.1 134,970 11/28/2020
6.3.0 9,888 11/22/2020
6.2.0 1,444 11/15/2020
6.1.0 1,666 11/10/2020
6.0.3 980 11/9/2020
6.0.2 1,001 11/6/2020
6.0.1 1,576 11/1/2020
5.6.0 1,683 10/10/2020
5.5.0 3,626 10/5/2020
5.4.1 1,034 10/4/2020
5.4.0 1,115 10/1/2020
5.3.0-alpha0079 646 6/16/2020
5.3.0-alpha0078 562 6/15/2020
5.3.0-alpha0077 604 6/15/2020
5.3.0-alpha0076 613 6/15/2020
5.3.0-alpha0075 594 6/14/2020
5.3.0-alpha0074 640 6/12/2020
5.3.0-alpha0073 638 6/12/2020
5.3.0-alpha0072 635 6/11/2020
5.3.0-alpha0070 661 6/7/2020
5.2.2 1,357 9/4/2020
5.2.1 106,047 9/3/2020
5.2.0 68,697 6/7/2020
5.2.0-alpha0073 631 5/26/2020
5.2.0-alpha0072 688 5/25/2020
5.2.0-alpha0071 625 5/25/2020
5.2.0-alpha0070 648 5/24/2020
5.2.0-alpha0069 667 5/24/2020
5.2.0-alpha0066 583 5/21/2020
5.2.0-alpha0065 639 5/20/2020
5.2.0-alpha0064 675 5/17/2020
5.2.0-alpha0057 659 5/10/2020
5.2.0-alpha0056 617 5/8/2020
5.1.2 3,248 5/24/2020
5.1.1 1,241 5/10/2020
5.1.0 1,073 5/7/2020
5.1.0-alpha0055 633 5/3/2020
5.1.0-alpha0054 708 5/3/2020
5.1.0-alpha0053 647 4/30/2020
5.0.5 1,295 5/4/2020
5.0.4 4,420 5/3/2020
5.0.3 1,144 5/2/2020
5.0.2 1,086 5/2/2020
5.0.1 1,064 5/2/2020
5.0.0 1,218 4/29/2020
4.1.0-alpha0014 624 4/29/2020
4.1.0-alpha0013 589 4/24/2020
4.1.0-alpha0005 658 4/20/2020
4.1.0-alpha0004 619 4/18/2020
4.1.0-alpha0001 629 4/17/2020
4.0.9 1,093 4/29/2020
4.0.8 1,218 4/28/2020
4.0.7 1,117 4/27/2020
4.0.6 1,282 4/24/2020
4.0.5 1,196 4/22/2020
4.0.4 1,103 4/21/2020
4.0.3 1,189 4/20/2020
4.0.2 1,083 4/20/2020
4.0.1 1,118 4/20/2020
4.0.0 1,151 4/18/2020
3.8.0 1,504 4/17/2020
3.8.0-alpha0048 744 2/28/2020
3.8.0-alpha0042 1,629 2/13/2020
3.8.0-alpha0041 2,864 1/8/2020
3.8.0-alpha0040 741 9/26/2019
3.8.0-alpha0039 673 9/25/2019
3.7.1 64,116 9/25/2019
3.7.0 1,359 9/23/2019
3.7.0-alpha0038 863 8/3/2019
3.7.0-alpha0037 743 8/1/2019
3.6.0 16,096 7/17/2019
3.6.0-alpha0036 827 6/4/2019
3.6.0-alpha0035 807 6/2/2019
3.6.0-alpha0034 807 6/2/2019
3.6.0-alpha0033 825 6/2/2019
3.6.0-alpha0031 741 5/4/2019
3.5.2 37,272 7/11/2019
3.5.1 4,139 6/2/2019
3.5.0 6,156 5/2/2019
3.5.0-alpha0036 774 4/10/2019
3.5.0-alpha0031 767 3/25/2019
3.5.0-alpha0030 755 3/21/2019
3.5.0-alpha0029 734 3/19/2019
3.5.0-alpha0027 755 3/18/2019
3.5.0-alpha0026 731 3/18/2019
3.5.0-alpha0025 744 3/17/2019
3.5.0-alpha0024 750 3/16/2019
3.5.0-alpha0021 773 3/15/2019
3.5.0-alpha0020 776 3/14/2019
3.5.0-alpha0019 774 3/14/2019
3.5.0-alpha0018 759 3/14/2019
3.5.0-alpha0013 766 3/14/2019
3.4.5 3,392 3/21/2019
3.4.4 1,603 3/16/2019
3.4.3 1,375 3/14/2019
3.4.2 1,343 3/13/2019
3.4.1 1,296 3/12/2019
3.4.0 48,420 2/19/2019
3.4.0-alpha0022 839 1/27/2019
3.4.0-alpha0021 816 1/25/2019
3.4.0-alpha0020 846 12/21/2018
3.4.0-alpha0019 914 12/6/2018
3.4.0-alpha0018 866 11/21/2018
3.4.0-alpha0017 870 11/20/2018
3.4.0-alpha0016 936 11/5/2018
3.4.0-alpha0015 933 11/2/2018
3.4.0-alpha0011 959 11/1/2018
3.4.0-alpha0010 972 10/3/2018
3.4.0-alpha0009 959 9/16/2018
3.4.0-alpha0008 947 9/1/2018
3.4.0-alpha0007 961 8/29/2018
3.4.0-alpha0006 980 8/28/2018
3.4.0-alpha0005 934 8/28/2018
3.4.0-alpha0004 998 8/23/2018
3.4.0-alpha0003 990 8/22/2018
3.4.0-alpha0002 968 8/10/2018
3.4.0-alpha0001 1,029 7/30/2018
3.3.9 3,800 1/25/2019
3.3.8 1,523 1/18/2019
3.3.7 1,659 1/5/2019
3.3.6 1,652 12/19/2018
3.3.5 1,773 11/21/2018
3.3.4 1,666 11/20/2018
3.3.3 1,994 11/11/2018
3.3.2 2,059 10/12/2018
3.3.1 15,438 8/28/2018
3.3.0 4,722 7/18/2018
3.3.0-alpha0007 1,006 7/18/2018
3.3.0-alpha0006 1,112 7/17/2018
3.3.0-alpha0005 1,088 7/17/2018
3.3.0-alpha0004 966 7/17/2018
3.3.0-alpha0003 1,103 7/15/2018
3.3.0-alpha0001 1,113 7/11/2018
3.2.0 1,804 7/12/2018
3.1.2 1,647 7/11/2018
3.1.1 1,637 7/4/2018
3.1.0 3,398 6/20/2018
3.1.0-alpha0019 1,093 7/4/2018
3.1.0-alpha0017 1,071 7/2/2018
3.1.0-alpha0016 1,083 6/30/2018
3.1.0-alpha0014 1,136 6/26/2018
3.1.0-alpha0011 1,009 6/23/2018
3.1.0-alpha0010 1,151 6/20/2018
3.1.0-alpha0009 997 6/20/2018
3.1.0-alpha0008 1,022 6/19/2018
3.1.0-alpha0007 1,121 6/17/2018
3.1.0-alpha0006 1,119 6/14/2018
3.1.0-alpha0005 1,103 6/14/2018
3.1.0-alpha0004 1,194 5/28/2018
3.0.1 1,779 7/4/2018
3.0.0 5,827 5/24/2018
2.4.0-alpha0027 1,105 5/23/2018
2.4.0-alpha0026 1,173 5/23/2018
2.4.0-alpha0025 1,086 5/22/2018
2.4.0-alpha0024 1,098 5/18/2018
2.4.0-alpha0023 1,024 5/16/2018
2.4.0-alpha0022 1,208 5/16/2018
2.4.0-alpha0021 1,109 5/15/2018
2.4.0-alpha0020 1,123 5/15/2018
2.4.0-alpha0019 1,188 4/20/2018
2.4.0-alpha0017 1,097 4/19/2018
2.4.0-alpha0016 1,085 4/13/2018
2.4.0-alpha0015 1,081 4/3/2018
2.4.0-alpha0014 1,129 4/1/2018
2.4.0-alpha0013 1,365 3/30/2018
2.4.0-alpha0009 1,118 2/20/2018
2.4.0-alpha0002 1,082 12/1/2017
2.3.3 6,167 4/24/2018
2.3.1 17,354 2/20/2018
2.3.0 1,634 2/19/2018
2.3.0-alpha0006 1,638 11/21/2017
2.3.0-alpha0005 1,004 11/13/2017
2.3.0-alpha0002 1,385 9/18/2017
2.2.0 42,535 11/13/2017
2.2.0-alpha0009 1,042 9/14/2017
2.2.0-alpha0008 993 9/11/2017
2.2.0-alpha0007 984 9/10/2017
2.2.0-alpha0006 1,033 8/18/2017
2.2.0-alpha0002 1,011 8/18/2017
2.1.0 2,907 8/18/2017
2.1.0-alpha0022 971 8/18/2017
2.1.0-alpha0020 1,045 7/24/2017
2.1.0-alpha0018 1,070 7/13/2017
2.1.0-alpha0016 1,024 7/12/2017
2.1.0-alpha0011 1,086 7/11/2017
2.1.0-alpha0005 1,070 7/3/2017
2.1.0-alpha0002 1,048 7/3/2017
2.0.4 2,406 7/24/2017
2.0.4-unstable0013 1,217 6/26/2017
2.0.4-unstable0011 1,145 6/26/2017
2.0.4-unstable0010 1,193 6/11/2017
2.0.4-unstable0009 1,151 6/1/2017
2.0.4-unstable0007 2,897 5/4/2017
2.0.4-unstable0004 1,175 5/1/2017
2.0.4-unstable0003 1,187 5/1/2017
2.0.4-unstable0002 1,195 4/30/2017
2.0.4-unstable0001 1,119 4/27/2017
2.0.4-alpha0038 1,053 7/1/2017
2.0.3-unstable0064 1,093 4/27/2017
2.0.3-unstable0058 1,112 3/28/2017
2.0.3-unstable0057 1,085 3/15/2017
2.0.3-unstable0055 1,321 2/10/2017
2.0.3-unstable0053 1,140 2/9/2017
2.0.3-unstable0052 1,181 2/8/2017
1.1.4.506 1,723 7/6/2017
1.1.3.500 1,669 6/28/2017
1.1.2.497 1,568 6/21/2017
1.1.1.494 2,455 5/30/2017
1.1.0.492 1,718 5/4/2017
1.0.4.483 6,464 4/26/2017
1.0.3.481 1,627 4/4/2017
1.0.2.478 1,669 3/15/2017
1.0.1.475 1,832 2/10/2017
1.0.0.469 1,606 2/8/2017
1.0.0 1,610 6/30/2017
0.63.7.467 1,829 2/7/2017
0.63.6.463 1,597 2/7/2017
0.63.6.460 1,558 2/5/2017
0.63.5.454 2,017 10/17/2016
0.63.4.453 1,638 10/10/2016
0.63.3.452 1,694 9/26/2016
0.63.1.451 1,886 9/19/2016
0.63.1.450 1,703 9/11/2016
0.63.0.448 3,518 8/12/2016
0.62.1.445 1,675 8/8/2016
0.62.0.444 1,681 8/8/2016
0.61.1.443 1,665 8/5/2016
0.61.0.442 1,886 8/2/2016
0.60.1.441 1,775 7/31/2016
0.60.0.440 1,784 7/25/2016
0.59.0.439 1,719 7/18/2016
0.59.0.437 1,626 7/18/2016
0.59.0.436 1,596 7/18/2016
0.59.0.434 1,977 6/6/2016
0.58.0.433 1,910 5/2/2016
0.57.2.432 1,687 5/2/2016
0.57.2.431 1,955 4/25/2016
0.57.2.430 1,705 4/20/2016
0.57.1.429 1,592 4/20/2016
0.57.0.428 1,623 4/18/2016
0.56.0.427 1,854 4/1/2016
0.55.1.426 2,038 3/17/2016
0.55.0.425 2,217 3/1/2016
0.54.3.424 2,021 2/2/2016
0.54.2.423 1,619 2/1/2016
0.54.1.421 1,578 2/1/2016
0.54.0.420 1,650 1/28/2016
0.53.6.419 1,665 1/25/2016
0.53.6.418 1,679 1/6/2016
0.53.5.417 1,612 1/6/2016
0.53.5.416 1,682 1/5/2016
0.53.4.415 1,719 12/23/2015
0.53.3.414 5,828 12/9/2015
0.53.2.413 2,055 12/1/2015
0.53.1.412 2,001 11/28/2015
0.53.0.411 1,822 11/19/2015
0.52.0.410 1,753 11/18/2015
0.51.0.409 1,707 11/17/2015
0.51.0.408 1,662 11/16/2015
0.50.12.407 6,143 10/22/2015
0.50.12.406 1,760 10/22/2015
0.50.11.404 1,705 10/20/2015
0.50.10.403 1,724 10/10/2015
0.50.9.401 2,068 10/5/2015
0.50.8.400 2,937 9/28/2015
0.50.7.399 2,277 8/18/2015
0.50.6.398 2,076 8/11/2015
0.50.5.397 2,139 8/11/2015
0.50.5.396 1,722 8/11/2015
0.50.4.395 2,045 8/8/2015
0.50.3.394 2,060 8/7/2015
0.50.2.393 1,872 8/1/2015
0.50.1.392 2,141 6/17/2015
0.50.0.391 1,902 6/8/2015
0.49.3.390 1,809 5/20/2015
0.49.2.389 1,690 5/18/2015
0.49.1.388 1,661 5/18/2015
0.49.0.387 1,658 5/17/2015
0.48.1.386 1,677 5/10/2015
0.48.0.385 1,676 5/10/2015
0.47.10.384 1,666 5/8/2015
0.47.10.383 1,827 5/6/2015
0.47.10.382 1,781 5/5/2015
0.47.10.381 1,847 4/27/2015
0.47.10.380 2,277 4/1/2015
0.47.10.379 1,792 4/1/2015
0.47.9.378 1,721 3/31/2015
0.47.9.377 1,686 3/31/2015
0.47.9.376 1,773 3/30/2015
0.47.8.375 1,739 3/28/2015
0.47.7.374 2,056 3/25/2015
0.47.6.373 2,473 3/18/2015
0.47.5.372 1,671 3/17/2015
0.47.4.371 1,766 3/16/2015
0.47.3.370 1,763 3/15/2015
0.47.2.369 1,696 3/12/2015
0.47.1.368 1,812 3/4/2015
0.47.0.367 1,774 3/4/2015
0.46.1.366 1,792 3/3/2015
0.46.0.365 1,692 3/2/2015
0.45.0.364 1,904 3/2/2015
0.44.3.363 1,825 2/24/2015
0.44.2.362 2,031 2/24/2015
0.44.1.361 2,157 2/22/2015
0.44.0.360 2,044 2/18/2015
0.43.1.359 1,988 2/12/2015
0.43.0.358 1,777 2/7/2015
0.42.0.357 1,720 2/5/2015
0.41.0.356 1,730 2/4/2015
0.40.6.355 1,752 2/3/2015
0.40.3.354 1,744 2/2/2015
0.40.3.353 1,775 1/26/2015
0.40.3.352 1,791 1/20/2015
0.40.3.351 1,778 1/19/2015
0.40.2.350 1,751 1/19/2015
0.40.1.349 1,775 1/17/2015
0.40.1.348 1,845 1/15/2015
0.40.1.347 1,745 1/13/2015
0.40.1.346 1,764 1/12/2015
0.40.0.345 1,782 1/9/2015
0.40.0.344 1,753 1/9/2015
0.40.0.343 1,776 1/8/2015
0.40.0.342 1,730 1/8/2015
0.39.6.340 1,884 1/6/2015
0.39.5.339 1,763 1/5/2015
0.39.4.338 2,270 1/1/2015
0.39.4.337 2,134 12/23/2014
0.39.4.336 2,055 12/13/2014
0.39.2.335 1,962 12/12/2014
0.39.2.334 1,952 12/9/2014
0.39.2.333 1,953 12/5/2014
0.39.1.332 1,917 12/3/2014
0.39.1.331 1,899 12/2/2014
0.39.0.330 1,879 12/1/2014
0.38.2.329 1,894 11/26/2014
0.38.2.328 1,882 11/26/2014
0.38.1.327 1,833 11/25/2014
0.38.0.326 1,895 11/22/2014
0.38.0.325 1,954 11/20/2014
0.38.0.324 1,967 11/14/2014
0.37.2.323 2,028 11/14/2014
0.37.2.322 2,232 11/5/2014
0.37.2.321 1,841 10/29/2014
0.37.2.320 1,713 10/29/2014
0.37.2.319 1,781 10/28/2014
0.37.1.318 1,808 10/25/2014
0.37.1.317 1,856 10/16/2014
0.37.1.316 1,756 10/13/2014
0.37.0.315 1,840 10/12/2014
0.36.5.314 1,826 10/11/2014
0.36.5.313 1,750 10/9/2014
0.36.4.312 1,730 10/8/2014
0.36.4.311 1,742 10/8/2014
0.36.4.310 1,733 10/3/2014
0.36.3.309 1,814 10/1/2014
0.36.2.308 1,743 9/28/2014
0.36.1.307 1,741 9/20/2014
0.36.1.306 1,757 9/17/2014
0.36.0.305 1,778 9/15/2014
0.35.6.304 1,811 9/1/2014
0.35.6.303 1,776 8/28/2014
0.35.6.302 1,824 8/16/2014
0.35.6.301 1,848 8/15/2014
0.35.5.300 1,754 8/14/2014
0.35.4.299 1,755 8/14/2014
0.35.4.298 1,803 8/13/2014
0.35.4.297 1,793 8/11/2014
0.35.3.296 1,736 8/10/2014
0.35.3.295 1,814 8/8/2014
0.35.3.294 1,726 8/5/2014
0.35.1.288 1,709 8/1/2014
0.35.1.287 1,768 8/1/2014
0.35.1.286 1,765 8/1/2014
0.35.1.285 1,755 7/29/2014
0.35.1.284 1,757 7/23/2014
0.35.1.283 1,735 7/23/2014
0.35.0.282 1,732 7/22/2014
0.35.0.281 1,751 7/15/2014
0.34.0.280 2,047 7/11/2014
0.34.0.279 1,707 7/9/2014
0.33.2.278 1,745 7/9/2014
0.33.2.277 1,730 7/2/2014
0.33.1.276 2,089 6/24/2014
0.33.1.275 1,743 6/19/2014
0.33.0.274 1,774 6/19/2014
0.33.0.273 1,780 6/16/2014
0.32.3.272 1,765 6/14/2014
0.32.2.271 1,833 6/5/2014
0.32.1.270 1,790 6/1/2014
0.32.1.269 1,779 6/1/2014
0.32.1.268 1,748 5/26/2014
0.32.0.267 1,760 5/23/2014
0.32.0.266 1,781 5/22/2014
0.32.0.265 1,748 5/21/2014
0.32.0.264 1,736 5/21/2014
0.32.0.263 1,770 5/20/2014
0.32.0.262 1,809 5/19/2014
0.31.1.261 1,757 5/19/2014
0.31.1.260 1,799 5/19/2014
0.31.0.259 1,796 5/16/2014
0.30.2.258 1,755 5/15/2014
0.30.2.257 1,750 5/14/2014
0.30.2.254 1,843 5/8/2014
0.30.2.252 1,815 4/30/2014
0.30.2.251 1,882 4/30/2014
0.30.1.250 1,787 4/29/2014
0.30.0.249 1,818 4/28/2014
0.30.0.248 1,893 4/24/2014
0.30.0.247 1,812 4/17/2014
0.29.0.246 1,899 4/16/2014
0.28.5.245 1,950 4/14/2014
0.28.4.242 1,899 4/5/2014
0.28.4.241 1,881 4/4/2014
0.28.4.240 1,901 4/3/2014
0.28.4.232 1,876 3/31/2014
0.28.3.231 1,885 3/27/2014
0.28.3.230 1,860 3/27/2014
0.28.3.229 1,846 3/19/2014
0.28.2.227 1,890 3/14/2014
0.28.2.226 1,859 3/13/2014
0.28.2.225 1,830 3/5/2014
0.28.1.224 1,769 3/4/2014
0.27.5.222 1,850 2/28/2014
0.27.5.221 1,880 2/28/2014
0.27.4.220 1,880 2/26/2014
0.27.3.219 1,927 2/25/2014
0.27.2.218 1,813 2/25/2014
0.27.1.216 1,858 2/14/2014
0.27.0.215 1,845 2/12/2014
0.26.7.214 1,860 2/12/2014
0.26.7.213 1,826 2/11/2014
0.26.7.212 1,824 2/10/2014
0.26.7.211 1,842 2/10/2014
0.26.6.210 1,874 2/10/2014
0.26.5.209 1,829 2/10/2014
0.26.5.208 1,803 2/5/2014
0.26.5.207 1,809 2/4/2014
0.26.4.206 1,787 2/4/2014
0.26.3.204 1,806 2/4/2014
0.26.3.203 1,805 2/3/2014