moonup 0.5.2

Manage multiple MoonBit installations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
version: 6
environments:
  default:
    channels:
    - url: https://conda.anaconda.org/conda-forge/
    options:
      pypi-prerelease-mode: if-necessary-or-explicit
    packages:
      linux-64:
      - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/actionlint-1.7.8-h965158b_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/cargo-insta-1.43.2-hb17b654_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-hfea6d02_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-hc28eda2_7.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-h84ea5a7_101.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-heb74ff8_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.48.0-hee588c1_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-5.0.0-pyhd8ed1ab_2.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/prek-0.3.13-hb17b654_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.1-ha99a958_105_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.10-py313h536fd9c_0.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py313h536fd9c_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/rust-1.95.0-h53717f1_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-src-1.95.0-unix_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.95.0-h2c6d0dc_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_18.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
      - conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.29.5-h8fae777_0.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
      osx-64:
      - conda: https://conda.anaconda.org/conda-forge/osx-64/actionlint-1.7.8-h8080635_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.9.0-h09a7c41_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/cargo-insta-1.43.2-h3c2ae71_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1010.6-ha66f10e_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1010.6-hd19c6af_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-18-18.1.8-default_h3571c67_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clang-18.1.8-default_h576c50e_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-18.1.8-h6a44ed1_23.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-18.1.8-h7e5c614_23.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-18.1.8-default_heb2e8d1_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-18.1.8-h1020d70_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-18.1.8-hf2b8a54_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-951.9-h4e51db5_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-951.9-h33512f0_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-19.1.7-hf95d169_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-18.1.8-h7c275be_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-hc29ff6c_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hfdf4475_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.48.0-hdb6dae5_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.13.5-he8ee3e7_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.7-ha54dae1_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-18-18.1.8-hc29ff6c_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-18.1.8-hc29ff6c_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/pkg-config-0.29.2-hf7e621a_1009.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-5.0.0-pyhd8ed1ab_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/prek-0.3.13-h19f9e61_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.1-h2334245_105_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.13-5_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.10-py313h63b0ddb_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py313hb558fbc_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/rust-1.95.0-h5655b98_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-src-1.95.0-unix_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-apple-darwin-1.95.0-h38e4360_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.29.5-h371c88c_0.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda
      osx-arm64:
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/actionlint-1.7.8-h43f6c71_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.9.0-hdf49b6b_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cargo-insta-1.43.2-h8d80559_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1010.6-hb4fb6a3_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h3b4f5d3_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-18-18.1.8-default_hf90f093_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-18.1.8-default_h474c9e2_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-18.1.8-h2ae9ea5_23.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-18.1.8-h07b0088_23.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-18.1.8-default_h1ffe849_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-18.1.8-h856b3c1_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-18.1.8-h832e737_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-951.9-h4c6efb1_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-951.9-hb6b49e2_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.7-ha82da77_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-18.1.8-h6dc3340_7.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.82.2-hdff4504_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-hc4b4ae8_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h99b78c6_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.48.0-h3f77e49_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h178c5d8_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.7-hdb05f8b_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-18-18.1.8-hc4b4ae8_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-18.1.8-hc4b4ae8_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hde07d2e_1009.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-5.0.0-pyhd8ed1ab_2.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/prek-0.3.13-h6fdd925_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.13.1-h4f43103_105_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.13-5_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.10-py313h90d716c_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py313h63a2874_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rust-1.95.0-h4ff7c5d_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-src-1.95.0-unix_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-aarch64-apple-darwin-1.95.0-hf6ec828_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.29.5-h0716509_0.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda
      - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda
      win-64:
      - conda: https://conda.anaconda.org/conda-forge/win-64/actionlint-1.7.8-he477eed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/c-compiler-1.9.0-hcfcfb64_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/cargo-insta-1.43.2-h18a1a76_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
      - conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.82.2-h7025463_1.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-h2466b09_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.48.0-h67fdade_1.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/pkg-config-0.29.2-h88c491f_1009.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-5.0.0-pyhd8ed1ab_2.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/prek-0.3.13-h18a1a76_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.1-h071d269_105_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.13-5_cp313.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.10-py313ha7868ed_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py313ha7868ed_1.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/rust-1.95.0-hf8d6059_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-src-1.95.0-win_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-pc-windows-msvc-1.95.0-h17fc481_1.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.29.5-ha073cba_0.conda
      - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h5fd82a7_24.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_32.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-h7dcff83_24.conda
      - conda: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.7-h57928b3_0.conda
packages:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
  sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
  md5: d7c89558ba9fa0495403155b64376d81
  license: None
  size: 2562
  timestamp: 1578324546067
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
  build_number: 16
  sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
  md5: 73aaf86a425cc6e73fcf236a5a46396d
  depends:
  - _libgcc_mutex 0.1 conda_forge
  - libgomp >=7.5.0
  constrains:
  - openmp_impl 9999
  license: BSD-3-Clause
  license_family: BSD
  size: 23621
  timestamp: 1650670423406
- conda: https://conda.anaconda.org/conda-forge/linux-64/actionlint-1.7.8-h965158b_0.conda
  sha256: a7245cb879a5d2e3c3a76617b55aa1b740d1fd0c8e5d23469c2e6ec69c8c7c26
  md5: 90f1e02ab112937f37a2322d6e6ebbd0
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  - __glibc >=2.17
  license: MIT
  license_family: MIT
  size: 1984203
  timestamp: 1760199609591
- conda: https://conda.anaconda.org/conda-forge/osx-64/actionlint-1.7.8-h8080635_0.conda
  sha256: bb860c0c282fb6953d7e374d145d8cb1e4aaf81cc730ac8f26abcd343daae102
  md5: 32aeac533e5bc51ea04fa87de864c021
  depends:
  - __osx >=12.3
  constrains:
  - __osx >=10.12
  license: MIT
  license_family: MIT
  size: 1942329
  timestamp: 1760199648994
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/actionlint-1.7.8-h43f6c71_0.conda
  sha256: d225bef2c199d83c1e365f483715964372348f639259d7a1fb105da771c6cf81
  md5: 659328c73b0d41b1dd4d064bc1188fd9
  depends:
  - __osx >=11.0
  license: MIT
  license_family: MIT
  size: 1752491
  timestamp: 1760199640655
- conda: https://conda.anaconda.org/conda-forge/win-64/actionlint-1.7.8-he477eed_0.conda
  sha256: 76f90c393903f33564826bbd54055384747b0a6f38e0ff317ada4bbaec69ce0a
  md5: 3abfff0c12bb43be26bed854d01226f8
  depends:
  - vc >=14.3,<15
  - vc14_runtime >=14.44.35208
  - ucrt >=10.0.20348.0
  - vc >=14.3,<15
  - vc14_runtime >=14.44.35208
  - ucrt >=10.0.20348.0
  license: MIT
  license_family: MIT
  size: 2053082
  timestamp: 1760199668776
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.43-h4852527_2.conda
  sha256: 92be0f8ccd501ceeb3c782e2182e6ea04dca46799038176de40a57bca45512c5
  md5: 348619f90eee04901f4a70615efff35b
  depends:
  - binutils_impl_linux-64 >=2.43,<2.44.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 33876
  timestamp: 1729655402186
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.43-h4bf12b8_2.conda
  sha256: 267e78990247369b13234bda270f31beb56a600b4851a8244e31dd9ad85b3b17
  md5: cf0c5521ac2a20dfa6c662a4009eeef6
  depends:
  - ld_impl_linux-64 2.43 h712a8e2_2
  - sysroot_linux-64
  license: GPL-3.0-only
  license_family: GPL
  size: 5682777
  timestamp: 1729655371045
- conda: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.43-h4852527_2.conda
  sha256: df52bd8b8b2a20a0c529d9ad08aaf66093ac318aa8a33d270f18274341a77062
  md5: 18aba879ddf1f8f28145ca6fcb873d8c
  depends:
  - binutils_impl_linux-64 2.43 h4bf12b8_2
  license: GPL-3.0-only
  license_family: GPL
  size: 34945
  timestamp: 1729655404893
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
  sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
  md5: 62ee74e96c5ebb0af99386de58cf9553
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc-ng >=12
  license: bzip2-1.0.6
  license_family: BSD
  size: 252783
  timestamp: 1720974456583
- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-hfdf4475_7.conda
  sha256: cad153608b81fb24fc8c509357daa9ae4e49dfc535b2cb49b91e23dbd68fc3c5
  md5: 7ed4301d437b59045be7e051a0308211
  depends:
  - __osx >=10.13
  license: bzip2-1.0.6
  license_family: BSD
  size: 134188
  timestamp: 1720974491916
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
  sha256: adfa71f158cbd872a36394c56c3568e6034aa55c623634b37a4836bd036e6b91
  md5: fc6948412dbbbe9a4c9ddbbcfe0a79ab
  depends:
  - __osx >=11.0
  license: bzip2-1.0.6
  license_family: BSD
  size: 122909
  timestamp: 1720974522888
- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
  sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b
  md5: 276e7ffe9ffe39688abc665ef0f45596
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: bzip2-1.0.6
  license_family: BSD
  size: 54927
  timestamp: 1720974860185
- conda: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.9.0-h2b85faf_0.conda
  sha256: 1e4b86b0f3d4ce9f3787b8f62e9f2c5683287f19593131640eed01cbdad38168
  md5: 3cb814f83f1f71ac1985013697f80cc1
  depends:
  - binutils
  - gcc
  - gcc_linux-64 13.*
  license: BSD-3-Clause
  license_family: BSD
  size: 6196
  timestamp: 1736437002021
- conda: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.9.0-h09a7c41_0.conda
  sha256: 31851c99aa6250be4885bb4a8ee2001e92c710f7fc89eb0947f575cc51405ec4
  md5: ab45badcb5d035d3bddfdbdd96e00967
  depends:
  - cctools >=949.0.1
  - clang_osx-64 18.*
  - ld64 >=530
  - llvm-openmp
  license: BSD-3-Clause
  license_family: BSD
  size: 6236
  timestamp: 1736437072741
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.9.0-hdf49b6b_0.conda
  sha256: c9d0082bd4a122a7cace693d45d58b28ce0d0dc1ca9c91510fd4b388e39e8f72
  md5: c3f1477cd460f2d20f453dc3597c917c
  depends:
  - cctools >=949.0.1
  - clang_osx-arm64 18.*
  - ld64 >=530
  - llvm-openmp
  license: BSD-3-Clause
  license_family: BSD
  size: 6244
  timestamp: 1736437056672
