Masa.Blazor 0.7.0-alpha.1726

This is a prerelease version of Masa.Blazor.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Masa.Blazor --version 0.7.0-alpha.1726
NuGet\Install-Package Masa.Blazor -Version 0.7.0-alpha.1726
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="Masa.Blazor" Version="0.7.0-alpha.1726" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Masa.Blazor --version 0.7.0-alpha.1726
#r "nuget: Masa.Blazor, 0.7.0-alpha.1726"
#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 Masa.Blazor as a Cake Addin
#addin nuget:?package=Masa.Blazor&version=0.7.0-alpha.1726&prerelease

// Install Masa.Blazor as a Cake Tool
#tool nuget:?package=Masa.Blazor&version=0.7.0-alpha.1726&prerelease

<p align="center"> <a href="https://blazor.masastack.com" target="_blank"> <img alt="MASA Blazor Logo" width="150" src="./imgs/logo.png"> </a> </p>

<h1 align="center">MASA Blazor</h1>

<div align="center">

A set of standard basic component libraries based on Material design specifications and BlazorComponent interaction capabilities

MASA.Blazor .NET Nuget Nuget

</div>

English| 简体中文

What is MASA Blazor?

Provide a standard basic component library based on Material design specifications and BlazorComponent's interactive capabilities. Provides preset components for standard scenarios such as layout, frame standard, Loading, and global exception handling. Starting from more practical scenarios, to meet the needs of more users and scenarios, and to minimize the time cost of developers. Shorten the development cycle and improve development efficiency. And provide a set of examples of Web solutions - MASA Blazor Pro has a variety of common scenes and preset layouts and other exciting content.

Why choose MASA Blazor?

MASA Blazor is based on the Material design specification, and each component is carefully designed, with modularity, responsiveness and excellent performance. MASA Blazor is regularly maintained and upgraded by a professional full-time technical team, efficient response speed, diversified solutions, long-term support, and enterprise-level support. At present, it has been used in several well-known companies, and the follow-up MASA Stack product series will continue to be used. In addition to ensuring the quality of the project, it can also continue to add new components and functions. In addition to providing developers with many mid- and Taiwan-based open source projects, MASA Stack, one of its most basic components, MASA Blazor, also hopes to be the most practical component library.

Feature

  • Rich components: Contains the basic components of Vuetify 1:1 restoration, as well as many practical preset components and deep integration functions of .Net, including three linkages of Url, breadcrumbs, navigation, advanced search, i18n, etc.
  • UI design language: modern design style, excellent UI multi-end experience design
  • Professional example: MASA Blazor Pro provides preset layouts for a variety of common scenarios
  • Easy to get started: rich and detailed getting started documents, free video tutorials (in production)
  • Active community encouragement: users participate in real-time interaction, make contributions to join us, and build the most open open source community
  • Long-term support: full-time team maintenance, long-term support, and enterprise-level support
  • Choice of well-known companies: This technology framework has been chosen by many well-known companies, and the MASA Stack product line will continue to be used in the future, and new functions will continue to be added

Stats

Alt

Getting started

Development environment setup

Install Template

dotnet new --install Masa.Template

Create Project

  • Blazor Server
dotnet new masabp -o Masa.Test
  • Blazor WebAssembly
dotnet new masabp --mode Wasm -o Masa.TestWasm
  • Blazor RCL
dotnet new masabp --mode ServerAndWasm -o Masa.TestRcl

Go to the Server project directory

cd Masa.Test

Run

dotnet run

Existing project

  • Install Nuget package
dotnet add package Masa.Blazor
  • Add Masa.Blazor related services to Startup.ConfigureServices:
services.AddMasaBlazor();
  • Introduce styles, fonts, scripts in wwwroot/index.html(WebAssembly) or Pages/_Host.cshtml(Server):
<html lang="en">
    <head>
        
        <link href="_content/Masa.Blazor/css/masa-blazor.min.css" rel="stylesheet">
        
        <link href="https://cdn.jsdelivr.net/npm/@("@mdi")/font@5.x/css/materialdesignicons.min.css" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
        <link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
    </head>
    <body>
        
        <script src="_content/BlazorComponent/js/blazor-component.js"></script>
    </body>
</html>
  • Add the namespace to the _Imports.razor file:
@using Masa.Blazor
@using BlazorComponent
  • Modify the Shared/MainLayout.razor file to make MApp the root element:
<MApp>
    //Other layout content
</MApp>

See more :https://blazor.masastack.com/

Local development

Development environment setup

Clone code

git clone --recursive https://github.com/BlazorComponent/MASA.Blazor.git
cd MASA.Blazor
git submodule foreach git checkout main

Run doc server

cd Doc/Masa.Blazor.Doc.Server
dotnet run

Visit

Recommended use chrome or edge to visit http://localhost:5000/

Supported browsers

chromefirefoxedgeieSafarioper

Mobile devices

iosAndriod

Chrome Firefox Safari Microsoft Edge
iOS Supported Supported Supported Supported
Android Supported Supported N/A Supported

Desktop devices

macOSlinuxwindows

Chrome Firefox Safari Opera Microsoft Edge Internet Explorer
Mac Supported Supported Supported Supported N/A N/A
Linux Supported Supported N/A N/A N/A N/A
Windows Supported Supported Not supported Supported Supported Supported, IE11+

Due to WebAssembly restriction, Blazor WebAssembly doesn't support IE browser, but Blazor Server supports IE 11† with additional polyfills. See official documentation

How to contribute

  1. Fork & Clone
  2. Create Feature_xxx branch
  3. Commit with commit message, like feat:add MButton
  4. Create Pull Request

Contributors

Thanks to all the friends who have contributed to this project.

<a href="https://github.com/BlazorComponent/Masa.Blazor/graphs/contributors"> <img src="https://contrib.rocks/image?repo=BlazorComponent/Masa.Blazor" /> </a>

Interactive

QQ group WX public account WX Customer Service
masa.blazor-qq masa.blazor-weixin masa.blazor-weixin

Development team

The Digital Flash technical team is an efficient, stable and innovative team. The team adheres to the original intention of enriching the Blazor ecosystem, and it is the pursuit of the Digital Flash technical team to continue to work hard to bring a better experience to the developers. Thank you for your support and use.

Code of conduct

This project adopts the code of conduct defined in the "Contributors Convention" to clarify the expected behavior of our community. For more information, see MASA Stack Community Code of Conduct.

License

Masa.Blazor

Copyright (c) 2021-present Masa.Blazor

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

Showing the top 5 NuGet packages that depend on Masa.Blazor:

Package Downloads
Masa.Blazor.Doc

Package Description

Masa.Blazor.Doc.CLI

Package Description

Masa.Stack.Components

Package Description

MASA.Blazor.Experimental.Components

Experimental components about MASA.Blazor

CurrencyComponents

Package Description

GitHub repositories (5)

Showing the top 5 popular GitHub repositories that depend on Masa.Blazor:

