EasyNetQ.DI.Autofac 8.0.0-beta2

Prefix Reserved
This is a prerelease version of EasyNetQ.DI.Autofac.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package EasyNetQ.DI.Autofac --version 8.0.0-beta2
                    
NuGet\Install-Package EasyNetQ.DI.Autofac -Version 8.0.0-beta2
                    
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-beta2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyNetQ.DI.Autofac" Version="8.0.0-beta2" />
                    
Directory.Packages.props
<PackageReference Include="EasyNetQ.DI.Autofac" />
                    
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.Autofac --version 8.0.0-beta2
                    
#r "nuget: EasyNetQ.DI.Autofac, 8.0.0-beta2"
                    
#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.Autofac@8.0.0-beta2
                    
#: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.Autofac&version=8.0.0-beta2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Autofac&version=8.0.0-beta2&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 (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 220 3/15/2024
8.0.0-beta95 332 10/22/2023
8.0.0-beta94 277 6/18/2023
8.0.0-beta93 242 6/17/2023
8.0.0-beta92 252 6/17/2023
8.0.0-beta91 260 6/11/2023
8.0.0-beta90 260 5/8/2023
8.0.0-beta9 275 3/21/2023
8.0.0-beta8 274 2/20/2023
8.0.0-beta6 292 1/29/2023
8.0.0-beta5 299 1/20/2023
8.0.0-beta4 312 1/5/2023
8.0.0-beta3 295 12/29/2022
8.0.0-beta2 289 12/16/2022
8.0.0-beta10 254 3/21/2023
8.0.0-beta1 287 12/15/2022
8.0.0-alpha9 281 12/14/2022
8.0.0-alpha8 301 11/30/2022
8.0.0-alpha7 297 11/12/2022
8.0.0-alpha6 295 10/29/2022
8.0.0-alpha5 240 10/5/2022
8.0.0-alpha4 321 10/1/2022
8.0.0-alpha3 356 9/26/2022
8.0.0-alpha2 320 9/21/2022
8.0.0-alpha1 355 9/19/2022
7.8.0 82,883 12/16/2023
7.7.0 1,804 11/19/2023
7.6.0 4,514 10/12/2023
7.5.5 3,527 7/20/2023
7.5.4 257 7/19/2023
7.5.3 11,479 6/15/2023
7.5.2 6,771 5/14/2023
7.5.1 774 5/4/2023
7.5.0 3,563 3/25/2023
7.4.3 17,535 2/3/2023
7.4.1 886 1/31/2023
7.4.0 981 1/29/2023
7.3.12 689 1/23/2023
7.3.11 653 1/22/2023
7.3.10 643 1/19/2023
7.3.9 28,082 1/17/2023
7.3.8 1,186 1/4/2023
7.3.7 843 12/22/2022
7.3.6 878 12/19/2022
7.3.5 985 11/30/2022
7.3.4 684 11/30/2022
7.3.3 876 11/24/2022
7.3.2 10,406 11/15/2022
7.3.1 774 11/12/2022
7.3.0 15,654 10/29/2022
7.3.0-alpha3 291 10/15/2022
7.2.1 1,235 10/9/2022
7.2.1-alpha1 282 10/6/2022
7.2.0 7,734 9/17/2022
7.2.0-alpha1 348 9/15/2022
7.1.1-alpha1 359 9/14/2022
7.1.0 926 9/13/2022
7.0.4 3,047 9/7/2022
7.0.3 737 9/5/2022
7.0.3-alpha1 275 9/5/2022
7.0.2 820 9/5/2022
7.0.1 1,033 8/27/2022
7.0.0 3,509 7/23/2022
7.0.0-rc5 278 6/28/2022
7.0.0-rc4 321 6/27/2022
7.0.0-rc3 309 6/20/2022
7.0.0-rc2 291 6/9/2022
7.0.0-rc1 296 6/9/2022
7.0.0-beta9 322 6/8/2022
7.0.0-beta7 341 6/5/2022
7.0.0-beta6 308 5/24/2022
7.0.0-beta5 445 11/18/2021
7.0.0-beta4 388 11/9/2021
7.0.0-beta3 445 11/6/2021
7.0.0-beta2 413 9/29/2021
7.0.0-beta1 415 9/13/2021
7.0.0-alpha9 388 8/25/2021
7.0.0-alpha8 385 8/25/2021
7.0.0-alpha7 382 8/25/2021
7.0.0-alpha6 378 8/16/2021
7.0.0-alpha5 405 8/16/2021
7.0.0-alpha4 1,107 1/20/2021
7.0.0-alpha3 694 12/31/2020
7.0.0-alpha2 663 12/28/2020
6.5.2 39,864 6/20/2022
6.4.1 4,629 5/22/2022
6.4.0-alpha0096 826 12/6/2020
6.4.0-alpha0095 721 12/6/2020
6.4.0-alpha0094 706 12/6/2020
6.4.0-alpha.99 338 12/26/2020
6.4.0-alpha.97 352 12/9/2020
6.3.1 137,082 11/28/2020
6.3.0 10,347 11/22/2020
6.2.0 1,604 11/15/2020
6.1.0 1,807 11/10/2020
6.0.3 1,113 11/9/2020
6.0.2 1,155 11/6/2020
6.0.1 1,743 11/1/2020
5.6.0 4,537 10/10/2020
5.5.0 4,062 10/5/2020
5.4.1 1,202 10/4/2020
5.4.0 1,275 10/1/2020
5.3.0-alpha0079 800 6/16/2020
5.3.0-alpha0078 728 6/15/2020
5.3.0-alpha0077 736 6/15/2020
5.3.0-alpha0076 770 6/15/2020
5.3.0-alpha0075 745 6/14/2020
5.3.0-alpha0074 787 6/12/2020
5.3.0-alpha0073 806 6/12/2020
5.3.0-alpha0072 780 6/11/2020
5.3.0-alpha0070 815 6/7/2020
5.2.2 1,521 9/4/2020
5.2.1 113,256 9/3/2020
5.2.0 71,541 6/7/2020
5.2.0-alpha0073 786 5/26/2020
5.2.0-alpha0072 843 5/25/2020
5.2.0-alpha0071 780 5/25/2020
5.2.0-alpha0070 810 5/24/2020
5.2.0-alpha0069 828 5/24/2020
5.2.0-alpha0066 742 5/21/2020
5.2.0-alpha0065 790 5/20/2020
5.2.0-alpha0064 845 5/17/2020
5.2.0-alpha0057 818 5/10/2020
5.2.0-alpha0056 765 5/8/2020
5.1.2 3,404 5/24/2020
5.1.1 1,418 5/10/2020
5.1.0 1,244 5/7/2020
5.1.0-alpha0055 786 5/3/2020
5.1.0-alpha0054 864 5/3/2020
5.1.0-alpha0053 792 4/30/2020
5.0.5 1,443 5/4/2020
5.0.4 4,587 5/3/2020
5.0.3 1,315 5/2/2020
5.0.2 1,256 5/2/2020
5.0.1 1,235 5/2/2020
5.0.0 1,389 4/29/2020
4.1.0-alpha0014 789 4/29/2020
4.1.0-alpha0013 750 4/24/2020
4.1.0-alpha0005 820 4/20/2020
4.1.0-alpha0004 773 4/18/2020
4.1.0-alpha0001 793 4/17/2020
4.0.9 1,246 4/29/2020
4.0.8 1,371 4/28/2020
4.0.7 1,287 4/27/2020
4.0.6 1,416 4/24/2020
4.0.5 1,361 4/22/2020
4.0.4 1,272 4/21/2020
4.0.3 1,330 4/20/2020
4.0.2 1,255 4/20/2020
4.0.1 1,272 4/20/2020
4.0.0 1,325 4/18/2020
3.8.0 1,800 4/17/2020
3.8.0-alpha0048 920 2/28/2020
3.8.0-alpha0042 1,762 2/13/2020
3.8.0-alpha0041 3,043 1/8/2020
3.8.0-alpha0040 904 9/26/2019
3.8.0-alpha0039 824 9/25/2019
3.7.1 64,842 9/25/2019
3.7.0 1,508 9/23/2019
3.7.0-alpha0038 1,034 8/3/2019
3.7.0-alpha0037 885 8/1/2019
3.6.0 16,291 7/17/2019
3.6.0-alpha0036 998 6/4/2019
3.6.0-alpha0035 981 6/2/2019
3.6.0-alpha0034 961 6/2/2019
3.6.0-alpha0033 993 6/2/2019
3.6.0-alpha0031 911 5/4/2019
3.5.2 37,522 7/11/2019
3.5.1 4,324 6/2/2019
3.5.0 6,326 5/2/2019
3.5.0-alpha0036 952 4/10/2019
3.5.0-alpha0031 935 3/25/2019
3.5.0-alpha0030 919 3/21/2019
3.5.0-alpha0029 898 3/19/2019
3.5.0-alpha0027 920 3/18/2019
3.5.0-alpha0026 885 3/18/2019
3.5.0-alpha0025 904 3/17/2019
3.5.0-alpha0024 890 3/16/2019
3.5.0-alpha0021 922 3/15/2019
3.5.0-alpha0020 928 3/14/2019
3.5.0-alpha0019 918 3/14/2019
3.5.0-alpha0018 927 3/14/2019
3.5.0-alpha0013 924 3/14/2019
3.4.5 3,990 3/21/2019
3.4.4 1,783 3/16/2019
3.4.3 1,551 3/14/2019
3.4.2 1,526 3/13/2019
3.4.1 1,476 3/12/2019
3.4.0 48,610 2/19/2019
3.4.0-alpha0022 1,018 1/27/2019
3.4.0-alpha0021 985 1/25/2019
3.4.0-alpha0020 1,003 12/21/2018
3.4.0-alpha0019 1,065 12/6/2018
3.4.0-alpha0018 1,051 11/21/2018
3.4.0-alpha0017 1,070 11/20/2018
3.4.0-alpha0016 1,115 11/5/2018
3.4.0-alpha0015 1,135 11/2/2018
3.4.0-alpha0011 1,126 11/1/2018
3.4.0-alpha0010 1,173 10/3/2018
3.4.0-alpha0009 1,143 9/16/2018
3.4.0-alpha0008 1,135 9/1/2018
3.4.0-alpha0007 1,167 8/29/2018
3.4.0-alpha0006 1,162 8/28/2018
3.4.0-alpha0005 1,133 8/28/2018
3.4.0-alpha0004 1,200 8/23/2018
3.4.0-alpha0003 1,187 8/22/2018
3.4.0-alpha0002 1,170 8/10/2018
3.4.0-alpha0001 1,397 7/30/2018
3.3.9 3,994 1/25/2019
3.3.8 1,684 1/18/2019
3.3.7 1,848 1/5/2019
3.3.6 1,842 12/19/2018
3.3.5 1,957 11/21/2018
3.3.4 1,852 11/20/2018
3.3.3 2,185 11/11/2018
3.3.2 2,241 10/12/2018
3.3.1 15,731 8/28/2018
3.3.0 5,162 7/18/2018
3.3.0-alpha0007 1,393 7/18/2018
3.3.0-alpha0006 1,580 7/17/2018
3.3.0-alpha0005 1,601 7/17/2018
3.3.0-alpha0004 1,319 7/17/2018
3.3.0-alpha0003 1,620 7/15/2018
3.3.0-alpha0001 1,616 7/11/2018
3.2.0 2,306 7/12/2018
3.1.2 2,022 7/11/2018
3.1.1 2,027 7/4/2018
3.1.0 3,899 6/20/2018
3.1.0-alpha0019 1,617 7/4/2018
3.1.0-alpha0017 1,451 7/2/2018
3.1.0-alpha0016 1,588 6/30/2018
3.1.0-alpha0014 1,647 6/26/2018
3.1.0-alpha0011 1,405 6/23/2018
3.1.0-alpha0010 1,661 6/20/2018
3.1.0-alpha0009 1,379 6/20/2018
3.1.0-alpha0008 1,399 6/19/2018
3.1.0-alpha0007 1,607 6/17/2018
3.1.0-alpha0006 1,615 6/14/2018
3.1.0-alpha0005 1,604 6/14/2018
3.1.0-alpha0004 1,708 5/28/2018
3.0.1 2,290 7/4/2018
3.0.0 6,332 5/24/2018
2.4.0-alpha0027 1,581 5/23/2018
2.4.0-alpha0026 1,676 5/23/2018
2.4.0-alpha0025 1,592 5/22/2018
2.4.0-alpha0024 1,574 5/18/2018
2.4.0-alpha0023 1,409 5/16/2018
2.4.0-alpha0022 1,737 5/16/2018
2.4.0-alpha0021 1,593 5/15/2018
2.4.0-alpha0020 1,619 5/15/2018
2.4.0-alpha0019 1,715 4/20/2018
2.4.0-alpha0017 1,624 4/19/2018
2.4.0-alpha0016 1,598 4/13/2018
2.4.0-alpha0015 1,580 4/3/2018
2.4.0-alpha0014 1,661 4/1/2018
2.4.0-alpha0013 2,014 3/30/2018
2.4.0-alpha0009 1,614 2/20/2018
2.4.0-alpha0002 1,488 12/1/2017
2.3.3 6,956 4/24/2018
2.3.1 17,770 2/20/2018
2.3.0 2,158 2/19/2018
2.3.0-alpha0006 2,029 11/21/2017
2.3.0-alpha0005 1,417 11/13/2017
2.3.0-alpha0002 1,779 9/18/2017
2.2.0 42,925 11/13/2017
2.2.0-alpha0009 1,436 9/14/2017
2.2.0-alpha0008 1,375 9/11/2017
2.2.0-alpha0007 1,401 9/10/2017
2.2.0-alpha0006 1,418 8/18/2017
2.2.0-alpha0002 1,415 8/18/2017
2.1.0 3,362 8/18/2017
2.1.0-alpha0022 1,387 8/18/2017
2.1.0-alpha0020 1,444 7/24/2017
2.1.0-alpha0018 1,481 7/13/2017
2.1.0-alpha0016 1,446 7/12/2017
2.1.0-alpha0011 1,483 7/11/2017
2.1.0-alpha0005 1,452 7/3/2017
2.1.0-alpha0002 1,460 7/3/2017
2.0.4 2,822 7/24/2017
2.0.4-unstable0013 1,614 6/26/2017
2.0.4-unstable0011 1,548 6/26/2017
2.0.4-unstable0010 1,586 6/11/2017
2.0.4-unstable0009 1,544 6/1/2017
2.0.4-unstable0007 3,285 5/4/2017
2.0.4-unstable0004 1,576 5/1/2017
2.0.4-unstable0003 1,581 5/1/2017
2.0.4-unstable0002 1,593 4/30/2017
2.0.4-unstable0001 1,522 4/27/2017
2.0.4-alpha0038 1,444 7/1/2017
2.0.3-unstable0064 1,497 4/27/2017
2.0.3-unstable0058 1,502 3/28/2017
2.0.3-unstable0057 1,489 3/15/2017
2.0.3-unstable0055 1,728 2/10/2017
2.0.3-unstable0053 1,550 2/9/2017
2.0.3-unstable0052 1,584 2/8/2017
1.1.4.506 2,126 7/6/2017
1.1.3.500 2,076 6/28/2017
1.1.2.497 1,976 6/21/2017
1.1.1.494 2,957 5/30/2017
1.1.0.492 2,130 5/4/2017
1.0.4.483 6,863 4/26/2017
1.0.3.481 2,014 4/4/2017
1.0.2.478 2,068 3/15/2017
1.0.1.475 2,216 2/10/2017
1.0.0.469 1,992 2/8/2017
1.0.0 1,990 6/30/2017
0.63.7.467 2,231 2/7/2017
0.63.6.463 2,003 2/7/2017
0.63.6.460 1,959 2/5/2017
0.63.5.454 2,429 10/17/2016
0.63.4.453 2,030 10/10/2016
0.63.3.452 2,104 9/26/2016
0.63.1.451 2,302 9/19/2016
0.63.1.450 2,075 9/11/2016
0.63.0.448 3,920 8/12/2016
0.62.1.445 2,088 8/8/2016
0.62.0.444 2,069 8/8/2016
0.61.1.443 2,075 8/5/2016
0.61.0.442 2,302 8/2/2016
0.60.1.441 2,170 7/31/2016
0.60.0.440 2,202 7/25/2016
0.59.0.439 2,107 7/18/2016
0.59.0.437 2,025 7/18/2016
0.59.0.436 2,009 7/18/2016
0.59.0.434 2,413 6/6/2016
0.58.0.433 2,322 5/2/2016
0.57.2.432 2,101 5/2/2016
0.57.2.431 2,361 4/25/2016
0.57.2.430 2,115 4/20/2016
0.57.1.429 2,002 4/20/2016
0.57.0.428 2,016 4/18/2016
0.56.0.427 2,276 4/1/2016
0.55.1.426 2,456 3/17/2016
0.55.0.425 3,434 3/1/2016
0.54.3.424 2,441 2/2/2016
0.54.2.423 2,043 2/1/2016
0.54.1.421 2,007 2/1/2016
0.54.0.420 2,072 1/28/2016
0.53.6.419 2,082 1/25/2016
0.53.6.418 2,086 1/6/2016
0.53.5.417 2,042 1/6/2016
0.53.5.416 2,107 1/5/2016
0.53.4.415 2,132 12/23/2015
0.53.3.414 6,566 12/9/2015
0.53.2.413 2,464 12/1/2015
0.53.1.412 2,436 11/28/2015
0.53.0.411 2,236 11/19/2015
0.52.0.410 2,159 11/18/2015
0.51.0.409 2,110 11/17/2015
0.51.0.408 2,078 11/16/2015
0.50.12.407 6,535 10/22/2015
0.50.12.406 2,167 10/22/2015
0.50.11.404 2,112 10/20/2015
0.50.10.403 2,141 10/10/2015
0.50.9.401 2,481 10/5/2015
0.50.8.400 3,353 9/28/2015
0.50.7.399 2,700 8/18/2015
0.50.6.398 2,496 8/11/2015
0.50.5.397 2,557 8/11/2015
0.50.5.396 2,139 8/11/2015
0.50.4.395 2,463 8/8/2015
0.50.3.394 2,476 8/7/2015
0.50.2.393 2,291 8/1/2015
0.50.1.392 2,549 6/17/2015
0.50.0.391 2,325 6/8/2015
0.49.3.390 2,234 5/20/2015
0.49.2.389 2,099 5/18/2015
0.49.1.388 2,071 5/18/2015
0.49.0.387 2,052 5/17/2015
0.48.1.386 2,094 5/10/2015
0.48.0.385 2,099 5/10/2015
0.47.10.384 2,089 5/8/2015
0.47.10.383 2,243 5/6/2015
0.47.10.382 2,198 5/5/2015
0.47.10.381 2,265 4/27/2015
0.47.10.380 2,715 4/1/2015
0.47.10.379 2,194 4/1/2015
0.47.9.378 2,183 3/31/2015
0.47.9.377 2,152 3/31/2015
0.47.9.376 2,190 3/30/2015
0.47.8.375 2,138 3/28/2015
0.47.7.374 2,453 3/25/2015
0.47.6.373 2,887 3/18/2015
0.47.5.372 2,107 3/17/2015
0.47.4.371 2,173 3/16/2015
0.47.3.370 2,191 3/15/2015
0.47.2.369 2,103 3/12/2015
0.47.1.368 2,232 3/4/2015
0.47.0.367 2,196 3/4/2015
0.46.1.366 2,198 3/3/2015
0.46.0.365 2,125 3/2/2015
0.45.0.364 2,329 3/2/2015
0.44.3.363 2,226 2/24/2015
0.44.2.362 2,429 2/24/2015
0.44.1.361 2,547 2/22/2015
0.44.0.360 2,459 2/18/2015
0.43.1.359 2,411 2/12/2015
0.43.0.358 2,179 2/7/2015
0.42.0.357 2,142 2/5/2015
0.41.0.356 2,128 2/4/2015
0.40.6.355 2,171 2/3/2015
0.40.3.354 2,164 2/2/2015
0.40.3.353 2,195 1/26/2015
0.40.3.352 2,211 1/20/2015
0.40.3.351 2,183 1/19/2015
0.40.2.350 2,173 1/19/2015
0.40.1.349 2,197 1/17/2015
0.40.1.348 2,250 1/15/2015
0.40.1.347 2,162 1/13/2015
0.40.1.346 2,196 1/12/2015
0.40.0.345 2,188 1/9/2015
0.40.0.344 2,180 1/9/2015
0.40.0.343 2,197 1/8/2015
0.40.0.342 2,159 1/8/2015
0.39.6.340 2,304 1/6/2015
0.39.5.339 2,183 1/5/2015
0.39.4.338 2,692 1/1/2015
0.39.4.337 2,530 12/23/2014
0.39.4.336 2,486 12/13/2014
0.39.2.335 2,394 12/12/2014
0.39.2.334 2,374 12/9/2014
0.39.2.333 2,387 12/5/2014
0.39.1.332 2,343 12/3/2014
0.39.1.331 2,324 12/2/2014
0.39.0.330 2,298 12/1/2014
0.38.2.329 2,318 11/26/2014
0.38.2.328 2,301 11/26/2014
0.38.1.327 2,256 11/25/2014
0.38.0.326 2,305 11/22/2014
0.38.0.325 2,377 11/20/2014
0.38.0.324 2,381 11/14/2014
0.37.2.323 2,445 11/14/2014
0.37.2.322 2,656 11/5/2014
0.37.2.321 2,274 10/29/2014
0.37.2.320 2,107 10/29/2014
0.37.2.319 2,207 10/28/2014
0.37.1.318 2,233 10/25/2014
0.37.1.317 2,278 10/16/2014
0.37.1.316 2,171 10/13/2014
0.37.0.315 2,267 10/12/2014
0.36.5.314 2,248 10/11/2014
0.36.5.313 2,154 10/9/2014
0.36.4.312 2,131 10/8/2014
0.36.4.311 2,166 10/8/2014
0.36.4.310 2,175 10/3/2014
0.36.3.309 2,250 10/1/2014
0.36.2.308 2,163 9/28/2014
0.36.1.307 2,168 9/20/2014
0.36.1.306 2,186 9/17/2014
0.36.0.305 2,183 9/15/2014
0.35.6.304 2,224 9/1/2014
0.35.6.303 2,191 8/28/2014
0.35.6.302 2,241 8/16/2014
0.35.6.301 2,284 8/15/2014
0.35.5.300 2,187 8/14/2014
0.35.4.299 2,184 8/14/2014
0.35.4.298 2,227 8/13/2014
0.35.4.297 2,205 8/11/2014
0.35.3.296 2,127 8/10/2014
0.35.3.295 2,233 8/8/2014
0.35.3.294 2,148 8/5/2014
0.35.1.288 2,119 8/1/2014
0.35.1.287 2,187 8/1/2014
0.35.1.286 2,173 8/1/2014
0.35.1.285 2,161 7/29/2014
0.35.1.284 2,162 7/23/2014
0.35.1.283 2,165 7/23/2014
0.35.0.282 2,149 7/22/2014
0.35.0.281 2,166 7/15/2014
0.34.0.280 2,445 7/11/2014
0.34.0.279 2,123 7/9/2014
0.33.2.278 2,172 7/9/2014
0.33.2.277 2,145 7/2/2014
0.33.1.276 2,524 6/24/2014
0.33.1.275 2,177 6/19/2014
0.33.0.274 2,190 6/19/2014
0.33.0.273 2,217 6/16/2014
0.32.3.272 2,158 6/14/2014
0.32.2.271 2,264 6/5/2014
0.32.1.270 2,212 6/1/2014
0.32.1.269 2,207 6/1/2014
0.32.1.268 2,180 5/26/2014
0.32.0.267 2,182 5/23/2014
0.32.0.266 2,192 5/22/2014
0.32.0.265 2,165 5/21/2014
0.32.0.264 2,150 5/21/2014
0.32.0.263 2,202 5/20/2014
0.32.0.262 2,224 5/19/2014
0.31.1.261 2,189 5/19/2014
0.31.1.260 2,227 5/19/2014
0.31.0.259 2,227 5/16/2014
0.30.2.258 2,178 5/15/2014
0.30.2.257 2,181 5/14/2014
0.30.2.254 2,264 5/8/2014
0.30.2.252 2,234 4/30/2014
0.30.2.251 2,320 4/30/2014
0.30.1.250 2,202 4/29/2014
0.30.0.249 2,242 4/28/2014
0.30.0.248 2,312 4/24/2014
0.30.0.247 2,230 4/17/2014
0.29.0.246 2,328 4/16/2014
0.28.5.245 2,375 4/14/2014
0.28.4.242 2,325 4/5/2014
0.28.4.241 2,315 4/4/2014
0.28.4.240 2,325 4/3/2014
0.28.4.232 2,304 3/31/2014
0.28.3.231 2,315 3/27/2014
0.28.3.230 2,295 3/27/2014
0.28.3.229 2,269 3/19/2014
0.28.2.227 2,319 3/14/2014
0.28.2.226 2,300 3/13/2014
0.28.2.225 2,266 3/5/2014
0.28.1.224 2,203 3/4/2014
0.27.5.222 2,263 2/28/2014
0.27.5.221 2,298 2/28/2014
0.27.4.220 2,317 2/26/2014
0.27.3.219 2,366 2/25/2014
0.27.2.218 2,216 2/25/2014
0.27.1.216 2,299 2/14/2014
0.27.0.215 2,283 2/12/2014
0.26.7.214 2,277 2/12/2014
0.26.7.213 2,265 2/11/2014
0.26.7.212 2,257 2/10/2014
0.26.7.211 2,299 2/10/2014
0.26.6.210 2,328 2/10/2014
0.26.5.209 2,270 2/10/2014
0.26.5.208 2,251 2/5/2014
0.26.5.207 2,232 2/4/2014
0.26.4.206 2,219 2/4/2014
0.26.3.204 2,251 2/4/2014
0.26.3.203 2,281 2/3/2014