- conda: https://conda.anaconda.org/conda-forge/win-64/c-compiler-1.9.0-hcfcfb64_0.conda
  sha256: fa07ffc464b5a104a4d504c1a0a684ae383a67bef907d61697f22d48340c46cd
  md5: 7d9b49b7ef31f9a23bdbc7ea0dd9996e
  depends:
  - vs2019_win-64
  license: BSD-3-Clause
  license_family: BSD
  size: 6481
  timestamp: 1736437097803
- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2025.1.31-hbcca054_0.conda
  sha256: bf832198976d559ab44d6cdb315642655547e26d826e34da67cbee6624cda189
  md5: 19f3a56f68d2fd06c516076bff482c52
  license: ISC
  size: 158144
  timestamp: 1738298224464
- conda: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2025.1.31-h8857fd0_0.conda
  sha256: 42e911ee2d8808eacedbec46d99b03200a6138b8e8a120bd8acabe1cac41c63b
  md5: 3418b6c8cac3e71c0bc089fc5ea53042
  license: ISC
  size: 158408
  timestamp: 1738298385933
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2025.1.31-hf0a4a13_0.conda
  sha256: 7e12816618173fe70f5c638b72adf4bfd4ddabf27794369bb17871c5bb75b9f9
  md5: 3569d6a9141adc64d2fe4797f3289e06
  license: ISC
  size: 158425
  timestamp: 1738298167688
- conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda
  sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155
  md5: 5304a31607974dfc2110dfbb662ed092
  license: ISC
  size: 158690
  timestamp: 1738298232550
- conda: https://conda.anaconda.org/conda-forge/linux-64/cargo-insta-1.43.2-hb17b654_0.conda
  sha256: 51f97cd9898e941ed29399f704e710db1be67534cae7fc9432a704f02a798526
  md5: 8dc58665085a8f3b650c216544d127ed
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=14
  constrains:
  - __glibc >=2.17
  license: Apache-2.0
  license_family: APACHE
  size: 1755616
  timestamp: 1757053563013
- conda: https://conda.anaconda.org/conda-forge/osx-64/cargo-insta-1.43.2-h3c2ae71_0.conda
  sha256: 35131bc9e10c8069a2771434f20c3afa84fa63c38259bcae62394deb77747b18
  md5: e219005a3b539d2faa8944f7fa9b1f59
  depends:
  - __osx >=10.13
  constrains:
  - __osx >=10.13
  license: Apache-2.0
  license_family: APACHE
  size: 1725571
  timestamp: 1757053616373
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cargo-insta-1.43.2-h8d80559_0.conda
  sha256: b0788c3a6ca72516a563b48b047979204e56fc4db55e2ffce9a45e212bdea0ab
  md5: 818640c87f3ad51f5774ef8093a81cbe
  depends:
  - __osx >=11.0
  constrains:
  - __osx >=11.0
  license: Apache-2.0
  license_family: APACHE
  size: 1587020
  timestamp: 1757053576018
- conda: https://conda.anaconda.org/conda-forge/win-64/cargo-insta-1.43.2-h18a1a76_0.conda
  sha256: d659b1221d673a891827990dbf8c674a703db45cdbc743890dcedbe0f1c4d1c0
  md5: 1626429b953f16c2d495e151bfa95cdf
  depends:
  - vc >=14.3,<15
  - vc14_runtime >=14.44.35208
  - ucrt >=10.0.20348.0
  - vc >=14.3,<15
  - vc14_runtime >=14.44.35208
  - ucrt >=10.0.20348.0
  license: Apache-2.0
  license_family: APACHE
  size: 1893847
  timestamp: 1757053579226
- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools-1010.6-ha66f10e_3.conda
  sha256: c2fa3a11ab0576ca569f6d4e349c1e4dc9f864fb9f8c85c09a427f7fbd3feb96
  md5: 35dcc7020f26efb8baf60ce6fa0b0c36
  depends:
  - cctools_osx-64 1010.6 hd19c6af_3
  - ld64 951.9 h4e51db5_3
  - libllvm18 >=18.1.8,<18.2.0a0
  license: APSL-2.0
  license_family: Other
  size: 21297
  timestamp: 1738620872016
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-1010.6-hb4fb6a3_3.conda
  sha256: 0db4f99ac1626a2f5dd1d1e61e11f66f545145e00798e740ae1ceda16b66eaad
  md5: cd2b980fbc46ae69530ad1cead7a514d
  depends:
  - cctools_osx-arm64 1010.6 h3b4f5d3_3
  - ld64 951.9 h4c6efb1_3
  - libllvm18 >=18.1.8,<18.2.0a0
  license: APSL-2.0
  license_family: Other
  size: 21328
  timestamp: 1738620750628
- conda: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-1010.6-hd19c6af_3.conda
  sha256: 2694cafb16b591c6c0008b9862c2da45c5b618381aaa229a4b32f71df04cfcc0
  md5: b360b015bfbce96ceecc3e6eb85aed11
  depends:
  - __osx >=10.13
  - ld64_osx-64 >=951.9,<951.10.0a0
  - libcxx
  - libllvm18 >=18.1.8,<18.2.0a0
  - libzlib >=1.3.1,<2.0a0
  - llvm-tools 18.1.*
  - sigtool
  constrains:
  - cctools 1010.6.*
  - ld64 951.9.*
  - clang 18.1.*
  license: APSL-2.0
  license_family: Other
  size: 1121052
  timestamp: 1738620829929
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-1010.6-h3b4f5d3_3.conda
  sha256: 58df79fb5565df7e033a7fcda0807df4752de4a96ea7b95c4af67a6c47ceeff8
  md5: f99351319cd8e651a571c80071cee1a2
  depends:
  - __osx >=11.0
  - ld64_osx-arm64 >=951.9,<951.10.0a0
  - libcxx
  - libllvm18 >=18.1.8,<18.2.0a0
  - libzlib >=1.3.1,<2.0a0
  - llvm-tools 18.1.*
  - sigtool
  constrains:
  - clang 18.1.*
  - cctools 1010.6.*
  - ld64 951.9.*
  license: APSL-2.0
  license_family: Other
  size: 1104781
  timestamp: 1738620712841
- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-18.1.8-default_h576c50e_7.conda
  sha256: def6d2facf51e34dca06f3e9063c52fadb096783d7d8d601f309380f14ce5810
  md5: 623987a715f5fb4cbee8f059d91d0397
  depends:
  - clang-18 18.1.8 default_h3571c67_7
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 71151
  timestamp: 1738270236118
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-18.1.8-default_h474c9e2_7.conda
  sha256: 72fccf47176327aeece0da9570565be0902c23e89c1a34858f13481aeee386d1
  md5: 0d19d68f06474d97b1b945b3eae132ac
  depends:
  - clang-18 18.1.8 default_hf90f093_7
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 71114
  timestamp: 1738267030948
- conda: https://conda.anaconda.org/conda-forge/osx-64/clang-18-18.1.8-default_h3571c67_7.conda
  sha256: 3a74de8af6896d276847332c1a350bab3c1791a13090588463edf4fabf9d424d
  md5: 098293f10df1166408bac04351b917c5
  depends:
  - __osx >=10.13
  - libclang-cpp18.1 18.1.8 default_h3571c67_7
  - libcxx >=18.1.8
  - libllvm18 >=18.1.8,<18.2.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 807874
  timestamp: 1738270127631
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang-18-18.1.8-default_hf90f093_7.conda
  sha256: 4d3e1222408141db88eff3c1ed68f659b32bda5a3b1cb0cd2c5ea9c2f8d5643c
  md5: d91b8b92eb2153057c1dccbcc3f8c6c3
  depends:
  - __osx >=11.0
  - libclang-cpp18.1 18.1.8 default_hf90f093_7
  - libcxx >=18.1.8
  - libllvm18 >=18.1.8,<18.2.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 807189
  timestamp: 1738266841744
- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-18.1.8-h6a44ed1_23.conda
  sha256: 1b6d10afcfc661500f98c81a3c6bf55a923e75ce74bc404e84c99f030fd647de
  md5: 3f2a260a1febaafa4010aac7c2771c9e
  depends:
  - cctools_osx-64
  - clang 18.1.8.*
  - compiler-rt 18.1.8.*
  - ld64_osx-64
  - llvm-tools 18.1.8.*
  license: BSD-3-Clause
  license_family: BSD
  size: 17783
  timestamp: 1731984965328
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-18.1.8-h2ae9ea5_23.conda
  sha256: 5f49818d2dc54690038e8ee8f9ca9f786add01e1eebdd0146c15c845d2735630
  md5: f89c390134d7f878f426bb1c4ef1d1c4
  depends:
  - cctools_osx-arm64
  - clang 18.1.8.*
  - compiler-rt 18.1.8.*
  - ld64_osx-arm64
  - llvm-tools 18.1.8.*
  license: BSD-3-Clause
  license_family: BSD
  size: 17923
  timestamp: 1731985038776
- conda: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-18.1.8-h7e5c614_23.conda
  sha256: 07348ac1da6697b72623be27f145c0fbaa03a123244a0289f1c6779a889e8339
  md5: 207116d6cb3762c83661bb49e6976e7d
  depends:
  - clang_impl_osx-64 18.1.8 h6a44ed1_23
  license: BSD-3-Clause
  license_family: BSD
  size: 21092
  timestamp: 1731984970165
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-18.1.8-h07b0088_23.conda
  sha256: 13e6ac210e2ad57ee20c5d1c74ba1b72af25d3731b3dedc51e339780c8ce1fb1
  md5: 29513735b8af0018e3ce8447531d69dd
  depends:
  - clang_impl_osx-arm64 18.1.8 h2ae9ea5_23
  license: BSD-3-Clause
  license_family: BSD
  size: 21100
  timestamp: 1731985043856
