-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpoetry.lock
1631 lines (1504 loc) · 132 KB
/
poetry.lock
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
# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand.
[[package]]
name = "appnope"
version = "0.1.4"
description = "Disable App Nap on macOS >= 10.9"
optional = false
python-versions = ">=3.6"
files = [
{file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"},
{file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"},
]
[[package]]
name = "asttokens"
version = "2.4.1"
description = "Annotate AST trees with source code positions"
optional = false
python-versions = "*"
files = [
{file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"},
{file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"},
]
[package.dependencies]
six = ">=1.12.0"
[package.extras]
astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"]
test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"]
[[package]]
name = "backcall"
version = "0.2.0"
description = "Specifications for callback functions passed in to an API"
optional = false
python-versions = "*"
files = [
{file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
{file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
]
[[package]]
name = "black"
version = "23.12.1"
description = "The uncompromising code formatter."
optional = false
python-versions = ">=3.8"
files = [
{file = "black-23.12.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e0aaf6041986767a5e0ce663c7a2f0e9eaf21e6ff87a5f95cbf3675bfd4c41d2"},
{file = "black-23.12.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c88b3711d12905b74206227109272673edce0cb29f27e1385f33b0163c414bba"},
{file = "black-23.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a920b569dc6b3472513ba6ddea21f440d4b4c699494d2e972a1753cdc25df7b0"},
{file = "black-23.12.1-cp310-cp310-win_amd64.whl", hash = "sha256:3fa4be75ef2a6b96ea8d92b1587dd8cb3a35c7e3d51f0738ced0781c3aa3a5a3"},
{file = "black-23.12.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8d4df77958a622f9b5a4c96edb4b8c0034f8434032ab11077ec6c56ae9f384ba"},
{file = "black-23.12.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:602cfb1196dc692424c70b6507593a2b29aac0547c1be9a1d1365f0d964c353b"},
{file = "black-23.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c4352800f14be5b4864016882cdba10755bd50805c95f728011bcb47a4afd59"},
{file = "black-23.12.1-cp311-cp311-win_amd64.whl", hash = "sha256:0808494f2b2df923ffc5723ed3c7b096bd76341f6213989759287611e9837d50"},
{file = "black-23.12.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:25e57fd232a6d6ff3f4478a6fd0580838e47c93c83eaf1ccc92d4faf27112c4e"},
{file = "black-23.12.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2d9e13db441c509a3763a7a3d9a49ccc1b4e974a47be4e08ade2a228876500ec"},
{file = "black-23.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1bd9c210f8b109b1762ec9fd36592fdd528485aadb3f5849b2740ef17e674e"},
{file = "black-23.12.1-cp312-cp312-win_amd64.whl", hash = "sha256:ae76c22bde5cbb6bfd211ec343ded2163bba7883c7bc77f6b756a1049436fbb9"},
{file = "black-23.12.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1fa88a0f74e50e4487477bc0bb900c6781dbddfdfa32691e780bf854c3b4a47f"},
{file = "black-23.12.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a4d6a9668e45ad99d2f8ec70d5c8c04ef4f32f648ef39048d010b0689832ec6d"},
{file = "black-23.12.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b18fb2ae6c4bb63eebe5be6bd869ba2f14fd0259bda7d18a46b764d8fb86298a"},
{file = "black-23.12.1-cp38-cp38-win_amd64.whl", hash = "sha256:c04b6d9d20e9c13f43eee8ea87d44156b8505ca8a3c878773f68b4e4812a421e"},
{file = "black-23.12.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3e1b38b3135fd4c025c28c55ddfc236b05af657828a8a6abe5deec419a0b7055"},
{file = "black-23.12.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4f0031eaa7b921db76decd73636ef3a12c942ed367d8c3841a0739412b260a54"},
{file = "black-23.12.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97e56155c6b737854e60a9ab1c598ff2533d57e7506d97af5481141671abf3ea"},
{file = "black-23.12.1-cp39-cp39-win_amd64.whl", hash = "sha256:dd15245c8b68fe2b6bd0f32c1556509d11bb33aec9b5d0866dd8e2ed3dba09c2"},
{file = "black-23.12.1-py3-none-any.whl", hash = "sha256:78baad24af0f033958cad29731e27363183e140962595def56423e626f4bee3e"},
{file = "black-23.12.1.tar.gz", hash = "sha256:4ce3ef14ebe8d9509188014d96af1c456a910d5b5cbf434a09fef7e024b3d0d5"},
]
[package.dependencies]
click = ">=8.0.0"
mypy-extensions = ">=0.4.3"
packaging = ">=22.0"
pathspec = ">=0.9.0"
platformdirs = ">=2"
tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""}
typing-extensions = {version = ">=4.0.1", markers = "python_version < \"3.11\""}
[package.extras]
colorama = ["colorama (>=0.4.3)"]
d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"]
jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"]
uvloop = ["uvloop (>=0.15.2)"]
[[package]]
name = "cffi"
version = "1.16.0"
description = "Foreign Function Interface for Python calling C code."
optional = false
python-versions = ">=3.8"
files = [
{file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"},
{file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"},
{file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"},
{file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"},
{file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"},
{file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"},
{file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"},
{file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"},
{file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"},
{file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"},
{file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"},
{file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"},
{file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"},
{file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"},
{file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"},
{file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"},
{file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"},
{file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"},
{file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"},
{file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"},
{file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"},
{file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"},
{file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"},
{file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"},
{file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"},
{file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"},
{file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"},
{file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"},
{file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"},
{file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"},
{file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"},
{file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"},
]
[package.dependencies]
pycparser = "*"
[[package]]
name = "click"
version = "8.1.7"
description = "Composable command line interface toolkit"
optional = false
python-versions = ">=3.7"
files = [
{file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"},
{file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"},
]
[package.dependencies]
colorama = {version = "*", markers = "platform_system == \"Windows\""}
[[package]]
name = "cmeel"
version = "0.53.3"
description = "Create Wheel from CMake projects"
optional = false
python-versions = ">=3.8,<4.0"
files = [
{file = "cmeel-0.53.3-py3-none-any.whl", hash = "sha256:26472fa9d57610cc5cb2c2ed0911b272b928e9e580a9d3c51e3ca90a919f3fad"},
{file = "cmeel-0.53.3.tar.gz", hash = "sha256:f40761e3b997910d5a3153a35d9635c3bc849fc21a79a8b57d67a3617006d359"},
]
[package.dependencies]
tomli = {version = ">=2.0.1,<3.0.0", markers = "python_version < \"3.11\""}
[package.extras]
build = ["cmake (>=3.27.9,<4.0.0)", "git-archive-all (>=1.23.1,<2.0.0)", "packaging (>=23.2,<24.0)", "wheel (>=0.42.0)"]
[[package]]
name = "cmeel-assimp"
version = "5.3.1"
description = "cmeel distribution for assimp, Open-Asset-Importer-Library Repository"
optional = false
python-versions = ">= 3.8"
files = [
{file = "cmeel_assimp-5.3.1-0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:05ea5f78b4a9ea87fc5b102872962625c5e2b27bc3c30277efc3916905c477f6"},
{file = "cmeel_assimp-5.3.1-0-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:b3c0a07981403bd402728f1a2cd5524893f342bfef6d1db5ae34dcdb5f79d7e2"},
{file = "cmeel_assimp-5.3.1-0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:c33678fcd7b35d4bdc9ccaac8311c05aaa6cb475d63eca4f83cc91c34d71ce41"},
{file = "cmeel_assimp-5.3.1-0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:0bcb4f649377632698de7a8a56a6bb9772aff2cccd8532b796e223ccb1e579d6"},
{file = "cmeel_assimp-5.3.1-0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:360594e4c80d1dd9371db583856e815d9b990ebf205aea6392a15a8b5fb13b8c"},
{file = "cmeel_assimp-5.3.1.tar.gz", hash = "sha256:b2da7360f5e865b92da53f3392582738de1ca25d5f4d7cbf953249c14c20a530"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-boost"
version = "1.82.0"
description = "cmeel distribution for boost, which provides free peer-reviewed portable C++ source libraries."
optional = false
python-versions = ">= 3.8"
files = [
{file = "cmeel_boost-1.82.0-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:921d803a76d566ad1f58e2cd880c4bfa7409e1fb83ab11a5eea92cb859c705ed"},
{file = "cmeel_boost-1.82.0-0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d166c9ced8b828f1d17829e320616ca5097f9461316fcffeb123ccb453bc90cf"},
{file = "cmeel_boost-1.82.0-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:a785a017f7d44844fda1e2df81be28ca216c8ef85074c33078c535a1eb590037"},
{file = "cmeel_boost-1.82.0-0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:7798c16a372e834eb08dffcb849c439eed9349ee174e3eeb26da7fc1bf269d2a"},
{file = "cmeel_boost-1.82.0-0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7e3c0a79c06af17e10922ae5f4e27e4c59c0053cec131cababa5bfb2562d992c"},
{file = "cmeel_boost-1.82.0-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:95babd3030550fb23e89dcac190723773cd85d5edf1e1967d2041cbfe64bd620"},
{file = "cmeel_boost-1.82.0-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:abf30a02bcb0edc1fd1da72aa42e82b54e04a79ee9be424df8f935d0b99393f6"},
{file = "cmeel_boost-1.82.0-0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:52fcbd60cfeca6dee13c0492e833762099035fdeeb3c762829dffd36b8aebd47"},
{file = "cmeel_boost-1.82.0-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2749ab5631fc0206b39418c8f182dabc4e87c7e15a385514e1d43f1a030e3bc1"},
{file = "cmeel_boost-1.82.0-0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:73a5cdafc7c87774591b2d0cd4451b5f08c67f8f7056ae14079eed78ed66d83e"},
{file = "cmeel_boost-1.82.0-0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f4a96968918b9fb6d2c2b3da93a6cc303e84bb40e91d199ee1c6514c1536c4f8"},
{file = "cmeel_boost-1.82.0-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:42d5ae1c6416e3e35385a4a799a5383cd3499e25fc21f10be7454d677f85e08f"},
{file = "cmeel_boost-1.82.0-0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:303dd0bdd3bddb607c2799219536dae49abb89bb1240441a565bd6947772420c"},
{file = "cmeel_boost-1.82.0-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:8e46baaa0043f88ad160e904d0db33673dd2f4bca02d7b87f637b012a62ca63c"},
{file = "cmeel_boost-1.82.0-0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:51e9b039c671e91cf4354e1daa5e5961ba4a704ba13fbc4e3ff13717b9bb38bf"},
{file = "cmeel_boost-1.82.0-0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:42cfefac87b2ee31dc997c90159c05fdb280fa2925c715c688db7e4f122aa4dd"},
{file = "cmeel_boost-1.82.0-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:18a5152b2499aa4198402cfcd6d4cc50f5da7ca8bb832588bac5c179e647411c"},
{file = "cmeel_boost-1.82.0-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:35fa2ab6d06e1f00015f045f0a4a8f90eddd1a837db64c0e58117bb846ce1db6"},
{file = "cmeel_boost-1.82.0-0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:bb1311ff2ba534db162ca16cd824ebf3ff747f3eb93f2592b82a765ea434b260"},
{file = "cmeel_boost-1.82.0-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:dfdcdbaeb6441227b83b4a72e5ee861dd28e774bb4344d01d9c9305ba2a68bd0"},
{file = "cmeel_boost-1.82.0-0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:389d7249f35e9000326ac29483fcd0969de0b9d5175a7929b3364301f2d7f767"},
{file = "cmeel_boost-1.82.0-0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bf1fb125aa92a898655ba1fa96be5d1006aa201e37e302b98db1767884472e54"},
{file = "cmeel_boost-1.82.0-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:074086bc12c3d1a830bed6f278ea9f324716fd8fa25a1f5ec6959a2db2770d91"},
{file = "cmeel_boost-1.82.0-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bb44c89cc9e70f35b39c47a8074872cb82d804eae0c1444d7d914daec128d20e"},
{file = "cmeel_boost-1.82.0-0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:8e7d4f49f9973b8efcc501bdd25133e0a59301685b7b65ec04ba6cb664d5fa3f"},
{file = "cmeel_boost-1.82.0-0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:43d4214d915cdd1981ee5ca78f30c9d740be12557582518d9a05a7f6a9037d67"},
{file = "cmeel_boost-1.82.0-0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5633d626b1d62a88a5e43d003716342d5a4940cd2c71f90399ed64ad8f618f3f"},
{file = "cmeel_boost-1.82.0-0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:17ca3fed4eec35880794e9ffd424e5836c165415f00b9c5aaa7ec52e6d889fed"},
{file = "cmeel_boost-1.82.0-0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fbe6fdb3c8b625259df0cd65df581ae027a44d140f06070eddac68427fdfb314"},
{file = "cmeel_boost-1.82.0-1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:27a3e407e25c701b6e4e949b5084ebe8d065a38c3395de10bd5a9456eb57d75f"},
{file = "cmeel_boost-1.82.0-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:28319ae7ef398ca6e8b4c822015f97413b4ed7f730efb0651fca5bd879b5b0d4"},
{file = "cmeel_boost-1.82.0-1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:2baa72e3f529f9ab6a2306b35e1036f641a0ad824e3e94961de545dc3ded1265"},
{file = "cmeel_boost-1.82.0-1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:7b99b30369177d37bfe30a78b65524a608409fcdccf7031edcb0c5c10dc90702"},
{file = "cmeel_boost-1.82.0-1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:78140cfa70442351809b8e37361c3aa1f8d95abc73f80c3a7445075e697fc2d3"},
{file = "cmeel_boost-1.82.0-1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fffdd7275a3d4b4dd41da35573fc1fbe77e1402c235583701d5972c84a2ba8f3"},
{file = "cmeel_boost-1.82.0-1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:312d49dccd81617ad66ad567f34b2d929d75e25ebe733804596c7de3591a05e5"},
{file = "cmeel_boost-1.82.0-1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81cf5a0ae2b3cf97884ff167b0ae223079446cf56dce0d9ab19fb85622e73444"},
{file = "cmeel_boost-1.82.0-1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e5121b4ad203b6a5b611827cb3702d80734c6283753b572661a064cf3c092296"},
{file = "cmeel_boost-1.82.0-1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:75d0b0422cd8d4a86f759fe54f72b9447d3c8cbb738276ee83eea6f881503c4e"},
{file = "cmeel_boost-1.82.0-1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b78c44799e5044f32a1c9e480f8b241a38daac39255402e720662018c915396f"},
{file = "cmeel_boost-1.82.0-1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cb0b515bb171f3e8c78e111c885a16b1469600472ef35cf351c02d20926649e8"},
{file = "cmeel_boost-1.82.0-1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:829d3d4207017391ad6e43507fa3318a181df2f3163b541eccd60fcc458c8730"},
{file = "cmeel_boost-1.82.0-1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:96f90896ab371df223bd68532ef55b80ef03dfce741a23cf611b27690654245f"},
{file = "cmeel_boost-1.82.0-1-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:d563dc2b80f5c920dabcbbb11ebf1899d72bb41138a3c16f690bf88b675eab58"},
{file = "cmeel_boost-1.82.0-1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8258881aa5990ed25b031a88ef402d7f3a745d1e311120cf38e898ca7fe27755"},
{file = "cmeel_boost-1.82.0-1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3bd40c7faeb8f769757ce65189c873e9cd433ab6fcba2f636947b00f22485500"},
{file = "cmeel_boost-1.82.0-1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e6db1eb1abdedb74fc8b6f6d098c2a2c2acec861851dd9dbead40eb8c7df2bec"},
{file = "cmeel_boost-1.82.0-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:45916b1e2795169b0c3b0ee32fb7bcb77ed340ff04d5c654ae0d7a8b222e7170"},
{file = "cmeel_boost-1.82.0-1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:2fb6c70fc794e050228a5e428bcd6651d058d4cc54c0dae752110a1a5c51b076"},
{file = "cmeel_boost-1.82.0-1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a41eb6b0566e874dc7674a686eafcd0a12a724ba36749f8cba63694cbe39ac08"},
{file = "cmeel_boost-1.82.0-1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:e89ae0bd727f8dcf4c205552dbe8967f11565fb9709b33906cbf25271fb3aeeb"},
{file = "cmeel_boost-1.82.0-1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:841bb0813457a2cce05d3e142f97b65823545af794f6e063dffa1a1f72f8957b"},
{file = "cmeel_boost-1.82.0-1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0595973c6b77d2c46948f76c2b1b98137c96a1e4266d5cb088ee0a70ba7a16c4"},
{file = "cmeel_boost-1.82.0-1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:4dfb27adc240c8858fc459898757ce4a4c1c78e3293863f0c818d42483fde9b5"},
{file = "cmeel_boost-1.82.0-1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e4159109810a58bf03ce98a31c79e17221d7223b076e0f236e8150cc7a60fa1a"},
{file = "cmeel_boost-1.82.0-1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e54640b3837e138de8ed68a10df73d2e22dd2c0416a2c8ce3636cfd794ab93ff"},
{file = "cmeel_boost-1.82.0-1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:eec70eb2a214a6bf85f670a932ec3702215e4400522969cb73c33b316484049a"},
{file = "cmeel_boost-1.82.0-1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:897241fc8f4f710ea77c5a09d968e8c3bd9494ab15e45b791822b16eebc7236b"},
{file = "cmeel_boost-1.82.0-1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:41d3a60ca0e30e36d1803c8a68d060238040d7cc29ab9d31255a597ba4257191"},
{file = "cmeel_boost-1.82.0-1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:e3bdd2bcb950a29c06fa76718d92875a4826b1f2562cf7c7da43ddbe7f6fbd0a"},
{file = "cmeel_boost-1.82.0-1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5cc97b5485b7c2eee99c039c6018288f5b95ff875304d8ec9d210ef2811032a7"},
]
[package.dependencies]
cmeel = "*"
numpy = ">=1.23,<1.25"
[[package]]
name = "cmeel-boost"
version = "1.83.0"
description = "cmeel distribution for boost, which provides free peer-reviewed portable C++ source libraries."
optional = false
python-versions = ">= 3.8"
files = [
{file = "cmeel_boost-1.83.0-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b26e6b9dd0ad459542e1d0249863847e756fb6ed88529c6f6a0d563183115e8d"},
{file = "cmeel_boost-1.83.0-0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a9e6cf9a095998446248479c219533426692ac75f3bac990d5992a845fa2a6df"},
{file = "cmeel_boost-1.83.0-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:2abb8bd9d3856aada2ddad9c924d4139afa2308c1c53183e4710937d3ff83354"},
{file = "cmeel_boost-1.83.0-0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:4b75573ca0722a5a701d4efefe349ac3b920faee6a9c0dcfc4b1c36a176dc4d4"},
{file = "cmeel_boost-1.83.0-0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0a710dd563604f21a67a666988fd114a9f655aa7b7af0f6e2657d50109bbd9ce"},
{file = "cmeel_boost-1.83.0-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c282779f774e43fc955665f3e650a62ded9b2b6c8417400541f59a3ae3467e14"},
{file = "cmeel_boost-1.83.0-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:776aa2c403dcc8909550546505c8063c189a7e0577e477519462c6596fc85480"},
{file = "cmeel_boost-1.83.0-0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:64f785085244b7ba15c511eb036b5edfb32fd2a933186d6ccf46dc38436c06fa"},
{file = "cmeel_boost-1.83.0-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bf653000a94d1876210a2ab68010651358814234e64b6ed6852705b375284307"},
{file = "cmeel_boost-1.83.0-0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:85d46fff2093bb5fe1576918dbf69cc0c3f1f0f87028353687ffd8d0b3491f73"},
{file = "cmeel_boost-1.83.0-0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7d16828ee42a1da24eb91635ecb6c62948fe3689780c3eab0dd1553b0a197554"},
{file = "cmeel_boost-1.83.0-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:48a1cd8150b8b605299f1a199a7ecb2d199be48e882144920ec418aba35e5fb1"},
{file = "cmeel_boost-1.83.0-0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:34178d3f7733d33e226f5916120e7ac89c1d81f9ec241347cc2ccc7a6d2634e0"},
{file = "cmeel_boost-1.83.0-0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2916d2befe99c641f89b63c3cc2a93e2a46c18e5dbea51494116a84a18391560"},
{file = "cmeel_boost-1.83.0-0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:c7550b4990b92b3ccd83a216aab96b9567ec7d3eaa46a85d38d85b1293de5c74"},
{file = "cmeel_boost-1.83.0-0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9821065b64449a79c220fac3f1f425251d3448ad78dbac72f9d8841ee0b81e0c"},
{file = "cmeel_boost-1.83.0-0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4c42e100b749137ad3a652445e3b05c94f94ce86b99036b8070a41a830aa13de"},
{file = "cmeel_boost-1.83.0-0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:572ac2816c4ce01509f274814692737c14748e65744493f8e639a94e0652456f"},
{file = "cmeel_boost-1.83.0-0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0bd96af4b9afb53390aa74c6c60c2731075ca99b09291a87b20b858b4f3b32d9"},
{file = "cmeel_boost-1.83.0-0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:604ee9e7b80677f8c9c9063c33c9fd0bc64f0417a1465509110f6422cd2c80f3"},
{file = "cmeel_boost-1.83.0-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:2d45f421b8b80065e17087858ff66eabd2ece9e851d196a156924d4d7c3aadf1"},
{file = "cmeel_boost-1.83.0-0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:c18e2cfe01ec145799c98fe4a0d88f4658f5b7fb7442f37cb01e6875ee582c62"},
{file = "cmeel_boost-1.83.0-0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e81442aea5b3bc545ed6c0af93058e7979fc8b0ecd0e8bee71bfc30a6e835cd"},
{file = "cmeel_boost-1.83.0-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2eff0508a15ac0fb7157e891724dd3890d75f7d97431702bf94c99b799fea9e8"},
{file = "cmeel_boost-1.83.0-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8081fb91af18de1ce719c0f8becc700a6786cd79cc27a18bd607d52ffd9aa1d"},
{file = "cmeel_boost-1.83.0-0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:faa31d46653637570215f74a3effa767db72f6f66fa5388adfc5cacc86bfe668"},
{file = "cmeel_boost-1.83.0-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:5580ae636f00dec1820afe981b41234744863eff8f7b5adbbf0d38abdaa6c817"},
{file = "cmeel_boost-1.83.0-0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:a3813356e2e79c693cb44fe0adfffdf66b8fa413b3d00f22ae69a9bda6bc94f7"},
{file = "cmeel_boost-1.83.0-0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:6a4bc6e79c7a729e7690f176b48e864d62bfd46a5ce96a8a83cdefd0f8d12bcc"},
{file = "cmeel_boost-1.83.0-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6f6d4bd699da4c0ae6eb53cf370b480fd58a78bbbb4c28e9617d83495743e7fe"},
{file = "cmeel_boost-1.83.0-0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:b10f7285d3760d287686fa7be7696b78db6c343ee9bfd36d95be11595e7a9d61"},
{file = "cmeel_boost-1.83.0-0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:6232e593ecfda1766aca88989894bdee1b8ec663f02582cb1c2376b8253b4165"},
{file = "cmeel_boost-1.83.0-0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a38117059dfb42737fccab05541b1dbe8fd065948489a8c2d074b2f082930f0f"},
{file = "cmeel_boost-1.83.0.tar.gz", hash = "sha256:253da2e8bc52288ad1d225c1a07c93a85b60c638b24fcb7de934150908c6ec25"},
]
[package.dependencies]
cmeel = "*"
numpy = {version = ">=1.23,<1.25", markers = "python_version < \"3.9\""}
[[package]]
name = "cmeel-console-bridge"
version = "1.0.2.2"
description = "cmeel distribution for console-bridge, A ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages."
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_console_bridge-1.0.2.2-0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:16d97047ae4d732db0af48993b145bf11e6ef4d1579b29e3ed2f65ad4349d0f1"},
{file = "cmeel_console_bridge-1.0.2.2-1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:55b10444c7f09525e93f9db406020db56d08ed023a2eb27010077db476057d6b"},
{file = "cmeel_console_bridge-1.0.2.2-1-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:9326a6cf1a2eda3447ddfecae92769a15df0327803c34e148090d54c95d79871"},
{file = "cmeel_console_bridge-1.0.2.2-1-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:ff004576e9877c4a7555aa1275e5c2cefef0a68f69f65669ff4da842bb2621bb"},
{file = "cmeel_console_bridge-1.0.2.2-1-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:a2d992ee22b4671d9a695b1ac2aa738a862262f78fa393c38cbaad06d8205b89"},
{file = "cmeel_console_bridge-1.0.2.2-1-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:d6dcc5f8eadf18cd3e3d6155ba4aadd9b45e791912659bc14e5efdda7b5c2af2"},
{file = "cmeel_console_bridge-1.0.2.2-2-py3-none-macosx_12_0_arm64.whl", hash = "sha256:d5ccf73b733e480bf71d0430da9c569101f5019bb97abeb397d41515085b344c"},
{file = "cmeel_console_bridge-1.0.2.2-2-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:e2b4b33f6c81bb935315cd8b243dcad3b151bd6da47c6dc5f46d1facfaae4d7d"},
{file = "cmeel_console_bridge-1.0.2.2-2-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:23cb0e37678a75778ba63444e598c41b4a694dab46037966357e81374bf4d182"},
{file = "cmeel_console_bridge-1.0.2.2-2-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:5933c56b6d5f4c1d1642c8088ad2c01d31bd6ec6fa8c0d2cd1683791e8242f9a"},
{file = "cmeel_console_bridge-1.0.2.2-2-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:375eb20ff3eb0bc7d7002e7a5b04cfdbb17ec9ed29b28e66bfe1644e9588a99c"},
{file = "cmeel_console_bridge-1.0.2.2-3-py3-none-macosx_12_0_arm64.whl", hash = "sha256:b9a6e0e18221f18b9ac1855bd281277a3de7b85875b44e72dac1fe9ff0ae0924"},
{file = "cmeel_console_bridge-1.0.2.2-3-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:b68c2c02821133f9c9c11401c3c68aec145eb400bab493f1a0ffd26ef59f8bbf"},
{file = "cmeel_console_bridge-1.0.2.2-3-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:cf21a07c86d30a77485a5db4d6629ea12b55f8733227a26f911b5f1cb1294ba9"},
{file = "cmeel_console_bridge-1.0.2.2-3-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:773b5ced1e9e2caacfb402a8abc5d6377dfdd56fd26d0e046da5724f26acfe40"},
{file = "cmeel_console_bridge-1.0.2.2-3-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:ba511d07bae34e07cc11146501b0e0cab23573c905888e1fe3f8688963a947be"},
{file = "cmeel_console_bridge-1.0.2.2.tar.gz", hash = "sha256:7d472606e0535c61583cf23fc654149a8ab7cf5278502dce80cbacb8a7a0f395"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-octomap"
version = "1.9.8.2"
description = "cmeel distribution for OctoMap, An Efficient Probabilistic 3D Mapping Framework Based on Octrees"
optional = false
python-versions = ">= 3.7"
files = [
{file = "cmeel_octomap-1.9.8.2-0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4d510a9d5766ef15af40e4e3943a5ee589ba0357cfe10b5a710e2f04b0b19f57"},
{file = "cmeel_octomap-1.9.8.2-0-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:21e4779766c9fa76e2cafa8c7f2a60712b0010523bfc8d51d7c8f4e2aff95267"},
{file = "cmeel_octomap-1.9.8.2-0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:0003eae2cd8ce1dee194a21350a9f6e9e0b3dec89a8a6f80ab4c6ff58986276d"},
{file = "cmeel_octomap-1.9.8.2-0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:f07ab209481ff5a9ad44d9d649bf3b04119e2947f9d52b16cf3e4408b7653e88"},
{file = "cmeel_octomap-1.9.8.2-0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:14adc8913cf44a5b570588926d84fff440733ad0d4b8ec781269137e277cfe18"},
{file = "cmeel_octomap-1.9.8.2-1-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:fce38aa60c22b77396678e8f9406b98475312851a96ebf6cd654d2d60a3aa73f"},
{file = "cmeel_octomap-1.9.8.2-1-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:5c4671f89f1b1dd4a0e868d464ae218ad8c5fe8a120fd6b4bcfca64b4bcfc45d"},
{file = "cmeel_octomap-1.9.8.2-1-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:8af40226c6c82d86630f8d3093d9b2405d0a4eed1adbd79fee4cc18e19d27f96"},
{file = "cmeel_octomap-1.9.8.2-1-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:1477026e475da08e6a596ff640f787b445f6d61f27a2551d1a33ede1a52960e3"},
{file = "cmeel_octomap-1.9.8.2-2-py3-none-macosx_12_0_arm64.whl", hash = "sha256:f053dd94c1c90b70cab3eb54906893222167272ba3d5f7f24a1713a9e014beca"},
{file = "cmeel_octomap-1.9.8.2-2-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:ca93c09b0fcd3a5830b1238235599adad22cce8630771b33bf318507ab564efc"},
{file = "cmeel_octomap-1.9.8.2-2-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:175aa7e03c0d0e7beaa4fe4f7ea7c89e55165ddf7668c470687f369889c7481c"},
{file = "cmeel_octomap-1.9.8.2-2-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:18886ebeb30e3355efef4321bee31f8eab93dfb4745aaf2ccd0e7effeab117cb"},
{file = "cmeel_octomap-1.9.8.2-2-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:b5f986f3c6b18306769f441d7f1667023ac847bd79f90cab549596313b2bf780"},
{file = "cmeel_octomap-1.9.8.2-3-py3-none-macosx_12_0_arm64.whl", hash = "sha256:f702f288d38393535f4680d7065bc518acc8fb8517f3f5eb875e4039ca36d632"},
{file = "cmeel_octomap-1.9.8.2-3-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:fef4af62fe3bcd386218e65017a7d30a755c2dc944d1e6f791ede73358bf8664"},
{file = "cmeel_octomap-1.9.8.2-3-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:c0e083632db2a7133a8ed80da3db897339f43a92b397642fd7818f607cbf8d42"},
{file = "cmeel_octomap-1.9.8.2-3-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:eebda85fd38f3f79030d7748483be765233148309fed7af9a1e523f184f4e98d"},
{file = "cmeel_octomap-1.9.8.2-3-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:aa8810c4b8b2a0828de2ca2e3f983665ecdb6497c63a66721af5cad39d515f79"},
{file = "cmeel_octomap-1.9.8.2.tar.gz", hash = "sha256:c569b276dc5c078c8f539f7736ccd02bfa84c8a4785c74e8543ade9920f0f93b"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-qhull"
version = "8.0.2.1"
description = "cmeel distribution for qhull: Convex hull, Delaunay triangulation, Voronoi diagrams, Halfspace intersection"
optional = false
python-versions = ">= 3.8"
files = [
{file = "cmeel_qhull-8.0.2.1-0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:39f5183a6e026754c3c043239bac005bf1825240d72e1d8fdf090a0f3ea27307"},
{file = "cmeel_qhull-8.0.2.1-0-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:f135c5a4f4c8ed53f061bc86b794aaca2c0c34761c9269c06b71329c9da56f82"},
{file = "cmeel_qhull-8.0.2.1-0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:17f519106df79aed9fc5ec92833d4958d132d23021f02a78a9564cdf83a36c7c"},
{file = "cmeel_qhull-8.0.2.1-0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:c513abafa40e2b8eb7cd3640e3f92d5391fbd6ec0f4182dbf9536934d8a8ea3e"},
{file = "cmeel_qhull-8.0.2.1-0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:20a69cb34b6250aee1f018412989734c9ddcad6ff66717a7c5516fc19f55d5ff"},
{file = "cmeel_qhull-8.0.2.1.tar.gz", hash = "sha256:68e8d41d95f61830f2d460af1e4d760f0dbe4d46413d7c736f0ed701153ebe52"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-tinyxml"
version = "2.6.2.3"
description = "cmeel distribution for TinyXML, an obsolete thing."
optional = false
python-versions = ">= 3.8"
files = [
{file = "cmeel_tinyxml-2.6.2.3-0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:7fdf4df7abbb2a6bd48cddf2c103477110eb48caed92d4a4d8ac98c75ee53c89"},
{file = "cmeel_tinyxml-2.6.2.3-0-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:e69044b68d1f9c2597169a4099ae95a2e33cdbf98b5061c3ffafad4b9eed9c27"},
{file = "cmeel_tinyxml-2.6.2.3-0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:ecb6107a6777b5bc0339b8f7fb4a76c95958648382244ac44e278a3a05db37df"},
{file = "cmeel_tinyxml-2.6.2.3-0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:fe4bddefce9832c2c5f6e75c1d8af2b8282127180eb3f2aecbd02f5f152bad94"},
{file = "cmeel_tinyxml-2.6.2.3-0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:fe088221f78ad7d35fbeb828ecb17709d20f60b68c0dcfef6f7d86ec6a57ee9b"},
{file = "cmeel_tinyxml-2.6.2.3.tar.gz", hash = "sha256:7404308e7a578df4d480223fbe4ff867563e267ef69c95d65b6dd28e42661ef2"},
]
[package.dependencies]
cmeel = "*"
[[package]]
name = "cmeel-urdfdom"
version = "3.1.1.1"
description = "cmeel distribution for urdfdom, URDF parser"
optional = false
python-versions = ">= 3.8"
files = [
{file = "cmeel_urdfdom-3.1.1.1-0-py3-none-macosx_12_0_arm64.whl", hash = "sha256:354a44dce4692d19af61487ced4ee279b06fcc34fad8184c404ce91c41c73b67"},
{file = "cmeel_urdfdom-3.1.1.1-0-py3-none-macosx_12_0_x86_64.whl", hash = "sha256:7b4386a2d8db65208fd722cc11959bd5f42dd19b0c2caba361e315517d6513ab"},
{file = "cmeel_urdfdom-3.1.1.1-0-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:42faf8a6e7437a7c03e38dad07a65cace8bf77aa594acc58f87726178802771d"},
{file = "cmeel_urdfdom-3.1.1.1-0-py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:83eafe0e494cd285b3a57805c72b12500d906586ff93a57a03d09a87d25ec62d"},
{file = "cmeel_urdfdom-3.1.1.1-0-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:646dde19c61029ef1ccd9be39b301a6d0642516a159a2bbd9441a9590d3c97f4"},
{file = "cmeel_urdfdom-3.1.1.1.tar.gz", hash = "sha256:c37c2c4627593e8a6955421d83e3c4d592d6a18276ecefed95eefad0cd82251f"},
]
[package.dependencies]
cmeel = "*"
cmeel-console-bridge = "*"
cmeel-tinyxml = "*"
[package.extras]
build = ["cmeel-urdfdom-headers"]
[[package]]
name = "colorama"
version = "0.4.6"
description = "Cross-platform colored terminal text."
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
files = [
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
]
[[package]]
name = "decorator"
version = "5.1.1"
description = "Decorators for Humans"
optional = false
python-versions = ">=3.5"
files = [
{file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"},
{file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"},
]
[[package]]
name = "dill"
version = "0.3.8"
description = "serialize all of Python"
optional = false
python-versions = ">=3.8"
files = [
{file = "dill-0.3.8-py3-none-any.whl", hash = "sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7"},
{file = "dill-0.3.8.tar.gz", hash = "sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca"},
]
[package.extras]
graph = ["objgraph (>=1.7.2)"]
profile = ["gprof2dot (>=2022.7.29)"]
[[package]]
name = "eigenpy"
version = "3.1.3"
description = "Bindings between Numpy and Eigen using Boost.Python"
optional = false
python-versions = ">= 3.8"
files = [
{file = "eigenpy-3.1.3-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f2cb69abe85e23eaf863108c16e9981fb5f21d7dabe3f08354defe476b3925f8"},
{file = "eigenpy-3.1.3-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:aaeb26c7c4af572429d0ab49c1ce624f55386d500276ea470c45667d5e54bfbf"},
{file = "eigenpy-3.1.3-0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:dabe535a2037982d76392df39c16b62de24cbf5ede45373d7867476ad8ad26fe"},
{file = "eigenpy-3.1.3-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8d874974b3ae54f90ff39755f27a18c6e987056757e816e0f023101550b3c1ae"},
{file = "eigenpy-3.1.3-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c233833c55762944241a497b6c13558bfa6ed7debb2fd9ce960288b353304836"},
{file = "eigenpy-3.1.3-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:c51898b65f442e856731dd67801bb8f376fa3f868b6b5af94715e06a8f698083"},
{file = "eigenpy-3.1.3-0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:fc200ff2e2190446486074db7cf132f4ab4bf16222b750e90b0ec8d190f99990"},
{file = "eigenpy-3.1.3-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:14f95b86108dca14e693732919ec9ff8d3fff70db94779c9cf0db935a3dfb260"},
{file = "eigenpy-3.1.3-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:2445f33b492cd0f59dba2d5db20a5f9a064d0b1eaa26bc371c45905e9019310e"},
{file = "eigenpy-3.1.3-0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:ffc208c4faeeb17444dd8052fa1582b0e83d6f36335c86d0b358881cafeddef8"},
{file = "eigenpy-3.1.3-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:cc3f4cd377767cd4b19af6f4178368f8b9edf867cfa440a6202d9ecebde69534"},
{file = "eigenpy-3.1.3-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4c827cff9075ee632547baaedc6d43fe971e5ae57ae3599ec4b3f930ff37b0ba"},
{file = "eigenpy-3.1.3-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:71b845c1b687d6766a74fad3cc2263e86131519260b793a510fa81e1ff0e1bf5"},
{file = "eigenpy-3.1.3-0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:e4d5e6179dda89947e9510c3dc3e07a6c8a20cef3850d7636665e2da6d035c1e"},
{file = "eigenpy-3.1.3-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2a988939cca38a70513a7b40d3a25fdba4befd8d1a264acd5c464cc133aa1bbb"},
{file = "eigenpy-3.1.3-0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:7fd571a195547463a563cc7db5058dfed17264928e1ba30c7bd552502091a0c9"},
{file = "eigenpy-3.1.3-0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:72a84131c9091e3cc528d5bf9a1409da0451d8e34df844eabcc9f9ed6255e522"},
{file = "eigenpy-3.1.3-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:07279865299f8514598b325381c28f48021e7b6486302ad28e95417cdab13107"},
{file = "eigenpy-3.1.3-0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:60f8dd9cb52f8e3fcf571770670bd276a730091935e001b7a5f167d1505074de"},
{file = "eigenpy-3.1.3-0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:48ab643b7c714ff3a83efe2442012abf3a08b165dc6955fabd0767093b4d9f86"},
{file = "eigenpy-3.1.3.tar.gz", hash = "sha256:3e793f4dc8287fd9f28d7459b614988b7a5c958e8af169d0f0535c1bc604ab1f"},
]
[package.dependencies]
cmeel = "*"
cmeel-boost = ">=1.82.0,<1.83.0"
[package.extras]
build = ["cmeel-eigen"]
[[package]]
name = "eigenpy"
version = "3.4.0"
description = "Bindings between Numpy and Eigen using Boost.Python"
optional = false
python-versions = ">= 3.8"
files = [
{file = "eigenpy-3.4.0-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9a93157a87621240c2c622bbd5f2c5a5dfdba0390ad18981867e120e9180d391"},
{file = "eigenpy-3.4.0-0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a955e573af7eb3b54aafe16d1f7292baf2ad911a53b7d2dd1e172bcea104edab"},
{file = "eigenpy-3.4.0-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8d40d2ec3f97d919a9ab383c6691d6a0b358718def79ae820388b1873944a8b1"},
{file = "eigenpy-3.4.0-0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0e8bdde7b37be8f3ea75ff7bd111758a13448da64751ae99ebe553944d4693b0"},
{file = "eigenpy-3.4.0-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:df7668d30bddc0bc1bcf688bba61325ead577291070a382868416fd8d97035c7"},
{file = "eigenpy-3.4.0-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:99e7bab4409d37c47e0825bebeff657921d6759ee22cd7d9644bade051830eaf"},
{file = "eigenpy-3.4.0-0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0e8ac908ca23cf46910d6159044edff94d4fb672055b1e368a54c2f2ef6a565c"},
{file = "eigenpy-3.4.0-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bb97b5cb225d45e81381b0d5227e3e427df0a4de564fb1271f5f64dab6817579"},
{file = "eigenpy-3.4.0-0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8ba0b886c0d9b4d8e8297197c752beb8bd8aa7bd96059f943e44f69a48b1b000"},
{file = "eigenpy-3.4.0-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:04bd04abeaad3ff281f8c4613dece07ff8cbb2596e5286a92c5ae6fec9007fb7"},
{file = "eigenpy-3.4.0-0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:05181281371998e6c420eaa1888bfca840de9301da6d3499594c13c1586cfaca"},
{file = "eigenpy-3.4.0-0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b9d9feda772cd3f3b3a22343d51a1666e8c3e147810cf4f078744739238ec02"},
{file = "eigenpy-3.4.0-0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:b45132ee3ac427a37cf075d121c7b0d810f3bd0dceb91c27223452b09bd5e78e"},
{file = "eigenpy-3.4.0-0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:a91d1cc818b7e3dbf1958d499f1744a4843931710c725e6fdf7ed8ed2bc5ee7b"},
{file = "eigenpy-3.4.0-0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9990bed8ce0ff2458db1e9aeda572cd4d5fa1416d8157448236b127fe88efcb6"},
{file = "eigenpy-3.4.0-0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:23c45097e5698bf9cf8a74ee4ccc8b7ef325f1bcf99e2a4616b4018c00ac76c2"},
{file = "eigenpy-3.4.0-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:b62be6020e0e2e5cc64391f2bba171466e3e17c601a44d6d6cd03b309d3390a7"},
{file = "eigenpy-3.4.0-0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:2132f48f2107725c4f09e02b8ecaec5bb6160569969f06f4983952e1525d6b5a"},
{file = "eigenpy-3.4.0-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:535ecf2481d8b1d624e6a494b44f026971ee5704a258c6a8e3090557f4b1885e"},
{file = "eigenpy-3.4.0-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f83b058b5a2f3c509e1de73e788baf3153252d2f324fe6cc573d0f9852e4abcf"},
{file = "eigenpy-3.4.0-0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:99e8aaa4524005fda7651d04c2df898893ce4972928e099e442751cda3d3b050"},
{file = "eigenpy-3.4.0-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:c9a9d547b0234b119004eb22e9e5df577988ff880bc00b104876ac164e2a9568"},
{file = "eigenpy-3.4.0-0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:112f7dbde96f212b733de325b093d42dbad1c68e00424c5f5258c6af6727bebb"},
{file = "eigenpy-3.4.0-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:16151f8d5d1327eeeda002897fdfc7498fa46165e3efb9caa3a763fb8fb15b66"},
{file = "eigenpy-3.4.0-0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:dcd9e176d5da80b7ed010ab5f4b3a215257f542df2ca6dfba0886aa859f640a4"},
{file = "eigenpy-3.4.0-0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:d6aefa5a353fd2b483b647a875d27414ae38a19cae8ac51ffcafe2a326349c7e"},
{file = "eigenpy-3.4.0-0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:bb929d56f8b655d69371d479968d6da6a9defbe46d0f1e6424b0a464368d8485"},
{file = "eigenpy-3.4.0.tar.gz", hash = "sha256:6c89205342299b960c7091a17195b6f768772514015a2b0df7dd6bead574c70b"},
]
[package.dependencies]
cmeel = "*"
cmeel-boost = ">=1.83.0,<1.84.0"
[package.extras]
build = ["cmeel-eigen (>=3.4.0.2)"]
[[package]]
name = "exceptiongroup"
version = "1.2.0"
description = "Backport of PEP 654 (exception groups)"
optional = false
python-versions = ">=3.7"
files = [
{file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"},
{file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"},
]
[package.extras]
test = ["pytest (>=6)"]
[[package]]
name = "executing"
version = "2.0.1"
description = "Get the currently executing AST node of a frame, and other information"
optional = false
python-versions = ">=3.5"
files = [
{file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"},
{file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"},
]
[package.extras]
tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"]
[[package]]
name = "hpp-fcl"
version = "2.3.6"
description = "An extension of the Flexible Collision Library"
optional = false
python-versions = ">=3.8"
files = [
{file = "hpp_fcl-2.3.6-0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:64b060824ce2408b64a78997bcb1bc3ff2f3e11f39c906d0d582ba46a8fd473d"},
{file = "hpp_fcl-2.3.6-0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:5e17deb57b17cdba6f9d5c7b1e0c73920eade8b0776fdf5242c67da61dc170f3"},
{file = "hpp_fcl-2.3.6-0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:e1d68def3c3c64b0ccd80bf286d0351a9ec5ee4786c01d65c1fa09035f0ebe4e"},
{file = "hpp_fcl-2.3.6-0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c88f1ee9e86958d2f8825e85d24d07e0d608acc06e03c7247d1929c48313d517"},
{file = "hpp_fcl-2.3.6-0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d0b740200e42ed5efcc502bc0074ec538795357cb6fc8d63f6fcbb6e1ff22ddb"},
{file = "hpp_fcl-2.3.6-0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:ea905ac1922bc1fc7652b2df0cfb4738df6f39edbfd7ea0a4ea9b465b2bb1f2b"},
{file = "hpp_fcl-2.3.6-0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d71b0a8725bbd1496058b3482071689f4174918f724a3b9fcb1c7d2c248cb976"},
{file = "hpp_fcl-2.3.6-0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a9297aa48fa9791fd09fb87c6f5e70339efde841a2dff317d892edf609ac4b14"},
{file = "hpp_fcl-2.3.6-0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:2685b0122efa9649beb1849b68307d3b3625d616db832d66d69cffaf7beda3ac"},
{file = "hpp_fcl-2.3.6-0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:a0ed6ac84050ca001f1d7594baed1cada62bf5801dd2d6bd74de90131fd12220"},
{file = "hpp_fcl-2.3.6-0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2490ff95306d5d2263fc3e814c79ad445bd569840d3faf56a190a178b6ed571e"},
{file = "hpp_fcl-2.3.6-0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1129a0371017986dcae0b4482a56c13f93d97b22cb66d79edc53e34bac36a4af"},
{file = "hpp_fcl-2.3.6-0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:62218062ad56cbce7baf15581e1bbcedafd94a23de409e2f860c871110a9005a"},
{file = "hpp_fcl-2.3.6-0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:120bc6bdf2d981deaa92ca5bf7f3f190562505c1e061ece7e60b32a941cef122"},
{file = "hpp_fcl-2.3.6-0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:92ee877c864851c32ba96d9967dd2a868d65479ee8151c4e04b2f1576dd57c2e"},
{file = "hpp_fcl-2.3.6-0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:9c4d27ed660e7dff72e33abe9490aa1cf72d44841efe293bc98fbd85e975016a"},
{file = "hpp_fcl-2.3.6-0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:18450e5b686eb8411fe54e18be4b420f047f54be3db8fb493805d10c8c955d4a"},
{file = "hpp_fcl-2.3.6-0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3545559da02366cee5e9f06e317afc18ea1f21ff1eaecbbc470a67d84910ff25"},
{file = "hpp_fcl-2.3.6-0-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b6113300acbf3e936a4d0a0fe8960cc6223a98b51ba0c6f7a0b87ed23aba8606"},
{file = "hpp_fcl-2.3.6-0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:26c261efc43dd405d326e92497a14f9b2503ac701cd7caaa8b825b62d6bda73a"},
]
[package.dependencies]
cmeel = "*"
cmeel-assimp = ">=5.2.5.1,<6"
cmeel-boost = ">=1.82.0,<1.83.0"
cmeel-octomap = ">=1.9.8.2,<2"
eigenpy = ">=3.1,<4"
[package.extras]
build = ["eigenpy[build] (>=3.1,<4)"]
[[package]]
name = "hpp-fcl"
version = "2.4.1"
description = "An extension of the Flexible Collision Library"
optional = false
python-versions = ">=3.8"
files = [
{file = "hpp_fcl-2.4.1-0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cc2dda98943a05ed5177387c6125de21f179c97e2f6670d8bf377d4bdd1de5f8"},
{file = "hpp_fcl-2.4.1-0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:33166d2bea39c1ae99e974fe2c52c41843bed65c69e33918a8f15a40e6efa481"},
{file = "hpp_fcl-2.4.1-0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:452e2235c51491edcb66083d2c64d55ca26bd6635f758221a37dfa99350698fc"},
{file = "hpp_fcl-2.4.1-0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:07bc4d7b8970ce7e5fdbb5dba341f5be2aaeb00c649ba864466898a052d81900"},
{file = "hpp_fcl-2.4.1-0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:10e2500b09ee074cca2730eb4401bf841d8b36290b6c5cdcaae2aa810b8a1055"},
{file = "hpp_fcl-2.4.1-0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:ef1a8537c853f853a6b15dbb298d3daffdcb7ef8cca5afdd9bbd901cf7e3a939"},
{file = "hpp_fcl-2.4.1-0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a6dfde75ed1e6ccaeb8c5c9ef7f51ca85a38fa9defb4329cf3a209d84fcf42fa"},
{file = "hpp_fcl-2.4.1-1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5e6fdd3c3b05e1db3762f2a5941aa6c31af556a3b77b17b832a47b973b1908d2"},
{file = "hpp_fcl-2.4.1-1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:63606fd125e85e895fe89cdab4bb878940ea8035d8b814df1ebaf6178ecb7f90"},
{file = "hpp_fcl-2.4.1-1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:59be6ef9651a8faa8cfec79be943b8e44d1b64ae31516819e5779f19322c11da"},
{file = "hpp_fcl-2.4.1-1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c426bc43ee9dd26bd1d68112bf18a741dfd2b26ebbcd89a4f6423c7200f818df"},
{file = "hpp_fcl-2.4.1-1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5803080b47417864bf0cad3c16d09487495fa51f27d2836f486cbb8c63f0266c"},
{file = "hpp_fcl-2.4.1-1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:091d89f3670a0803d57440ab184f599f8d969e4b3058ab506075d7df3cab3c06"},
{file = "hpp_fcl-2.4.1-1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:32504eadb2aae8edff5319ff7fc2c7cc3317803f5c8d5206bc7da3cc1df0d552"},
{file = "hpp_fcl-2.4.1-1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:51ac03f23528141705f1f52dbc740b9eec2eb62b8e60ddefb282941a0f1a8890"},
{file = "hpp_fcl-2.4.1-1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cb5d5b2aad031a0ec1d42d45e23d0e737cd6c7a3a7302b4539c10832e2059a91"},
{file = "hpp_fcl-2.4.1-1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:424fd7c49828a49b8d67111d9c7a3439bd7854fb58cb20af6c89a3d86ad734ab"},
{file = "hpp_fcl-2.4.1-1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:626d8f4caac3bafff3aed0d3cb5117d4ccb4d695f159beec7f6b2ba38ae23901"},
{file = "hpp_fcl-2.4.1-1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2eefe771b9a6d53f95300ed11f2f55285fdc444609fbc2dd5c7dfdcdff8a2c6c"},
{file = "hpp_fcl-2.4.1-1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:609c5a5a1063c4ea0b5ac4e8480862edd98dfa9b1b9e11f1f31e8c22855f484e"},
{file = "hpp_fcl-2.4.1-1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:1b6acf3fd92ead50d03f2c72d558ea225135ca3da07ec9a039a64a086f200d76"},
{file = "hpp_fcl-2.4.1-1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a93f0e606677541a16900682731b0d562f4f27ab88b4bd01083742f82c216993"},
{file = "hpp_fcl-2.4.1-1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a9983bac563f355a108b952e21b034c506879745bfeb6a00eed32a47c8ea869f"},
{file = "hpp_fcl-2.4.1-1-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:1b6b737b48b5eb8e1731893e369465d77e0970315d2243c409526f16b3691200"},
{file = "hpp_fcl-2.4.1-1-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cbe91441d8837e4842abd123ee863c4216f743e70485f9aa056050d71eaea853"},
{file = "hpp_fcl-2.4.1-1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:00504690080f0d2c75e820d942bf0bb51524ff3c36a32168a0101b6fa2274d1e"},
{file = "hpp_fcl-2.4.1-1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b05d1f0dec09d4304b431cb0e71bac0ca9fdd2e5eeb98b0c75da3a99f6202af7"},
{file = "hpp_fcl-2.4.1-1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:995a76c46f22e9178c7d8473a3ece993e273ba7d13681dff6c287203c50676da"},
{file = "hpp_fcl-2.4.1-1-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:d10b53881bcff6f7e90b18dfe218b2c3b3f00d7f9888e11bc232ff1c78f657c5"},
{file = "hpp_fcl-2.4.1-1-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:48ca7aa8a3a13b7514c8fc739b0f2c2379ddfc88c4c4c47cf5ac74310691e40a"},
{file = "hpp_fcl-2.4.1-1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4731dd8e5cfd68a3ad9b69aee9d9c034788bcef191a74106154bbb4126cf3bd0"},
{file = "hpp_fcl-2.4.1-1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:99f25debb24ba44e0a4c2aad0859cdf419c0506ea2839ab7a2977b7f5e666052"},
{file = "hpp_fcl-2.4.1-1-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:316df42a0b98aeb7a902605a9d4428a982b9b8339f5efe7334ba3c26182be941"},
{file = "hpp_fcl-2.4.1-1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:09d959c165fc0e84c8f7990c70602a217371c942dbe736cb9e6127244c7b6cf4"},
{file = "hpp_fcl-2.4.1.tar.gz", hash = "sha256:186630d07a38ce70ff5005bfcc1845643b882c83677b9adf7999ea00afaa7b6f"},
]
[package.dependencies]
cmeel = "*"
cmeel-assimp = ">=5.3.1,<6"
cmeel-boost = ">=1.83.0,<1.84.0"
cmeel-octomap = ">=1.9.8.2,<2"
cmeel-qhull = ">=8.0.2.1,<8.0.3"
eigenpy = ">=3.1,<4"
[package.extras]
build = ["eigenpy[build] (>=3.1,<4)"]
[[package]]
name = "imageio"
version = "2.34.0"
description = "Library for reading and writing a wide range of image, video, scientific, and volumetric data formats."
optional = false
python-versions = ">=3.8"
files = [
{file = "imageio-2.34.0-py3-none-any.whl", hash = "sha256:08082bf47ccb54843d9c73fe9fc8f3a88c72452ab676b58aca74f36167e8ccba"},
{file = "imageio-2.34.0.tar.gz", hash = "sha256:ae9732e10acf807a22c389aef193f42215718e16bd06eed0c5bb57e1034a4d53"},
]
[package.dependencies]
numpy = "*"
pillow = ">=8.3.2"
[package.extras]
all-plugins = ["astropy", "av", "imageio-ffmpeg", "pillow-heif", "psutil", "tifffile"]
all-plugins-pypy = ["av", "imageio-ffmpeg", "pillow-heif", "psutil", "tifffile"]
build = ["wheel"]
dev = ["black", "flake8", "fsspec[github]", "pytest", "pytest-cov"]
docs = ["numpydoc", "pydata-sphinx-theme", "sphinx (<6)"]
ffmpeg = ["imageio-ffmpeg", "psutil"]
fits = ["astropy"]
full = ["astropy", "av", "black", "flake8", "fsspec[github]", "gdal", "imageio-ffmpeg", "itk", "numpydoc", "pillow-heif", "psutil", "pydata-sphinx-theme", "pytest", "pytest-cov", "sphinx (<6)", "tifffile", "wheel"]
gdal = ["gdal"]
itk = ["itk"]
linting = ["black", "flake8"]
pillow-heif = ["pillow-heif"]
pyav = ["av"]
test = ["fsspec[github]", "pytest", "pytest-cov"]
tifffile = ["tifffile"]
[[package]]
name = "imageio-ffmpeg"
version = "0.4.9"
description = "FFMPEG wrapper for Python"
optional = false
python-versions = ">=3.5"
files = [
{file = "imageio-ffmpeg-0.4.9.tar.gz", hash = "sha256:39bcd1660118ef360fa4047456501071364661aa9d9021d3d26c58f1ee2081f5"},
{file = "imageio_ffmpeg-0.4.9-py3-none-macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:24095e882a126a0d217197b86265f821b4bb3cf9004104f67c1384a2b4b49168"},
{file = "imageio_ffmpeg-0.4.9-py3-none-manylinux2010_x86_64.whl", hash = "sha256:2996c64af3e5489227096580269317719ea1a8121d207f2e28d6c24ebc4a253e"},
{file = "imageio_ffmpeg-0.4.9-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7eead662d2f46d748c0ab446b68f423eb63d2b54d0a8ef96f80607245540866d"},
{file = "imageio_ffmpeg-0.4.9-py3-none-win32.whl", hash = "sha256:b6de1e18911687c538d5585d8287ab1a23624ca9dc2044fcc4607de667bcf11e"},
{file = "imageio_ffmpeg-0.4.9-py3-none-win_amd64.whl", hash = "sha256:7e900c695c6541b1cb17feb1baacd4009b30a53a45b81c23d53a67ab13ffb766"},
]
[package.dependencies]
setuptools = "*"
[[package]]
name = "iniconfig"
version = "2.0.0"
description = "brain-dead simple config-ini parsing"
optional = false
python-versions = ">=3.7"
files = [
{file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"},
{file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
]
[[package]]
name = "ipython"
version = "8.12.3"
description = "IPython: Productive Interactive Computing"
optional = false
python-versions = ">=3.8"
files = [
{file = "ipython-8.12.3-py3-none-any.whl", hash = "sha256:b0340d46a933d27c657b211a329d0be23793c36595acf9e6ef4164bc01a1804c"},
{file = "ipython-8.12.3.tar.gz", hash = "sha256:3910c4b54543c2ad73d06579aa771041b7d5707b033bd488669b4cf544e3b363"},
]
[package.dependencies]
appnope = {version = "*", markers = "sys_platform == \"darwin\""}
backcall = "*"
colorama = {version = "*", markers = "sys_platform == \"win32\""}
decorator = "*"
jedi = ">=0.16"
matplotlib-inline = "*"
pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""}
pickleshare = "*"
prompt-toolkit = ">=3.0.30,<3.0.37 || >3.0.37,<3.1.0"
pygments = ">=2.4.0"
stack-data = "*"
traitlets = ">=5"
typing-extensions = {version = "*", markers = "python_version < \"3.10\""}
[package.extras]
all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.21)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"]
black = ["black"]
doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"]
kernel = ["ipykernel"]
nbconvert = ["nbconvert"]
nbformat = ["nbformat"]
notebook = ["ipywidgets", "notebook"]
parallel = ["ipyparallel"]
qtconsole = ["qtconsole"]
test = ["pytest (<7.1)", "pytest-asyncio", "testpath"]
test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"]
[[package]]
name = "jedi"
version = "0.19.1"
description = "An autocompletion tool for Python that can be used for text editors."
optional = false
python-versions = ">=3.6"
files = [
{file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"},
{file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"},
]
[package.dependencies]
parso = ">=0.8.3,<0.9.0"
[package.extras]
docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"]
qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"]
[[package]]
name = "matplotlib-inline"
version = "0.1.6"
description = "Inline Matplotlib backend for Jupyter"
optional = false
python-versions = ">=3.5"
files = [
{file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"},
{file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"},
]
[package.dependencies]
traitlets = "*"
[[package]]
name = "meshcat"
version = "0.3.2"
description = "WebGL-based visualizer for 3D geometries and scenes"
optional = false
python-versions = "*"
files = [
{file = "meshcat-0.3.2-py3-none-any.whl", hash = "sha256:cba0465d0e29658c48bb65d27f5c8e04ff0a1ac8ce916d65621146c06258a1c7"},
{file = "meshcat-0.3.2.tar.gz", hash = "sha256:2cfe17cde4fe85d072a3de018a9dabf5626f80c255fff2ce63b26a48d2484ad9"},
]
[package.dependencies]
ipython = ">=5"
numpy = ">=1.14.0"
pillow = ">=7.0.0"
pyngrok = ">=4.1.6"
pyzmq = ">=17.0.0"
tornado = ">=4.0.0"
u-msgpack-python = ">=2.4.1"
[[package]]
name = "mypy-extensions"
version = "1.0.0"
description = "Type system extensions for programs checked with the mypy type checker."
optional = false
python-versions = ">=3.5"
files = [
{file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"},
{file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"},
]
[[package]]
name = "numpy"
version = "1.24.4"
description = "Fundamental package for array computing in Python"
optional = false
python-versions = ">=3.8"
files = [
{file = "numpy-1.24.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c0bfb52d2169d58c1cdb8cc1f16989101639b34c7d3ce60ed70b19c63eba0b64"},
{file = "numpy-1.24.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ed094d4f0c177b1b8e7aa9cba7d6ceed51c0e569a5318ac0ca9a090680a6a1b1"},
{file = "numpy-1.24.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79fc682a374c4a8ed08b331bef9c5f582585d1048fa6d80bc6c35bc384eee9b4"},
{file = "numpy-1.24.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ffe43c74893dbf38c2b0a1f5428760a1a9c98285553c89e12d70a96a7f3a4d6"},
{file = "numpy-1.24.4-cp310-cp310-win32.whl", hash = "sha256:4c21decb6ea94057331e111a5bed9a79d335658c27ce2adb580fb4d54f2ad9bc"},
{file = "numpy-1.24.4-cp310-cp310-win_amd64.whl", hash = "sha256:b4bea75e47d9586d31e892a7401f76e909712a0fd510f58f5337bea9572c571e"},
{file = "numpy-1.24.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f136bab9c2cfd8da131132c2cf6cc27331dd6fae65f95f69dcd4ae3c3639c810"},
{file = "numpy-1.24.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2926dac25b313635e4d6cf4dc4e51c8c0ebfed60b801c799ffc4c32bf3d1254"},
{file = "numpy-1.24.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:222e40d0e2548690405b0b3c7b21d1169117391c2e82c378467ef9ab4c8f0da7"},
{file = "numpy-1.24.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7215847ce88a85ce39baf9e89070cb860c98fdddacbaa6c0da3ffb31b3350bd5"},
{file = "numpy-1.24.4-cp311-cp311-win32.whl", hash = "sha256:4979217d7de511a8d57f4b4b5b2b965f707768440c17cb70fbf254c4b225238d"},
{file = "numpy-1.24.4-cp311-cp311-win_amd64.whl", hash = "sha256:b7b1fc9864d7d39e28f41d089bfd6353cb5f27ecd9905348c24187a768c79694"},
{file = "numpy-1.24.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1452241c290f3e2a312c137a9999cdbf63f78864d63c79039bda65ee86943f61"},
{file = "numpy-1.24.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:04640dab83f7c6c85abf9cd729c5b65f1ebd0ccf9de90b270cd61935eef0197f"},
{file = "numpy-1.24.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5425b114831d1e77e4b5d812b69d11d962e104095a5b9c3b641a218abcc050e"},
{file = "numpy-1.24.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd80e219fd4c71fc3699fc1dadac5dcf4fd882bfc6f7ec53d30fa197b8ee22dc"},
{file = "numpy-1.24.4-cp38-cp38-win32.whl", hash = "sha256:4602244f345453db537be5314d3983dbf5834a9701b7723ec28923e2889e0bb2"},
{file = "numpy-1.24.4-cp38-cp38-win_amd64.whl", hash = "sha256:692f2e0f55794943c5bfff12b3f56f99af76f902fc47487bdfe97856de51a706"},
{file = "numpy-1.24.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2541312fbf09977f3b3ad449c4e5f4bb55d0dbf79226d7724211acc905049400"},
{file = "numpy-1.24.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9667575fb6d13c95f1b36aca12c5ee3356bf001b714fc354eb5465ce1609e62f"},
{file = "numpy-1.24.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3a86ed21e4f87050382c7bc96571755193c4c1392490744ac73d660e8f564a9"},
{file = "numpy-1.24.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d11efb4dbecbdf22508d55e48d9c8384db795e1b7b51ea735289ff96613ff74d"},
{file = "numpy-1.24.4-cp39-cp39-win32.whl", hash = "sha256:6620c0acd41dbcb368610bb2f4d83145674040025e5536954782467100aa8835"},
{file = "numpy-1.24.4-cp39-cp39-win_amd64.whl", hash = "sha256:befe2bf740fd8373cf56149a5c23a0f601e82869598d41f8e188a0e9869926f8"},
{file = "numpy-1.24.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:31f13e25b4e304632a4619d0e0777662c2ffea99fcae2029556b17d8ff958aef"},
{file = "numpy-1.24.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95f7ac6540e95bc440ad77f56e520da5bf877f87dca58bd095288dce8940532a"},
{file = "numpy-1.24.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:e98f220aa76ca2a977fe435f5b04d7b3470c0a2e6312907b37ba6068f26787f2"},
{file = "numpy-1.24.4.tar.gz", hash = "sha256:80f5e3a4e498641401868df4208b74581206afbee7cf7b8329daae82676d9463"},
]
[[package]]
name = "packaging"
version = "23.2"
description = "Core utilities for Python packages"
optional = false
python-versions = ">=3.7"
files = [
{file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"},
{file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"},
]
[[package]]
name = "parso"
version = "0.8.3"
description = "A Python Parser"
optional = false
python-versions = ">=3.6"
files = [
{file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"},
{file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"},
]
[package.extras]
qa = ["flake8 (==3.8.3)", "mypy (==0.782)"]
testing = ["docopt", "pytest (<6.0.0)"]
[[package]]
name = "pathspec"
version = "0.12.1"
description = "Utility library for gitignore style pattern matching of file paths."
optional = false
python-versions = ">=3.8"
files = [
{file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"},
{file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"},
]
[[package]]
name = "pexpect"
version = "4.9.0"
description = "Pexpect allows easy control of interactive console applications."
optional = false
python-versions = "*"
files = [
{file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"},
{file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"},
]
[package.dependencies]
ptyprocess = ">=0.5"
[[package]]
name = "pickleshare"
version = "0.7.5"
description = "Tiny 'shelve'-like database with concurrency support"
optional = false
python-versions = "*"
files = [
{file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"},
{file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
]
[[package]]
name = "pillow"
version = "10.2.0"
description = "Python Imaging Library (Fork)"
optional = false
python-versions = ">=3.8"
files = [
{file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"},
{file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"},
{file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452"},
{file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4"},
{file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563"},
{file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2"},
{file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c"},
{file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0"},
{file = "pillow-10.2.0-cp310-cp310-win32.whl", hash = "sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023"},
{file = "pillow-10.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72"},
{file = "pillow-10.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad"},
{file = "pillow-10.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5"},
{file = "pillow-10.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67"},
{file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61"},
{file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e"},
{file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f"},
{file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311"},
{file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1"},
{file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757"},
{file = "pillow-10.2.0-cp311-cp311-win32.whl", hash = "sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068"},
{file = "pillow-10.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56"},
{file = "pillow-10.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1"},
{file = "pillow-10.2.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef"},
{file = "pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac"},
{file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c"},
{file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa"},
{file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2"},
{file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04"},
{file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f"},
{file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb"},
{file = "pillow-10.2.0-cp312-cp312-win32.whl", hash = "sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f"},
{file = "pillow-10.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9"},
{file = "pillow-10.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48"},
{file = "pillow-10.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9"},
{file = "pillow-10.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483"},
{file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129"},
{file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e"},
{file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213"},
{file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d"},
{file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6"},
{file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe"},
{file = "pillow-10.2.0-cp38-cp38-win32.whl", hash = "sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e"},
{file = "pillow-10.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39"},
{file = "pillow-10.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67"},
{file = "pillow-10.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364"},
{file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb"},
{file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e"},
{file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01"},