Repository Stars
masastack/MASA.Blazor
Blazor UI component library based on Material Design. Support Blazor Server, Blazor WebAssembly and MAUI Blazor.
masalabs/MASA.EShop
A sample .NET Core distributed application based on eShopOnDapr, powered by MASA.Framework,Dapr.
239573049/ChatGpt.Desktop
ChatGpt Dekstop support Android,IOS,Mac,Linux,Win,Web
Yu-Core/SwashbucklerDiary
侠客日记是一个开源、跨平台的本地日记app,使用MAUI Blazor 构建。"SwashbucklerDiary" is an open source cross-platform local diary app using MAUI Blazor .
MicroSugarDeveloperOrg/Avalonia.WebView
Version Downloads Last updated
1.4.0-beta.4 27 3/28/2024
1.4.0-beta.3 61 3/18/2024
1.4.0-beta.2 67 3/1/2024
1.4.0-beta.1 129 2/1/2024
1.3.4 1,688 1/26/2024
1.3.3 285 1/25/2024
1.3.2 902 1/9/2024
1.3.1 822 12/29/2023
1.3.0 386 12/28/2023
1.3.0-beta.7 72 12/27/2023
1.3.0-beta.6 234 12/26/2023
1.3.0-beta.5 133 12/22/2023
1.3.0-beta.4 77 12/18/2023
1.3.0-beta.3 164 12/5/2023
1.3.0-beta.2 129 11/29/2023
1.2.2 1,392 11/13/2023
1.2.1 296 11/10/2023
1.2.0 258 11/7/2023
1.1.1 894 10/23/2023
1.1.0 1,056 10/11/2023
1.0.4 2,029 9/7/2023
1.0.3 1,617 8/28/2023
1.0.2 2,816 8/18/2023
1.0.1 2,620 7/27/2023
1.0.0 2,882 7/17/2023
1.0.0-rc.6 493 7/6/2023
1.0.0-rc.5 312 6/29/2023
1.0.0-rc.4 791 6/15/2023
1.0.0-rc.3 410 6/2/2023
1.0.0-rc.2 2,497 5/15/2023
1.0.0-rc.1 1,658 4/27/2023
1.0.0-preview.19 112 4/27/2023
1.0.0-preview.18 325 4/26/2023
1.0.0-preview.17 1,874 4/23/2023
1.0.0-preview.16 325 4/19/2023
1.0.0-preview.15 593 4/14/2023
1.0.0-preview.14 348 4/12/2023
1.0.0-preview.13 207 4/10/2023
1.0.0-preview.12 795 4/3/2023
1.0.0-preview.11 1,042 3/27/2023
1.0.0-preview.10 760 3/22/2023
1.0.0-preview.9 426 3/18/2023
1.0.0-preview.8 804 3/10/2023
1.0.0-preview.7 509 3/3/2023
1.0.0-preview.6 655 2/28/2023
1.0.0-preview.5 139 2/28/2023
1.0.0-preview.4 429 2/21/2023
1.0.0-preview.3 764 2/13/2023
1.0.0-preview.2 1,085 2/3/2023
1.0.0-preview.1 260 1/17/2023
0.7.0-alpha.6179 62 9/18/2023
0.7.0-alpha.6178 61 9/18/2023
0.7.0-alpha.6177 68 9/18/2023
0.7.0-alpha.6119 84 9/13/2023
0.7.0-alpha.6118 73 9/13/2023
0.7.0-alpha.6107 80 9/13/2023
0.7.0-alpha.6096 68 9/12/2023
0.7.0-alpha.6095 72 9/12/2023
0.7.0-alpha.6094 73 9/12/2023
0.7.0-alpha.6041 78 9/8/2023
0.7.0-alpha.6040 74 9/8/2023
0.7.0-alpha.6025 74 9/7/2023
0.7.0-alpha.6021 76 9/7/2023
0.7.0-alpha.6012 64 9/7/2023
0.7.0-alpha.6011 71 9/7/2023
0.7.0-alpha.5956 71 9/4/2023
0.7.0-alpha.5926 69 9/1/2023
0.7.0-alpha.5897 80 8/30/2023
0.7.0-alpha.5872 77 8/29/2023
0.7.0-alpha.5870 78 8/29/2023
0.7.0-alpha.5857 72 8/28/2023
0.7.0-alpha.5847 75 8/28/2023
0.7.0-alpha.5731 74 8/22/2023
0.7.0-alpha.5699 66 8/18/2023
0.7.0-alpha.5682 60 8/18/2023
0.7.0-alpha.5681 60 8/18/2023
0.7.0-alpha.5650 73 8/16/2023
0.7.0-alpha.5644 76 8/15/2023
0.7.0-alpha.5642 72 8/15/2023
0.7.0-alpha.5641 82 8/15/2023
0.7.0-alpha.5620 79 8/14/2023
0.7.0-alpha.5619 80 8/14/2023
0.7.0-alpha.5618 81 8/14/2023
0.7.0-alpha.5617 78 8/14/2023
0.7.0-alpha.5611 80 8/11/2023
0.7.0-alpha.5609 81 8/11/2023
0.7.0-alpha.5608 76 8/11/2023
0.7.0-alpha.5607 84 8/11/2023
0.7.0-alpha.5606 80 8/11/2023
0.7.0-alpha.5581 75 8/9/2023
0.7.0-alpha.5492 84 8/3/2023
0.7.0-alpha.5482 75 8/3/2023
0.7.0-alpha.5435 85 8/1/2023
0.7.0-alpha.5372 64 7/27/2023
0.7.0-alpha.5365 72 7/26/2023
0.7.0-alpha.5363 76 7/26/2023
0.7.0-alpha.5362 78 7/26/2023
0.7.0-alpha.5344 90 7/25/2023
0.7.0-alpha.5321 86 7/24/2023
0.7.0-alpha.5320 90 7/24/2023
0.7.0-alpha.5319 94 7/24/2023
0.7.0-alpha.5292 87 7/20/2023
0.7.0-alpha.5236 88 7/17/2023
0.7.0-alpha.5160 88 7/13/2023
0.7.0-alpha.5142 83 7/12/2023
0.7.0-alpha.5139 88 7/12/2023
0.7.0-alpha.5124 86 7/11/2023
0.7.0-alpha.5070 60 7/7/2023
0.7.0-alpha.5061 81 7/7/2023
0.7.0-alpha.5056 79 7/6/2023
0.7.0-alpha.5049 77 7/6/2023
0.7.0-alpha.5013 77 7/5/2023
0.7.0-alpha.4994 84 7/4/2023
0.7.0-alpha.4992 83 7/4/2023
0.7.0-alpha.4991 81 7/4/2023
0.7.0-alpha.4963 79 7/3/2023
0.7.0-alpha.4962 82 7/3/2023
0.7.0-alpha.4959 88 7/3/2023
0.7.0-alpha.4926 83 6/30/2023
0.7.0-alpha.4919 73 6/30/2023
0.7.0-alpha.4883 71 6/27/2023
0.7.0-alpha.4882 61 6/27/2023
0.7.0-alpha.4881 71 6/27/2023
0.7.0-alpha.4847 72 6/25/2023
0.7.0-alpha.4804 70 6/20/2023
0.7.0-alpha.4802 72 6/20/2023
0.7.0-alpha.4798 73 6/20/2023
0.7.0-alpha.4797 76 6/20/2023
0.7.0-alpha.4796 79 6/20/2023
0.7.0-alpha.4790 66 6/19/2023
0.7.0-alpha.4736 75 6/16/2023
0.7.0-alpha.4709 73 6/15/2023
0.7.0-alpha.4695 70 6/15/2023
0.7.0-alpha.4639 75 6/12/2023
0.7.0-alpha.4569 73 6/9/2023
0.7.0-alpha.4527 85 6/8/2023
0.7.0-alpha.4503 74 6/7/2023
0.7.0-alpha.4502 75 6/7/2023
0.7.0-alpha.4442 70 6/5/2023
0.7.0-alpha.4441 72 6/5/2023
0.7.0-alpha.4391 74 6/1/2023
0.7.0-alpha.4390 71 6/1/2023
0.7.0-alpha.4389 70 6/1/2023
0.7.0-alpha.4366 83 5/31/2023
0.7.0-alpha.4365 74 5/31/2023
0.7.0-alpha.4363 72 5/31/2023
0.7.0-alpha.4332 72 5/29/2023
0.7.0-alpha.4331 73 5/29/2023
0.7.0-alpha.4329 70 5/26/2023
0.7.0-alpha.4310 81 5/26/2023
0.7.0-alpha.4303 68 5/26/2023
0.7.0-alpha.4262 74 5/24/2023
0.7.0-alpha.4261 79 5/24/2023
0.7.0-alpha.4260 75 5/24/2023
0.7.0-alpha.4158 99 5/19/2023
0.7.0-alpha.4156 90 5/19/2023
0.7.0-alpha.4117 91 5/15/2023
0.7.0-alpha.4108 92 5/15/2023
0.7.0-alpha.3987 82 5/5/2023
0.7.0-alpha.3986 78 5/5/2023
0.7.0-alpha.3965 108 5/4/2023
0.7.0-alpha.3932 91 4/28/2023
0.7.0-alpha.3930 84 4/28/2023
0.7.0-alpha.3929 95 4/28/2023
0.7.0-alpha.3923 88 4/28/2023
0.7.0-alpha.3917 92 4/27/2023
0.7.0-alpha.3915 91 4/27/2023
0.7.0-alpha.3914 89 4/27/2023
0.7.0-alpha.3896 95 4/27/2023
0.7.0-alpha.3895 89 4/27/2023
0.7.0-alpha.3889 108 4/27/2023
0.7.0-alpha.3880 98 4/26/2023
0.7.0-alpha.3875 91 4/26/2023
0.7.0-alpha.3869 86 4/26/2023
0.7.0-alpha.3865 91 4/26/2023
0.7.0-alpha.3852 92 4/26/2023
0.7.0-alpha.3850 100 4/26/2023
0.7.0-alpha.3848 100 4/26/2023
0.7.0-alpha.3841 96 4/26/2023
0.7.0-alpha.3830 105 4/25/2023
0.7.0-alpha.3800 104 4/24/2023
0.7.0-alpha.3767 99 4/23/2023
0.7.0-alpha.3766 102 4/23/2023
0.7.0-alpha.3763 105 4/23/2023
0.7.0-alpha.3757 85 4/21/2023
0.7.0-alpha.3756 99 4/21/2023
0.7.0-alpha.3736 106 4/21/2023
0.7.0-alpha.3734 106 4/21/2023
0.7.0-alpha.3723 104 4/20/2023
0.7.0-alpha.3719 112 4/20/2023
0.7.0-alpha.3690 103 4/19/2023
0.7.0-alpha.3682 121 4/19/2023
0.7.0-alpha.3672 95 4/19/2023
0.7.0-alpha.3671 96 4/19/2023
0.7.0-alpha.3668 96 4/19/2023
0.7.0-alpha.3666 111 4/19/2023
0.7.0-alpha.3575 110 4/14/2023
0.7.0-alpha.3574 118 4/14/2023
0.7.0-alpha.3570 111 4/14/2023
0.7.0-alpha.3569 106 4/14/2023
0.7.0-alpha.3558 106 4/14/2023
0.7.0-alpha.3531 115 4/13/2023
0.7.0-alpha.3522 112 4/13/2023
0.7.0-alpha.3477 116 4/12/2023
0.7.0-alpha.3462 111 4/12/2023
0.7.0-alpha.3460 127 4/12/2023
0.7.0-alpha.3434 112 4/12/2023
0.7.0-alpha.3429 105 4/11/2023
0.7.0-alpha.3415 125 4/11/2023
0.7.0-alpha.3398 106 4/10/2023
0.7.0-alpha.3382 111 4/10/2023
0.7.0-alpha.3380 127 4/10/2023
0.7.0-alpha.3379 118 4/10/2023
0.7.0-alpha.3376 128 4/10/2023
0.7.0-alpha.3373 122 4/10/2023
0.7.0-alpha.3372 125 4/10/2023
0.7.0-alpha.3370 123 4/10/2023
0.7.0-alpha.3348 119 4/7/2023
0.7.0-alpha.3339 143 4/7/2023
0.7.0-alpha.3330 104 4/6/2023
0.7.0-alpha.3329 98 4/6/2023
0.7.0-alpha.3317 102 4/6/2023
0.7.0-alpha.3313 124 4/6/2023
0.7.0-alpha.3310 114 4/6/2023
0.7.0-alpha.3308 136 4/6/2023
0.7.0-alpha.3304 124 4/6/2023
0.7.0-alpha.3292 117 4/5/2023
0.7.0-alpha.3281 141 4/4/2023
0.7.0-alpha.3278 108 4/4/2023
0.7.0-alpha.3236 103 4/3/2023
0.7.0-alpha.3235 130 4/3/2023
0.7.0-alpha.3230 115 4/3/2023
0.7.0-alpha.3228 120 4/3/2023
0.7.0-alpha.3227 113 4/3/2023
0.7.0-alpha.3226 138 4/3/2023
0.7.0-alpha.3222 132 4/1/2023
0.7.0-alpha.3219 109 3/31/2023
0.7.0-alpha.3217 132 3/31/2023
0.7.0-alpha.3214 133 3/31/2023
0.7.0-alpha.3207 140 3/31/2023
0.7.0-alpha.3204 145 3/31/2023
0.7.0-alpha.3186 114 3/31/2023
0.7.0-alpha.3164 116 3/30/2023
0.7.0-alpha.3152 106 3/30/2023
0.7.0-alpha.3129 128 3/29/2023
0.7.0-alpha.3127 129 3/29/2023
0.7.0-alpha.3124 130 3/29/2023
0.7.0-alpha.3112 119 3/29/2023
0.7.0-alpha.3074 129 3/28/2023
0.7.0-alpha.3073 130 3/28/2023
0.7.0-alpha.3064 148 3/28/2023
0.7.0-alpha.3062 140 3/28/2023
0.7.0-alpha.3060 138 3/27/2023
0.7.0-alpha.3057 127 3/27/2023
0.7.0-alpha.3055 155 3/27/2023
0.7.0-alpha.3047 147 3/27/2023
0.7.0-alpha.3042 146 3/27/2023
0.7.0-alpha.3041 129 3/27/2023
0.7.0-alpha.3037 126 3/27/2023
0.7.0-alpha.3036 128 3/27/2023
0.7.0-alpha.3034 137 3/27/2023
0.7.0-alpha.3032 132 3/27/2023
0.7.0-alpha.3031 122 3/27/2023
0.7.0-alpha.3004 131 3/24/2023
0.7.0-alpha.2994 136 3/23/2023
0.7.0-alpha.2986 146 3/23/2023
0.7.0-alpha.2978 166 3/23/2023
0.7.0-alpha.2916 131 3/21/2023
0.7.0-alpha.2907 121 3/21/2023
0.7.0-alpha.2871 137 3/20/2023
0.7.0-alpha.2847 164 3/18/2023
0.7.0-alpha.2836 150 3/17/2023
0.7.0-alpha.2801 131 3/17/2023
0.7.0-alpha.2799 118 3/16/2023
0.7.0-alpha.2798 118 3/16/2023
0.7.0-alpha.2797 112 3/16/2023
0.7.0-alpha.2795 109 3/16/2023
0.7.0-alpha.2787 107 3/16/2023
0.7.0-alpha.2769 118 3/16/2023
0.7.0-alpha.2741 122 3/15/2023
0.7.0-alpha.2733 132 3/14/2023
0.7.0-alpha.2712 112 3/14/2023
0.7.0-alpha.2711 108 3/14/2023
0.7.0-alpha.2705 116 3/14/2023
0.7.0-alpha.2699 111 3/13/2023
0.7.0-alpha.2698 108 3/13/2023
0.7.0-alpha.2697 117 3/13/2023
0.7.0-alpha.2695 111 3/13/2023
0.7.0-alpha.2680 111 3/10/2023
0.7.0-alpha.2650 112 3/10/2023
0.7.0-alpha.2648 109 3/10/2023
0.7.0-alpha.2641 109 3/9/2023
0.7.0-alpha.2640 118 3/9/2023
0.7.0-alpha.2635 124 3/9/2023
0.7.0-alpha.2634 120 3/9/2023
0.7.0-alpha.2629 119 3/9/2023
0.7.0-alpha.2617 116 3/8/2023
0.7.0-alpha.2616 114 3/8/2023
0.7.0-alpha.2614 116 3/8/2023
0.7.0-alpha.2602 101 3/7/2023
0.7.0-alpha.2590 102 3/7/2023
0.7.0-alpha.2589 118 3/7/2023
0.7.0-alpha.2588 117 3/7/2023
0.7.0-alpha.2533 125 3/3/2023
0.7.0-alpha.2529 121 3/3/2023
0.7.0-alpha.2528 119 3/3/2023
0.7.0-alpha.2454 123 2/28/2023
0.7.0-alpha.2445 140 2/28/2023
0.7.0-alpha.2439 116 2/28/2023
0.7.0-alpha.2435 116 2/28/2023
0.7.0-alpha.2429 126 2/28/2023
0.7.0-alpha.2390 126 2/26/2023
0.7.0-alpha.2360 126 2/24/2023
0.7.0-alpha.2296 128 2/22/2023
0.7.0-alpha.2205 111 2/16/2023
0.7.0-alpha.2192 113 2/15/2023
0.7.0-alpha.2157 122 2/14/2023
0.7.0-alpha.2149 108 2/14/2023
0.7.0-alpha.2062 122 2/13/2023
0.7.0-alpha.2058 121 2/13/2023
0.7.0-alpha.2025 116 2/10/2023
0.7.0-alpha.2007 113 2/9/2023
0.7.0-alpha.2005 115 2/8/2023
0.7.0-alpha.2002 134 2/8/2023
0.7.0-alpha.2001 123 2/8/2023
0.7.0-alpha.2000 116 2/8/2023
0.7.0-alpha.1999 120 2/8/2023
0.7.0-alpha.1998 122 2/8/2023
0.7.0-alpha.1971 132 2/5/2023
0.7.0-alpha.1964 129 2/3/2023
0.7.0-alpha.1961 134 2/3/2023
0.7.0-alpha.1960 126 2/3/2023
0.7.0-alpha.1958 124 2/3/2023
0.7.0-alpha.1957 118 2/3/2023
0.7.0-alpha.1956 125 2/3/2023
0.7.0-alpha.1954 132 2/3/2023
0.7.0-alpha.1945 142 2/2/2023
0.7.0-alpha.1944 149 2/2/2023
0.7.0-alpha.1911 143 1/30/2023
0.7.0-alpha.1904 139 1/29/2023
0.7.0-alpha.1903 148 1/29/2023
0.7.0-alpha.1902 158 1/29/2023
0.7.0-alpha.1899 142 1/29/2023
0.7.0-alpha.1897 140 1/20/2023
0.7.0-alpha.1893 126 1/17/2023
0.7.0-alpha.1891 130 1/17/2023
0.7.0-alpha.1882 134 1/17/2023
0.7.0-alpha.1879 125 1/17/2023
0.7.0-alpha.1865 176 1/16/2023
0.7.0-alpha.1864 132 1/16/2023
0.7.0-alpha.1860 147 1/16/2023
0.7.0-alpha.1856 193 1/15/2023
0.7.0-alpha.1846 171 1/15/2023
0.7.0-alpha.1844 197 1/15/2023
0.7.0-alpha.1840 149 1/15/2023
0.7.0-alpha.1827 134 1/14/2023
0.7.0-alpha.1826 144 1/14/2023
0.7.0-alpha.1804 411 1/14/2023
0.7.0-alpha.1798 154 1/13/2023
0.7.0-alpha.1797 117 1/13/2023
0.7.0-alpha.1794 208 1/13/2023
0.7.0-alpha.1787 131 1/13/2023
0.7.0-alpha.1777 126 1/13/2023
0.7.0-alpha.1761 237 1/12/2023
0.7.0-alpha.1744 139 1/11/2023
0.7.0-alpha.1733 177 1/11/2023
0.7.0-alpha.1726 316 1/11/2023
0.7.0-alpha.1725 177 1/11/2023
0.7.0-alpha.1717 150 1/11/2023
0.7.0-alpha.1712 174 1/11/2023
0.7.0-alpha.1709 154 1/11/2023
0.7.0-alpha.1699 143 1/11/2023
0.7.0-alpha.1697 147 1/11/2023
0.7.0-alpha.1696 141 1/10/2023
0.7.0-alpha.1661 177 1/10/2023
0.7.0-alpha.1655 148 1/9/2023
0.7.0-alpha.1634 152 1/9/2023
0.7.0-alpha.1632 151 1/9/2023
0.7.0-alpha.1611 186 1/6/2023
0.7.0-alpha.1559 287 1/5/2023
0.7.0-alpha.1549 169 1/4/2023
0.7.0-alpha.1544 166 1/4/2023
0.7.0-alpha.1541 221 1/4/2023
0.7.0-alpha.1513 160 1/3/2023
0.7.0-alpha.1512 167 1/3/2023
0.7.0-alpha.1511 154 1/3/2023
0.7.0-alpha.1500 154 1/3/2023
0.7.0-alpha.1409 1,078 12/27/2022
0.7.0-alpha.1406 128 12/27/2022
0.7.0-alpha.1402 130 12/27/2022
0.7.0-alpha.1400 127 12/26/2022
0.7.0-alpha.1399 125 12/26/2022
0.7.0-alpha.1397 138 12/26/2022
0.7.0-alpha.1154 216 12/14/2022
0.7.0-alpha.1122 133 12/12/2022
0.7.0-alpha.1114 135 12/12/2022
0.7.0-alpha.1096 140 12/8/2022
0.7.0-alpha.1044 280 12/6/2022
0.7.0-alpha.1036 130 12/6/2022
0.7.0-alpha.973 155 12/2/2022
0.7.0-alpha.972 133 12/2/2022
0.7.0-alpha.961 125 12/1/2022
0.7.0-alpha.937 170 11/30/2022
0.7.0-alpha.913 159 11/28/2022
0.7.0-alpha.900 144 11/25/2022
0.7.0-alpha.896 122 11/25/2022
0.7.0-alpha.888 126 11/24/2022
0.7.0-alpha.883 128 11/23/2022
0.7.0-alpha.882 137 11/23/2022
0.7.0-alpha.879 143 11/23/2022
0.7.0-alpha.873 139 11/22/2022
0.7.0-alpha.868 134 11/21/2022
0.7.0-alpha.864 122 11/21/2022
0.7.0-alpha.861 133 11/21/2022
0.7.0-alpha.858 130 11/21/2022
0.7.0-alpha.856 128 11/21/2022
0.7.0-alpha.855 146 11/21/2022
0.7.0-alpha.852 134 11/18/2022
0.7.0-alpha.851 133 11/18/2022
0.7.0-alpha.849 126 11/18/2022
0.7.0-alpha.842 125 11/17/2022
0.7.0-alpha.838 130 11/17/2022
0.7.0-alpha.835 134 11/17/2022
0.7.0-alpha.833 134 11/17/2022
0.7.0-alpha.832 139 11/17/2022
0.7.0-alpha.831 138 11/17/2022
0.7.0-alpha.829 132 11/16/2022
0.7.0-alpha.820 127 11/16/2022
0.7.0-alpha.812 141 11/16/2022
0.7.0-alpha.802 124 11/15/2022
0.7.0-alpha.800 132 11/15/2022
0.7.0-alpha.799 122 11/15/2022
0.7.0-alpha.798 123 11/15/2022
0.6.2 1,300 4/11/2023
0.6.1 127 4/11/2023
0.6.0 4,870 11/3/2022
0.6.0-rc.9 388 10/28/2022
0.6.0-rc.8 374 10/25/2022
0.6.0-rc.7 1,010 10/11/2022
0.6.0-rc.6 339 9/29/2022
0.6.0-rc.4 201 9/23/2022
0.6.0-rc.3 204 9/20/2022
0.6.0-rc.2 297 9/16/2022
0.6.0-preview.6 292 9/8/2022
0.6.0-preview.5 819 8/29/2022
0.6.0-preview.4 346 8/18/2022
0.6.0-preview.3 576 8/8/2022
0.6.0-preview.2 181 8/4/2022
0.6.0-preview.1 198 8/1/2022
0.5.0 4,677 7/29/2022
0.5.0-rc.7 170 7/28/2022
0.5.0-rc.6 382 7/19/2022
0.5.0-rc.5 267 7/13/2022
0.5.0-rc.4 157 7/12/2022
0.5.0-rc.3 180 7/11/2022
0.5.0-rc.2 229 7/8/2022
0.5.0-rc.1 156 7/7/2022
0.5.0-preview.5 386 6/30/2022
0.5.0-preview.4 200 6/27/2022
0.5.0-preview.3 487 6/21/2022
0.5.0-preview.2 267 6/14/2022
0.5.0-preview.1 199 6/10/2022
0.4.0 2,032 5/31/2022
0.4.0-rc.3 343 5/24/2022
0.4.0-rc.2 181 5/19/2022
0.4.0-rc.1 245 5/19/2022
0.4.0-preview.22 209 5/12/2022
0.4.0-preview.21 177 5/12/2022
0.4.0-preview.4 227 5/12/2022
0.4.0-preview.3 152 5/12/2022
0.4.0-preview.2 153 5/11/2022
0.4.0-preview.1 414 4/2/2022
0.3.11407 2,209 4/6/2022
0.3.0 2,934 2/25/2022
0.3.0-rc.28 185 1/25/2022
0.3.0-rc.26 166 1/24/2022
0.3.0-rc.24 175 1/24/2022
0.3.0-rc.23 172 1/24/2022
0.3.0-rc.22 177 1/24/2022
0.3.0-rc.21 187 1/24/2022
0.3.0-rc.20 173 1/23/2022
0.3.0-rc.19 171 1/22/2022
0.3.0-rc.17 161 1/22/2022
0.3.0-rc.16 178 1/21/2022
0.3.0-rc.14 166 1/21/2022
0.3.0-rc.13 171 1/21/2022
0.3.0-rc.12 170 1/21/2022
0.3.0-rc.11 163 1/21/2022
0.3.0-rc.10 175 1/21/2022
0.3.0-rc.9 168 1/20/2022
0.3.0-rc.8 172 1/17/2022
0.3.0-rc.7 164 1/17/2022
0.3.0-rc.6 176 1/14/2022
0.3.0-rc.5 170 1/13/2022
0.3.0-rc.3 173 12/30/2021
0.3.0-rc.2 208 12/28/2021
0.3.0-alpha.795 134 11/15/2022
0.3.0-alpha.793 132 11/15/2022
0.3.0-alpha.551 109 11/2/2022
0.3.0-alpha.550 111 11/2/2022
0.3.0-alpha.505 119 10/31/2022
0.3.0-alpha.481 114 10/31/2022
0.3.0-alpha.467 118 10/28/2022
0.3.0-alpha.456 131 10/27/2022
0.3.0-alpha.420 114 10/26/2022
0.3.0-alpha.415 127 10/25/2022
0.3.0-alpha.410 114 10/25/2022
0.3.0-alpha.407 111 10/25/2022
0.2.15401 880 9/26/2022
0.2.15400 862 9/26/2022
0.2.15352 873 9/23/2022
0.2.15312 876 9/21/2022
0.2.15296 867 9/20/2022
0.2.15295 887 9/20/2022
0.2.15288 885 9/20/2022
0.2.15286 889 9/20/2022
0.2.15281 865 9/20/2022
0.2.15275 880 9/19/2022
0.2.15273 864 9/19/2022
0.2.15257 912 9/19/2022
0.2.15241 889 9/16/2022
0.2.15240 840 9/16/2022
0.2.15237 883 9/16/2022
0.2.15232 907 9/16/2022
0.2.15231 898 9/16/2022
0.2.15230 874 9/16/2022
0.2.15229 870 9/16/2022
0.2.15210 957 9/15/2022
0.2.15196 951 9/14/2022
0.2.15184 858 9/13/2022
0.2.15140 869 9/8/2022
0.2.14958 868 8/30/2022
0.2.14948 918 8/29/2022
0.2.14946 897 8/29/2022
0.2.14940 912 8/29/2022
0.2.14939 906 8/29/2022
0.2.14934 890 8/29/2022
0.2.14837 905 8/19/2022
0.2.14822 904 8/18/2022
0.2.14816 873 8/18/2022
0.2.14805 908 8/18/2022
0.2.14781 892 8/17/2022
0.2.14746 891 8/16/2022
0.2.14734 880 8/16/2022
0.2.14541 906 8/11/2022
0.2.14496 887 8/10/2022
0.2.14421 892 8/8/2022
0.2.14363 903 8/5/2022
0.2.14323 933 8/3/2022
0.2.14262 895 8/3/2022
0.2.14189 918 8/1/2022
0.2.14171 940 8/1/2022
0.2.14169 945 8/1/2022
0.2.14163 938 7/29/2022
0.2.14072 909 7/27/2022
0.2.14007 905 7/22/2022
0.2.13863 944 7/18/2022
0.2.13821 909 7/15/2022
0.2.13819 936 7/15/2022
0.2.13795 947 7/14/2022
0.2.13777 935 7/14/2022
0.2.13776 926 7/14/2022
0.2.13741 905 7/12/2022
0.2.13740 912 7/12/2022
0.2.13724 931 7/11/2022
0.2.13717 942 7/11/2022
0.2.13705 909 7/8/2022
0.2.13703 923 7/8/2022
0.2.13687 955 7/8/2022
0.2.13675 947 7/8/2022
0.2.13672 913 7/7/2022
0.2.13665 906 7/7/2022
0.2.13627 909 7/6/2022
0.2.13626 935 7/6/2022
0.2.13620 924 7/6/2022
0.2.13594 908 7/5/2022
0.2.13593 911 7/5/2022
0.2.13573 933 7/5/2022
0.2.13564 919 7/4/2022
0.2.13561 917 7/4/2022
0.2.13560 945 7/4/2022
0.2.13555 933 7/4/2022
0.2.13549 949 7/4/2022
0.2.13491 933 6/30/2022
0.2.13488 948 6/30/2022
0.2.13487 929 6/30/2022
0.2.13486 909 6/30/2022
0.2.13482 942 6/30/2022
0.2.13481 931 6/30/2022
0.2.13480 927 6/30/2022
0.2.13479 916 6/30/2022
0.2.13476 930 6/30/2022
0.2.13474 916 6/30/2022
0.2.13472 936 6/30/2022
0.2.13471 903 6/30/2022
0.2.13470 948 6/30/2022
0.2.13469 955 6/30/2022
0.2.13461 927 6/30/2022
0.2.13458 926 6/30/2022
0.2.13453 942 6/30/2022
0.2.13449 916 6/29/2022
0.2.13447 948 6/29/2022
0.2.13438 913 6/29/2022
0.2.13417 900 6/29/2022
0.2.13414 923 6/29/2022
0.2.13413 931 6/28/2022
0.2.13404 925 6/28/2022
0.2.13399 940 6/28/2022
0.2.13398 955 6/28/2022
0.2.13387 914 6/27/2022
0.2.13382 941 6/27/2022
0.2.13377 933 6/27/2022
0.2.13356 937 6/24/2022
0.2.13330 965 6/24/2022
0.2.13310 947 6/23/2022
0.2.13294 940 6/23/2022
0.2.13291 946 6/23/2022
0.2.13290 926 6/23/2022
0.2.13286 954 6/23/2022
0.2.13214 931 6/21/2022
0.2.13211 949 6/21/2022
0.2.12942 902 6/14/2022
0.2.12901 921 6/10/2022
0.2.12871 953 6/8/2022
0.2.12848 958 6/7/2022
0.2.12846 939 6/6/2022
0.2.12794 963 6/1/2022
0.2.12793 968 6/1/2022
0.2.12694 958 5/30/2022
0.2.12507 963 5/19/2022
0.2.12495 981 5/18/2022
0.2.12494 963 5/18/2022
0.2.12492 978 5/18/2022
0.2.12478 959 5/18/2022
0.2.12476 937 5/18/2022
0.2.12468 981 5/17/2022
0.2.12453 965 5/17/2022
0.2.12452 941 5/17/2022
0.2.12450 982 5/17/2022
0.2.12437 983 5/17/2022
0.2.12435 972 5/17/2022
0.2.12433 954 5/17/2022
0.2.12431 948 5/17/2022
0.2.12407 962 5/16/2022
0.2.12395 967 5/16/2022
0.2.12340 962 5/13/2022
0.2.12339 975 5/13/2022
0.2.12324 969 5/12/2022
0.2.12323 934 5/12/2022
0.2.12309 954 5/11/2022
0.2.12277 990 5/10/2022
0.2.12265 1,239 5/10/2022
0.2.12261 925 5/10/2022
0.2.12240 1,258 5/9/2022
0.2.12238 972 5/9/2022
0.2.12237 970 5/9/2022
0.2.12228 978 5/9/2022
0.2.12227 954 5/9/2022
0.2.12173 967 5/7/2022
0.2.12129 930 5/6/2022
0.2.12121 1,288 5/6/2022
0.2.12120 949 5/6/2022
0.2.12057 963 4/29/2022
0.2.12051 963 4/28/2022
0.2.12050 1,013 4/28/2022
0.2.12019 967 4/28/2022
0.2.12018 970 4/28/2022
0.2.12017 964 4/28/2022
0.2.12016 1,960 4/28/2022
0.2.12005 2,027 4/27/2022
0.2.11993 2,013 4/27/2022
0.2.11989 1,968 4/27/2022
0.2.11975 1,991 4/27/2022
0.2.11974 2,022 4/27/2022
0.2.11962 2,005 4/26/2022
0.2.11934 1,987 4/26/2022
0.2.11933 1,995 4/26/2022
0.2.11923 1,956 4/25/2022
0.2.11907 1,814 4/25/2022
0.2.11906 1,855 4/25/2022
0.2.11903 1,854 4/25/2022
0.2.11902 1,838 4/25/2022
0.2.11869 1,837 4/24/2022
0.2.11852 1,776 4/22/2022
0.2.11799 1,836 4/21/2022
0.2.11763 1,815 4/19/2022
0.2.11740 1,808 4/19/2022
0.2.11701 1,852 4/18/2022
0.2.11698 1,839 4/18/2022
0.2.11681 1,858 4/16/2022
0.2.11568 1,806 4/14/2022
0.2.11507 1,930 4/12/2022
0.2.11501 1,823 4/12/2022
0.2.11476 1,835 4/11/2022
0.2.11472 1,827 4/10/2022
0.2.11396 1,811 4/6/2022
0.2.11395 1,803 4/6/2022
0.2.11364 1,799 4/2/2022
0.2.11356 1,837 4/1/2022
0.2.11355 1,806 4/1/2022
0.2.11354 1,791 4/1/2022
0.2.11350 1,799 4/1/2022
0.2.11329 1,801 4/1/2022
0.2.11327 1,834 4/1/2022
0.2.11326 1,846 4/1/2022
0.2.11323 1,766 4/1/2022
0.2.11320 1,794 3/31/2022
0.2.11319 1,820 3/31/2022
0.2.11281 1,817 3/31/2022
0.2.11268 1,827 3/30/2022
0.2.11267 1,853 3/30/2022
0.2.11259 1,839 3/30/2022
0.2.11257 1,752 3/30/2022
0.2.11211 1,719 3/29/2022
0.2.11205 1,801 3/29/2022
0.2.11202 1,835 3/29/2022
0.2.11197 1,793 3/28/2022
0.2.11195 1,773 3/28/2022
0.2.11194 1,768 3/28/2022
0.2.11190 1,762 3/28/2022
0.2.11174 1,813 3/28/2022
0.2.11170 1,773 3/28/2022
0.2.11169 1,752 3/28/2022
0.2.11123 1,736 3/23/2022
0.2.11120 1,761 3/23/2022
0.2.11092 1,771 3/23/2022
0.2.11091 1,758 3/23/2022
0.2.11090 1,809 3/23/2022
0.2.11087 1,781 3/23/2022
0.2.11059 1,803 3/22/2022
0.2.11057 1,791 3/22/2022
0.2.10900 1,830 3/7/2022
0.2.10893 1,823 3/7/2022
0.2.10846 1,764 3/3/2022
0.2.10844 1,721 3/3/2022
0.2.10829 1,870 3/3/2022
0.2.10739 1,828 2/28/2022
0.2.10649 6,139 2/24/2022
0.2.10628 1,821 2/23/2022
0.2.10602 1,624 2/23/2022
0.2.10600 1,696 2/23/2022
0.2.10574 1,660 2/23/2022
0.2.10494 1,644 2/22/2022
0.2.10426 1,661 2/18/2022
0.2.10424 1,647 2/18/2022
0.2.10395 1,613 2/17/2022
0.2.10377 1,664 2/16/2022
0.2.10375 1,686 2/16/2022
0.2.10367 1,661 2/16/2022
0.2.10365 1,697 2/16/2022
0.2.10349 1,711 2/15/2022
0.2.10329 1,702 2/15/2022
0.2.10323 1,588 2/14/2022
0.2.10321 1,643 2/14/2022
0.2.10317 1,658 2/14/2022
0.2.10312 1,683 2/14/2022
0.2.10303 1,795 2/14/2022
0.2.10288 1,694 2/11/2022
0.2.10287 1,667 2/11/2022
0.2.10286 1,616 2/11/2022
0.2.10285 1,686 2/11/2022
0.2.10283 1,650 2/11/2022
0.2.10277 1,749 2/9/2022
0.2.10275 1,652 2/9/2022
0.2.10273 1,747 2/9/2022
0.2.10268 1,751 2/9/2022
0.2.10261 1,711 2/9/2022
0.2.10256 1,763 2/9/2022
0.2.10254 1,708 2/9/2022
0.2.10245 1,706 1/31/2022
0.2.10244 1,739 1/31/2022
0.2.10243 1,721 1/31/2022
0.2.10240 1,780 1/25/2022
0.2.10232 1,647 1/24/2022
0.2.10220 1,689 1/24/2022
0.2.10217 4,242 1/24/2022
0.2.10212 1,692 1/24/2022
0.2.10210 1,674 1/24/2022
0.2.10208 1,647 1/24/2022
0.2.10206 1,650 1/24/2022
0.2.10204 1,703 1/24/2022
0.2.10194 1,663 1/22/2022
0.2.10192 1,660 1/22/2022
0.2.10190 1,685 1/22/2022
0.2.10172 1,702 1/22/2022
0.2.10118 1,689 1/21/2022
0.2.10097 1,677 1/20/2022
0.2.10091 1,654 1/20/2022
0.2.10073 1,688 1/19/2022
0.2.10068 1,727 1/19/2022
0.2.10064 1,665 1/19/2022
0.2.10061 1,662 1/19/2022
0.2.10057 1,743 1/19/2022
0.2.10039 1,667 1/19/2022
0.2.10037 1,688 1/19/2022
0.2.10022 1,697 1/18/2022
0.2.10021 1,704 1/18/2022
0.2.10020 1,704 1/18/2022
0.2.10018 1,699 1/18/2022
0.2.10005 1,811 1/18/2022
0.2.10002 1,738 1/18/2022
0.2.9994 1,684 1/18/2022
0.2.9992 1,734 1/18/2022
0.2.9985 1,745 1/18/2022
0.2.9982 1,743 1/18/2022
0.2.9981 1,715 1/17/2022
0.2.9977 1,633 1/17/2022
0.2.9973 1,683 1/17/2022
0.2.9971 1,680 1/17/2022
0.2.9961 1,698 1/17/2022
0.2.9959 1,677 1/17/2022
0.2.9956 1,628 1/17/2022
0.2.9952 1,705 1/17/2022
0.2.9950 1,704 1/17/2022
0.2.9943 1,631 1/17/2022
0.2.9941 1,658 1/17/2022
0.2.9940 1,712 1/17/2022
0.2.9934 1,654 1/17/2022
0.2.9932 1,685 1/17/2022
0.2.9929 1,739 1/17/2022
0.2.9899 1,700 1/14/2022
0.2.9889 1,706 1/13/2022
0.2.9886 1,732 1/13/2022
0.2.9856 1,768 1/13/2022
0.2.9854 1,728 1/13/2022
0.2.9835 1,737 1/12/2022
0.2.9801 1,754 1/11/2022
0.2.9798 1,676 1/11/2022
0.2.9797 1,406 1/10/2022
0.2.9794 1,420 1/10/2022
0.2.9782 1,435 1/10/2022
0.2.9775 1,417 1/10/2022
0.2.9771 1,361 1/10/2022
0.2.9736 1,472 1/7/2022
0.2.9735 1,494 1/7/2022
0.2.9679 1,450 1/6/2022
0.2.9664 1,530 1/6/2022
0.2.9642 1,424 1/5/2022
0.2.9627 1,398 1/5/2022
0.2.9623 1,491 1/5/2022
0.2.9617 1,406 1/5/2022
0.2.9606 1,416 1/4/2022
0.2.9599 1,438 1/4/2022
0.2.9595 1,405 1/4/2022
0.2.9578 1,360 1/4/2022
0.2.9566 1,446 1/4/2022
0.2.9545 1,432 12/31/2021
0.2.9533 1,396 12/31/2021
0.2.9525 1,371 12/31/2021
0.2.9513 1,394 12/31/2021
0.2.9476 1,629 12/30/2021
0.2.9442 1,456 12/29/2021
0.2.9441 1,380 12/29/2021
0.2.9411 1,370 12/29/2021
0.2.9386 1,410 12/29/2021
0.2.9384 1,400 12/29/2021
0.2.9382 1,393 12/29/2021
0.2.9381 1,448 12/29/2021
0.2.9377 1,421 12/28/2021
0.2.9374 1,401 12/28/2021
0.2.9370 1,417 12/28/2021
0.2.9369 1,380 12/28/2021
0.2.9367 1,403 12/28/2021
0.2.9351 1,404 12/28/2021
0.2.9347 1,383 12/28/2021
0.2.9346 1,365 12/28/2021
0.2.9337 1,436 12/28/2021
0.2.9331 1,437 12/28/2021
0.2.9323 1,414 12/27/2021
0.2.9322 1,439 12/27/2021
0.2.9320 1,496 12/27/2021
0.2.9319 1,461 12/27/2021
0.2.9318 1,465 12/27/2021
0.2.9312 1,489 12/27/2021
0.2.9308 1,506 12/27/2021
0.2.9295 1,467 12/27/2021
0.2.9291 1,453 12/27/2021
0.2.9283 1,446 12/27/2021
0.2.9282 1,494 12/27/2021
0.2.9228 1,425 12/24/2021
0.2.9225 1,406 12/23/2021
0.2.9221 1,435 12/23/2021
0.2.9217 1,500 12/23/2021
0.2.9216 1,420 12/23/2021
0.2.9202 1,448 12/23/2021
0.2.9198 1,423 12/23/2021
0.2.9197 1,408 12/23/2021
0.2.9187 1,480 12/23/2021
0.2.9182 1,399 12/22/2021
0.2.9180 1,384 12/22/2021
0.2.9163 1,468 12/22/2021
0.2.9155 1,421 12/22/2021
0.2.9154 1,409 12/22/2021
0.2.9140 1,448 12/21/2021
0.2.9116 1,421 12/21/2021
0.2.9098 1,443 12/20/2021
0.2.9095 1,460 12/17/2021
0.2.9094 1,435 12/17/2021
0.2.9086 1,343 12/17/2021
0.2.9083 1,380 12/17/2021
0.2.9079 1,404 12/17/2021
0.2.9075 1,401 12/17/2021
0.2.9061 1,444 12/16/2021
0.2.9049 1,369 12/16/2021
0.2.9046 1,412 12/16/2021
0.2.9036 1,469 12/15/2021
0.2.9035 1,419 12/15/2021
0.2.9034 1,403 12/15/2021
0.2.9016 1,422 12/14/2021
0.2.9009 1,411 12/14/2021
0.2.9006 1,446 12/14/2021
0.2.8987 1,502 12/13/2021
0.2.8984 1,452 12/13/2021
0.2.8980 1,687 12/13/2021
0.2.8977 1,499 12/12/2021
0.2.8965 1,500 12/10/2021
0.2.8964 1,430 12/10/2021
0.2.8963 1,151 12/10/2021
0.2.8962 1,472 12/10/2021
0.2.8961 1,408 12/10/2021
0.2.8960 1,466 12/10/2021
0.2.8959 1,485 12/10/2021
0.2.8958 1,420 12/10/2021
0.2.8952 1,452 12/10/2021
0.2.8864 1,471 12/9/2021
0.2.8809 1,497 12/7/2021
0.2.8768 1,430 12/7/2021
0.2.8764 1,469 12/7/2021
0.2.8762 1,453 12/7/2021
0.2.8760 1,422 12/7/2021
0.2.8759 1,456 12/7/2021
0.2.8633 1,868 12/3/2021
0.2.8603 1,410 12/3/2021
0.2.8567 1,380 12/2/2021
0.2.8566 1,451 12/2/2021
0.2.8553 1,420 12/2/2021
0.2.8542 1,452 12/2/2021
0.2.8538 1,405 12/2/2021
0.2.8495 1,412 12/1/2021
0.2.8494 1,432 12/1/2021
0.2.8470 1,492 12/1/2021
0.2.8390 1,140 11/30/2021
0.2.8383 1,155 11/30/2021
0.2.8187 2,372 11/26/2021
0.2.8146 3,452 11/26/2021
0.2.8145 2,497 11/26/2021
0.2.8139 2,717 11/25/2021
0.2.8120 3,933 11/25/2021
0.2.8118 5,293 11/24/2021
0.2.8096 4,986 11/24/2021
0.2.8078 247 11/23/2021
0.2.8071 230 11/23/2021
0.2.8069 248 11/23/2021
0.2.8065 242 11/23/2021
0.2.8046 255 11/23/2021
0.2.8044 233 11/23/2021
0.2.8036 267 11/22/2021
0.2.8033 240 11/22/2021
0.2.8032 238 11/22/2021
0.2.8031 245 11/22/2021
0.2.8029 252 11/22/2021
0.2.8028 233 11/22/2021
0.2.8024 235 11/22/2021
0.2.8022 247 11/22/2021
0.2.8020 245 11/22/2021
0.2.8019 252 11/22/2021
0.2.8018 269 11/22/2021
0.2.8017 303 11/22/2021
0.2.8016 347 11/22/2021
0.2.8015 360 11/22/2021
0.2.8012 387 11/22/2021
0.2.8006 276 11/19/2021
0.2.8004 281 11/19/2021
0.2.8002 265 11/19/2021
0.2.7996 309 11/19/2021
0.2.7992 318 11/19/2021
0.2.7990 251 11/19/2021
0.2.7988 295 11/19/2021
0.2.7974 298 11/19/2021
0.2.7972 250 11/19/2021
0.2.7968 274 11/18/2021
0.2.7937 309 11/18/2021
0.2.7933 251 11/18/2021
0.2.7931 262 11/18/2021
0.2.7923 273 11/17/2021
0.2.7915 281 11/17/2021
0.2.7912 257 11/17/2021
0.2.7901 296 11/17/2021
0.2.7882 288 11/16/2021
0.2.7876 273 11/16/2021
0.2.7869 310 11/16/2021
0.2.7861 278 11/15/2021
0.2.7853 264 11/15/2021
0.2.7843 284 11/15/2021
0.2.7821 263 11/12/2021
0.2.7811 274 11/12/2021
0.2.7808 280 11/12/2021
0.2.7803 256 11/12/2021
0.2.7802 261 11/12/2021
0.2.7801 260 11/12/2021
0.2.7800 265 11/12/2021
0.2.7789 253 11/11/2021
0.2.7751 227 11/9/2021
0.2.7730 251 11/9/2021
0.2.7727 256 11/9/2021
0.2.7689 201 11/8/2021
0.2.7667 260 11/5/2021
0.2.7641 256 11/4/2021
0.2.7625 218 11/3/2021
0.2.7583 238 11/2/2021
0.2.7580 200 11/1/2021
0.2.7541 232 10/29/2021
0.2.7415 256 10/25/2021
0.2.7399 210 10/22/2021
0.2.7394 225 10/22/2021
0.2.7391 264 10/22/2021
0.2.7369 243 10/20/2021
0.2.7339 234 10/20/2021
0.2.7336 234 10/20/2021
0.2.7332 212 10/20/2021
0.2.7319 210 10/19/2021
0.2.7317 219 10/19/2021
0.2.7316 211 10/19/2021
0.2.7307 203 10/19/2021
0.2.7304 192 10/19/2021
0.2.7302 201 10/18/2021
0.2.7292 241 10/18/2021
0.2.7219 219 10/12/2021
0.2.7197 234 10/11/2021
0.2.7194 237 10/11/2021
0.2.7192 287 10/11/2021
0.2.7183 239 10/9/2021
0.2.7161 245 10/9/2021
0.2.7158 259 10/9/2021
0.2.7157 275 10/9/2021
0.2.7149 237 10/8/2021
0.2.7134 200 10/8/2021
0.2.7121 200 9/30/2021
0.2.7110 218 9/30/2021
0.2.7054 250 9/28/2021
0.2.6901 218 9/26/2021
0.2.6894 221 9/26/2021
0.2.6887 241 9/26/2021
0.2.6884 280 9/26/2021
0.2.6883 302 9/26/2021
0.2.6847 226 9/22/2021
0.2.6662 218 9/18/2021
0.2.6661 220 9/18/2021
0.2.6577 218 9/17/2021
0.2.6573 225 9/17/2021
0.2.6572 228 9/17/2021
0.2.6561 8,831 9/16/2021
0.2.6552 226 9/17/2021
0.2.6547 207 9/17/2021
0.2.6544 211 9/17/2021
0.2.5758 227 9/6/2021
0.2.5757 201 9/6/2021
0.2.5756 203 9/6/2021
0.2.5410 440 8/26/2021
0.2.5408 420 8/26/2021
0.2.5395 209 8/26/2021
0.2.5394 208 8/26/2021
0.2.5393 207 8/25/2021
0.2.5117 274 8/21/2021
0.2.5116 206 8/21/2021
0.2.5115 196 8/21/2021
0.2.4935 1,498 8/18/2021
0.2.4635 240 8/12/2021
0.2.4574 225 8/12/2021
0.2.4523 254 8/11/2021
0.2.4517 224 8/11/2021
0.2.4505 203 8/11/2021
0.2.4503 200 8/11/2021
0.2.4489 213 8/11/2021
0.2.4482 206 8/11/2021
0.2.4476 209 8/11/2021
0.2.4475 214 8/11/2021
0.2.4458 1,611 8/10/2021
0.2.4447 215 8/10/2021
0.2.4426 238 8/10/2021
0.2.4425 229 8/10/2021
0.2.4424 228 8/10/2021
0.2.4312 244 8/9/2021
0.2.4275 232 8/6/2021
0.2.4271 231 8/6/2021
0.2.4259 266 8/6/2021
0.2.4253 262 8/6/2021
0.2.4201 237 8/5/2021
0.2.4161 239 8/5/2021
0.2.4158 245 8/5/2021
0.2.4151 228 8/5/2021
0.2.4064 249 8/3/2021
0.2.4023 220 8/2/2021
0.2.4009 211 8/2/2021
0.2.4008 213 8/2/2021
0.2.4004 213 8/2/2021
0.2.3964 6,578 8/2/2021
0.2.3958 221 8/2/2021
0.2.3954 224 8/2/2021
0.2.3885 304 7/31/2021
0.2.3880 241 7/31/2021
0.2.3850 288 7/31/2021
0.2.3838 321 7/31/2021
0.2.3832 325 7/31/2021
0.2.3829 331 7/31/2021
0.2.3782 250 7/30/2021
0.2.3768 256 7/30/2021
0.2.3760 259 7/30/2021
0.2.3752 229 7/30/2021
0.2.3750 234 7/29/2021
0.2.3734 234 7/29/2021
0.2.3717 414 7/29/2021
0.2.3716 234 7/29/2021
0.2.3710 237 7/29/2021
0.2.397 802 10/25/2022
0.2.396 791 10/24/2022
0.2.395 782 10/24/2022
0.2.392 796 10/24/2022
0.2.385 786 10/21/2022
0.2.373 808 10/21/2022
0.2.368 846 10/20/2022
0.2.357 818 10/20/2022
0.2.345 828 10/19/2022
0.2.317 801 10/18/2022
0.2.316 820 10/18/2022
0.2.315 832 10/18/2022
0.2.313 805 10/18/2022
0.2.312 823 10/18/2022
0.2.311 811 10/18/2022
0.2.299 802 10/17/2022
0.2.297 838 10/17/2022
0.2.296 850 10/17/2022
0.2.295 815 10/17/2022
0.2.288 806 10/17/2022
0.2.259 851 10/13/2022
0.2.258 874 10/13/2022
0.2.194 849 10/11/2022
0.2.175 137 10/11/2022
0.2.173 839 10/10/2022
0.2.169 848 10/10/2022
0.2.155 899 10/10/2022
0.2.60 1,734 3/22/2022
0.2.59 1,789 3/22/2022
0.2.58 1,699 3/22/2022
0.2.57 1,739 3/21/2022
0.2.56 1,827 3/18/2022
0.2.55 1,778 3/18/2022
0.2.53 1,763 3/18/2022
0.2.52 1,800 3/18/2022
0.2.50 1,795 3/18/2022
0.2.49 1,743 3/17/2022
0.2.48 1,767 3/17/2022
0.2.47 1,808 3/17/2022
0.2.44 1,841 3/17/2022
0.2.43 1,748 3/16/2022
0.2.42 1,752 3/16/2022
0.2.41 1,780 3/11/2022
0.2.40 1,126 3/11/2022
0.2.39 1,107 3/10/2022
0.2.38 1,814 3/10/2022
0.2.37 1,103 3/10/2022
0.2.36 1,122 3/9/2022
0.2.35 1,132 3/9/2022
0.2.31 1,173 3/9/2022
0.2.30 1,106 3/8/2022
0.2.29 1,834 3/8/2022
0.2.27 1,809 3/8/2022
0.2.25 1,750 3/8/2022
0.2.20 1,734 3/7/2022
0.2.17 1,809 3/7/2022
0.2.14 1,770 3/3/2022
0.2.11 1,677 2/16/2022
0.2.10 1,661 2/12/2022
0.2.7 1,768 2/16/2022
0.2.3 1,719 2/14/2022
0.2.1 1,660 2/12/2022
0.1.0.3681 279 7/29/2021
0.1.0.3642 302 7/28/2021
0.1.0.3513 239 7/26/2021
0.1.0.3323 261 7/21/2021
0.1.0.3246 595 7/20/2021
0.1.0.3169 219 7/19/2021
0.1.0.3037 242 7/16/2021
0.1.0.3036 249 7/16/2021
0.1.0.3035 285 7/16/2021
0.1.0.3034 281 7/16/2021
0.1.0.3030 210 7/16/2021
0.1.0.2852 238 7/9/2021
0.1.0.2849 232 7/9/2021
0.1.0.345 410 7/9/2021