- conda: https://conda.anaconda.org/conda-forge/osx-64/clangxx-18.1.8-default_heb2e8d1_7.conda
  sha256: a1b0a353fbc465034ceafa6dbf3cf6e4ce9be07088bb38e44e30c9ab1265057e
  md5: f2ec690c4ac8d9e6ffbf3be019d68170
  depends:
  - clang 18.1.8 default_h576c50e_7
  - libcxx-devel 18.1.8.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 71187
  timestamp: 1738270260674
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-18.1.8-default_h1ffe849_7.conda
  sha256: cc29cf6dd2930a57dbb8eb2fed8547114dc4b223b40c76a9ab0330aaf4685fb1
  md5: 8c1d4c1dbdcd479c1c4a4c9ebebf4d1f
  depends:
  - clang 18.1.8 default_h474c9e2_7
  - libcxx-devel 18.1.8.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 71194
  timestamp: 1738267045229
- conda: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-18.1.8-h1020d70_1.conda
  sha256: 30bd259ad8909c02ee9da8b13bf7c9f6dc0f4d6fa3c5d1cd82213180ca5f9c03
  md5: bc1714a1e73be18e411cff30dc1fe011
  depends:
  - __osx >=10.13
  - clang 18.1.8.*
  - clangxx 18.1.8.*
  - compiler-rt_osx-64 18.1.8.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 95345
  timestamp: 1725258125808
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-18.1.8-h856b3c1_1.conda
  sha256: 41e47093d3a03f0f81f26f66e5652a5b5c58589eafe59fbf67e8d60a3b30cdf7
  md5: 1f40b72021aa770bb56ffefe298f02a7
  depends:
  - __osx >=11.0
  - clang 18.1.8.*
  - clangxx 18.1.8.*
  - compiler-rt_osx-arm64 18.1.8.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 95451
  timestamp: 1725258159749
- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-18.1.8-hf2b8a54_1.conda
  sha256: 1230fe22d190002693ba77cf8af754416d6ea7121707b74a7cd8ddc537f98bdb
  md5: 76f906e6bdc58976c5593f650290ae20
  depends:
  - clang 18.1.8.*
  - clangxx 18.1.8.*
  constrains:
  - compiler-rt 18.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 10420490
  timestamp: 1725258080385
- conda: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-18.1.8-h832e737_1.conda
  sha256: 97cc5d6a54dd159ddd2789a68245c6651915071b79f674e83dbc660f3ed760a9
  md5: f158d25465221c90668482b69737fee6
  depends:
  - clang 18.1.8.*
  - clangxx 18.1.8.*
  constrains:
  - compiler-rt 18.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 10583287
  timestamp: 1725258124186
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc-13.3.0-h9576a4e_1.conda
  sha256: d0161362430183cbdbc3db9cf95f9a1af1793027f3ab8755b3d3586deb28bf84
  md5: 606924335b5bcdf90e9aed9a2f5d22ed
  depends:
  - gcc_impl_linux-64 13.3.0.*
  license: BSD-3-Clause
  license_family: BSD
  size: 53864
  timestamp: 1724801360210
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-13.3.0-hfea6d02_1.conda
  sha256: 998ade1d487e93fc8a7a16b90e2af69ebb227355bf4646488661f7ae5887873c
  md5: 0d043dbc126b64f79d915a0e96d3a1d5
  depends:
  - binutils_impl_linux-64 >=2.40
  - libgcc >=13.3.0
  - libgcc-devel_linux-64 13.3.0 h84ea5a7_101
  - libgomp >=13.3.0
  - libsanitizer 13.3.0 heb74ff8_1
  - libstdcxx >=13.3.0
  - sysroot_linux-64
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 67464415
  timestamp: 1724801227937
- conda: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-13.3.0-hc28eda2_7.conda
  sha256: 1e5ac50580a68fdc7d2f5722abcf1a87898c24b1ab6eb5ecd322634742d93645
  md5: ac23afbf5805389eb771e2ad3b476f75
  depends:
  - binutils_linux-64
  - gcc_impl_linux-64 13.3.0.*
  - sysroot_linux-64
  license: BSD-3-Clause
  license_family: BSD
  size: 32005
  timestamp: 1731939593317
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
  sha256: 9ba12c93406f3df5ab0a43db8a4b4ef67a5871dfd401010fbe29b218b2cbe620
  md5: 5eb22c1d7b3fc4abb50d92d621583137
  depends:
  - __osx >=11.0
  license: MIT
  license_family: MIT
  size: 11857802
  timestamp: 1720853997952
- conda: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-3.10.0-he073ed8_18.conda
  sha256: a922841ad80bd7b222502e65c07ecb67e4176c4fa5b03678a005f39fcc98be4b
  md5: ad8527bf134a90e1c9ed35fa0b64318c
  constrains:
  - sysroot_linux-64 ==2.17
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
  license_family: GPL
  size: 943486
  timestamp: 1729794504440
- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64-951.9-h4e51db5_3.conda
  sha256: 36e5a42c7aebad58d629c6bc1cb36243653a935e609e03a89b22005aa4ab2ddb
  md5: d1743e343b8e13a4980dac16f050d2b6
  depends:
  - ld64_osx-64 951.9 h33512f0_3
  - libllvm18 >=18.1.8,<18.2.0a0
  constrains:
  - cctools 1010.6.*
  - cctools_osx-64 1010.6.*
  license: APSL-2.0
  license_family: Other
  size: 18577
  timestamp: 1738620853804
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-951.9-h4c6efb1_3.conda
  sha256: 85e239ab3c1fdf491e32d797995e5f4b7873e055aebcd2d1fdcb29cede1a6a10
  md5: 0fa58d2a5918cc82fc409e4f6973a02c
  depends:
  - ld64_osx-arm64 951.9 hb6b49e2_3
  - libllvm18 >=18.1.8,<18.2.0a0
  constrains:
  - cctools 1010.6.*
  - cctools_osx-arm64 1010.6.*
  license: APSL-2.0
  license_family: Other
  size: 18607
  timestamp: 1738620734041
- conda: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-951.9-h33512f0_3.conda
  sha256: 4e6a37e3ea23a3d2f9b25b1b476728be6b5a1bab326fa5a976997698c60f70c0
  md5: f5c97cad6996928bdffc55b8f5e70723
  depends:
  - __osx >=10.13
  - libcxx
  - libllvm18 >=18.1.8,<18.2.0a0
  - sigtool
  - tapi >=1300.6.5,<1301.0a0
  constrains:
  - clang >=18.1.8,<19.0a0
  - ld 951.9.*
  - cctools_osx-64 1010.6.*
  - cctools 1010.6.*
  license: APSL-2.0
  license_family: Other
  size: 1100751
  timestamp: 1738620763081
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-951.9-hb6b49e2_3.conda
  sha256: d79dbb1016fac31ee90b3b5202270c1d331bd9987d6418b35fda473fcde6c126
  md5: 34d3acfffa837eef8c2912cd7c2156f2
  depends:
  - __osx >=11.0
  - libcxx
  - libllvm18 >=18.1.8,<18.2.0a0
  - sigtool
  - tapi >=1300.6.5,<1301.0a0
  constrains:
  - cctools_osx-arm64 1010.6.*
  - cctools 1010.6.*
  - ld 951.9.*
  - clang >=18.1.8,<19.0a0
  license: APSL-2.0
  license_family: Other
  size: 1018029
  timestamp: 1738620654864
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
  sha256: 7c91cea91b13f4314d125d1bedb9d03a29ebbd5080ccdea70260363424646dbe
  md5: 048b02e3962f066da18efe3a21b77672
  depends:
  - __glibc >=2.17,<3.0.a0
  constrains:
  - binutils_impl_linux-64 2.43
  license: GPL-3.0-only
  license_family: GPL
  size: 669211
  timestamp: 1729655358674
- conda: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp18.1-18.1.8-default_h3571c67_7.conda
  sha256: 81917105ee2f49e85f0abd684696ad9d9a81aef9d825e563e0013fd9a1ccbd23
  md5: d22bdc2b1ecf45631c5aad91f660623a
  depends:
  - __osx >=10.13
  - libcxx >=18.1.8
  - libllvm18 >=18.1.8,<18.2.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 13901227
  timestamp: 1738269502537
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp18.1-18.1.8-default_hf90f093_7.conda
  sha256: f3abadc7fa0a98814c07644b8117ac25d03a1cb78be8ea40a32bcd2dede5b3c9
  md5: 3a2e0aa2daf3b1a009b87fd7fa5d4a41
  depends:
  - __osx >=11.0
  - libcxx >=18.1.8
  - libllvm18 >=18.1.8,<18.2.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 13325600
  timestamp: 1738266301426
- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-19.1.7-hf95d169_0.conda
  sha256: 6b2fa3fb1e8cd2000b0ed259e0c4e49cbef7b76890157fac3e494bc659a20330
  md5: 4b8f8dc448d814169dbc58fc7286057d
  depends:
  - __osx >=10.13
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 527924
  timestamp: 1736877256721
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.7-ha82da77_0.conda
  sha256: 776092346da87a2a23502e14d91eb0c32699c4a1522b7331537bd1c3751dcff5
  md5: 5b3e1610ff8bd5443476b91d618f5b77
  depends:
  - __osx >=11.0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 523505
  timestamp: 1736877862502
- conda: https://conda.anaconda.org/conda-forge/osx-64/libcxx-devel-18.1.8-h7c275be_7.conda
  sha256: 5d886a04be00a5a54a81fb040aacd238d0d55d4522c61c7875b675b803c748a3
  md5: 0c389f3214ce8cad37a12cb0bae44c54
  depends:
  - libcxx >=18.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 792227
  timestamp: 1725403715206
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-devel-18.1.8-h6dc3340_7.conda
  sha256: 4b5023b998f426b331db9d7f8de8260004c7f9b7ca96a31ad23860ba1e1b7b88
  md5: b0f818db788046d60ffc693ddec7e26e
  depends:
  - libcxx >=18.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 793242
  timestamp: 1725403658086
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
  sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26
  md5: db833e03127376d461e1e13e76f09b6c
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  constrains:
  - expat 2.6.4.*
  license: MIT
  license_family: MIT
  size: 73304
  timestamp: 1730967041968
- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.6.4-h240833e_0.conda
  sha256: d10f43d0c5df6c8cf55259bce0fe14d2377eed625956cddce06f58827d288c59
  md5: 20307f4049a735a78a29073be1be2626
  depends:
  - __osx >=10.13
  constrains:
  - expat 2.6.4.*
  license: MIT
  license_family: MIT
  size: 70758
  timestamp: 1730967204736
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
  sha256: e42ab5ace927ee7c84e3f0f7d813671e1cf3529f5f06ee5899606630498c2745
  md5: 38d2656dd914feb0cab8c629370768bf
  depends:
  - __osx >=11.0
  constrains:
  - expat 2.6.4.*
  license: MIT
  license_family: MIT
  size: 64693
  timestamp: 1730967175868
- conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.6.4-he0c23c2_0.conda
  sha256: 0c0447bf20d1013d5603499de93a16b6faa92d7ead870d96305c0f065b6a5a12
  md5: eb383771c680aa792feb529eaf9df82f
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  constrains:
  - expat 2.6.4.*
  license: MIT
  license_family: MIT
  size: 139068
  timestamp: 1730967442102
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
  sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
  md5: d645c6d2ac96843a2bfaccd2d62b3ac3
  depends:
  - libgcc-ng >=9.4.0
  license: MIT
  license_family: MIT
  size: 58292
  timestamp: 1636488182923
- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2
  sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f
  md5: ccb34fb14960ad8b125962d3d79b31a9
  license: MIT
  license_family: MIT
  size: 51348
  timestamp: 1636488394370
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
  sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca
  md5: 086914b672be056eb70fd4285b6783b6
  license: MIT
  license_family: MIT
  size: 39020
  timestamp: 1636488587153
- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
  sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5
  md5: 2c96d1b6915b408893f9472569dee135
  depends:
  - vc >=14.1,<15.0a0
  - vs2015_runtime >=14.16.27012
  license: MIT
  license_family: MIT
  size: 42063
  timestamp: 1636489106777
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
  sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569
  md5: 3cb76c3f10d3bc7f1105b2fc9db984df
  depends:
  - _libgcc_mutex 0.1 conda_forge
  - _openmp_mutex >=4.5
  constrains:
  - libgomp 14.2.0 h77fa898_1
  - libgcc-ng ==14.2.0=*_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 848745
  timestamp: 1729027721139
- conda: https://conda.anaconda.org/conda-forge/noarch/libgcc-devel_linux-64-13.3.0-h84ea5a7_101.conda
  sha256: 027cfb011328a108bc44f512a2dec6d954db85709e0b79b748c3392f85de0c64
  md5: 0ce69d40c142915ac9734bc6134e514a
  depends:
  - __unix
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 2598313
  timestamp: 1724801050802
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
  sha256: 3a76969c80e9af8b6e7a55090088bc41da4cffcde9e2c71b17f44d37b7cb87f7
  md5: e39480b9ca41323497b05492a63bc35b
  depends:
  - libgcc 14.2.0 h77fa898_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 54142
  timestamp: 1729027726517
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.82.2-hdff4504_1.conda
  sha256: d002aeaa51424e331f8504a54b6ba4388a6011a0ebcac29296f3d14282bf733b
  md5: 849da57c370384ce48bef2e050488882
  depends:
  - __osx >=11.0
  - libffi >=3.4,<4.0a0
  - libiconv >=1.17,<2.0a0
  - libintl >=0.22.5,<1.0a0
  - libzlib >=1.3.1,<2.0a0
  - pcre2 >=10.44,<10.45.0a0
  constrains:
  - glib 2.82.2 *_1
  license: LGPL-2.1-or-later
  size: 3643364
  timestamp: 1737037789629
- conda: https://conda.anaconda.org/conda-forge/win-64/libglib-2.82.2-h7025463_1.conda
  sha256: 77c4e6af9cc4e966a5100f48378ea3fb4ab7ed913f24af9217cc3a43242d65d5
  md5: 40596e78a77327f271acea904efdc911
  depends:
  - libffi >=3.4,<4.0a0
  - libiconv >=1.17,<2.0a0
  - libintl >=0.22.5,<1.0a0
  - libzlib >=1.3.1,<2.0a0
  - pcre2 >=10.44,<10.45.0a0
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  constrains:
  - glib 2.82.2 *_1
  license: LGPL-2.1-or-later
  size: 3783933
  timestamp: 1737038122172
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
  sha256: 1911c29975ec99b6b906904040c855772ccb265a1c79d5d75c8ceec4ed89cd63
  md5: cc3573974587f12dda90d96e3e55a702
  depends:
  - _libgcc_mutex 0.1 conda_forge
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 460992
  timestamp: 1729027639220
- conda: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hd75f5a5_2.conda
  sha256: 23d4923baeca359423a7347c2ed7aaf48c68603df0cf8b87cc94a10b0d4e9a23
  md5: 6c3628d047e151efba7cf08c5e54d1ca
  license: LGPL-2.1-only
  size: 666538
  timestamp: 1702682713201
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
  sha256: bc7de5097b97bcafcf7deaaed505f7ce02f648aac8eccc0d5a47cc599a1d0304
  md5: 69bda57310071cf6d2b86caf11573d2d
  license: LGPL-2.1-only
  size: 676469
  timestamp: 1702682458114
- conda: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-hcfcfb64_2.conda
  sha256: 5f844dd19b046d43174ad80c6ea75b5d504020e3b63cfbc4ace97b8730d35c7b
  md5: e1eb10b1cca179f2baa3601e4efc8712
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: LGPL-2.1-only
  size: 636146
  timestamp: 1702682547199
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.23.1-h493aca8_0.conda
  sha256: 30d2a8a37070615a61777ce9317968b54c2197d04e9c6c2eea6cdb46e47f94dc
  md5: 7b8faf3b5fc52744bda99c4cd1d6438d
  depends:
  - __osx >=11.0
  - libiconv >=1.17,<2.0a0
  license: LGPL-2.1-or-later
  size: 78921
  timestamp: 1739039271409
- conda: https://conda.anaconda.org/conda-forge/win-64/libintl-0.22.5-h5728263_3.conda
  sha256: c7e4600f28bcada8ea81456a6530c2329312519efcf0c886030ada38976b0511
  md5: 2cf0cf76cc15d360dfa2f17fd6cf9772
  depends:
  - libiconv >=1.17,<2.0a0
  license: LGPL-2.1-or-later
  size: 95568
  timestamp: 1723629479451
- conda: https://conda.anaconda.org/conda-forge/osx-64/libllvm18-18.1.8-hc29ff6c_3.conda
  sha256: c488d96dcd0b2db0438b9ec7ea92627c1c36aa21491ebcd5cc87a9c58aa0a612
  md5: a04c2fc058fd6b0630c1a2faad322676
  depends:
  - __osx >=10.13
  - libcxx >=18
  - libxml2 >=2.13.5,<3.0a0
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.6,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 27771340
  timestamp: 1737837075440
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm18-18.1.8-hc4b4ae8_3.conda
  sha256: eaf337e7323555705ef8fad64778de506828d3b6deab2493170c6fe8ad4b7a76
  md5: 202596038a5dc079ef688bd7e17ffec1
  depends:
  - __osx >=11.0
  - libcxx >=18
  - libxml2 >=2.13.5,<3.0a0
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.6,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 25986548
  timestamp: 1737837114740
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.6.4-hb9d3cd8_0.conda
  sha256: cad52e10319ca4585bc37f0bc7cce99ec7c15dc9168e42ccb96b741b0a27db3f
  md5: 42d5b6a0f30d3c10cd88cb8584fda1cb
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  license: 0BSD
  size: 111357
  timestamp: 1738525339684
- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.6.4-hd471939_0.conda
  sha256: a895b5b16468a6ed436f022d72ee52a657f9b58214b91fabfab6230e3592a6dd
  md5: db9d7b0152613f097cdb61ccf9f70ef5
  depends:
  - __osx >=10.13
  license: 0BSD
  size: 103749
  timestamp: 1738525448522
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.6.4-h39f12f2_0.conda
  sha256: 560c59d3834cc652a84fb45531bd335ad06e271b34ebc216e380a89798fe8e2c
  md5: e3fd1f8320a100f2b210e690a57cd615
  depends:
  - __osx >=11.0
  license: 0BSD
  size: 98945
  timestamp: 1738525462560
- conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.6.4-h2466b09_0.conda
  sha256: 3f552b0bdefdd1459ffc827ea3bf70a6a6920c7879d22b6bfd0d73015b55227b
  md5: c48f6ad0ef0a555b27b233dfcab46a90
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: 0BSD
  size: 104465
  timestamp: 1738525557254
- conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda
  sha256: d02d1d3304ecaf5c728e515eb7416517a0b118200cd5eacbe829c432d1664070
  md5: aeb98fdeb2e8f25d43ef71fbacbeec80
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc-ng >=12
  license: BSD-2-Clause
  license_family: BSD
  size: 89991
  timestamp: 1723817448345
- conda: https://conda.anaconda.org/conda-forge/osx-64/libmpdec-4.0.0-hfdf4475_0.conda
  sha256: 791be3d30d8e37ec49bcc23eb8f1e1415d911a7c023fa93685f2ea485179e258
  md5: ed625b2e59dff82859c23dd24774156b
  depends:
  - __osx >=10.13
  license: BSD-2-Clause
  license_family: BSD
  size: 76561
  timestamp: 1723817691512
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libmpdec-4.0.0-h99b78c6_0.conda
  sha256: f7917de9117d3a5fe12a39e185c7ce424f8d5010a6f97b4333e8a1dcb2889d16
  md5: 7476305c35dd9acef48da8f754eedb40
  depends:
  - __osx >=11.0
  license: BSD-2-Clause
  license_family: BSD
  size: 69263
  timestamp: 1723817629767
