EasyNetQ.DI.Autofac 8.0.0-beta3

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-beta3
                    
NuGet\Install-Package EasyNetQ.DI.Autofac -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.Autofac" 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.Autofac" Version="8.0.0-beta3" />
                    
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-beta3
                    
#r "nuget: EasyNetQ.DI.Autofac, 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.
#:package EasyNetQ.DI.Autofac@8.0.0-beta3
                    
#: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-beta3&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Autofac&version=8.0.0-beta3&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 219 3/15/2024
8.0.0-beta95 330 10/22/2023
8.0.0-beta94 274 6/18/2023
8.0.0-beta93 241 6/17/2023
8.0.0-beta92 251 6/17/2023
8.0.0-beta91 257 6/11/2023
8.0.0-beta90 259 5/8/2023
8.0.0-beta9 274 3/21/2023
8.0.0-beta8 271 2/20/2023
8.0.0-beta6 289 1/29/2023
8.0.0-beta5 297 1/20/2023
8.0.0-beta4 310 1/5/2023
8.0.0-beta3 293 12/29/2022
8.0.0-beta2 288 12/16/2022
8.0.0-beta10 253 3/21/2023
8.0.0-beta1 286 12/15/2022
8.0.0-alpha9 280 12/14/2022
8.0.0-alpha8 299 11/30/2022
8.0.0-alpha7 294 11/12/2022
8.0.0-alpha6 293 10/29/2022
8.0.0-alpha5 237 10/5/2022
8.0.0-alpha4 319 10/1/2022
8.0.0-alpha3 353 9/26/2022
8.0.0-alpha2 316 9/21/2022
8.0.0-alpha1 353 9/19/2022
7.8.0 81,716 12/16/2023
7.7.0 1,802 11/19/2023
7.6.0 4,480 10/12/2023
7.5.5 3,520 7/20/2023
7.5.4 256 7/19/2023
7.5.3 11,436 6/15/2023
7.5.2 6,734 5/14/2023
7.5.1 772 5/4/2023
7.5.0 3,557 3/25/2023
7.4.3 17,533 2/3/2023
7.4.1 885 1/31/2023
7.4.0 980 1/29/2023
7.3.12 688 1/23/2023
7.3.11 652 1/22/2023
7.3.10 642 1/19/2023
7.3.9 27,940 1/17/2023
7.3.8 1,170 1/4/2023
7.3.7 839 12/22/2022
7.3.6 876 12/19/2022
7.3.5 984 11/30/2022
7.3.4 682 11/30/2022
7.3.3 875 11/24/2022
7.3.2 10,349 11/15/2022
7.3.1 771 11/12/2022
7.3.0 15,615 10/29/2022
7.3.0-alpha3 288 10/15/2022
7.2.1 1,231 10/9/2022
7.2.1-alpha1 279 10/6/2022
7.2.0 7,718 9/17/2022
7.2.0-alpha1 345 9/15/2022
7.1.1-alpha1 355 9/14/2022
7.1.0 923 9/13/2022
7.0.4 3,033 9/7/2022
7.0.3 735 9/5/2022
7.0.3-alpha1 272 9/5/2022
7.0.2 818 9/5/2022
7.0.1 1,031 8/27/2022
7.0.0 3,506 7/23/2022
7.0.0-rc5 277 6/28/2022
7.0.0-rc4 318 6/27/2022
7.0.0-rc3 308 6/20/2022
7.0.0-rc2 290 6/9/2022
7.0.0-rc1 295 6/9/2022
7.0.0-beta9 319 6/8/2022
7.0.0-beta7 340 6/5/2022
7.0.0-beta6 307 5/24/2022
7.0.0-beta5 444 11/18/2021
7.0.0-beta4 387 11/9/2021
7.0.0-beta3 442 11/6/2021
7.0.0-beta2 412 9/29/2021
7.0.0-beta1 414 9/13/2021
7.0.0-alpha9 385 8/25/2021
7.0.0-alpha8 384 8/25/2021
7.0.0-alpha7 381 8/25/2021
7.0.0-alpha6 376 8/16/2021
7.0.0-alpha5 403 8/16/2021
7.0.0-alpha4 1,104 1/20/2021
7.0.0-alpha3 693 12/31/2020
7.0.0-alpha2 663 12/28/2020
6.5.2 39,175 6/20/2022
6.4.1 4,622 5/22/2022
6.4.0-alpha0096 825 12/6/2020
6.4.0-alpha0095 719 12/6/2020
6.4.0-alpha0094 705 12/6/2020
6.4.0-alpha.99 336 12/26/2020
6.4.0-alpha.97 352 12/9/2020
6.3.1 137,067 11/28/2020
6.3.0 10,347 11/22/2020
6.2.0 1,601 11/15/2020
6.1.0 1,807 11/10/2020
6.0.3 1,112 11/9/2020
6.0.2 1,152 11/6/2020
6.0.1 1,741 11/1/2020
5.6.0 4,453 10/10/2020
5.5.0 4,061 10/5/2020
5.4.1 1,200 10/4/2020
5.4.0 1,274 10/1/2020
5.3.0-alpha0079 798 6/16/2020
5.3.0-alpha0078 724 6/15/2020
5.3.0-alpha0077 735 6/15/2020
5.3.0-alpha0076 768 6/15/2020
5.3.0-alpha0075 743 6/14/2020
5.3.0-alpha0074 786 6/12/2020
5.3.0-alpha0073 803 6/12/2020
5.3.0-alpha0072 780 6/11/2020
5.3.0-alpha0070 813 6/7/2020
5.2.2 1,519 9/4/2020
5.2.1 113,239 9/3/2020
5.2.0 71,496 6/7/2020
5.2.0-alpha0073 785 5/26/2020
5.2.0-alpha0072 841 5/25/2020
5.2.0-alpha0071 778 5/25/2020
5.2.0-alpha0070 807 5/24/2020
5.2.0-alpha0069 826 5/24/2020
5.2.0-alpha0066 740 5/21/2020
5.2.0-alpha0065 789 5/20/2020
5.2.0-alpha0064 845 5/17/2020
5.2.0-alpha0057 815 5/10/2020
5.2.0-alpha0056 764 5/8/2020
5.1.2 3,401 5/24/2020
5.1.1 1,416 5/10/2020
5.1.0 1,243 5/7/2020
5.1.0-alpha0055 784 5/3/2020
5.1.0-alpha0054 862 5/3/2020
5.1.0-alpha0053 790 4/30/2020
5.0.5 1,442 5/4/2020
5.0.4 4,585 5/3/2020
5.0.3 1,313 5/2/2020
5.0.2 1,254 5/2/2020
5.0.1 1,234 5/2/2020
5.0.0 1,384 4/29/2020
4.1.0-alpha0014 787 4/29/2020
4.1.0-alpha0013 748 4/24/2020
4.1.0-alpha0005 820 4/20/2020
4.1.0-alpha0004 772 4/18/2020
4.1.0-alpha0001 791 4/17/2020
4.0.9 1,245 4/29/2020
4.0.8 1,369 4/28/2020
4.0.7 1,285 4/27/2020
4.0.6 1,415 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,252 4/20/2020
4.0.1 1,271 4/20/2020
4.0.0 1,322 4/18/2020
3.8.0 1,789 4/17/2020
3.8.0-alpha0048 919 2/28/2020
3.8.0-alpha0042 1,762 2/13/2020
3.8.0-alpha0041 3,041 1/8/2020
3.8.0-alpha0040 901 9/26/2019
3.8.0-alpha0039 823 9/25/2019
3.7.1 64,836 9/25/2019
3.7.0 1,508 9/23/2019
3.7.0-alpha0038 1,032 8/3/2019
3.7.0-alpha0037 885 8/1/2019
3.6.0 16,291 7/17/2019
3.6.0-alpha0036 996 6/4/2019
3.6.0-alpha0035 979 6/2/2019
3.6.0-alpha0034 960 6/2/2019
3.6.0-alpha0033 991 6/2/2019
3.6.0-alpha0031 910 5/4/2019
3.5.2 37,516 7/11/2019
3.5.1 4,322 6/2/2019
3.5.0 6,325 5/2/2019
3.5.0-alpha0036 951 4/10/2019
3.5.0-alpha0031 934 3/25/2019
3.5.0-alpha0030 919 3/21/2019
3.5.0-alpha0029 898 3/19/2019
3.5.0-alpha0027 919 3/18/2019
3.5.0-alpha0026 885 3/18/2019
3.5.0-alpha0025 904 3/17/2019
3.5.0-alpha0024 889 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 925 3/14/2019
3.5.0-alpha0013 924 3/14/2019
3.4.5 3,986 3/21/2019
3.4.4 1,782 3/16/2019
3.4.3 1,551 3/14/2019
3.4.2 1,524 3/13/2019
3.4.1 1,475 3/12/2019
3.4.0 48,609 2/19/2019
3.4.0-alpha0022 1,017 1/27/2019
3.4.0-alpha0021 984 1/25/2019
3.4.0-alpha0020 1,002 12/21/2018
3.4.0-alpha0019 1,064 12/6/2018
3.4.0-alpha0018 1,049 11/21/2018
3.4.0-alpha0017 1,070 11/20/2018
3.4.0-alpha0016 1,113 11/5/2018
3.4.0-alpha0015 1,131 11/2/2018
3.4.0-alpha0011 1,126 11/1/2018
3.4.0-alpha0010 1,169 10/3/2018
3.4.0-alpha0009 1,140 9/16/2018
3.4.0-alpha0008 1,132 9/1/2018
3.4.0-alpha0007 1,165 8/29/2018
3.4.0-alpha0006 1,159 8/28/2018
3.4.0-alpha0005 1,131 8/28/2018
3.4.0-alpha0004 1,197 8/23/2018
3.4.0-alpha0003 1,185 8/22/2018
3.4.0-alpha0002 1,168 8/10/2018
3.4.0-alpha0001 1,390 7/30/2018
3.3.9 3,993 1/25/2019
3.3.8 1,682 1/18/2019
3.3.7 1,847 1/5/2019
3.3.6 1,841 12/19/2018
3.3.5 1,956 11/21/2018
3.3.4 1,851 11/20/2018
3.3.3 2,184 11/11/2018
3.3.2 2,239 10/12/2018
3.3.1 15,722 8/28/2018
3.3.0 5,156 7/18/2018
3.3.0-alpha0007 1,387 7/18/2018
3.3.0-alpha0006 1,572 7/17/2018
3.3.0-alpha0005 1,592 7/17/2018
3.3.0-alpha0004 1,313 7/17/2018
3.3.0-alpha0003 1,612 7/15/2018
3.3.0-alpha0001 1,607 7/11/2018
3.2.0 2,298 7/12/2018
3.1.2 2,015 7/11/2018
3.1.1 2,019 7/4/2018
3.1.0 3,891 6/20/2018
3.1.0-alpha0019 1,607 7/4/2018
3.1.0-alpha0017 1,444 7/2/2018
3.1.0-alpha0016 1,579 6/30/2018
3.1.0-alpha0014 1,639 6/26/2018
3.1.0-alpha0011 1,397 6/23/2018
3.1.0-alpha0010 1,652 6/20/2018
3.1.0-alpha0009 1,372 6/20/2018
3.1.0-alpha0008 1,393 6/19/2018
3.1.0-alpha0007 1,597 6/17/2018
3.1.0-alpha0006 1,606 6/14/2018
3.1.0-alpha0005 1,595 6/14/2018
3.1.0-alpha0004 1,700 5/28/2018
3.0.1 2,282 7/4/2018
3.0.0 6,324 5/24/2018
2.4.0-alpha0027 1,573 5/23/2018
2.4.0-alpha0026 1,668 5/23/2018
2.4.0-alpha0025 1,583 5/22/2018
2.4.0-alpha0024 1,566 5/18/2018
2.4.0-alpha0023 1,402 5/16/2018
2.4.0-alpha0022 1,728 5/16/2018
2.4.0-alpha0021 1,584 5/15/2018
2.4.0-alpha0020 1,611 5/15/2018
2.4.0-alpha0019 1,707 4/20/2018
2.4.0-alpha0017 1,615 4/19/2018
2.4.0-alpha0016 1,589 4/13/2018
2.4.0-alpha0015 1,571 4/3/2018
2.4.0-alpha0014 1,652 4/1/2018
2.4.0-alpha0013 2,000 3/30/2018
2.4.0-alpha0009 1,606 2/20/2018
2.4.0-alpha0002 1,481 12/1/2017
2.3.3 6,939 4/24/2018
2.3.1 17,763 2/20/2018
2.3.0 2,150 2/19/2018
2.3.0-alpha0006 2,023 11/21/2017
2.3.0-alpha0005 1,410 11/13/2017
2.3.0-alpha0002 1,771 9/18/2017
2.2.0 42,919 11/13/2017
2.2.0-alpha0009 1,429 9/14/2017
2.2.0-alpha0008 1,368 9/11/2017
2.2.0-alpha0007 1,394 9/10/2017
2.2.0-alpha0006 1,411 8/18/2017
2.2.0-alpha0002 1,408 8/18/2017
2.1.0 3,354 8/18/2017
2.1.0-alpha0022 1,380 8/18/2017
2.1.0-alpha0020 1,438 7/24/2017
2.1.0-alpha0018 1,473 7/13/2017
2.1.0-alpha0016 1,440 7/12/2017
2.1.0-alpha0011 1,477 7/11/2017
2.1.0-alpha0005 1,445 7/3/2017
2.1.0-alpha0002 1,451 7/3/2017
2.0.4 2,815 7/24/2017
2.0.4-unstable0013 1,608 6/26/2017
2.0.4-unstable0011 1,540 6/26/2017
2.0.4-unstable0010 1,579 6/11/2017
2.0.4-unstable0009 1,537 6/1/2017
2.0.4-unstable0007 3,277 5/4/2017
2.0.4-unstable0004 1,569 5/1/2017
2.0.4-unstable0003 1,575 5/1/2017
2.0.4-unstable0002 1,585 4/30/2017
2.0.4-unstable0001 1,516 4/27/2017
2.0.4-alpha0038 1,437 7/1/2017
2.0.3-unstable0064 1,491 4/27/2017
2.0.3-unstable0058 1,495 3/28/2017
2.0.3-unstable0057 1,482 3/15/2017
2.0.3-unstable0055 1,722 2/10/2017
2.0.3-unstable0053 1,543 2/9/2017
2.0.3-unstable0052 1,578 2/8/2017
1.1.4.506 2,120 7/6/2017
1.1.3.500 2,070 6/28/2017
1.1.2.497 1,969 6/21/2017
1.1.1.494 2,950 5/30/2017
1.1.0.492 2,122 5/4/2017
1.0.4.483 6,855 4/26/2017
1.0.3.481 2,008 4/4/2017
1.0.2.478 2,062 3/15/2017
1.0.1.475 2,210 2/10/2017
1.0.0.469 1,986 2/8/2017
1.0.0 1,984 6/30/2017
0.63.7.467 2,225 2/7/2017
0.63.6.463 1,995 2/7/2017
0.63.6.460 1,952 2/5/2017
0.63.5.454 2,421 10/17/2016
0.63.4.453 2,023 10/10/2016
0.63.3.452 2,096 9/26/2016
0.63.1.451 2,295 9/19/2016
0.63.1.450 2,068 9/11/2016
0.63.0.448 3,913 8/12/2016
0.62.1.445 2,080 8/8/2016
0.62.0.444 2,062 8/8/2016
0.61.1.443 2,068 8/5/2016
0.61.0.442 2,294 8/2/2016
0.60.1.441 2,163 7/31/2016
0.60.0.440 2,194 7/25/2016
0.59.0.439 2,100 7/18/2016
0.59.0.437 2,017 7/18/2016
0.59.0.436 2,002 7/18/2016
0.59.0.434 2,403 6/6/2016
0.58.0.433 2,314 5/2/2016
0.57.2.432 2,093 5/2/2016
0.57.2.431 2,354 4/25/2016
0.57.2.430 2,107 4/20/2016
0.57.1.429 1,994 4/20/2016
0.57.0.428 2,009 4/18/2016
0.56.0.427 2,269 4/1/2016
0.55.1.426 2,449 3/17/2016
0.55.0.425 3,427 3/1/2016
0.54.3.424 2,434 2/2/2016
0.54.2.423 2,036 2/1/2016
0.54.1.421 1,998 2/1/2016
0.54.0.420 2,065 1/28/2016
0.53.6.419 2,072 1/25/2016
0.53.6.418 2,078 1/6/2016
0.53.5.417 2,034 1/6/2016
0.53.5.416 2,099 1/5/2016
0.53.4.415 2,125 12/23/2015
0.53.3.414 6,555 12/9/2015
0.53.2.413 2,456 12/1/2015
0.53.1.412 2,425 11/28/2015
0.53.0.411 2,229 11/19/2015
0.52.0.410 2,151 11/18/2015
0.51.0.409 2,101 11/17/2015
0.51.0.408 2,071 11/16/2015
0.50.12.407 6,528 10/22/2015
0.50.12.406 2,160 10/22/2015
0.50.11.404 2,105 10/20/2015
0.50.10.403 2,133 10/10/2015
0.50.9.401 2,473 10/5/2015
0.50.8.400 3,346 9/28/2015
0.50.7.399 2,693 8/18/2015
0.50.6.398 2,489 8/11/2015
0.50.5.397 2,549 8/11/2015
0.50.5.396 2,131 8/11/2015
0.50.4.395 2,456 8/8/2015
0.50.3.394 2,469 8/7/2015
0.50.2.393 2,284 8/1/2015
0.50.1.392 2,542 6/17/2015
0.50.0.391 2,317 6/8/2015
0.49.3.390 2,226 5/20/2015
0.49.2.389 2,092 5/18/2015
0.49.1.388 2,064 5/18/2015
0.49.0.387 2,045 5/17/2015
0.48.1.386 2,085 5/10/2015
0.48.0.385 2,091 5/10/2015
0.47.10.384 2,081 5/8/2015
0.47.10.383 2,236 5/6/2015
0.47.10.382 2,190 5/5/2015
0.47.10.381 2,258 4/27/2015
0.47.10.380 2,708 4/1/2015
0.47.10.379 2,187 4/1/2015
0.47.9.378 2,173 3/31/2015
0.47.9.377 2,143 3/31/2015
0.47.9.376 2,183 3/30/2015
0.47.8.375 2,131 3/28/2015
0.47.7.374 2,446 3/25/2015
0.47.6.373 2,879 3/18/2015
0.47.5.372 2,100 3/17/2015
0.47.4.371 2,164 3/16/2015
0.47.3.370 2,184 3/15/2015
0.47.2.369 2,095 3/12/2015
0.47.1.368 2,224 3/4/2015
0.47.0.367 2,188 3/4/2015
0.46.1.366 2,190 3/3/2015
0.46.0.365 2,116 3/2/2015
0.45.0.364 2,321 3/2/2015
0.44.3.363 2,219 2/24/2015
0.44.2.362 2,422 2/24/2015
0.44.1.361 2,540 2/22/2015
0.44.0.360 2,452 2/18/2015
0.43.1.359 2,404 2/12/2015
0.43.0.358 2,172 2/7/2015
0.42.0.357 2,133 2/5/2015
0.41.0.356 2,121 2/4/2015
0.40.6.355 2,163 2/3/2015
0.40.3.354 2,157 2/2/2015
0.40.3.353 2,187 1/26/2015
0.40.3.352 2,203 1/20/2015
0.40.3.351 2,176 1/19/2015
0.40.2.350 2,166 1/19/2015
0.40.1.349 2,189 1/17/2015
0.40.1.348 2,243 1/15/2015
0.40.1.347 2,153 1/13/2015
0.40.1.346 2,187 1/12/2015
0.40.0.345 2,181 1/9/2015
0.40.0.344 2,172 1/9/2015
0.40.0.343 2,188 1/8/2015
0.40.0.342 2,150 1/8/2015
0.39.6.340 2,296 1/6/2015
0.39.5.339 2,175 1/5/2015
0.39.4.338 2,683 1/1/2015
0.39.4.337 2,523 12/23/2014
0.39.4.336 2,478 12/13/2014
0.39.2.335 2,386 12/12/2014
0.39.2.334 2,366 12/9/2014
0.39.2.333 2,379 12/5/2014
0.39.1.332 2,333 12/3/2014
0.39.1.331 2,315 12/2/2014
0.39.0.330 2,291 12/1/2014
0.38.2.329 2,309 11/26/2014
0.38.2.328 2,294 11/26/2014
0.38.1.327 2,248 11/25/2014
0.38.0.326 2,297 11/22/2014
0.38.0.325 2,370 11/20/2014
0.38.0.324 2,373 11/14/2014
0.37.2.323 2,437 11/14/2014
0.37.2.322 2,649 11/5/2014
0.37.2.321 2,266 10/29/2014
0.37.2.320 2,100 10/29/2014
0.37.2.319 2,200 10/28/2014
0.37.1.318 2,226 10/25/2014
0.37.1.317 2,270 10/16/2014
0.37.1.316 2,164 10/13/2014
0.37.0.315 2,259 10/12/2014
0.36.5.314 2,240 10/11/2014
0.36.5.313 2,147 10/9/2014
0.36.4.312 2,124 10/8/2014
0.36.4.311 2,158 10/8/2014
0.36.4.310 2,166 10/3/2014
0.36.3.309 2,242 10/1/2014
0.36.2.308 2,155 9/28/2014
0.36.1.307 2,160 9/20/2014
0.36.1.306 2,178 9/17/2014
0.36.0.305 2,176 9/15/2014
0.35.6.304 2,216 9/1/2014
0.35.6.303 2,182 8/28/2014
0.35.6.302 2,234 8/16/2014
0.35.6.301 2,276 8/15/2014
0.35.5.300 2,179 8/14/2014
0.35.4.299 2,177 8/14/2014
0.35.4.298 2,219 8/13/2014
0.35.4.297 2,198 8/11/2014
0.35.3.296 2,120 8/10/2014
0.35.3.295 2,226 8/8/2014
0.35.3.294 2,141 8/5/2014
0.35.1.288 2,112 8/1/2014
0.35.1.287 2,179 8/1/2014
0.35.1.286 2,166 8/1/2014
0.35.1.285 2,154 7/29/2014
0.35.1.284 2,155 7/23/2014
0.35.1.283 2,158 7/23/2014
0.35.0.282 2,141 7/22/2014
0.35.0.281 2,158 7/15/2014
0.34.0.280 2,438 7/11/2014
0.34.0.279 2,115 7/9/2014
0.33.2.278 2,164 7/9/2014
0.33.2.277 2,137 7/2/2014
0.33.1.276 2,515 6/24/2014
0.33.1.275 2,170 6/19/2014
0.33.0.274 2,183 6/19/2014
0.33.0.273 2,208 6/16/2014
0.32.3.272 2,151 6/14/2014
0.32.2.271 2,256 6/5/2014
0.32.1.270 2,203 6/1/2014
0.32.1.269 2,198 6/1/2014
0.32.1.268 2,173 5/26/2014
0.32.0.267 2,174 5/23/2014
0.32.0.266 2,185 5/22/2014
0.32.0.265 2,157 5/21/2014
0.32.0.264 2,143 5/21/2014
0.32.0.263 2,195 5/20/2014
0.32.0.262 2,217 5/19/2014
0.31.1.261 2,181 5/19/2014
0.31.1.260 2,219 5/19/2014
0.31.0.259 2,218 5/16/2014
0.30.2.258 2,169 5/15/2014
0.30.2.257 2,173 5/14/2014
0.30.2.254 2,257 5/8/2014
0.30.2.252 2,225 4/30/2014
0.30.2.251 2,313 4/30/2014
0.30.1.250 2,192 4/29/2014
0.30.0.249 2,235 4/28/2014
0.30.0.248 2,304 4/24/2014
0.30.0.247 2,222 4/17/2014
0.29.0.246 2,319 4/16/2014
0.28.5.245 2,366 4/14/2014
0.28.4.242 2,317 4/5/2014
0.28.4.241 2,306 4/4/2014
0.28.4.240 2,316 4/3/2014
0.28.4.232 2,296 3/31/2014
0.28.3.231 2,305 3/27/2014
0.28.3.230 2,288 3/27/2014
0.28.3.229 2,262 3/19/2014
0.28.2.227 2,312 3/14/2014
0.28.2.226 2,292 3/13/2014
0.28.2.225 2,258 3/5/2014
0.28.1.224 2,196 3/4/2014
0.27.5.222 2,256 2/28/2014
0.27.5.221 2,291 2/28/2014
0.27.4.220 2,307 2/26/2014
0.27.3.219 2,358 2/25/2014
0.27.2.218 2,209 2/25/2014
0.27.1.216 2,292 2/14/2014
0.27.0.215 2,276 2/12/2014
0.26.7.214 2,270 2/12/2014
0.26.7.213 2,256 2/11/2014
0.26.7.212 2,248 2/10/2014
0.26.7.211 2,291 2/10/2014
0.26.6.210 2,320 2/10/2014
0.26.5.209 2,262 2/10/2014
0.26.5.208 2,243 2/5/2014
0.26.5.207 2,222 2/4/2014
0.26.4.206 2,212 2/4/2014
0.26.3.204 2,242 2/4/2014
0.26.3.203 2,274 2/3/2014