HomagGroup.HomagConnect.MmrMobile.Client 1.2.2-alpha.0.2

Prefix Reserved
This is a prerelease version of HomagGroup.HomagConnect.MmrMobile.Client.
There is a newer version of this package available.
See the version list below for details.
dotnet add package HomagGroup.HomagConnect.MmrMobile.Client --version 1.2.2-alpha.0.2
                    
NuGet\Install-Package HomagGroup.HomagConnect.MmrMobile.Client -Version 1.2.2-alpha.0.2
                    
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="HomagGroup.HomagConnect.MmrMobile.Client" Version="1.2.2-alpha.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HomagGroup.HomagConnect.MmrMobile.Client" Version="1.2.2-alpha.0.2" />
                    
Directory.Packages.props
<PackageReference Include="HomagGroup.HomagConnect.MmrMobile.Client" />
                    
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 HomagGroup.HomagConnect.MmrMobile.Client --version 1.2.2-alpha.0.2
                    
#r "nuget: HomagGroup.HomagConnect.MmrMobile.Client, 1.2.2-alpha.0.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=HomagGroup.HomagConnect.MmrMobile.Client&version=1.2.2-alpha.0.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=HomagGroup.HomagConnect.MmrMobile.Client&version=1.2.2-alpha.0.2&prerelease
                    
Install as a Cake Tool

<span style="color:red">[This is preliminary documentation and is subject to change.] </span>

HOMAG MMR Mobile Client

HOMAG Connect MMR Mobile gives you direct access to your machine data (counters, states) from MMR Mobile. You can then conveniently integrate this into your applications. To help you get started, we have prepared a few examples that you can find below.

Version history

Version Date Comment
1.0.0 07.09.2023 First Draft
1.1.0 27.10.2023 Add granularity for getting the data and updating the technical documentation

Content table

  1. TL;DR
  2. Homag Connect MMR Mobile interface overview
  3. Details

Authorization

TL;DR

mkdir test-homag-connect-mmr-client
dotnet new console
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
dotnet add package HomagGroup.HomagConnect.MmrMobile.Client
using System.Net.Http.Headers;
using System.Text;

using HomagConnect.MmrMobile.Client.Services;

Console.WriteLine("Hello at the HOMAG MMR Mobile Client");

var client = new HttpClient();
client.BaseAddress = new Uri("https://connect.homag.cloud");
Console.WriteLine("Please insert your subscription Id:");
var subscriptionId = Console.ReadLine();
Console.WriteLine("Please insert your token:");
var token = Console.ReadLine();
var credentials = Convert.ToBase64String(Encoding.UTF8.GetBytes($"{subscriptionId}:{token}"));
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", credentials);
var states = await mmrMobileService.GetStateData();
var counters = await mmrMobileService.GetCounterData();
Console.WriteLine($"You got {states.Count()} states and {counters.Count()} counter for the last 14 days")
dotnet run

Homag Connect MMR Mobile interface overview

Name Method API Usage
GetStateData GET api/mmr/<br/>states?from={from}&to={to}<br/>&machineNumber={machineNumber}<br/>&instanceId={instanceId}<br/>&machineType={machineType}<br/>&stateId={stateId}<br/>&detailedStateId={detailedStateId}<br/>&granularity={granularity} Returns all state data for the asked time window (default: 14 days) for all machines assigned to the subscription, if not asked specifically.
GetCounterData GET api/mmr/<br/>counter?from={from}&to={to}<br/>&machineNumber={machineNumber}<br/>&instanceId={instanceId}<br/>&machineType={machineType}<br/>&counterId={counterId}<br/>&granularity={granularity} Returns all counter data for the asked time window (default: 14 days) for all machines assigned to the subscription, if not asked specifically.

Details

Rate Limiting

As mentioned in the base documentation, each application has a different rate limitation. For the following endpoints this limit is currently set to 6 requests in a minute.

GetStateData