- conda: https://conda.anaconda.org/conda-forge/win-64/libmpdec-4.0.0-h2466b09_0.conda
  sha256: fc529fc82c7caf51202cc5cec5bb1c2e8d90edbac6d0a4602c966366efe3c7bf
  md5: 74860100b2029e2523cf480804c76b9b
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: BSD-2-Clause
  license_family: BSD
  size: 88657
  timestamp: 1723861474602
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-13.3.0-heb74ff8_1.conda
  sha256: c86d130f0a3099e46ff51aa7ffaab73cb44fc420d27a96076aab3b9a326fc137
  md5: c4cb22f270f501f5c59a122dc2adf20a
  depends:
  - libgcc >=13.3.0
  - libstdcxx >=13.3.0
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 4133922
  timestamp: 1724801171589
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.48.0-hee588c1_1.conda
  sha256: 22853d289ef6ec8a5b20f1aa261895b06525439990d3b139f8bfd0b5c5e32a3a
  md5: 3fa05c528d8a1e2a67bbf1e36f22d3bc
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  - libzlib >=1.3.1,<2.0a0
  license: Unlicense
  size: 878223
  timestamp: 1737564987837
- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.48.0-hdb6dae5_1.conda
  sha256: ccff3309ed7b1561d3bb00f1e4f36d9d1323af998013e3182a13bf0b5dcef4ec
  md5: 6c4d367a4916ea169d614590bdf33b7c
  depends:
  - __osx >=10.13
  - libzlib >=1.3.1,<2.0a0
  license: Unlicense
  size: 926014
  timestamp: 1737565233282
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.48.0-h3f77e49_1.conda
  sha256: 17c06940cc2a13fd6a17effabd6881b1477db38b2cd3ee2571092d293d3fdd75
  md5: 4c55169502ecddf8077973a987d08f08
  depends:
  - __osx >=11.0
  - libzlib >=1.3.1,<2.0a0
  license: Unlicense
  size: 852831
  timestamp: 1737564996616
- conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.48.0-h67fdade_1.conda
  sha256: eb889b9ea754d30268fa740f91e62fae6c30ca40f9769051dd42390d2470a7ff
  md5: 5a7a8f7f68ce1bdb7b58219786436f30
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: Unlicense
  size: 897026
  timestamp: 1737565547561
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
  sha256: 4661af0eb9bdcbb5fb33e5d0023b001ad4be828fccdcc56500059d56f9869462
  md5: 234a5554c53625688d51062645337328
  depends:
  - libgcc 14.2.0 h77fa898_1
  license: GPL-3.0-only WITH GCC-exception-3.1
  license_family: GPL
  size: 3893695
  timestamp: 1729027746910
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
  sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
  md5: 40b61aab5c7ba9ff276c41cfffe6b80b
  depends:
  - libgcc-ng >=12
  license: BSD-3-Clause
  license_family: BSD
  size: 33601
  timestamp: 1680112270483
- conda: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.13.5-he8ee3e7_1.conda
  sha256: 254730b4640684eb392aa70d14d0dec4e0568bdedabd5ee22df4128d95408fe0
  md5: 9379f216f9132d0d3cdeeb10af165262
  depends:
  - __osx >=10.13
  - libiconv >=1.17,<2.0a0
  - liblzma >=5.6.3,<6.0a0
  - libzlib >=1.3.1,<2.0a0
  constrains:
  - icu <0.0a0
  license: MIT
  license_family: MIT
  size: 609081
  timestamp: 1733443988169
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h178c5d8_1.conda
  sha256: d7af3f25a4cece170502acd38f2dafbea4521f373f46dcb28a37fbe6ac2da544
  md5: 3dc3cff0eca1640a6acbbfab2f78139e
  depends:
  - __osx >=11.0
  - icu >=75.1,<76.0a0
  - libiconv >=1.17,<2.0a0
  - liblzma >=5.6.3,<6.0a0
  - libzlib >=1.3.1,<2.0a0
  license: MIT
  license_family: MIT
  size: 582898
  timestamp: 1733443841584
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
  sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9
  md5: d87ff7921124eccd67248aa483c23fec
  depends:
  - __glibc >=2.17,<3.0.a0
  constrains:
  - zlib 1.3.2 *_2
  license: Zlib
  license_family: Other
  size: 63629
  timestamp: 1774072609062
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda
  sha256: 8412f96504fc5993a63edf1e211d042a1fd5b1d51dedec755d2058948fcced09
  md5: 003a54a4e32b02f7355b50a837e699da
  depends:
  - __osx >=10.13
  constrains:
  - zlib 1.3.1 *_2
  license: Zlib
  license_family: Other
  size: 57133
  timestamp: 1727963183990
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
  sha256: ce34669eadaba351cd54910743e6a2261b67009624dbc7daeeafdef93616711b
  md5: 369964e85dc26bfe78f41399b366c435
  depends:
  - __osx >=11.0
  constrains:
  - zlib 1.3.1 *_2
  license: Zlib
  license_family: Other
  size: 46438
  timestamp: 1727963202283
- conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
  sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
  md5: 41fbfac52c601159df6c01f875de31b9
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  constrains:
  - zlib 1.3.1 *_2
  license: Zlib
  license_family: Other
  size: 55476
  timestamp: 1727963768015
- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-19.1.7-ha54dae1_0.conda
  sha256: b5b06821b0d4143f66ba652ffe6f535696dc3a4096175d9be8b19b1a7350c86d
  md5: 65d08c50518999e69f421838c1d5b91f
  depends:
  - __osx >=10.13
  constrains:
  - openmp 19.1.7|19.1.7.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 304885
  timestamp: 1736986327031
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.7-hdb05f8b_0.conda
  sha256: b92a669f2059874ebdcb69041b6c243d68ffc3fb356ac1339cec44aeb27245d7
  md5: c4d54bfd3817313ce758aa76283b118d
  depends:
  - __osx >=11.0
  constrains:
  - openmp 19.1.7|19.1.7.*
  license: Apache-2.0 WITH LLVM-exception
  license_family: APACHE
  size: 280830
  timestamp: 1736986295869
- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-18.1.8-hc29ff6c_3.conda
  sha256: 694ec5d1753cfff97785f3833173c1277d0ca0711d7c78ffc1011b40e7842741
  md5: 2585f8254d2ce24399a601e9b4e15652
  depends:
  - __osx >=10.13
  - libllvm18 18.1.8 hc29ff6c_3
  - libxml2 >=2.13.5,<3.0a0
  - libzlib >=1.3.1,<2.0a0
  - llvm-tools-18 18.1.8 hc29ff6c_3
  - zstd >=1.5.6,<1.6.0a0
  constrains:
  - clang       18.1.8
  - llvm        18.1.8
  - clang-tools 18.1.8
  - llvmdev     18.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 88081
  timestamp: 1737837724397
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-18.1.8-hc4b4ae8_3.conda
  sha256: 3bdd318088fbd425d933f40f149700793094348b47326faa70694fc5cfbffc0e
  md5: 6ede59b3835d443abdeace7cad57c8c4
  depends:
  - __osx >=11.0
  - libllvm18 18.1.8 hc4b4ae8_3
  - libxml2 >=2.13.5,<3.0a0
  - libzlib >=1.3.1,<2.0a0
  - llvm-tools-18 18.1.8 hc4b4ae8_3
  - zstd >=1.5.6,<1.6.0a0
  constrains:
  - clang-tools 18.1.8
  - llvmdev     18.1.8
  - llvm        18.1.8
  - clang       18.1.8
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 88046
  timestamp: 1737837646765
- conda: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-18-18.1.8-hc29ff6c_3.conda
  sha256: 7a302073bd476d19474272471a5ed7ecec935e65fe16bb3f35e3d5d070ce0466
  md5: 61dfcd8dc654e2ca399a214641ab549f
  depends:
  - __osx >=10.13
  - libllvm18 18.1.8 hc29ff6c_3
  - libxml2 >=2.13.5,<3.0a0
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.6,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 25229705
  timestamp: 1737837655816
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-18-18.1.8-hc4b4ae8_3.conda
  sha256: dae19f3596a8e0edadbf6c3037c8c5d9039d1a9ab57f384108580ec8fb89b06f
  md5: 40b505161818b48957269998b4b41114
  depends:
  - __osx >=11.0
  - libllvm18 18.1.8 hc4b4ae8_3
  - libxml2 >=2.13.5,<3.0a0
  - libzlib >=1.3.1,<2.0a0
  - zstd >=1.5.6,<1.6.0a0
  license: Apache-2.0 WITH LLVM-exception
  license_family: Apache
  size: 23610271
  timestamp: 1737837584505
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda
  sha256: 3fde293232fa3fca98635e1167de6b7c7fda83caf24b9d6c91ec9eefb4f4d586
  md5: 47e340acb35de30501a76c7c799c41d7
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  license: X11 AND BSD-3-Clause
  size: 891641
  timestamp: 1738195959188
- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda
  sha256: ea4a5d27ded18443749aefa49dc79f6356da8506d508b5296f60b8d51e0c4bd9
  md5: ced34dd9929f491ca6dab6a2927aff25
  depends:
  - __osx >=10.13
  license: X11 AND BSD-3-Clause
  size: 822259
  timestamp: 1738196181298
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda
  sha256: 2827ada40e8d9ca69a153a45f7fd14f32b2ead7045d3bbb5d10964898fe65733
  md5: 068d497125e4bf8a66bf707254fff5ae
  depends:
  - __osx >=11.0
  license: X11 AND BSD-3-Clause
  size: 797030
  timestamp: 1738196177597
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
  sha256: f62f6bca4a33ca5109b6d571b052a394d836956d21b25b7ffd03376abf7a481f
  md5: 4ce6875f75469b2757a65e10a5d05e31
  depends:
  - __glibc >=2.17,<3.0.a0
  - ca-certificates
  - libgcc >=13
  license: Apache-2.0
  license_family: Apache
  size: 2937158
  timestamp: 1736086387286
- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.4.0-hc426f3f_1.conda
  sha256: 879a960d586cf8a64131ac0c060ef575cfb8aa9f6813093cba92042a86ee867c
  md5: eaae23dbfc9ec84775097898526c72ea
  depends:
  - __osx >=10.13
  - ca-certificates
  license: Apache-2.0
  license_family: Apache
  size: 2590210
  timestamp: 1736086530077
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
  sha256: 97772762abc70b3a537683ca9fc3ff3d6099eb64e4aba3b9c99e6fce48422d21
  md5: 22f971393637480bda8c679f374d8861
  depends:
  - __osx >=11.0
  - ca-certificates
  license: Apache-2.0
  license_family: Apache
  size: 2936415
  timestamp: 1736086108693
- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.0-ha4e3fda_1.conda
  sha256: 519a06eaab7c878fbebb8cab98ea4a4465eafb1e9ed8c6ce67226068a80a92f0
  md5: fb45308ba8bfe1abf1f4a27bad24a743
  depends:
  - ca-certificates
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: Apache-2.0
  license_family: Apache
  size: 8462960
  timestamp: 1736088436984
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda
  sha256: 83153c7d8fd99cab33c92ce820aa7bfed0f1c94fc57010cf227b6e3c50cb7796
  md5: 147c83e5e44780c7492998acbacddf52
  depends:
  - __osx >=11.0
  - bzip2 >=1.0.8,<2.0a0
  - libzlib >=1.3.1,<2.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 618973
  timestamp: 1723488853807
- conda: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.44-h3d7b363_2.conda
  sha256: f4a12cbf8a7c5bfa2592b9dc92b492c438781898e5b02f397979b0be6e1b5851
  md5: a3a3baddcfb8c80db84bec3cb7746fb8
  depends:
  - bzip2 >=1.0.8,<2.0a0
  - libzlib >=1.3.1,<2.0a0
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: BSD-3-Clause
  license_family: BSD
  size: 820831
  timestamp: 1723489427046
- conda: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h4bc722e_1009.conda
  sha256: c9601efb1af5391317e04eca77c6fe4d716bf1ca1ad8da2a05d15cb7c28d7d4e
  md5: 1bee70681f504ea424fb07cdb090c001
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc-ng >=12
  license: GPL-2.0-or-later
  license_family: GPL
  size: 115175
  timestamp: 1720805894943
- conda: https://conda.anaconda.org/conda-forge/osx-64/pkg-config-0.29.2-hf7e621a_1009.conda
  sha256: 636122606556b651ad4d0ac60c7ab6b379e98f390359a1f0c05ad6ba6fb3837f
  md5: 0b1b9f9e420e4a0e40879b61f94ae646
  depends:
  - __osx >=10.13
  - libiconv >=1.17,<2.0a0
  license: GPL-2.0-or-later
  license_family: GPL
  size: 239818
  timestamp: 1720806136579
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hde07d2e_1009.conda
  sha256: d82f4655b2d67fe12eefe1a3eea4cd27d33fa41dbc5e9aeab5fd6d3d2c26f18a
  md5: b4f41e19a8c20184eec3aaf0f0953293
  depends:
  - __osx >=11.0
  - libglib >=2.80.3,<3.0a0
  - libiconv >=1.17,<2.0a0
  license: GPL-2.0-or-later
  license_family: GPL
  size: 49724
  timestamp: 1720806128118
- conda: https://conda.anaconda.org/conda-forge/win-64/pkg-config-0.29.2-h88c491f_1009.conda
  sha256: 86b0c40c8b569dbc164cb1de098ddabf4c240a5e8f38547aab00493891fa67f3
  md5: 122d6514d415fbe02c9b58aee9f6b53e
  depends:
  - libglib >=2.80.3,<3.0a0
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: GPL-2.0-or-later
  license_family: GPL
  size: 36118
  timestamp: 1720806338740
- conda: https://conda.anaconda.org/conda-forge/noarch/pre-commit-hooks-5.0.0-pyhd8ed1ab_2.conda
  sha256: b3c0e650280e660268c5c3a609c1d008fab598c41eb310f5c6993590889625e7
  md5: f41a1e00c55bc911fcc9cab2a88b4a66
  depends:
  - python >=3.9
  - ruamel.yaml >=0.15
  - tomli >=1.1.0
  license: MIT
  license_family: MIT
  size: 34986
  timestamp: 1734603755600
- conda: https://conda.anaconda.org/conda-forge/linux-64/prek-0.3.13-hb17b654_0.conda
  sha256: d0f4f26f16e3fc61cad88e341adf7fda8a619a68dc0afbcdfe65571d22aaa5c7
  md5: 605c9bd0d875ad759b4ea1f785f7ae70
  depends:
  - libgcc >=14
  - __glibc >=2.17,<3.0.a0
  constrains:
  - __glibc >=2.17
  license: MIT
  license_family: MIT
  size: 5916663
  timestamp: 1778015597635
- conda: https://conda.anaconda.org/conda-forge/osx-64/prek-0.3.13-h19f9e61_0.conda
  sha256: 9bbc29d301d3bf921859d22119468a1ee3e476e2ea20e23a5c101e9192b8f392
  md5: 14029b37c885c7381e5adb12940bd2ca
  depends:
  - __osx >=11.0
  constrains:
  - __osx >=10.13
  license: MIT
  license_family: MIT
  size: 5913252
  timestamp: 1778015839614
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/prek-0.3.13-h6fdd925_0.conda
  sha256: 743f7560d1a1d37f4088c1358ba18324b9ba6a75fdbf54cd6b5cd440c5645e65
  md5: 686b0b5b3d230bdcfe082e7d86f50bf9
  depends:
  - __osx >=11.0
  constrains:
  - __osx >=11.0
  license: MIT
  license_family: MIT
  size: 5515401
  timestamp: 1778015743544
- conda: https://conda.anaconda.org/conda-forge/win-64/prek-0.3.13-h18a1a76_0.conda
  sha256: 4ca95c75f1bd4b3bfa1e29c0938d17523075b60b5e38857071675cfc79e1e593
  md5: 2ec69d9326fc85accd4057077c46b5d4
  depends:
  - vc >=14.3,<15
  - vc14_runtime >=14.44.35208
  - ucrt >=10.0.20348.0
  license: MIT
  license_family: MIT
  size: 6273151
  timestamp: 1778015651228
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.1-ha99a958_105_cp313.conda
  build_number: 105
  sha256: d3eb7d0820cf0189103bba1e60e242ffc15fd2f727640ac3a10394b27adf3cca
  md5: 34945787453ee52a8f8271c1d19af1e8
  depends:
  - __glibc >=2.17,<3.0.a0
  - bzip2 >=1.0.8,<2.0a0
  - ld_impl_linux-64 >=2.36.1
  - libexpat >=2.6.4,<3.0a0
  - libffi >=3.4,<4.0a0
  - libgcc >=13
  - liblzma >=5.6.3,<6.0a0
  - libmpdec >=4.0.0,<5.0a0
  - libsqlite >=3.47.2,<4.0a0
  - libuuid >=2.38.1,<3.0a0
  - libzlib >=1.3.1,<2.0a0
  - ncurses >=6.5,<7.0a0
  - openssl >=3.4.0,<4.0a0
  - python_abi 3.13.* *_cp313
  - readline >=8.2,<9.0a0
  - tk >=8.6.13,<8.7.0a0
  - tzdata
  license: Python-2.0
  size: 33169840
  timestamp: 1736763984540
  python_site_packages_path: lib/python3.13/site-packages
- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.1-h2334245_105_cp313.conda
  build_number: 105
  sha256: a9d224fa69c8b58c8112997f03988de569504c36ba619a08144c47512219e5ad
  md5: c3318c58d14fefd755852e989c991556
  depends:
  - __osx >=10.13
  - bzip2 >=1.0.8,<2.0a0
  - libexpat >=2.6.4,<3.0a0
  - libffi >=3.4,<4.0a0
  - liblzma >=5.6.3,<6.0a0
  - libmpdec >=4.0.0,<5.0a0
  - libsqlite >=3.47.2,<4.0a0
  - libzlib >=1.3.1,<2.0a0
  - ncurses >=6.5,<7.0a0
  - openssl >=3.4.0,<4.0a0
  - python_abi 3.13.* *_cp313
  - readline >=8.2,<9.0a0
  - tk >=8.6.13,<8.7.0a0
  - tzdata
  license: Python-2.0
  size: 13893157
  timestamp: 1736762934457
  python_site_packages_path: lib/python3.13/site-packages
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.13.1-h4f43103_105_cp313.conda
  build_number: 105
  sha256: 7d27cc8ef214abbdf7dd8a5d473e744f4bd9beb7293214a73c58e4895c2830b8
  md5: 11d916b508764b7d881dd5c75d222d6e
  depends:
  - __osx >=11.0
  - bzip2 >=1.0.8,<2.0a0
  - libexpat >=2.6.4,<3.0a0
  - libffi >=3.4,<4.0a0
  - liblzma >=5.6.3,<6.0a0
  - libmpdec >=4.0.0,<5.0a0
  - libsqlite >=3.47.2,<4.0a0
  - libzlib >=1.3.1,<2.0a0
  - ncurses >=6.5,<7.0a0
  - openssl >=3.4.0,<4.0a0
  - python_abi 3.13.* *_cp313
  - readline >=8.2,<9.0a0
  - tk >=8.6.13,<8.7.0a0
  - tzdata
  license: Python-2.0
  size: 12919840
  timestamp: 1736761931666
  python_site_packages_path: lib/python3.13/site-packages
- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.1-h071d269_105_cp313.conda
  build_number: 105
  sha256: de3bb832ff3982c993c6af15e6c45bb647159f25329caceed6f73fd4769c7628
  md5: 3ddb0531ecfb2e7274d471203e053d78
  depends:
  - bzip2 >=1.0.8,<2.0a0
  - libexpat >=2.6.4,<3.0a0
  - libffi >=3.4,<4.0a0
  - liblzma >=5.6.3,<6.0a0
  - libmpdec >=4.0.0,<5.0a0
  - libsqlite >=3.47.2,<4.0a0
  - libzlib >=1.3.1,<2.0a0
  - openssl >=3.4.0,<4.0a0
  - python_abi 3.13.* *_cp313
  - tk >=8.6.13,<8.7.0a0
  - tzdata
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: Python-2.0
  size: 16778758
  timestamp: 1736761341620
  python_site_packages_path: Lib/site-packages
- conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.13-5_cp313.conda
  build_number: 5
  sha256: 438225b241c5f9bddae6f0178a97f5870a89ecf927dfca54753e689907331442
  md5: 381bbd2a92c863f640a55b6ff3c35161
  constrains:
  - python 3.13.* *_cp313
  license: BSD-3-Clause
  license_family: BSD
  size: 6217
  timestamp: 1723823393322
