-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog4.txt
More file actions
1219 lines (1219 loc) · 160 KB
/
log4.txt
File metadata and controls
1219 lines (1219 loc) · 160 KB
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
-------------------------- REMOTE BUILD OUTPUT --------------------------
starting build "dbb490ba-d333-4456-b99c-2700cfc872a5"
FETCHSOURCE
Fetching storage object: gs://run-sources-firstproject-c5ac2-us-central1/services/math-mentor/1771679411.359069-5909926d8b3a43b389d84873c8915861.zip#1771679416803307
Copying gs://run-sources-firstproject-c5ac2-us-central1/services/math-mentor/1771679411.359069-5909926d8b3a43b389d84873c8915861.zip#1771679416803307...
/ [0 files][ 0.0 B/ 4.3 MiB]
/ [1 files][ 4.3 MiB/ 4.3 MiB]
Operation completed over 1 objects/4.3 MiB.
Archive: /tmp/source-archive.zip
creating: /workspace/.streamlit/
creating: /workspace/backend/
creating: /workspace/frontend/
creating: /workspace/tests/
creating: /workspace/backend/agents/
creating: /workspace/backend/data/
creating: /workspace/backend/deck_generator/
creating: /workspace/backend/input/
creating: /workspace/backend/kb_builder/
creating: /workspace/backend/knowledge/
creating: /workspace/backend/memory_index/
creating: /workspace/backend/prompts/
creating: /workspace/backend/utils/
creating: /workspace/backend/data/jeebench_repo/
creating: /workspace/backend/data/jee_mains_repo/
creating: /workspace/backend/data/pyqs/
creating: /workspace/backend/deck_generator/templates/
creating: /workspace/backend/kb_builder/sources/
creating: /workspace/backend/knowledge/base/
creating: /workspace/backend/knowledge/base/patterns/
inflating: /workspace/$env
inflating: /workspace/.dockerignore
inflating: /workspace/.env.example
inflating: /workspace/DEPLOY.md
inflating: /workspace/deploy.ps1
inflating: /workspace/Dockerfile
inflating: /workspace/log.txt
inflating: /workspace/log3.txt
inflating: /workspace/pyproject.toml
inflating: /workspace/README.md
inflating: /workspace/requirements.txt
inflating: /workspace/uv.lock
inflating: /workspace/.streamlit/secrets.toml.example
inflating: /workspace/backend/config.py
inflating: /workspace/backend/episodic_memory.py
inflating: /workspace/backend/executor.py
inflating: /workspace/backend/logging_config.py
inflating: /workspace/backend/memory.py
inflating: /workspace/backend/ocr.py
inflating: /workspace/backend/orchestrator.py
inflating: /workspace/backend/schemas.py
inflating: /workspace/backend/__init__.py
inflating: /workspace/backend/agents/base.py
inflating: /workspace/backend/agents/executor.py
inflating: /workspace/backend/agents/explainer.py
inflating: /workspace/backend/agents/parser.py
inflating: /workspace/backend/agents/router.py
inflating: /workspace/backend/agents/solver.py
inflating: /workspace/backend/agents/verifier.py
inflating: /workspace/backend/agents/__init__.py
inflating: /workspace/backend/data/pyqs/jee_mains_math.json
inflating: /workspace/backend/data/pyqs/jee_mains_math_sample.json
inflating: /workspace/backend/data/pyqs/jee_math_all.json
inflating: /workspace/backend/data/pyqs/jee_math_complete.json
inflating: /workspace/backend/data/pyqs/jee_math_sample.json
inflating: /workspace/backend/data/pyqs/sample_pyqs.json
inflating: /workspace/backend/deck_generator/diagrams.py
inflating: /workspace/backend/deck_generator/exporter.py
inflating: /workspace/backend/deck_generator/generator.py
inflating: /workspace/backend/deck_generator/models.py
inflating: /workspace/backend/deck_generator/test_deck.py
inflating: /workspace/backend/deck_generator/test_output_diagram.html
inflating: /workspace/backend/deck_generator/test_output_parsed.html
inflating: /workspace/backend/deck_generator/test_output_structured.html
inflating: /workspace/backend/deck_generator/themes.py
inflating: /workspace/backend/deck_generator/__init__.py
inflating: /workspace/backend/deck_generator/templates/context_deck.html
inflating: /workspace/backend/deck_generator/templates/deck.html
inflating: /workspace/backend/input/asr.py
inflating: /workspace/backend/input/normalizer.py
inflating: /workspace/backend/input/ocr.py
inflating: /workspace/backend/input/__init__.py
inflating: /workspace/backend/kb_builder/aggregator.py
inflating: /workspace/backend/kb_builder/classifier.py
inflating: /workspace/backend/kb_builder/combine_datasets.py
inflating: /workspace/backend/kb_builder/doc_generator.py
inflating: /workspace/backend/kb_builder/embedder.py
inflating: /workspace/backend/kb_builder/extract_jee_mains.py
inflating: /workspace/backend/kb_builder/extract_math.py
inflating: /workspace/backend/kb_builder/pipeline.py
inflating: /workspace/backend/kb_builder/pipeline_v2.py
inflating: /workspace/backend/kb_builder/__init__.py
inflating: /workspace/backend/kb_builder/sources/json_loader.py
inflating: /workspace/backend/kb_builder/sources/__init__.py
inflating: /workspace/backend/knowledge/rag.py
inflating: /workspace/backend/knowledge/__init__.py
inflating: /workspace/backend/knowledge/base/patterns/.gitkeep
inflating: /workspace/backend/knowledge/base/patterns/3d-geometry_direction-cosines-and-direction-ratios-of-a-line.md
inflating: /workspace/backend/knowledge/base/patterns/3d-geometry_lines-and-plane.md
inflating: /workspace/backend/knowledge/base/patterns/3d-geometry_lines-in-space.md
inflating: /workspace/backend/knowledge/base/patterns/3d-geometry_plane-in-space.md
inflating: /workspace/backend/knowledge/base/patterns/application-of-derivatives_maxima-and-minima.md
inflating: /workspace/backend/knowledge/base/patterns/application-of-derivatives_mean-value-theorem.md
inflating: /workspace/backend/knowledge/base/patterns/application-of-derivatives_monotonicity.md
inflating: /workspace/backend/knowledge/base/patterns/application-of-derivatives_nature-of-roots.md
inflating: /workspace/backend/knowledge/base/patterns/application-of-derivatives_rate-of-change-of-quantity.md
inflating: /workspace/backend/knowledge/base/patterns/application-of-derivatives_tangent-and-normal.md
inflating: /workspace/backend/knowledge/base/patterns/area-under-the-curves_area-bounded-between-the-curves.md
inflating: /workspace/backend/knowledge/base/patterns/area-under-the-curves_area-under-simple-curves-in-standard-forms.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_binomial-theorem-for-any-index.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_divisibility-concept-and-remainder-concept.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_general-term.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_integral-and-fractional-part-of-a-number.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_middle-term.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_multinomial-theorem.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_negative-and-fractional-index.md
inflating: /workspace/backend/knowledge/base/patterns/binomial-theorem_problems-based-on-binomial-co-efficient-and-collection-of-binomial-co-efficient.md
inflating: /workspace/backend/knowledge/base/patterns/circle_basic-theorems-of-a-circle.md
inflating: /workspace/backend/knowledge/base/patterns/circle_chord-of-contact.md
inflating: /workspace/backend/knowledge/base/patterns/circle_chord-with-a-given-middle-point.md
inflating: /workspace/backend/knowledge/base/patterns/circle_director-circle.md
inflating: /workspace/backend/knowledge/base/patterns/circle_family-of-circle.md
inflating: /workspace/backend/knowledge/base/patterns/circle_intercepts-of-a-circle.md
inflating: /workspace/backend/knowledge/base/patterns/circle_number-of-common-tangents-and-position-of-two-circle.md
inflating: /workspace/backend/knowledge/base/patterns/circle_orthogonality-of-two-circles.md
inflating: /workspace/backend/knowledge/base/patterns/circle_pair-of-tangents.md
inflating: /workspace/backend/knowledge/base/patterns/circle_parametric-form-of-a-circle.md
inflating: /workspace/backend/knowledge/base/patterns/circle_position-of-a-point-with-respect-to-circle.md
inflating: /workspace/backend/knowledge/base/patterns/circle_radical-axis.md
inflating: /workspace/backend/knowledge/base/patterns/circle_tangent-and-normal.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_algebra-of-complex-numbers.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_applications-of-complex-numbers-in-coordinate-geometry.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_argument-of-complex-numbers.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_conjugate-of-complex-numbers.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_cube-roots-of-unity.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_de-moivres-theorem.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_modulus-of-complex-numbers.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_nth-roots-of-unity.md
inflating: /workspace/backend/knowledge/base/patterns/complex-numbers_square-root-of-a-complex-number.md
inflating: /workspace/backend/knowledge/base/patterns/definite-integration_definite-integral-as-a-limit-of-sum.md
inflating: /workspace/backend/knowledge/base/patterns/definite-integration_limits-of-algebric-function.md
inflating: /workspace/backend/knowledge/base/patterns/definite-integration_newton-lebnitz-rule-of-differentiation.md
inflating: /workspace/backend/knowledge/base/patterns/definite-integration_properties-of-definite-integration.md
inflating: /workspace/backend/knowledge/base/patterns/differential-equations_formation-of-differential-equations.md
inflating: /workspace/backend/knowledge/base/patterns/differential-equations_linear-differential-equations.md
inflating: /workspace/backend/knowledge/base/patterns/differential-equations_order-and-degree.md
inflating: /workspace/backend/knowledge/base/patterns/differential-equations_solution-of-differential-equations-by-method-of-separation-variables-and-homogeneous.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_differentiation-of-a-function-with-respect-to-another-function.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_differentiation-of-composite-function.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_differentiation-of-implicit-function.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_differentiation-of-inverse-trigonometric-function.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_differentiation-of-logarithmic-function.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_differentiation-of-parametric-function.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_methods-of-differentiation.md
inflating: /workspace/backend/knowledge/base/patterns/differentiation_successive-differentiation.md
inflating: /workspace/backend/knowledge/base/patterns/ellipse_chord-of-ellipse.md
inflating: /workspace/backend/knowledge/base/patterns/ellipse_common-tangent.md
inflating: /workspace/backend/knowledge/base/patterns/ellipse_locus.md
inflating: /workspace/backend/knowledge/base/patterns/ellipse_normal-to-ellipse.md
inflating: /workspace/backend/knowledge/base/patterns/ellipse_position-of-point-and-chord-joining-of-two-points.md
inflating: /workspace/backend/knowledge/base/patterns/ellipse_question-based-on-basic-definition-and-parametric-representation.md
inflating: /workspace/backend/knowledge/base/patterns/ellipse_tangent-to-ellipse.md
inflating: /workspace/backend/knowledge/base/patterns/functions_classification-of-functions.md
inflating: /workspace/backend/knowledge/base/patterns/functions_composite-functions.md
inflating: /workspace/backend/knowledge/base/patterns/functions_domain.md
inflating: /workspace/backend/knowledge/base/patterns/functions_even-and-odd-functions.md
inflating: /workspace/backend/knowledge/base/patterns/functions_functional-equations.md
inflating: /workspace/backend/knowledge/base/patterns/functions_inverse-functions.md
inflating: /workspace/backend/knowledge/base/patterns/functions_periodic-functions.md
inflating: /workspace/backend/knowledge/base/patterns/functions_range.md
inflating: /workspace/backend/knowledge/base/patterns/height-and-distance_height-and-distance.md
inflating: /workspace/backend/knowledge/base/patterns/hyperbola_common-tangent.md
inflating: /workspace/backend/knowledge/base/patterns/hyperbola_locus.md
inflating: /workspace/backend/knowledge/base/patterns/hyperbola_normal-to-hyperbola.md
inflating: /workspace/backend/knowledge/base/patterns/hyperbola_position-of-point-and-chord-joining-of-two-points.md
inflating: /workspace/backend/knowledge/base/patterns/hyperbola_question-based-on-basic-definition-and-parametric-representation.md
inflating: /workspace/backend/knowledge/base/patterns/hyperbola_tangent-to-hyperbola.md
inflating: /workspace/backend/knowledge/base/patterns/indefinite-integrals_integration-by-partial-fraction.md
inflating: /workspace/backend/knowledge/base/patterns/indefinite-integrals_integration-by-parts.md
inflating: /workspace/backend/knowledge/base/patterns/indefinite-integrals_integration-by-substitution.md
inflating: /workspace/backend/knowledge/base/patterns/indefinite-integrals_standard-integral.md
inflating: /workspace/backend/knowledge/base/patterns/inverse-trigonometric-functions_domain-and-range-of-inverse-trigonometric-functions.md
inflating: /workspace/backend/knowledge/base/patterns/inverse-trigonometric-functions_principal-value-of-inverse-trigonometric-functions.md
inflating: /workspace/backend/knowledge/base/patterns/inverse-trigonometric-functions_properties-of-inverse-trigonometric-functions.md
inflating: /workspace/backend/knowledge/base/patterns/inverse-trigonometric-functions_sum-upto-n-terms-and-infinite-terms-of-inverse-series.md
inflating: /workspace/backend/knowledge/base/patterns/limits-continuity-and-differentiability_continuity.md
inflating: /workspace/backend/knowledge/base/patterns/limits-continuity-and-differentiability_differentiability.md
inflating: /workspace/backend/knowledge/base/patterns/limits-continuity-and-differentiability_existance-of-limits.md
inflating: /workspace/backend/knowledge/base/patterns/limits-continuity-and-differentiability_limits-of-algebric-function.md
inflating: /workspace/backend/knowledge/base/patterns/limits-continuity-and-differentiability_limits-of-exponential-functions.md
inflating: /workspace/backend/knowledge/base/patterns/limits-continuity-and-differentiability_limits-of-logarithmic-functions.md
inflating: /workspace/backend/knowledge/base/patterns/limits-continuity-and-differentiability_limits-of-trigonometric-functions.md
inflating: /workspace/backend/knowledge/base/patterns/logarithm_logarithm-inequalities.md
inflating: /workspace/backend/knowledge/base/patterns/logarithm_logarithmic-equations.md
inflating: /workspace/backend/knowledge/base/patterns/mathematical-induction_mathematical-induction.md
inflating: /workspace/backend/knowledge/base/patterns/mathematical-reasoning_logical-connectives.md
inflating: /workspace/backend/knowledge/base/patterns/mathematical-reasoning_logical-statement.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_adjoint-of-a-matrix.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_basic-of-matrix.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_expansion-of-determinant.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_inverse-of-a-matrix.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_multiplication-of-matrices.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_operations-on-matrices.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_properties-of-determinants.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_solutions-of-system-of-linear-equations-in-two-or-three-variables-using-determinants-and-matrices.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_symmetric-and-skew-symmetric-matrices.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_trace-of-a-matrix.md
inflating: /workspace/backend/knowledge/base/patterns/matrices-and-determinants_transpose-of-a-matrix.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_chord-of-contact.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_chord-of-parabola.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_common-tangent.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_locus.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_normal-to-parabola.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_pair-of-tangents.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_position-of-point-and-chord-joining-of-two-points.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_question-based-on-basic-definition-and-parametric-representation.md
inflating: /workspace/backend/knowledge/base/patterns/parabola_tangent-to-parabola.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_application-of-permutations-and-combination-in-geometry.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_circular-permutations.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_conditional-combinations.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_conditional-permutations.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_dearrangement.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_divisibility-of-numbers.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_factorial.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_number-of-combinations.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_number-of-permutations.md
inflating: /workspace/backend/knowledge/base/patterns/permutations-and-combinations_sum-of-numbers.md
inflating: /workspace/backend/knowledge/base/patterns/probability_bayes-theorem.md
inflating: /workspace/backend/knowledge/base/patterns/probability_binomial-distribution.md
inflating: /workspace/backend/knowledge/base/patterns/probability_classical-defininition-of-probability.md
inflating: /workspace/backend/knowledge/base/patterns/probability_conditional-probability-and-multiplication-theorem.md
inflating: /workspace/backend/knowledge/base/patterns/probability_permutation-and-combination-based-problem.md
inflating: /workspace/backend/knowledge/base/patterns/probability_probability-distribution-of-a-random-variable.md
inflating: /workspace/backend/knowledge/base/patterns/probability_total-probability-theorem.md
inflating: /workspace/backend/knowledge/base/patterns/probability_venn-diagram-and-set-theory.md
inflating: /workspace/backend/knowledge/base/patterns/properties-of-triangle_area-of-triangle.md
inflating: /workspace/backend/knowledge/base/patterns/properties-of-triangle_circumcenter-incenter-and-orthocenter.md
inflating: /workspace/backend/knowledge/base/patterns/properties-of-triangle_cosine-rule.md
inflating: /workspace/backend/knowledge/base/patterns/properties-of-triangle_ex-circle.md
inflating: /workspace/backend/knowledge/base/patterns/properties-of-triangle_half-angle-formulae.md
inflating: /workspace/backend/knowledge/base/patterns/properties-of-triangle_mediun-and-angle-bisector.md
inflating: /workspace/backend/knowledge/base/patterns/properties-of-triangle_sine-rule.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_algebraic-equations-of-higher-degree.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_common-roots.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_graph-and-sign-of-quadratic-expression.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_greatest-integer-and-fractional-part-functions.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_inequalities.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_location-of-roots.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_modulus-function.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_nature-of-roots.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_range-of-quadratic-expression.md
inflating: /workspace/backend/knowledge/base/patterns/quadratic-equation-and-inequalities_relation-between-roots-and-coefficients.md
inflating: /workspace/backend/knowledge/base/patterns/sequences-and-series_am-gm-and-hm.md
inflating: /workspace/backend/knowledge/base/patterns/sequences-and-series_arithmetic-progression.md
inflating: /workspace/backend/knowledge/base/patterns/sequences-and-series_arithmetico-geometric-progression.md
inflating: /workspace/backend/knowledge/base/patterns/sequences-and-series_geometric-progression.md
inflating: /workspace/backend/knowledge/base/patterns/sequences-and-series_harmonic-progression.md
inflating: /workspace/backend/knowledge/base/patterns/sequences-and-series_summation-of-series.md
inflating: /workspace/backend/knowledge/base/patterns/sets-and-relations_number-of-sets-and-relations.md
inflating: /workspace/backend/knowledge/base/patterns/sets-and-relations_symmetric-transitive-and-reflexive-properties.md
inflating: /workspace/backend/knowledge/base/patterns/sets-and-relations_venn-diagram.md
inflating: /workspace/backend/knowledge/base/patterns/statistics_calculation-of-mean-median-and-mode-of-grouped-and-ungrouped-data.md
inflating: /workspace/backend/knowledge/base/patterns/statistics_calculation-of-standard-deviation-variance-and-mean-deviation-of-grouped-and-ungrouped-data.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_angle-between-two-lines.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_angle-bisector.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_area-of-triangle-and-condition-of-collinearity.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_centers-of-triangle.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_condition-of-concurrency.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_distance-formula.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_distance-of-a-point-from-a-line.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_family-of-straight-line.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_locus.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_pair-of-straight-lines.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_position-of-a-point-with-respect-to-a-line.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_section-formula.md
inflating: /workspace/backend/knowledge/base/patterns/straight-lines-and-pair-of-straight-lines_various-forms-of-straight-line.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-functions-and-equations_general-solution-and-principal-solution-of-the-equation.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-functions-and-equations_solving-trigonometric-equations.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_addition-and-subtraction-formula.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_basic-definition-of-trigonometric-function.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_fundamental-identities.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_multiple-and-sub-multiple-angle-formula.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_range-of-trigonometric-functions.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_reduction-formula.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_summation-series-problems.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_transformation-formula.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_trigonometric-ratio-of-standard-angles.md
inflating: /workspace/backend/knowledge/base/patterns/trigonometric-ratio-and-identites_trigonometric-series.md
inflating: /workspace/backend/knowledge/base/patterns/unknown_general.md
inflating: /workspace/backend/knowledge/base/patterns/_index.md
inflating: /workspace/backend/memory_index/jee_math.index
inflating: /workspace/backend/memory_index/metadata.json
inflating: /workspace/backend/prompts/explainer_prompt.md
inflating: /workspace/backend/prompts/solver_basic.md
inflating: /workspace/backend/prompts/solver_contextual.md
inflating: /workspace/backend/prompts/__init__.py
inflating: /workspace/backend/utils/text_utils.py
inflating: /workspace/backend/utils/__init__.py
inflating: /workspace/frontend/app.py
inflating: /workspace/frontend/helper_inputs.py
inflating: /workspace/tests/test_explainer.py
inflating: /workspace/tests/test_orchestrator.py
inflating: /workspace/tests/test_rag_solver.py
inflating: /workspace/tests/test_router.py
inflating: /workspace/tests/test_solver.py
inflating: /workspace/tests/test_verifier.py
inflating: /workspace/tests/verify_phase3.py
BUILD
Already have image (with digest): gcr.io/cloud-builders/docker
Sending build context to Docker daemon 20.42MB
Step 1/13 : FROM python:3.11-slim
3.11-slim: Pulling from library/python
0c8d55a45c0d: Already exists
64faa99400e1: Pulling fs layer
8cbc47ff628d: Pulling fs layer
d85099f0969e: Pulling fs layer
64faa99400e1: Verifying Checksum
64faa99400e1: Download complete
d85099f0969e: Download complete
8cbc47ff628d: Verifying Checksum
8cbc47ff628d: Download complete
64faa99400e1: Pull complete
8cbc47ff628d: Pull complete
d85099f0969e: Pull complete
Digest: sha256:0b23cfb7425d065008b778022a17b1551c82f8b4866ee5a7a200084b7e2eafbf
Status: Downloaded newer image for python:3.11-slim
---> 466c0182639b
Step 2/13 : RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 portaudio19-dev python3-dev gcc curl && rm -rf /var/lib/apt/lists/*
---> Running in 2da1c16f3b4e
Hit:1 http://deb.debian.org/debian trixie InRelease
Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9670 kB]
Get:5 http://deb.debian.org/debian trixie-updates/main amd64 Packages [5412 B]
Get:6 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [112 kB]
Fetched 9879 kB in 1s (7574 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
alsa-topology-conf alsa-ucm-conf bash-completion binutils binutils-common
binutils-x86-64-linux-gnu cpp cpp-14 cpp-14-x86-64-linux-gnu
cpp-x86-64-linux-gnu gcc-14 gcc-14-x86-64-linux-gnu gcc-x86-64-linux-gnu
javascript-common krb5-locales libasan8 libasound2-data libasound2-dev
libasound2t64 libatomic1 libbinutils libbrotli1 libc-dev-bin libc6-dev
libcc1-0 libcom-err2 libcrypt-dev libctf-nobfd0 libctf0 libcurl4t64
libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm2 libedit2 libelf1t64
libexpat1 libexpat1-dev libgbm1 libgcc-14-dev libgl1-mesa-dri
libglib2.0-data libglvnd0 libglx-mesa0 libglx0 libgnutls30t64 libgomp1
libgprofng0 libgssapi-krb5-2 libhwasan0 libidn2-0 libisl23 libitm1
libjack-jackd2-0 libjack-jackd2-dev libjansson4 libjs-jquery libjs-sphinxdoc
libjs-underscore libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
libldap-common libldap2 libllvm19 liblsan0 libmpc3 libmpfr6 libnghttp2-14
libnghttp3-9 libopus0 libp11-kit0 libpciaccess0 libportaudio2
libportaudiocpp0 libpsl5t64 libpython3-dev libpython3-stdlib libpython3.13
libpython3.13-dev libpython3.13-minimal libpython3.13-stdlib libquadmath0
librtmp1 libsamplerate0 libsasl2-2 libsasl2-modules libsasl2-modules-db
libsensors-config libsensors5 libsframe1 libssh2-1t64 libtasn1-6 libtsan2
libubsan1 libunistring5 libvulkan1 libwayland-client0 libwayland-server0
libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri3-0 libxcb-glx0
libxcb-present0 libxcb-randr0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0
libxcb1 libxdmcp6 libxext6 libxml2 libxshmfence1 libxxf86vm1 libz3-4
linux-libc-dev manpages manpages-dev media-types mesa-libgallium
mesa-vulkan-drivers publicsuffix python3 python3-minimal python3.13
python3.13-dev python3.13-minimal rpcsvc-proto shared-mime-info
xdg-user-dirs zlib1g-dev
Suggested packages:
binutils-doc gprofng-gui binutils-gold cpp-doc gcc-14-locales cpp-14-doc
gcc-multilib make autoconf automake libtool flex bison gdb gcc-doc
gcc-14-multilib gcc-14-doc gdb-x86-64-linux-gnu apache2 | lighttpd | httpd
alsa-utils libasound2-doc libasound2-plugins libc-devtools glibc-doc
low-memory-monitor gnutls-bin krb5-doc krb5-user jackd2 opus-tools pciutils
libsasl2-modules-gssapi-mit | libsasl2-modules-gssapi-heimdal
libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql lm-sensors
man-browser portaudio19-doc python3-doc python3-tk python3-venv
python3.13-venv python3.13-doc binfmt-support
The following NEW packages will be installed:
alsa-topology-conf alsa-ucm-conf bash-completion binutils binutils-common
binutils-x86-64-linux-gnu cpp cpp-14 cpp-14-x86-64-linux-gnu
cpp-x86-64-linux-gnu curl gcc gcc-14 gcc-14-x86-64-linux-gnu
gcc-x86-64-linux-gnu javascript-common krb5-locales libasan8 libasound2-data
libasound2-dev libasound2t64 libatomic1 libbinutils libbrotli1 libc-dev-bin
libc6-dev libcc1-0 libcom-err2 libcrypt-dev libctf-nobfd0 libctf0
libcurl4t64 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm2 libedit2
libelf1t64 libexpat1 libexpat1-dev libgbm1 libgcc-14-dev libgl1
libgl1-mesa-dri libglib2.0-0t64 libglib2.0-data libglvnd0 libglx-mesa0
libglx0 libgnutls30t64 libgomp1 libgprofng0 libgssapi-krb5-2 libhwasan0
libidn2-0 libisl23 libitm1 libjack-jackd2-0 libjack-jackd2-dev libjansson4
libjs-jquery libjs-sphinxdoc libjs-underscore libk5crypto3 libkeyutils1
libkrb5-3 libkrb5support0 libldap-common libldap2 libllvm19 liblsan0 libmpc3
libmpfr6 libnghttp2-14 libnghttp3-9 libopus0 libp11-kit0 libpciaccess0
libportaudio2 libportaudiocpp0 libpsl5t64 libpython3-dev libpython3-stdlib
libpython3.13 libpython3.13-dev libpython3.13-minimal libpython3.13-stdlib
libquadmath0 librtmp1 libsamplerate0 libsasl2-2 libsasl2-modules
libsasl2-modules-db libsensors-config libsensors5 libsframe1 libssh2-1t64
libtasn1-6 libtsan2 libubsan1 libunistring5 libvulkan1 libwayland-client0
libwayland-server0 libx11-6 libx11-data libx11-xcb1 libxau6 libxcb-dri3-0
libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-shm0 libxcb-sync1
libxcb-xfixes0 libxcb1 libxdmcp6 libxext6 libxml2 libxshmfence1 libxxf86vm1
libz3-4 linux-libc-dev manpages manpages-dev media-types mesa-libgallium
mesa-vulkan-drivers portaudio19-dev publicsuffix python3 python3-dev
python3-minimal python3.13 python3.13-dev python3.13-minimal rpcsvc-proto
shared-mime-info xdg-user-dirs zlib1g-dev
0 upgraded, 140 newly installed, 0 to remove and 0 not upgraded.
Need to get 153 MB of archives.
After this operation, 631 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian trixie/main amd64 libexpat1 amd64 2.7.1-2 [108 kB]
Get:2 http://deb.debian.org/debian trixie/main amd64 libpython3.13-minimal amd64 3.13.5-2 [862 kB]
Get:3 http://deb.debian.org/debian trixie/main amd64 python3.13-minimal amd64 3.13.5-2 [2224 kB]
Get:4 http://deb.debian.org/debian trixie/main amd64 python3-minimal amd64 3.13.5-1 [27.2 kB]
Get:5 http://deb.debian.org/debian trixie/main amd64 media-types all 13.0.0 [29.3 kB]
Get:6 http://deb.debian.org/debian trixie/main amd64 libpython3.13-stdlib amd64 3.13.5-2 [1956 kB]
Get:7 http://deb.debian.org/debian trixie/main amd64 python3.13 amd64 3.13.5-2 [757 kB]
Get:8 http://deb.debian.org/debian trixie/main amd64 libpython3-stdlib amd64 3.13.5-1 [10.2 kB]
Get:9 http://deb.debian.org/debian trixie/main amd64 python3 amd64 3.13.5-1 [28.2 kB]
Get:10 http://deb.debian.org/debian trixie/main amd64 bash-completion all 1:2.16.0-7 [319 kB]
Get:11 http://deb.debian.org/debian trixie/main amd64 krb5-locales all 1.21.3-5 [101 kB]
Get:12 http://deb.debian.org/debian trixie/main amd64 manpages all 6.9.1-1 [1393 kB]
Get:13 http://deb.debian.org/debian trixie/main amd64 alsa-topology-conf all 1.2.5.1-3 [15.3 kB]
Get:14 http://deb.debian.org/debian trixie/main amd64 libasound2-data all 1.2.14-1 [21.1 kB]
Get:15 http://deb.debian.org/debian trixie/main amd64 libasound2t64 amd64 1.2.14-1 [381 kB]
Get:16 http://deb.debian.org/debian trixie/main amd64 alsa-ucm-conf all 1.2.14-1 [92.5 kB]
Get:17 http://deb.debian.org/debian trixie/main amd64 libsframe1 amd64 2.44-3 [78.4 kB]
Get:18 http://deb.debian.org/debian trixie/main amd64 binutils-common amd64 2.44-3 [2509 kB]
Get:19 http://deb.debian.org/debian trixie/main amd64 libbinutils amd64 2.44-3 [534 kB]
Get:20 http://deb.debian.org/debian trixie/main amd64 libgprofng0 amd64 2.44-3 [808 kB]
Get:21 http://deb.debian.org/debian trixie/main amd64 libctf-nobfd0 amd64 2.44-3 [156 kB]
Get:22 http://deb.debian.org/debian trixie/main amd64 libctf0 amd64 2.44-3 [88.6 kB]
Get:23 http://deb.debian.org/debian trixie/main amd64 libjansson4 amd64 2.14-2+b3 [39.8 kB]
Get:24 http://deb.debian.org/debian trixie/main amd64 binutils-x86-64-linux-gnu amd64 2.44-3 [1014 kB]
Get:25 http://deb.debian.org/debian trixie/main amd64 binutils amd64 2.44-3 [265 kB]
Get:26 http://deb.debian.org/debian trixie/main amd64 libisl23 amd64 0.27-1 [659 kB]
Get:27 http://deb.debian.org/debian trixie/main amd64 libmpfr6 amd64 4.2.2-1 [729 kB]
Get:28 http://deb.debian.org/debian trixie/main amd64 libmpc3 amd64 1.3.1-1+b3 [52.2 kB]
Get:29 http://deb.debian.org/debian trixie/main amd64 cpp-14-x86-64-linux-gnu amd64 14.2.0-19 [11.0 MB]
Get:30 http://deb.debian.org/debian trixie/main amd64 cpp-14 amd64 14.2.0-19 [1280 B]
Get:31 http://deb.debian.org/debian trixie/main amd64 cpp-x86-64-linux-gnu amd64 4:14.2.0-1 [4840 B]
Get:32 http://deb.debian.org/debian trixie/main amd64 cpp amd64 4:14.2.0-1 [1568 B]
Get:33 http://deb.debian.org/debian trixie/main amd64 libbrotli1 amd64 1.1.0-2+b7 [307 kB]
Get:34 http://deb.debian.org/debian trixie/main amd64 libkrb5support0 amd64 1.21.3-5 [33.0 kB]
Get:35 http://deb.debian.org/debian trixie/main amd64 libcom-err2 amd64 1.47.2-3+b7 [25.0 kB]
Get:36 http://deb.debian.org/debian trixie/main amd64 libk5crypto3 amd64 1.21.3-5 [81.5 kB]
Get:37 http://deb.debian.org/debian trixie/main amd64 libkeyutils1 amd64 1.6.3-6 [9456 B]
Get:38 http://deb.debian.org/debian trixie/main amd64 libkrb5-3 amd64 1.21.3-5 [326 kB]
Get:39 http://deb.debian.org/debian trixie/main amd64 libgssapi-krb5-2 amd64 1.21.3-5 [138 kB]
Get:40 http://deb.debian.org/debian trixie/main amd64 libunistring5 amd64 1.3-2 [477 kB]
Get:41 http://deb.debian.org/debian trixie/main amd64 libidn2-0 amd64 2.3.8-2 [109 kB]
Get:42 http://deb.debian.org/debian trixie/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg1-9 [19.8 kB]
Get:43 http://deb.debian.org/debian trixie/main amd64 libsasl2-2 amd64 2.1.28+dfsg1-9 [57.5 kB]
Get:44 http://deb.debian.org/debian trixie/main amd64 libldap2 amd64 2.6.10+dfsg-1 [194 kB]
Get:45 http://deb.debian.org/debian trixie/main amd64 libnghttp2-14 amd64 1.64.0-1.1 [76.0 kB]
Get:46 http://deb.debian.org/debian trixie/main amd64 libnghttp3-9 amd64 1.8.0-1 [67.7 kB]
Get:47 http://deb.debian.org/debian trixie/main amd64 libpsl5t64 amd64 0.21.2-1.1+b1 [57.2 kB]
Get:48 http://deb.debian.org/debian trixie/main amd64 libp11-kit0 amd64 0.25.5-3 [425 kB]
Get:49 http://deb.debian.org/debian trixie/main amd64 libtasn1-6 amd64 4.20.0-2 [49.9 kB]
Get:50 http://deb.debian.org/debian-security trixie-security/main amd64 libgnutls30t64 amd64 3.8.9-3+deb13u2 [1468 kB]
Get:51 http://deb.debian.org/debian trixie/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b5 [58.8 kB]
Get:52 http://deb.debian.org/debian trixie/main amd64 libssh2-1t64 amd64 1.11.1-1 [245 kB]
Get:53 http://deb.debian.org/debian trixie/main amd64 libcurl4t64 amd64 8.14.1-2+deb13u2 [391 kB]
Get:54 http://deb.debian.org/debian trixie/main amd64 curl amd64 8.14.1-2+deb13u2 [270 kB]
Get:55 http://deb.debian.org/debian trixie/main amd64 libcc1-0 amd64 14.2.0-19 [42.8 kB]
Get:56 http://deb.debian.org/debian trixie/main amd64 libgomp1 amd64 14.2.0-19 [137 kB]
Get:57 http://deb.debian.org/debian trixie/main amd64 libitm1 amd64 14.2.0-19 [26.0 kB]
Get:58 http://deb.debian.org/debian trixie/main amd64 libatomic1 amd64 14.2.0-19 [9308 B]
Get:59 http://deb.debian.org/debian trixie/main amd64 libasan8 amd64 14.2.0-19 [2725 kB]
Get:60 http://deb.debian.org/debian trixie/main amd64 liblsan0 amd64 14.2.0-19 [1204 kB]
Get:61 http://deb.debian.org/debian trixie/main amd64 libtsan2 amd64 14.2.0-19 [2460 kB]
Get:62 http://deb.debian.org/debian trixie/main amd64 libubsan1 amd64 14.2.0-19 [1074 kB]
Get:63 http://deb.debian.org/debian trixie/main amd64 libhwasan0 amd64 14.2.0-19 [1488 kB]
Get:64 http://deb.debian.org/debian trixie/main amd64 libquadmath0 amd64 14.2.0-19 [145 kB]
Get:65 http://deb.debian.org/debian trixie/main amd64 libgcc-14-dev amd64 14.2.0-19 [2672 kB]
Get:66 http://deb.debian.org/debian trixie/main amd64 gcc-14-x86-64-linux-gnu amd64 14.2.0-19 [21.4 MB]
Get:67 http://deb.debian.org/debian trixie/main amd64 gcc-14 amd64 14.2.0-19 [540 kB]
Get:68 http://deb.debian.org/debian trixie/main amd64 gcc-x86-64-linux-gnu amd64 4:14.2.0-1 [1436 B]
Get:69 http://deb.debian.org/debian trixie/main amd64 gcc amd64 4:14.2.0-1 [5136 B]
Get:70 http://deb.debian.org/debian trixie/main amd64 javascript-common all 12+nmu1 [4864 B]
Get:71 http://deb.debian.org/debian trixie/main amd64 libasound2-dev amd64 1.2.14-1 [120 kB]
Get:72 http://deb.debian.org/debian trixie/main amd64 libc-dev-bin amd64 2.41-12+deb13u1 [58.5 kB]
Get:73 http://deb.debian.org/debian-security trixie-security/main amd64 linux-libc-dev all 6.12.73-1 [2745 kB]
Get:74 http://deb.debian.org/debian trixie/main amd64 libcrypt-dev amd64 1:4.4.38-1 [119 kB]
Get:75 http://deb.debian.org/debian trixie/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB]
Get:76 http://deb.debian.org/debian trixie/main amd64 libc6-dev amd64 2.41-12+deb13u1 [1994 kB]
Get:77 http://deb.debian.org/debian trixie/main amd64 libdrm-common all 2.4.124-2 [8288 B]
Get:78 http://deb.debian.org/debian trixie/main amd64 libdrm2 amd64 2.4.124-2 [39.0 kB]
Get:79 http://deb.debian.org/debian trixie/main amd64 libdrm-amdgpu1 amd64 2.4.124-2 [22.6 kB]
Get:80 http://deb.debian.org/debian trixie/main amd64 libpciaccess0 amd64 0.17-3+b3 [51.9 kB]
Get:81 http://deb.debian.org/debian trixie/main amd64 libdrm-intel1 amd64 2.4.124-2 [64.1 kB]
Get:82 http://deb.debian.org/debian trixie/main amd64 libedit2 amd64 3.1-20250104-1 [93.8 kB]
Get:83 http://deb.debian.org/debian trixie/main amd64 libelf1t64 amd64 0.192-4 [189 kB]
Get:84 http://deb.debian.org/debian trixie/main amd64 libexpat1-dev amd64 2.7.1-2 [161 kB]
Get:85 http://deb.debian.org/debian trixie/main amd64 libwayland-server0 amd64 1.23.1-3 [34.4 kB]
Get:86 http://deb.debian.org/debian trixie/main amd64 libxml2 amd64 2.12.7+dfsg+really2.9.14-2.1+deb13u2 [698 kB]
Get:87 http://deb.debian.org/debian trixie/main amd64 libz3-4 amd64 4.13.3-1 [8560 kB]
Get:88 http://deb.debian.org/debian trixie/main amd64 libllvm19 amd64 1:19.1.7-3+b1 [26.0 MB]
Get:89 http://deb.debian.org/debian trixie/main amd64 libsensors-config all 1:3.6.2-2 [16.2 kB]
Get:90 http://deb.debian.org/debian trixie/main amd64 libsensors5 amd64 1:3.6.2-2 [37.5 kB]
Get:91 http://deb.debian.org/debian trixie/main amd64 libxau6 amd64 1:1.0.11-1 [20.4 kB]
Get:92 http://deb.debian.org/debian trixie/main amd64 libxdmcp6 amd64 1:1.1.5-1 [27.8 kB]
Get:93 http://deb.debian.org/debian trixie/main amd64 libxcb1 amd64 1.17.0-2+b1 [144 kB]
Get:94 http://deb.debian.org/debian trixie/main amd64 libx11-data all 2:1.8.12-1 [343 kB]
Get:95 http://deb.debian.org/debian trixie/main amd64 libx11-6 amd64 2:1.8.12-1 [815 kB]
Get:96 http://deb.debian.org/debian trixie/main amd64 libx11-xcb1 amd64 2:1.8.12-1 [247 kB]
Get:97 http://deb.debian.org/debian trixie/main amd64 libxcb-dri3-0 amd64 1.17.0-2+b1 [107 kB]
Get:98 http://deb.debian.org/debian trixie/main amd64 libxcb-present0 amd64 1.17.0-2+b1 [106 kB]
Get:99 http://deb.debian.org/debian trixie/main amd64 libxcb-randr0 amd64 1.17.0-2+b1 [117 kB]
Get:100 http://deb.debian.org/debian trixie/main amd64 libxcb-sync1 amd64 1.17.0-2+b1 [109 kB]
Get:101 http://deb.debian.org/debian trixie/main amd64 libxcb-xfixes0 amd64 1.17.0-2+b1 [109 kB]
Get:102 http://deb.debian.org/debian trixie/main amd64 libxshmfence1 amd64 1.3.3-1 [10.9 kB]
Get:103 http://deb.debian.org/debian trixie/main amd64 mesa-libgallium amd64 25.0.7-2 [9629 kB]
Get:104 http://deb.debian.org/debian trixie/main amd64 libgbm1 amd64 25.0.7-2 [44.4 kB]
Get:105 http://deb.debian.org/debian trixie/main amd64 libglvnd0 amd64 1.7.0-1+b2 [52.0 kB]
Get:106 http://deb.debian.org/debian trixie/main amd64 libxcb-glx0 amd64 1.17.0-2+b1 [122 kB]
Get:107 http://deb.debian.org/debian trixie/main amd64 libxcb-shm0 amd64 1.17.0-2+b1 [105 kB]
Get:108 http://deb.debian.org/debian trixie/main amd64 libxext6 amd64 2:1.3.4-1+b3 [50.4 kB]
Get:109 http://deb.debian.org/debian trixie/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b4 [19.3 kB]
Get:110 http://deb.debian.org/debian trixie/main amd64 libvulkan1 amd64 1.4.309.0-1 [130 kB]
Get:111 http://deb.debian.org/debian trixie/main amd64 libgl1-mesa-dri amd64 25.0.7-2 [46.1 kB]
Get:112 http://deb.debian.org/debian trixie/main amd64 libglx-mesa0 amd64 25.0.7-2 [143 kB]
Get:113 http://deb.debian.org/debian trixie/main amd64 libglx0 amd64 1.7.0-1+b2 [34.9 kB]
Get:114 http://deb.debian.org/debian trixie/main amd64 libgl1 amd64 1.7.0-1+b2 [89.5 kB]
Get:115 http://deb.debian.org/debian trixie/main amd64 libglib2.0-0t64 amd64 2.84.4-3~deb13u2 [1518 kB]
Get:116 http://deb.debian.org/debian trixie/main amd64 libglib2.0-data all 2.84.4-3~deb13u2 [1286 kB]
Get:117 http://deb.debian.org/debian trixie/main amd64 libopus0 amd64 1.5.2-2 [2852 kB]
Get:118 http://deb.debian.org/debian trixie/main amd64 libsamplerate0 amd64 0.2.2-4+b2 [950 kB]
Get:119 http://deb.debian.org/debian trixie/main amd64 libjack-jackd2-0 amd64 1.9.22~dfsg-4 [287 kB]
Get:120 http://deb.debian.org/debian trixie/main amd64 libjack-jackd2-dev amd64 1.9.22~dfsg-4 [60.0 kB]
Get:121 http://deb.debian.org/debian trixie/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
Get:122 http://deb.debian.org/debian trixie/main amd64 libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
Get:123 http://deb.debian.org/debian trixie/main amd64 libjs-sphinxdoc all 8.1.3-5 [30.5 kB]
Get:124 http://deb.debian.org/debian trixie/main amd64 libldap-common all 2.6.10+dfsg-1 [35.1 kB]
Get:125 http://deb.debian.org/debian trixie/main amd64 libportaudio2 amd64 19.6.0-1.2+b3 [64.8 kB]
Get:126 http://deb.debian.org/debian trixie/main amd64 libportaudiocpp0 amd64 19.6.0-1.2+b3 [17.6 kB]
Get:127 http://deb.debian.org/debian trixie/main amd64 libpython3.13 amd64 3.13.5-2 [2160 kB]
Get:128 http://deb.debian.org/debian trixie/main amd64 zlib1g-dev amd64 1:1.3.dfsg+really1.3.1-1+b1 [920 kB]
Get:129 http://deb.debian.org/debian trixie/main amd64 libpython3.13-dev amd64 3.13.5-2 [5291 kB]
Get:130 http://deb.debian.org/debian trixie/main amd64 libpython3-dev amd64 3.13.5-1 [10.4 kB]
Get:131 http://deb.debian.org/debian trixie/main amd64 libsasl2-modules amd64 2.1.28+dfsg1-9 [66.7 kB]
Get:132 http://deb.debian.org/debian trixie/main amd64 libwayland-client0 amd64 1.23.1-3 [26.8 kB]
Get:133 http://deb.debian.org/debian trixie/main amd64 manpages-dev all 6.9.1-1 [2122 kB]
Get:134 http://deb.debian.org/debian trixie/main amd64 mesa-vulkan-drivers amd64 25.0.7-2 [14.2 MB]
Get:135 http://deb.debian.org/debian trixie/main amd64 portaudio19-dev amd64 19.6.0-1.2+b3 [106 kB]
Get:136 http://deb.debian.org/debian trixie/main amd64 publicsuffix all 20250328.1952-0.1 [296 kB]
Get:137 http://deb.debian.org/debian trixie/main amd64 python3.13-dev amd64 3.13.5-2 [504 kB]
Get:138 http://deb.debian.org/debian trixie/main amd64 python3-dev amd64 3.13.5-1 [26.1 kB]
Get:139 http://deb.debian.org/debian trixie/main amd64 shared-mime-info amd64 2.4-5+b2 [760 kB]
Get:140 http://deb.debian.org/debian trixie/main amd64 xdg-user-dirs amd64 0.18-2 [53.2 kB]
[91mdebconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
[0m[91mdebconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.40.1 /usr/local/share/perl/5.40.1 /usr/lib/x86_64-linux-gnu/perl5/5.40 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.40 /usr/share/perl/5.40 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8, <STDIN> line 140.)
debconf: falling back to frontend: Teletype
[0m[91mdebconf: unable to initialize frontend: Teletype
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Noninteractive
[0mFetched 153 MB in 2s (94.8 MB/s)
Selecting previously unselected package libexpat1:amd64.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5645 files and directories currently installed.)
Preparing to unpack .../libexpat1_2.7.1-2_amd64.deb ...
Unpacking libexpat1:amd64 (2.7.1-2) ...
Selecting previously unselected package libpython3.13-minimal:amd64.
Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ...
Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
Selecting previously unselected package python3.13-minimal.
Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ...
Unpacking python3.13-minimal (3.13.5-2) ...
Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
Setting up libexpat1:amd64 (2.7.1-2) ...
Setting up python3.13-minimal (3.13.5-2) ...
Selecting previously unselected package python3-minimal.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5979 files and directories currently installed.)
Preparing to unpack .../python3-minimal_3.13.5-1_amd64.deb ...
Unpacking python3-minimal (3.13.5-1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../media-types_13.0.0_all.deb ...
Unpacking media-types (13.0.0) ...
Selecting previously unselected package libpython3.13-stdlib:amd64.
Preparing to unpack .../libpython3.13-stdlib_3.13.5-2_amd64.deb ...
Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
Selecting previously unselected package python3.13.
Preparing to unpack .../python3.13_3.13.5-2_amd64.deb ...
Unpacking python3.13 (3.13.5-2) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../libpython3-stdlib_3.13.5-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
Setting up python3-minimal (3.13.5-1) ...
Selecting previously unselected package python3.
(Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 6433 files and directories currently installed.)
Preparing to unpack .../000-python3_3.13.5-1_amd64.deb ...
Unpacking python3 (3.13.5-1) ...
Selecting previously unselected package bash-completion.
Preparing to unpack .../001-bash-completion_1%3a2.16.0-7_all.deb ...
Unpacking bash-completion (1:2.16.0-7) ...
Selecting previously unselected package krb5-locales.
Preparing to unpack .../002-krb5-locales_1.21.3-5_all.deb ...
Unpacking krb5-locales (1.21.3-5) ...
Selecting previously unselected package manpages.
Preparing to unpack .../003-manpages_6.9.1-1_all.deb ...
Unpacking manpages (6.9.1-1) ...
Selecting previously unselected package alsa-topology-conf.
Preparing to unpack .../004-alsa-topology-conf_1.2.5.1-3_all.deb ...
Unpacking alsa-topology-conf (1.2.5.1-3) ...
Selecting previously unselected package libasound2-data.
Preparing to unpack .../005-libasound2-data_1.2.14-1_all.deb ...
Unpacking libasound2-data (1.2.14-1) ...
Selecting previously unselected package libasound2t64:amd64.
Preparing to unpack .../006-libasound2t64_1.2.14-1_amd64.deb ...
Unpacking libasound2t64:amd64 (1.2.14-1) ...
Selecting previously unselected package alsa-ucm-conf.
Preparing to unpack .../007-alsa-ucm-conf_1.2.14-1_all.deb ...
Unpacking alsa-ucm-conf (1.2.14-1) ...
Selecting previously unselected package libsframe1:amd64.
Preparing to unpack .../008-libsframe1_2.44-3_amd64.deb ...
Unpacking libsframe1:amd64 (2.44-3) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../009-binutils-common_2.44-3_amd64.deb ...
Unpacking binutils-common:amd64 (2.44-3) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../010-libbinutils_2.44-3_amd64.deb ...
Unpacking libbinutils:amd64 (2.44-3) ...
Selecting previously unselected package libgprofng0:amd64.
Preparing to unpack .../011-libgprofng0_2.44-3_amd64.deb ...
Unpacking libgprofng0:amd64 (2.44-3) ...
Selecting previously unselected package libctf-nobfd0:amd64.
Preparing to unpack .../012-libctf-nobfd0_2.44-3_amd64.deb ...
Unpacking libctf-nobfd0:amd64 (2.44-3) ...
Selecting previously unselected package libctf0:amd64.
Preparing to unpack .../013-libctf0_2.44-3_amd64.deb ...
Unpacking libctf0:amd64 (2.44-3) ...
Selecting previously unselected package libjansson4:amd64.
Preparing to unpack .../014-libjansson4_2.14-2+b3_amd64.deb ...
Unpacking libjansson4:amd64 (2.14-2+b3) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../015-binutils-x86-64-linux-gnu_2.44-3_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.44-3) ...
Selecting previously unselected package binutils.
Preparing to unpack .../016-binutils_2.44-3_amd64.deb ...
Unpacking binutils (2.44-3) ...
Selecting previously unselected package libisl23:amd64.
Preparing to unpack .../017-libisl23_0.27-1_amd64.deb ...
Unpacking libisl23:amd64 (0.27-1) ...
Selecting previously unselected package libmpfr6:amd64.
Preparing to unpack .../018-libmpfr6_4.2.2-1_amd64.deb ...
Unpacking libmpfr6:amd64 (4.2.2-1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../019-libmpc3_1.3.1-1+b3_amd64.deb ...
Unpacking libmpc3:amd64 (1.3.1-1+b3) ...
Selecting previously unselected package cpp-14-x86-64-linux-gnu.
Preparing to unpack .../020-cpp-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
Unpacking cpp-14-x86-64-linux-gnu (14.2.0-19) ...
Selecting previously unselected package cpp-14.
Preparing to unpack .../021-cpp-14_14.2.0-19_amd64.deb ...
Unpacking cpp-14 (14.2.0-19) ...
Selecting previously unselected package cpp-x86-64-linux-gnu.
Preparing to unpack .../022-cpp-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
Unpacking cpp-x86-64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package cpp.
Preparing to unpack .../023-cpp_4%3a14.2.0-1_amd64.deb ...
Unpacking cpp (4:14.2.0-1) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../024-libbrotli1_1.1.0-2+b7_amd64.deb ...
Unpacking libbrotli1:amd64 (1.1.0-2+b7) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../025-libkrb5support0_1.21.3-5_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.21.3-5) ...
Selecting previously unselected package libcom-err2:amd64.
Preparing to unpack .../026-libcom-err2_1.47.2-3+b7_amd64.deb ...
Unpacking libcom-err2:amd64 (1.47.2-3+b7) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../027-libk5crypto3_1.21.3-5_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.21.3-5) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../028-libkeyutils1_1.6.3-6_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.6.3-6) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../029-libkrb5-3_1.21.3-5_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.21.3-5) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../030-libgssapi-krb5-2_1.21.3-5_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.21.3-5) ...
Selecting previously unselected package libunistring5:amd64.
Preparing to unpack .../031-libunistring5_1.3-2_amd64.deb ...
Unpacking libunistring5:amd64 (1.3-2) ...
Selecting previously unselected package libidn2-0:amd64.
Preparing to unpack .../032-libidn2-0_2.3.8-2_amd64.deb ...
Unpacking libidn2-0:amd64 (2.3.8-2) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../033-libsasl2-modules-db_2.1.28+dfsg1-9_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg1-9) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../034-libsasl2-2_2.1.28+dfsg1-9_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.28+dfsg1-9) ...
Selecting previously unselected package libldap2:amd64.
Preparing to unpack .../035-libldap2_2.6.10+dfsg-1_amd64.deb ...
Unpacking libldap2:amd64 (2.6.10+dfsg-1) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../036-libnghttp2-14_1.64.0-1.1_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.64.0-1.1) ...
Selecting previously unselected package libnghttp3-9:amd64.
Preparing to unpack .../037-libnghttp3-9_1.8.0-1_amd64.deb ...
Unpacking libnghttp3-9:amd64 (1.8.0-1) ...
Selecting previously unselected package libpsl5t64:amd64.
Preparing to unpack .../038-libpsl5t64_0.21.2-1.1+b1_amd64.deb ...
Unpacking libpsl5t64:amd64 (0.21.2-1.1+b1) ...
Selecting previously unselected package libp11-kit0:amd64.
Preparing to unpack .../039-libp11-kit0_0.25.5-3_amd64.deb ...
Unpacking libp11-kit0:amd64 (0.25.5-3) ...
Selecting previously unselected package libtasn1-6:amd64.
Preparing to unpack .../040-libtasn1-6_4.20.0-2_amd64.deb ...
Unpacking libtasn1-6:amd64 (4.20.0-2) ...
Selecting previously unselected package libgnutls30t64:amd64.
Preparing to unpack .../041-libgnutls30t64_3.8.9-3+deb13u2_amd64.deb ...
Unpacking libgnutls30t64:amd64 (3.8.9-3+deb13u2) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../042-librtmp1_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
Selecting previously unselected package libssh2-1t64:amd64.
Preparing to unpack .../043-libssh2-1t64_1.11.1-1_amd64.deb ...
Unpacking libssh2-1t64:amd64 (1.11.1-1) ...
Selecting previously unselected package libcurl4t64:amd64.
Preparing to unpack .../044-libcurl4t64_8.14.1-2+deb13u2_amd64.deb ...
Unpacking libcurl4t64:amd64 (8.14.1-2+deb13u2) ...
Selecting previously unselected package curl.
Preparing to unpack .../045-curl_8.14.1-2+deb13u2_amd64.deb ...
Unpacking curl (8.14.1-2+deb13u2) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../046-libcc1-0_14.2.0-19_amd64.deb ...
Unpacking libcc1-0:amd64 (14.2.0-19) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../047-libgomp1_14.2.0-19_amd64.deb ...
Unpacking libgomp1:amd64 (14.2.0-19) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../048-libitm1_14.2.0-19_amd64.deb ...
Unpacking libitm1:amd64 (14.2.0-19) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../049-libatomic1_14.2.0-19_amd64.deb ...
Unpacking libatomic1:amd64 (14.2.0-19) ...
Selecting previously unselected package libasan8:amd64.
Preparing to unpack .../050-libasan8_14.2.0-19_amd64.deb ...
Unpacking libasan8:amd64 (14.2.0-19) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../051-liblsan0_14.2.0-19_amd64.deb ...
Unpacking liblsan0:amd64 (14.2.0-19) ...
Selecting previously unselected package libtsan2:amd64.
Preparing to unpack .../052-libtsan2_14.2.0-19_amd64.deb ...
Unpacking libtsan2:amd64 (14.2.0-19) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../053-libubsan1_14.2.0-19_amd64.deb ...
Unpacking libubsan1:amd64 (14.2.0-19) ...
Selecting previously unselected package libhwasan0:amd64.
Preparing to unpack .../054-libhwasan0_14.2.0-19_amd64.deb ...
Unpacking libhwasan0:amd64 (14.2.0-19) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../055-libquadmath0_14.2.0-19_amd64.deb ...
Unpacking libquadmath0:amd64 (14.2.0-19) ...
Selecting previously unselected package libgcc-14-dev:amd64.
Preparing to unpack .../056-libgcc-14-dev_14.2.0-19_amd64.deb ...
Unpacking libgcc-14-dev:amd64 (14.2.0-19) ...
Selecting previously unselected package gcc-14-x86-64-linux-gnu.
Preparing to unpack .../057-gcc-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
Unpacking gcc-14-x86-64-linux-gnu (14.2.0-19) ...
Selecting previously unselected package gcc-14.
Preparing to unpack .../058-gcc-14_14.2.0-19_amd64.deb ...
Unpacking gcc-14 (14.2.0-19) ...
Selecting previously unselected package gcc-x86-64-linux-gnu.
Preparing to unpack .../059-gcc-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
Unpacking gcc-x86-64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package gcc.
Preparing to unpack .../060-gcc_4%3a14.2.0-1_amd64.deb ...
Unpacking gcc (4:14.2.0-1) ...
Selecting previously unselected package javascript-common.
Preparing to unpack .../061-javascript-common_12+nmu1_all.deb ...
Unpacking javascript-common (12+nmu1) ...
Selecting previously unselected package libasound2-dev:amd64.
Preparing to unpack .../062-libasound2-dev_1.2.14-1_amd64.deb ...
Unpacking libasound2-dev:amd64 (1.2.14-1) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../063-libc-dev-bin_2.41-12+deb13u1_amd64.deb ...
Unpacking libc-dev-bin (2.41-12+deb13u1) ...
Selecting previously unselected package linux-libc-dev.
Preparing to unpack .../064-linux-libc-dev_6.12.73-1_all.deb ...
Unpacking linux-libc-dev (6.12.73-1) ...
Selecting previously unselected package libcrypt-dev:amd64.
Preparing to unpack .../065-libcrypt-dev_1%3a4.4.38-1_amd64.deb ...
Unpacking libcrypt-dev:amd64 (1:4.4.38-1) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../066-rpcsvc-proto_1.4.3-1_amd64.deb ...
Unpacking rpcsvc-proto (1.4.3-1) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../067-libc6-dev_2.41-12+deb13u1_amd64.deb ...
Unpacking libc6-dev:amd64 (2.41-12+deb13u1) ...
Selecting previously unselected package libdrm-common.
Preparing to unpack .../068-libdrm-common_2.4.124-2_all.deb ...
Unpacking libdrm-common (2.4.124-2) ...
Selecting previously unselected package libdrm2:amd64.
Preparing to unpack .../069-libdrm2_2.4.124-2_amd64.deb ...
Unpacking libdrm2:amd64 (2.4.124-2) ...
Selecting previously unselected package libdrm-amdgpu1:amd64.
Preparing to unpack .../070-libdrm-amdgpu1_2.4.124-2_amd64.deb ...
Unpacking libdrm-amdgpu1:amd64 (2.4.124-2) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../071-libpciaccess0_0.17-3+b3_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
Selecting previously unselected package libdrm-intel1:amd64.
Preparing to unpack .../072-libdrm-intel1_2.4.124-2_amd64.deb ...
Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../073-libedit2_3.1-20250104-1_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20250104-1) ...
Selecting previously unselected package libelf1t64:amd64.
Preparing to unpack .../074-libelf1t64_0.192-4_amd64.deb ...
Unpacking libelf1t64:amd64 (0.192-4) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../075-libexpat1-dev_2.7.1-2_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
Selecting previously unselected package libwayland-server0:amd64.
Preparing to unpack .../076-libwayland-server0_1.23.1-3_amd64.deb ...
Unpacking libwayland-server0:amd64 (1.23.1-3) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../077-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
Selecting previously unselected package libz3-4:amd64.
Preparing to unpack .../078-libz3-4_4.13.3-1_amd64.deb ...
Unpacking libz3-4:amd64 (4.13.3-1) ...
Selecting previously unselected package libllvm19:amd64.
Preparing to unpack .../079-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
Selecting previously unselected package libsensors-config.
Preparing to unpack .../080-libsensors-config_1%3a3.6.2-2_all.deb ...
Unpacking libsensors-config (1:3.6.2-2) ...
Selecting previously unselected package libsensors5:amd64.
Preparing to unpack .../081-libsensors5_1%3a3.6.2-2_amd64.deb ...
Unpacking libsensors5:amd64 (1:3.6.2-2) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../082-libxau6_1%3a1.0.11-1_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.11-1) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../083-libxdmcp6_1%3a1.1.5-1_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.5-1) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../084-libxcb1_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb1:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../085-libx11-data_2%3a1.8.12-1_all.deb ...
Unpacking libx11-data (2:1.8.12-1) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../086-libx11-6_2%3a1.8.12-1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.8.12-1) ...
Selecting previously unselected package libx11-xcb1:amd64.
Preparing to unpack .../087-libx11-xcb1_2%3a1.8.12-1_amd64.deb ...
Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../088-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../089-libxcb-present0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-randr0:amd64.
Preparing to unpack .../090-libxcb-randr0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../091-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Preparing to unpack .../092-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../093-libxshmfence1_1.3.3-1_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3.3-1) ...
Selecting previously unselected package mesa-libgallium:amd64.
Preparing to unpack .../094-mesa-libgallium_25.0.7-2_amd64.deb ...
Unpacking mesa-libgallium:amd64 (25.0.7-2) ...
Selecting previously unselected package libgbm1:amd64.
Preparing to unpack .../095-libgbm1_25.0.7-2_amd64.deb ...
Unpacking libgbm1:amd64 (25.0.7-2) ...
Selecting previously unselected package libglvnd0:amd64.
Preparing to unpack .../096-libglvnd0_1.7.0-1+b2_amd64.deb ...
Unpacking libglvnd0:amd64 (1.7.0-1+b2) ...
Selecting previously unselected package libxcb-glx0:amd64.
Preparing to unpack .../097-libxcb-glx0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-glx0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../098-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../099-libxext6_2%3a1.3.4-1+b3_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.4-1+b3) ...
Selecting previously unselected package libxxf86vm1:amd64.
Preparing to unpack .../100-libxxf86vm1_1%3a1.1.4-1+b4_amd64.deb ...
Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
Selecting previously unselected package libvulkan1:amd64.
Preparing to unpack .../101-libvulkan1_1.4.309.0-1_amd64.deb ...
Unpacking libvulkan1:amd64 (1.4.309.0-1) ...
Selecting previously unselected package libgl1-mesa-dri:amd64.
Preparing to unpack .../102-libgl1-mesa-dri_25.0.7-2_amd64.deb ...
Unpacking libgl1-mesa-dri:amd64 (25.0.7-2) ...
Selecting previously unselected package libglx-mesa0:amd64.
Preparing to unpack .../103-libglx-mesa0_25.0.7-2_amd64.deb ...
Unpacking libglx-mesa0:amd64 (25.0.7-2) ...
Selecting previously unselected package libglx0:amd64.
Preparing to unpack .../104-libglx0_1.7.0-1+b2_amd64.deb ...
Unpacking libglx0:amd64 (1.7.0-1+b2) ...
Selecting previously unselected package libgl1:amd64.
Preparing to unpack .../105-libgl1_1.7.0-1+b2_amd64.deb ...
Unpacking libgl1:amd64 (1.7.0-1+b2) ...
Selecting previously unselected package libglib2.0-0t64:amd64.
Preparing to unpack .../106-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...
Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...
Selecting previously unselected package libglib2.0-data.
Preparing to unpack .../107-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...
Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...
Selecting previously unselected package libopus0:amd64.
Preparing to unpack .../108-libopus0_1.5.2-2_amd64.deb ...
Unpacking libopus0:amd64 (1.5.2-2) ...
Selecting previously unselected package libsamplerate0:amd64.
Preparing to unpack .../109-libsamplerate0_0.2.2-4+b2_amd64.deb ...
Unpacking libsamplerate0:amd64 (0.2.2-4+b2) ...
Selecting previously unselected package libjack-jackd2-0:amd64.
Preparing to unpack .../110-libjack-jackd2-0_1.9.22~dfsg-4_amd64.deb ...
Unpacking libjack-jackd2-0:amd64 (1.9.22~dfsg-4) ...
Selecting previously unselected package libjack-jackd2-dev:amd64.
Preparing to unpack .../111-libjack-jackd2-dev_1.9.22~dfsg-4_amd64.deb ...
Unpacking libjack-jackd2-dev:amd64 (1.9.22~dfsg-4) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../112-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Selecting previously unselected package libjs-underscore.
Preparing to unpack .../113-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Selecting previously unselected package libjs-sphinxdoc.
Preparing to unpack .../114-libjs-sphinxdoc_8.1.3-5_all.deb ...
Unpacking libjs-sphinxdoc (8.1.3-5) ...
Selecting previously unselected package libldap-common.
Preparing to unpack .../115-libldap-common_2.6.10+dfsg-1_all.deb ...
Unpacking libldap-common (2.6.10+dfsg-1) ...
Selecting previously unselected package libportaudio2:amd64.
Preparing to unpack .../116-libportaudio2_19.6.0-1.2+b3_amd64.deb ...