Input
Parameter Type Description
from (Optional) DateTime DateTime that the search should start from
to (Optional) DateTime DateTime that the search should end
machineNumber (Optional) string Number of the machine (Format: x-xxx-xx-xxxx)
instanceId (Optional) string The id of the instance
machineType (Optional) string Type of machine
stateId (Optional) string Id of the state
detailedStateId (Optional) string Id of the detailed state
granularity (Optional) string Specifies granualrity of the returned data (hour, day, week, month). Default will be like the following: 1 day: hourly, 2-14 days: daily, 15 days - 3 months: weekly, every timespan requested bigger than 3 months: monthly if not asked specifically. The hourly data is only available for the last 14 days.
Output
Property Type Description
Machine Number string Number of the machine
Machine Name string Name of the machine
Machine Type string Type of machine
Timestamp DateTime Day when the data was gathered
Granularity string Granularity of the requested data
Duration [h] double Time that the machine spent in the state in hours
Instance Id string Id of the instance
Detailed State Id string Id of the detailed state
Detailed State string Detailed state translated into the requested language
State Id string Id of the state
State string State translated into the requested language
Example

Request

GET /api/mmr/states
api-version: 2023-09-05
Accept-Language: de-DE
Authorization: Basic NjU1MDFEMDktMkJCOS00M0MyLUI5RDMtMUZCMDAwNkE3NjlFOnNkMDlzaGR1Z985OGffc2ZkZ3pz32Y5ZGhzYWZkaHNmZN92ODlwYmZkOXZiaGFmZGd2
tracestate: someinternaltracedata

Response (200 OK)

Content-Type: application/json; charset=utf-8
[
    {
        "Machine Number": "0-242-92-1234",
        "Machine Name": "Some Machine | 0-242-92-1234",
        "Machine Type": "CNC",
        "Timestamp": "2022-09-27T00:00:00",
        "Granularity": "day",
        "Duration [h]": 4.348055555555556,
        "Instance Id": "M1-C1",
        "Detailed State Id": "S_OMU_MODE1",
        "Detailed State": "Hauptnutzung Tisch links",
        "State Id": "s_mainusage",
        "State": "Hauptnutzung"
    }
]

The default route with no timespan added will always return related data for the last 14 days.

GetCounterData

Input
Parameter Type Description
from (Optional) DateTime DateTime that the search should start from
to (Optional) DateTime DateTime that the search should end
machineNumber (Optional) string Number of the machine (Format: x-xxx-xx-xxxx)
instanceId (Optional) string The id of the instance
machineType (Optional) string Type of machine
counterId (Optional) string Id of the counter
granularity (Optional) string Specifies granualrity of the returned data (hour, day, week, month). Default will be like the following: 1 day: hourly, 2-14 days: daily, 15 days - 3 months: weekly, every timespan requested bigger than 3 months: monthly if not asked specifically. The hourly data is only available for the last 14 days.
Output
Property Type Description
Machine Number string Number of the machine
Machine Name string Name of the machine
Machine Type string Type of machine
Timestamp DateTime Day when the data was gathered
Granularity string Granularity of the requested data
Value double Output value
Instance Id string Id of the instance
Counter Id string Id of the counter
Counter string Counter translated into the requested language
Example

Request

GET /api/mmr/counters
api-version: 2023-09-05
Accept-Language: de-DE
Authorization: Basic NjU1MDFEMDktMkJCOS00M0MyLUI5RDMtMUZCMDAwNkE3NjlFOnNkMDlzaGR1Z985OGffc2ZkZ3pz32Y5ZGhzYWZkaHNmZN92ODlwYmZkOXZiaGFmZGd2
tracestate: someinternaltracedata

Response (200 OK)

Content-Type: application/json; charset=utf-8
[
    {
        "Machine Number": "0-242-92-1234",
        "Machine Name": "Some Machine | 0-242-92-1234",
        "Machine Type": "CNC",
        "Timestamp": "2022-09-05T05:00:00",
        "Granularity": "hour",
        "Value": 62.0,
        "Instance Id": "M1-C1",
        "Counter Id": "S_OUT_CyclesAll",
        "Counter": "Ausbringung Zyklen"
    }
]

The default route with no timespan added will always return related data for the last 14 days.

Contribute