- conda: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.13-5_cp313.conda
  build_number: 5
  sha256: 075ad768648e88b78d2a94099563b43d3082e7c35979f457164f26d1079b7b5c
  md5: 927a2186f1f997ac018d67c4eece90a6
  constrains:
  - python 3.13.* *_cp313
  license: BSD-3-Clause
  license_family: BSD
  size: 6291
  timestamp: 1723823083064
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.13-5_cp313.conda
  build_number: 5
  sha256: 4437198eae80310f40b23ae2f8a9e0a7e5c2b9ae411a8621eb03d87273666199
  md5: b8e82d0a5c1664638f87f63cc5d241fb
  constrains:
  - python 3.13.* *_cp313
  license: BSD-3-Clause
  license_family: BSD
  size: 6322
  timestamp: 1723823058879
- conda: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.13-5_cp313.conda
  build_number: 5
  sha256: 0c12cc1b84962444002c699ed21e815fb9f686f950d734332a1b74d07db97756
  md5: 44b4fe6f22b57103afb2299935c8b68e
  constrains:
  - python 3.13.* *_cp313
  license: BSD-3-Clause
  license_family: BSD
  size: 6716
  timestamp: 1723823166911
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
  sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
  md5: 47d31b792659ce70f470b5c82fdfb7a4
  depends:
  - libgcc-ng >=12
  - ncurses >=6.3,<7.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 281456
  timestamp: 1679532220005
- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda
  sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568
  md5: f17f77f2acf4d344734bda76829ce14e
  depends:
  - ncurses >=6.3,<7.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 255870
  timestamp: 1679532707590
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
  sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884
  md5: 8cbb776a2f641b943d413b3e19df71f4
  depends:
  - ncurses >=6.3,<7.0a0
  license: GPL-3.0-only
  license_family: GPL
  size: 250351
  timestamp: 1679532511311
- conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml-0.18.10-py313h536fd9c_0.conda
  sha256: c46c0afb6d92f3ad2ba478a8f1a49091265d1ed4045c9a475136cd2f0062d7a1
  md5: 04313f7cbb5fde9462f46d1d91450a3f
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  - python >=3.13,<3.14.0a0
  - python_abi 3.13.* *_cp313
  - ruamel.yaml.clib >=0.1.2
  license: MIT
  license_family: MIT
  size: 269590
  timestamp: 1736248206911
- conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml-0.18.10-py313h63b0ddb_0.conda
  sha256: 3a528c4dff07bb475fd021289cd6892d62fd62720b2a02c70751ff2027c1e678
  md5: 860e521d9f7c77b0578061a48bc49b7d
  depends:
  - __osx >=10.13
  - python >=3.13,<3.14.0a0
  - python_abi 3.13.* *_cp313
  - ruamel.yaml.clib >=0.1.2
  license: MIT
  license_family: MIT
  size: 270125
  timestamp: 1736248310399
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml-0.18.10-py313h90d716c_0.conda
  sha256: d996e7c5ba298bef243c712e5ea96ba8ccbb5000b9d0eb9382fb6ccc2098dc08
  md5: c7b68850c7ac1beeff88404d8b77d93b
  depends:
  - __osx >=11.0
  - python >=3.13,<3.14.0a0
  - python >=3.13,<3.14.0a0 *_cp313
  - python_abi 3.13.* *_cp313
  - ruamel.yaml.clib >=0.1.2
  license: MIT
  license_family: MIT
  size: 269937
  timestamp: 1736248226069
- conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml-0.18.10-py313ha7868ed_0.conda
  sha256: 8c7e07449ab94e7e6b218357bae1670401c20ac99a27c2970ced83d101774020
  md5: c81330e1131129da89af4aaf6d8cd03a
  depends:
  - python >=3.13,<3.14.0a0
  - python_abi 3.13.* *_cp313
  - ruamel.yaml.clib >=0.1.2
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: MIT
  license_family: MIT
  size: 269261
  timestamp: 1736248205677
- conda: https://conda.anaconda.org/conda-forge/linux-64/ruamel.yaml.clib-0.2.8-py313h536fd9c_1.conda
  sha256: ef739ff0b07df6406efcb49eed327d931d4dfa6072f98def6a0ae700e584a338
  md5: d3400df9c9d0b58368bc0c0fc2591c39
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  - python >=3.13,<3.14.0a0
  - python_abi 3.13.* *_cp313
  license: MIT
  license_family: MIT
  size: 144267
  timestamp: 1728724587572
- conda: https://conda.anaconda.org/conda-forge/osx-64/ruamel.yaml.clib-0.2.8-py313hb558fbc_1.conda
  sha256: 02ce4f34ca0e8acdcc67591142675657c9f4951f9cf65a5274dcb4f310227e88
  md5: d9f11ed93c18a0d4fce36373a43caadb
  depends:
  - __osx >=10.13
  - python >=3.13,<3.14.0a0
  - python_abi 3.13.* *_cp313
  license: MIT
  license_family: MIT
  size: 121594
  timestamp: 1728724629571
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ruamel.yaml.clib-0.2.8-py313h63a2874_1.conda
  sha256: 8ed7448178b423dbd59cdea422b1fb732c16beacff2cc70f727eff1afd307896
  md5: 34ad7f96e9e4bae5f9a88d0fb04ad557
  depends:
  - __osx >=11.0
  - python >=3.13,<3.14.0a0
  - python >=3.13,<3.14.0a0 *_cp313
  - python_abi 3.13.* *_cp313
  license: MIT
  license_family: MIT
  size: 115973
  timestamp: 1728724684349
- conda: https://conda.anaconda.org/conda-forge/win-64/ruamel.yaml.clib-0.2.8-py313ha7868ed_1.conda
  sha256: d462f89d59f73686f324b603cc6fed4db49f7337143ad4447ac9b6fd68610e67
  md5: 86dc53d90ebfb62cbe18217f7f2ddd72
  depends:
  - python >=3.13,<3.14.0a0
  - python_abi 3.13.* *_cp313
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: MIT
  license_family: MIT
  size: 108488
  timestamp: 1728724833760
- conda: https://conda.anaconda.org/conda-forge/linux-64/rust-1.95.0-h53717f1_1.conda
  sha256: 0f7965acec00e5b35d7b4748ea0da57249ab3db2177d13eb87909c0a142148b5
  md5: 26172b61a3f03c31e56065413ffc1f2f
  depends:
  - __glibc >=2.17,<3.0.a0
  - gcc_impl_linux-64
  - libgcc >=14
  - libzlib >=1.3.2,<2.0a0
  - rust-std-x86_64-unknown-linux-gnu 1.95.0 h2c6d0dc_1
  - sysroot_linux-64 >=2.17
  license: MIT
  license_family: MIT
  size: 182907915
  timestamp: 1777536012536
- conda: https://conda.anaconda.org/conda-forge/osx-64/rust-1.95.0-h5655b98_1.conda
  sha256: 178c041365f72c233dd8544eb12c7514247511cf5a8f09813563f71439e684cf
  md5: 706ff40b97887ace0aa0fedfdf71a3d5
  depends:
  - rust-std-x86_64-apple-darwin 1.95.0 h38e4360_1
  license: MIT
  license_family: MIT
  size: 206385816
  timestamp: 1777535390876
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rust-1.95.0-h4ff7c5d_1.conda
  sha256: dfca85c99b02aa764f345ca74751e91c137b31415965d1ca8784fc6898dd2cbc
  md5: da183dc2479d6f87d7e856232247bb4d
  depends:
  - rust-std-aarch64-apple-darwin 1.95.0 hf6ec828_1
  license: MIT
  license_family: MIT
  size: 190985420
  timestamp: 1777535570715
- conda: https://conda.anaconda.org/conda-forge/win-64/rust-1.95.0-hf8d6059_1.conda
  sha256: e389c7e72cef404aa0611eebfe3ed71821eb4a1d11e8e02e96558b78ab24268d
  md5: 244444d407db935f7c1500d21bb00db5
  depends:
  - rust-std-x86_64-pc-windows-msvc 1.95.0 h17fc481_1
  license: MIT
  license_family: MIT
  size: 203313060
  timestamp: 1777537787709
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-src-1.95.0-unix_1.conda
  sha256: a7b1e29ef7ed01394b4df8a74dc26a75b51107cad1a9a3140b784ae12e78c97e
  md5: 54ae9a6977cbabeea9f0555e5f6b0166
  depends:
  - __unix
  constrains:
  - rust >=1.95.0,<1.95.1.0a0
  license: MIT
  license_family: MIT
  size: 4555610
  timestamp: 1777535353007
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-src-1.95.0-win_1.conda
  sha256: 1c5e62d2e0b09cd58b579af3ffa00141df6de69af3b6ab8a2e54b9944f54e5d1
  md5: d5ab19cc435e891ff7494324bafa4028
  depends:
  - __win
  constrains:
  - rust >=1.95.0,<1.95.1.0a0
  license: MIT
  license_family: MIT
  size: 4534693
  timestamp: 1777536599188
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-aarch64-apple-darwin-1.95.0-hf6ec828_1.conda
  sha256: 02f95edb4dc705a737ee251a2d4964754b47e92b6748778bf653cc0dadae0396
  md5: 1742712cfe633438d29c64166d4dd0fb
  depends:
  - __unix
  constrains:
  - rust >=1.95.0,<1.95.1.0a0
  license: MIT
  license_family: MIT
  size: 32295381
  timestamp: 1777535359445
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-apple-darwin-1.95.0-h38e4360_1.conda
  sha256: bc954e13739766689bcabd84b6100e3e2e23438ecf1ce129c7129f1f56692819
  md5: 2859d934149ae34c2a1df837a719fcdd
  depends:
  - __unix
  constrains:
  - rust >=1.95.0,<1.95.1.0a0
  license: MIT
  license_family: MIT
  size: 34462833
  timestamp: 1777535269179
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-pc-windows-msvc-1.95.0-h17fc481_1.conda
  sha256: d898e729b5bfa97113c6432bb0a3ec894d760ee16ee3b8395f9a543dcee3af23
  md5: 09f651703ba6fb9966ee984607337bcf
  depends:
  - __win
  constrains:
  - rust >=1.95.0,<1.95.1.0a0
  license: MIT
  license_family: MIT
  size: 26285976
  timestamp: 1777537641520
- conda: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.95.0-h2c6d0dc_1.conda
  sha256: 5d2e2b38a6d2a7653afc93706da04a5a14a6de9834cd34c0a2f4d7af619a3bc6
  md5: 835766243561e6c6f34b617b9eb89110
  depends:
  - __unix
  constrains:
  - rust >=1.95.0,<1.95.1.0a0
  license: MIT
  license_family: MIT
  size: 36416714
  timestamp: 1777535938349
- conda: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
  sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf
  md5: fbfb84b9de9a6939cb165c02c69b1865
  depends:
  - openssl >=3.0.0,<4.0a0
  license: MIT
  license_family: MIT
  size: 213817
  timestamp: 1643442169866
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
  sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff
  md5: 4a2cac04f86a4540b8c9b8d8f597848f
  depends:
  - openssl >=3.0.0,<4.0a0
  license: MIT
  license_family: MIT
  size: 210264
  timestamp: 1643442231687
- conda: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.17-h4a8ded7_18.conda
  sha256: 23c7ab371c1b74d01a187e05aa7240e3f5654599e364a9adff7f0b02e26f471f
  md5: 0ea96f90a10838f58412aa84fdd9df09
  depends:
  - kernel-headers_linux-64 3.10.0 he073ed8_18
  - tzdata
  license: LGPL-2.0-or-later AND LGPL-2.0-or-later WITH exceptions AND GPL-2.0-or-later AND MPL-2.0
  license_family: GPL
  size: 15500960
  timestamp: 1729794510631
- conda: https://conda.anaconda.org/conda-forge/osx-64/tapi-1300.6.5-h390ca13_0.conda
  sha256: f97372a1c75b749298cb990405a690527e8004ff97e452ed2c59e4bc6a35d132
  md5: c6ee25eb54accb3f1c8fc39203acfaf1
  depends:
  - __osx >=10.13
  - libcxx >=17.0.0.a0
  - ncurses >=6.5,<7.0a0
  license: NCSA
  license_family: MIT
  size: 221236
  timestamp: 1725491044729
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1300.6.5-h03f4b80_0.conda
  sha256: 37cd4f62ec023df8a6c6f9f6ffddde3d6620a83cbcab170a8fff31ef944402e5
  md5: b703bc3e6cba5943acf0e5f987b5d0e2
  depends:
  - __osx >=11.0
  - libcxx >=17.0.0.a0
  - ncurses >=6.5,<7.0a0
  license: NCSA
  license_family: MIT
  size: 207679
  timestamp: 1725491499758
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
  sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e
  md5: d453b98d9c83e71da0741bb0ff4d76bc
  depends:
  - libgcc-ng >=12
  - libzlib >=1.2.13,<2.0.0a0
  license: TCL
  license_family: BSD
  size: 3318875
  timestamp: 1699202167581
- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h1abcd95_1.conda
  sha256: 30412b2e9de4ff82d8c2a7e5d06a15f4f4fef1809a72138b6ccb53a33b26faf5
  md5: bf830ba5afc507c6232d4ef0fb1a882d
  depends:
  - libzlib >=1.2.13,<2.0.0a0
  license: TCL
  license_family: BSD
  size: 3270220
  timestamp: 1699202389792
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
  sha256: 72457ad031b4c048e5891f3f6cb27a53cb479db68a52d965f796910e71a403a8
  md5: b50a57ba89c32b62428b71a875291c9b
  depends:
  - libzlib >=1.2.13,<2.0.0a0
  license: TCL
  license_family: BSD
  size: 3145523
  timestamp: 1699202432999
- conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
  sha256: 2c4e914f521ccb2718946645108c9bd3fc3216ba69aea20c2c3cedbd8db32bb1
  md5: fc048363eb8f03cd1737600a5d08aafe
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: TCL
  license_family: BSD
  size: 3503410
  timestamp: 1699202577803
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
  sha256: 18636339a79656962723077df9a56c0ac7b8a864329eb8f847ee3d38495b863e
  md5: ac944244f1fed2eb49bae07193ae8215
  depends:
  - python >=3.9
  license: MIT
  license_family: MIT
  size: 19167
  timestamp: 1733256819729
- conda: https://conda.anaconda.org/conda-forge/linux-64/typos-1.29.5-h8fae777_0.conda
  sha256: f9536c8ba15a79e19ba5e0e6a95ee6e853ffa6ab66922ef15851dc5751d5ea82
  md5: 97a61e323d6826701b006fa58f8ac71e
  depends:
  - __glibc >=2.17,<3.0.a0
  - libgcc >=13
  constrains:
  - __glibc >=2.17
  license: MIT
  license_family: MIT
  size: 3419080
  timestamp: 1738325940696
- conda: https://conda.anaconda.org/conda-forge/osx-64/typos-1.29.5-h371c88c_0.conda
  sha256: 8aafefdacdafd84c08f110b86ed30529cbf818157a0443fb0150c19da48b68a1
  md5: 0c4611aeb9875111dfdce05c991148ec
  depends:
  - __osx >=10.13
  constrains:
  - __osx >=10.13
  license: MIT
  license_family: MIT
  size: 2745058
  timestamp: 1738326044395
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/typos-1.29.5-h0716509_0.conda
  sha256: 3710d3bc0e7a98fc9681e834e179a72eac9cc736673113273e2ff3fd2cb9fa05
  md5: 99c81356ab27270f97018c2d3f84627f
  depends:
  - __osx >=11.0
  constrains:
  - __osx >=11.0
  license: MIT
  license_family: MIT
  size: 2702847
  timestamp: 1738326061750
- conda: https://conda.anaconda.org/conda-forge/win-64/typos-1.29.5-ha073cba_0.conda
  sha256: d1ddc4bad7d58269890d4a44e54c8aa595a7ea74f55a92f572738c463a3f2ddd
  md5: 4d6d3e144040609131dd3cf86a615447
  depends:
  - ucrt >=10.0.20348.0
  - vc >=14.2,<15
  - vc14_runtime >=14.29.30139
  license: MIT
  license_family: MIT
  size: 2573529
  timestamp: 1738326409525
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
  sha256: 4fde5c3008bf5d2db82f2b50204464314cc3c91c1d953652f7bd01d9e52aefdf
  md5: 8ac3367aafb1cc0a068483c580af8015
  license: LicenseRef-Public-Domain
  size: 122354
  timestamp: 1728047496079
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025a-h78e105d_0.conda
  sha256: c4b1ae8a2931fe9b274c44af29c5475a85b37693999f8c792dad0f8c6734b1de
  md5: dbcace4706afdfb7eb891f7b37d07c04
  license: LicenseRef-Public-Domain
  size: 122921
  timestamp: 1737119101255
- conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
  sha256: db8dead3dd30fb1a032737554ce91e2819b43496a0db09927edf01c32b577450
  md5: 6797b005cd0f439c4c5c9ac565783700
  constrains:
  - vs2015_runtime >=14.29.30037
  license: LicenseRef-MicrosoftWindowsSDK10
  size: 559710
  timestamp: 1728377334097
- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h5fd82a7_24.conda
  sha256: 7ce178cf139ccea5079f9c353b3d8415d1d49b0a2f774662c355d3f89163d7b4
  md5: 00cf3a61562bd53bd5ea99e6888793d0
  depends:
  - vc14_runtime >=14.40.33810
  track_features:
  - vc14
  license: BSD-3-Clause
  license_family: BSD
  size: 17693
  timestamp: 1737627189024
- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda
  sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd
  md5: 378d5dcec45eaea8d303da6f00447ac0
  depends:
  - ucrt >=10.0.20348.0
  - vcomp14 14.44.35208 h818238b_32
  constrains:
  - vs2015_runtime 14.44.35208.* *_32
  license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime
  license_family: Proprietary
  size: 682706
  timestamp: 1760418629729
- conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda
  sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1
  md5: 58f67b437acbf2764317ba273d731f1d
  depends:
  - ucrt >=10.0.20348.0
  constrains:
  - vs2015_runtime 14.44.35208.* *_32
  license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime
  license_family: Proprietary
  size: 114846
  timestamp: 1760418593847
- conda: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_32.conda
  sha256: 65cea43f4de99bc81d589e746c538908b2e95aead9042fecfbc56a4d14684a87
  md5: dfc1e5bbf1ecb0024a78e4e8bd45239d
  depends:
  - vc14_runtime >=14.44.35208
  license: BSD-3-Clause
  license_family: BSD
  size: 18919
  timestamp: 1760418632059
- conda: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-h7dcff83_24.conda
  sha256: 4125acd871ba3498f25799b1999bf0fa4d80b0b353eb56ac170809f9eda19dd1
  md5: 41aaa71a5d4f668f5795c0647eeea776
  depends:
  - vswhere
  constrains:
  - vs_win-64 2019.11
  track_features:
  - vc14
  license: BSD-3-Clause
  license_family: BSD
  size: 20377
  timestamp: 1737627273487
- conda: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.7-h57928b3_0.conda
  sha256: 8caeda9c0898cb8ee2cf4f45640dbbbdf772ddc01345cfb0f7b352c58b4d8025
  md5: ba83df93b48acfc528f5464c9a882baa
  license: MIT
  license_family: MIT
  size: 219013
  timestamp: 1719460515960
- conda: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.6-h915ae27_0.conda
  sha256: efa04a98cb149643fa54c4dad5a0179e36a5fbc88427ea0eec88ceed87fd0f96
  md5: 4cb2cd56f039b129bb0e491c1164167e
  depends:
  - __osx >=10.9
  - libzlib >=1.2.13,<2.0.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 498900
  timestamp: 1714723303098
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.6-hb46c0d2_0.conda
  sha256: 2d4fd1ff7ee79cd954ca8e81abf11d9d49954dd1fef80f27289e2402ae9c2e09
  md5: d96942c06c3e84bfcc5efb038724a7fd
  depends:
  - __osx >=11.0
  - libzlib >=1.2.13,<2.0.0a0
  license: BSD-3-Clause
  license_family: BSD
  size: 405089
  timestamp: 1714723101397