If you find anything, feel free to contribute to this repository. We are happy for every improvement ❤️.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 is compatible.  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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.1-alpha.0.46 8 7/2/2025
2.0.1-alpha.0.45 9 7/2/2025
2.0.1-alpha.0.44 9 7/2/2025
2.0.1-alpha.0.38 99 6/25/2025
2.0.1-alpha.0.37 103 6/24/2025
2.0.1-alpha.0.36 104 6/24/2025
2.0.1-alpha.0.35 106 6/18/2025
2.0.1-alpha.0.33 104 6/17/2025
2.0.1-alpha.0.32 103 6/17/2025
2.0.1-alpha.0.31 110 6/17/2025
2.0.1-alpha.0.30 252 6/11/2025
2.0.1-alpha.0.29 256 6/11/2025
2.0.1-alpha.0.27 112 6/5/2025
2.0.1-alpha.0.26 111 6/5/2025
2.0.1-alpha.0.25 109 6/4/2025
2.0.1-alpha.0.24 114 6/4/2025
2.0.1-alpha.0.23 110 6/3/2025
2.0.1-alpha.0.22 108 6/3/2025
2.0.1-alpha.0.21 113 6/2/2025
2.0.1-alpha.0.18 86 5/30/2025
2.0.1-alpha.0.17 110 5/29/2025
2.0.1-alpha.0.16 110 5/27/2025
2.0.1-alpha.0.15 90 5/23/2025
2.0.1-alpha.0.14 107 5/21/2025
2.0.1-alpha.0.13 108 5/21/2025
2.0.1-alpha.0.12 112 5/21/2025
2.0.1-alpha.0.11 197 5/13/2025
2.0.1-alpha.0.10 194 5/13/2025
2.0.1-alpha.0.9 186 5/12/2025
2.0.1-alpha.0.8 185 5/12/2025
2.0.1-alpha.0.6 77 5/2/2025
2.0.1-alpha.0.5 74 5/2/2025
2.0.1-alpha.0.4 121 4/29/2025
2.0.1-alpha.0.3 125 4/29/2025
2.0.1-alpha.0.2 123 4/28/2025
2.0.1-alpha.0.1 118 4/28/2025
2.0.0 150 4/28/2025
1.2.3-alpha.0.286 100 4/25/2025
1.2.3-alpha.0.285 129 4/24/2025
1.2.3-alpha.0.284 130 4/24/2025
1.2.3-alpha.0.283 125 4/23/2025
1.2.3-alpha.0.282 126 4/23/2025
1.2.3-alpha.0.281 130 4/23/2025
1.2.3-alpha.0.280 146 4/17/2025
1.2.3-alpha.0.279 153 4/17/2025
1.2.3-alpha.0.277 148 4/16/2025
1.2.3-alpha.0.276 143 4/16/2025
1.2.3-alpha.0.275 192 4/16/2025
1.2.3-alpha.0.274 156 4/16/2025
1.2.3-alpha.0.273 161 4/14/2025
1.2.3-alpha.0.272 130 4/10/2025
1.2.3-alpha.0.271 132 4/10/2025
1.2.3-alpha.0.270 129 4/9/2025
1.2.3-alpha.0.268 127 4/8/2025
1.2.3-alpha.0.267 133 4/7/2025
1.2.3-alpha.0.266 89 4/4/2025
1.2.3-alpha.0.265 95 4/4/2025
1.2.3-alpha.0.264 97 4/4/2025
1.2.3-alpha.0.263 106 4/4/2025
1.2.3-alpha.0.262 128 4/3/2025
1.2.3-alpha.0.261 123 4/3/2025
1.2.3-alpha.0.260 118 4/2/2025
1.2.3-alpha.0.259 122 4/1/2025
1.2.3-alpha.0.258 122 3/31/2025
1.2.3-alpha.0.257 123 3/31/2025
1.2.3-alpha.0.256 122 3/31/2025
1.2.3-alpha.0.255 98 3/28/2025
1.2.3-alpha.0.254 98 3/27/2025
1.2.3-alpha.0.253 102 3/27/2025
1.2.3-alpha.0.252 102 3/27/2025
1.2.3-alpha.0.251 437 3/26/2025
1.2.3-alpha.0.250 447 3/25/2025
1.2.3-alpha.0.249 132 3/20/2025
1.2.3-alpha.0.248 118 3/20/2025
1.2.3-alpha.0.247 118 3/20/2025
1.2.3-alpha.0.245 121 3/19/2025
1.2.3-alpha.0.244 121 3/19/2025
1.2.3-alpha.0.243 113 3/18/2025
1.2.3-alpha.0.240 87 3/14/2025
1.2.3-alpha.0.239 95 3/14/2025
1.2.3-alpha.0.238 117 3/13/2025
1.2.3-alpha.0.237 118 3/13/2025
1.2.3-alpha.0.235 131 3/11/2025
1.2.3-alpha.0.234 138 3/10/2025
1.2.3-alpha.0.231 172 3/6/2025
1.2.3-alpha.0.229 173 3/6/2025
1.2.3-alpha.0.228 180 3/4/2025
1.2.3-alpha.0.227 168 3/4/2025
1.2.3-alpha.0.226 106 3/3/2025
1.2.3-alpha.0.225 70 2/28/2025
1.2.3-alpha.0.224 61 2/28/2025
1.2.3-alpha.0.223 61 2/27/2025
1.2.3-alpha.0.222 60 2/27/2025
1.2.3-alpha.0.221 65 2/27/2025
1.2.3-alpha.0.220 63 2/27/2025
1.2.3-alpha.0.219 61 2/26/2025
1.2.3-alpha.0.218 63 2/25/2025
1.2.3-alpha.0.217 62 2/24/2025
1.2.3-alpha.0.216 66 2/21/2025
1.2.3-alpha.0.215 61 2/21/2025
1.2.3-alpha.0.214 64 2/21/2025
1.2.3-alpha.0.213 63 2/21/2025
1.2.3-alpha.0.209 66 2/19/2025
1.2.3-alpha.0.208 73 2/17/2025
1.2.3-alpha.0.207 66 2/14/2025
1.2.3-alpha.0.206 75 2/13/2025
1.2.3-alpha.0.205 63 2/12/2025
1.2.3-alpha.0.204 71 2/12/2025
1.2.3-alpha.0.203 66 2/10/2025
1.2.3-alpha.0.202 75 2/10/2025
1.2.3-alpha.0.201 69 2/10/2025
1.2.3-alpha.0.200 76 2/10/2025
1.2.3-alpha.0.199 67 2/7/2025
1.2.3-alpha.0.198 74 2/5/2025
1.2.3-alpha.0.197 61 2/4/2025
1.2.3-alpha.0.196 64 2/4/2025
1.2.3-alpha.0.195 68 2/4/2025
1.2.3-alpha.0.194 65 2/4/2025
1.2.3-alpha.0.193 76 2/3/2025
1.2.3-alpha.0.192 65 2/3/2025
1.2.3-alpha.0.191 64 2/3/2025
1.2.3-alpha.0.190 63 2/3/2025
1.2.3-alpha.0.189 57 1/27/2025
1.2.3-alpha.0.188 50 1/24/2025
1.2.3-alpha.0.187 38 1/9/2025
1.2.3-alpha.0.186 52 1/8/2025
1.2.3-alpha.0.185 54 1/8/2025
1.2.3-alpha.0.184 58 1/7/2025
1.2.3-alpha.0.183 64 12/20/2024
1.2.3-alpha.0.182 60 12/20/2024
1.2.3-alpha.0.181 63 12/19/2024
1.2.3-alpha.0.179 62 12/19/2024
1.2.3-alpha.0.178 56 12/18/2024
1.2.3-alpha.0.177 96 12/13/2024
1.2.3-alpha.0.176 73 12/12/2024
1.2.3-alpha.0.175 68 12/9/2024
1.2.3-alpha.0.174 62 12/9/2024
1.2.3-alpha.0.173 65 12/5/2024
1.2.3-alpha.0.172 59 12/3/2024
1.2.3-alpha.0.171 64 11/22/2024
1.2.3-alpha.0.170 58 11/22/2024
1.2.3-alpha.0.169 64 11/21/2024
1.2.3-alpha.0.168 61 11/19/2024
1.2.3-alpha.0.167 74 11/11/2024
1.2.3-alpha.0.166 71 11/11/2024
1.2.3-alpha.0.164 63 11/5/2024
1.2.3-alpha.0.163 60 10/25/2024
1.2.3-alpha.0.161 60 10/22/2024
1.2.3-alpha.0.160 52 10/22/2024
1.2.3-alpha.0.159 111 10/18/2024
1.2.3-alpha.0.156 66 10/17/2024
1.2.3-alpha.0.155 62 10/16/2024
1.2.3-alpha.0.154 62 10/11/2024
1.2.3-alpha.0.153 67 10/10/2024
1.2.3-alpha.0.151 64 10/9/2024
1.2.3-alpha.0.150 76 9/27/2024
1.2.3-alpha.0.148 71 9/26/2024
1.2.3-alpha.0.147 63 9/25/2024
1.2.3-alpha.0.146 61 9/25/2024
1.2.3-alpha.0.144 64 9/23/2024
1.2.3-alpha.0.143 68 9/20/2024
1.2.3-alpha.0.142 59 9/20/2024
1.2.3-alpha.0.141 65 9/19/2024
1.2.3-alpha.0.140 67 9/19/2024
1.2.3-alpha.0.139 69 9/18/2024
1.2.3-alpha.0.138 58 9/18/2024
1.2.3-alpha.0.137 66 9/18/2024
1.2.3-alpha.0.136 67 9/18/2024
1.2.3-alpha.0.135 68 9/18/2024
1.2.3-alpha.0.134 77 9/16/2024
1.2.3-alpha.0.133 71 9/13/2024
1.2.3-alpha.0.132 68 9/12/2024
1.2.3-alpha.0.131 61 9/12/2024
1.2.3-alpha.0.130 70 9/9/2024
1.2.3-alpha.0.128 66 9/6/2024
1.2.3-alpha.0.127 66 9/6/2024
1.2.3-alpha.0.126 68 9/5/2024
1.2.3-alpha.0.125 68 9/4/2024
1.2.3-alpha.0.124 68 8/30/2024
1.2.3-alpha.0.123 61 8/30/2024
1.2.3-alpha.0.122 69 8/30/2024
1.2.3-alpha.0.121 64 8/30/2024
1.2.3-alpha.0.120 64 8/29/2024
1.2.3-alpha.0.119 62 8/27/2024
1.2.3-alpha.0.118 82 8/23/2024
1.2.3-alpha.0.117 80 8/23/2024
1.2.3-alpha.0.115 94 8/20/2024
1.2.3-alpha.0.114 90 8/16/2024
1.2.3-alpha.0.111 50 8/6/2024
1.2.3-alpha.0.110 50 8/5/2024
1.2.3-alpha.0.109 61 8/2/2024
1.2.3-alpha.0.108 62 8/2/2024
1.2.3-alpha.0.107 51 7/31/2024
1.2.3-alpha.0.106 70 7/30/2024
1.2.3-alpha.0.105 51 7/30/2024
1.2.3-alpha.0.104 56 7/30/2024
1.2.3-alpha.0.103 52 7/30/2024
1.2.3-alpha.0.102 65 7/29/2024
1.2.3-alpha.0.101 72 7/26/2024
1.2.3-alpha.0.100 58 7/25/2024
1.2.3-alpha.0.99 69 7/25/2024
1.2.3-alpha.0.98 73 7/25/2024
1.2.3-alpha.0.97 70 7/25/2024
1.2.3-alpha.0.96 67 7/25/2024
1.2.3-alpha.0.95 70 7/25/2024
1.2.3-alpha.0.94 72 7/24/2024
1.2.3-alpha.0.93 71 7/24/2024
1.2.3-alpha.0.92 69 7/25/2024
1.2.3-alpha.0.91 69 7/23/2024
1.2.3-alpha.0.90 66 7/23/2024
1.2.3-alpha.0.89 76 7/18/2024
1.2.3-alpha.0.88 68 7/17/2024
1.2.3-alpha.0.87 73 7/17/2024
1.2.3-alpha.0.86 70 7/17/2024
1.2.3-alpha.0.85 72 7/17/2024
1.2.3-alpha.0.84 66 7/16/2024
1.2.3-alpha.0.83 65 7/12/2024
1.2.3-alpha.0.82 55 7/10/2024
1.2.3-alpha.0.81 64 7/10/2024
1.2.3-alpha.0.80 70 7/9/2024
1.2.3-alpha.0.79 65 7/9/2024
1.2.3-alpha.0.78 62 7/9/2024
1.2.3-alpha.0.77 68 7/9/2024
1.2.3-alpha.0.76 71 7/9/2024
1.2.3-alpha.0.75 59 7/9/2024
1.2.3-alpha.0.74 72 7/8/2024
1.2.3-alpha.0.73 72 7/8/2024
1.2.3-alpha.0.72 68 7/5/2024
1.2.3-alpha.0.71 74 7/4/2024
1.2.3-alpha.0.70 71 7/4/2024
1.2.3-alpha.0.69 77 7/4/2024
1.2.3-alpha.0.68 68 7/3/2024
1.2.3-alpha.0.67 67 7/3/2024
1.2.3-alpha.0.66 59 7/3/2024
1.2.3-alpha.0.65 66 7/3/2024
1.2.3-alpha.0.64 74 7/2/2024
1.2.3-alpha.0.63 72 7/1/2024
1.2.3-alpha.0.62 70 6/26/2024
1.2.3-alpha.0.61 73 6/26/2024
1.2.3-alpha.0.60 72 6/26/2024
1.2.3-alpha.0.59 71 6/26/2024
1.2.3-alpha.0.58 80 6/24/2024
1.2.3-alpha.0.57 71 6/24/2024
1.2.3-alpha.0.55 69 6/24/2024
1.2.3-alpha.0.54 70 6/18/2024
1.2.3-alpha.0.53 66 6/18/2024
1.2.3-alpha.0.52 68 6/17/2024
1.2.3-alpha.0.51 68 6/17/2024
1.2.3-alpha.0.50 64 6/17/2024
1.2.3-alpha.0.49 65 6/13/2024
1.2.3-alpha.0.48 65 6/12/2024
1.2.3-alpha.0.47 66 6/12/2024
1.2.3-alpha.0.46 65 6/12/2024
1.2.3-alpha.0.45 68 6/12/2024
1.2.3-alpha.0.44 72 6/7/2024
1.2.3-alpha.0.43 60 6/6/2024
1.2.3-alpha.0.42 74 6/6/2024
1.2.3-alpha.0.41 72 5/28/2024
1.2.3-alpha.0.40 70 5/28/2024
1.2.3-alpha.0.38 74 5/27/2024
1.2.3-alpha.0.37 79 5/23/2024
1.2.3-alpha.0.36 73 5/22/2024
1.2.3-alpha.0.35 79 5/22/2024
1.2.3-alpha.0.34 82 5/16/2024
1.2.3-alpha.0.33 87 5/15/2024
1.2.3-alpha.0.32 75 5/15/2024
1.2.3-alpha.0.31 77 4/25/2024
1.2.3-alpha.0.29 77 4/24/2024
1.2.3-alpha.0.28 75 4/23/2024
1.2.3-alpha.0.27 74 4/22/2024
1.2.3-alpha.0.26 78 4/22/2024
1.2.3-alpha.0.25 74 4/22/2024
1.2.3-alpha.0.24 80 4/22/2024
1.2.3-alpha.0.23 82 4/19/2024
1.2.3-alpha.0.22 72 4/19/2024
1.2.3-alpha.0.21 76 4/19/2024
1.2.3-alpha.0.20 76 4/18/2024
1.2.3-alpha.0.19 73 4/18/2024
1.2.3-alpha.0.18 73 4/18/2024
1.2.3-alpha.0.17 76 4/16/2024
1.2.3-alpha.0.16 83 4/16/2024
1.2.3-alpha.0.15 81 4/12/2024
1.2.3-alpha.0.14 75 4/10/2024
1.2.3-alpha.0.13 76 4/10/2024
1.2.3-alpha.0.12 76 4/10/2024
1.2.3-alpha.0.11 79 4/9/2024
1.2.3-alpha.0.10 70 4/9/2024
1.2.3-alpha.0.9 64 4/9/2024
1.2.3-alpha.0.8 80 4/8/2024
1.2.3-alpha.0.7 98 4/5/2024
1.2.3-alpha.0.6 86 4/3/2024
1.2.3-alpha.0.5 75 4/3/2024
1.2.3-alpha.0.4 80 4/3/2024
1.2.3-alpha.0.3 84 3/29/2024
1.2.3-alpha.0.2 83 3/28/2024
1.2.3-alpha.0.1 85 3/28/2024
1.2.2 170 3/28/2024
1.2.2-alpha.0.3 84 3/28/2024
1.2.2-alpha.0.2 82 3/28/2024
1.2.2-alpha.0.1 68 3/27/2024
1.2.1 138 3/26/2024
1.1.2-alpha.0.5 77 3/26/2024
1.1.1 168 1/23/2024
1.1.0 256 10/27/2023
1.0.0 206 9/7/2023