-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlogging.log
More file actions
1687 lines (1683 loc) · 264 KB
/
logging.log
File metadata and controls
1687 lines (1683 loc) · 264 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
2025-01-29 02:33:34,364 - INFO - Loaded database
2025-01-29 02:37:24,024 - ERROR - Error loading album cover: 'NoneType' object has no attribute 'values'
2025-01-29 02:37:24,024 - INFO - Loaded song: D:/College_work/DSP_/TuneSpy/Data/Songs/22050_FE!N.wav
2025-01-29 02:37:25,330 - DEBUG - bytecode dump:
> 0 NOP(arg=None, lineno=1141)
2 RESUME(arg=0, lineno=1141)
4 LOAD_FAST(arg=0, lineno=1144)
6 LOAD_CONST(arg=1, lineno=1144)
8 BINARY_SUBSCR(arg=None, lineno=1144)
12 STORE_FAST(arg=3, lineno=1144)
14 LOAD_FAST(arg=1, lineno=1145)
16 UNARY_NEGATIVE(arg=None, lineno=1145)
18 LOAD_FAST(arg=3, lineno=1145)
20 SWAP(arg=2, lineno=1145)
22 COPY(arg=2, lineno=1145)
24 COMPARE_OP(arg=26, lineno=1145)
28 POP_JUMP_IF_FALSE(arg=5, lineno=1145)
30 LOAD_FAST(arg=1, lineno=1145)
32 COMPARE_OP(arg=26, lineno=1145)
36 POP_JUMP_IF_FALSE(arg=5, lineno=1145)
38 JUMP_FORWARD(arg=2, lineno=1145)
> 40 POP_TOP(arg=None, lineno=1145)
42 JUMP_FORWARD(arg=2, lineno=1145)
> 44 LOAD_CONST(arg=1, lineno=1146)
46 STORE_FAST(arg=3, lineno=1146)
> 48 LOAD_FAST(arg=0, lineno=1148)
50 LOAD_CONST(arg=2, lineno=1148)
52 BINARY_SUBSCR(arg=None, lineno=1148)
56 STORE_FAST(arg=4, lineno=1148)
58 LOAD_FAST(arg=1, lineno=1149)
60 UNARY_NEGATIVE(arg=None, lineno=1149)
62 LOAD_FAST(arg=4, lineno=1149)
64 SWAP(arg=2, lineno=1149)
66 COPY(arg=2, lineno=1149)
68 COMPARE_OP(arg=26, lineno=1149)
72 POP_JUMP_IF_FALSE(arg=5, lineno=1149)
74 LOAD_FAST(arg=1, lineno=1149)
76 COMPARE_OP(arg=26, lineno=1149)
80 POP_JUMP_IF_FALSE(arg=5, lineno=1149)
82 JUMP_FORWARD(arg=2, lineno=1149)
> 84 POP_TOP(arg=None, lineno=1149)
86 JUMP_FORWARD(arg=2, lineno=1149)
> 88 LOAD_CONST(arg=1, lineno=1150)
90 STORE_FAST(arg=4, lineno=1150)
> 92 LOAD_FAST(arg=2, lineno=1152)
94 POP_JUMP_IF_FALSE(arg=43, lineno=1152)
96 LOAD_GLOBAL(arg=1, lineno=1153)
106 LOAD_ATTR(arg=2, lineno=1153)
126 LOAD_FAST(arg=3, lineno=1153)
128 CALL(arg=1, lineno=1153)
136 LOAD_GLOBAL(arg=1, lineno=1153)
146 LOAD_ATTR(arg=2, lineno=1153)
166 LOAD_FAST(arg=4, lineno=1153)
168 CALL(arg=1, lineno=1153)
176 COMPARE_OP(arg=55, lineno=1153)
180 RETURN_VALUE(arg=None, lineno=1153)
> 182 LOAD_GLOBAL(arg=1, lineno=1155)
192 LOAD_ATTR(arg=4, lineno=1155)
212 LOAD_FAST(arg=3, lineno=1155)
214 CALL(arg=1, lineno=1155)
222 LOAD_GLOBAL(arg=1, lineno=1155)
232 LOAD_ATTR(arg=4, lineno=1155)
252 LOAD_FAST(arg=4, lineno=1155)
254 CALL(arg=1, lineno=1155)
262 COMPARE_OP(arg=55, lineno=1155)
266 RETURN_VALUE(arg=None, lineno=1155)
2025-01-29 02:37:25,330 - DEBUG - pending: deque([State(pc_initial=0 nstack_initial=0)])
2025-01-29 02:37:25,330 - DEBUG - stack: []
2025-01-29 02:37:25,330 - DEBUG - state.pc_initial: State(pc_initial=0 nstack_initial=0)
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=0, inst=NOP(arg=None, lineno=1141)
2025-01-29 02:37:25,331 - DEBUG - stack []
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=2, inst=RESUME(arg=0, lineno=1141)
2025-01-29 02:37:25,331 - DEBUG - stack []
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1144)
2025-01-29 02:37:25,331 - DEBUG - stack []
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=6, inst=LOAD_CONST(arg=1, lineno=1144)
2025-01-29 02:37:25,331 - DEBUG - stack ['$x4.0']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=8, inst=BINARY_SUBSCR(arg=None, lineno=1144)
2025-01-29 02:37:25,331 - DEBUG - stack ['$x4.0', '$const6.1']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=12, inst=STORE_FAST(arg=3, lineno=1144)
2025-01-29 02:37:25,331 - DEBUG - stack ['$8binary_subscr.2']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=14, inst=LOAD_FAST(arg=1, lineno=1145)
2025-01-29 02:37:25,331 - DEBUG - stack []
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=16, inst=UNARY_NEGATIVE(arg=None, lineno=1145)
2025-01-29 02:37:25,331 - DEBUG - stack ['$threshold14.3']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=18, inst=LOAD_FAST(arg=3, lineno=1145)
2025-01-29 02:37:25,331 - DEBUG - stack ['$16unary_negative.4']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=20, inst=SWAP(arg=2, lineno=1145)
2025-01-29 02:37:25,331 - DEBUG - stack ['$16unary_negative.4', '$x018.5']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=22, inst=COPY(arg=2, lineno=1145)
2025-01-29 02:37:25,331 - DEBUG - stack ['$x018.5', '$16unary_negative.4']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=24, inst=COMPARE_OP(arg=26, lineno=1145)
2025-01-29 02:37:25,331 - DEBUG - stack ['$x018.5', '$16unary_negative.4', '$x018.5']
2025-01-29 02:37:25,331 - DEBUG - dispatch pc=28, inst=POP_JUMP_IF_FALSE(arg=5, lineno=1145)
2025-01-29 02:37:25,332 - DEBUG - stack ['$x018.5', '$24compare_op.6']
2025-01-29 02:37:25,332 - DEBUG - end state. edges=[Edge(pc=30, stack=('$x018.5',), blockstack=(), npush=0), Edge(pc=40, stack=('$x018.5',), blockstack=(), npush=0)]
2025-01-29 02:37:25,332 - DEBUG - pending: deque([State(pc_initial=30 nstack_initial=1), State(pc_initial=40 nstack_initial=1)])
2025-01-29 02:37:25,332 - DEBUG - stack: ['$phi30.0']
2025-01-29 02:37:25,332 - DEBUG - state.pc_initial: State(pc_initial=30 nstack_initial=1)
2025-01-29 02:37:25,332 - DEBUG - dispatch pc=30, inst=LOAD_FAST(arg=1, lineno=1145)
2025-01-29 02:37:25,332 - DEBUG - stack ['$phi30.0']
2025-01-29 02:37:25,332 - DEBUG - dispatch pc=32, inst=COMPARE_OP(arg=26, lineno=1145)
2025-01-29 02:37:25,332 - DEBUG - stack ['$phi30.0', '$threshold30.1']
2025-01-29 02:37:25,332 - DEBUG - dispatch pc=36, inst=POP_JUMP_IF_FALSE(arg=5, lineno=1145)
2025-01-29 02:37:25,332 - DEBUG - stack ['$32compare_op.2']
2025-01-29 02:37:25,332 - DEBUG - end state. edges=[Edge(pc=38, stack=(), blockstack=(), npush=0), Edge(pc=48, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,332 - DEBUG - pending: deque([State(pc_initial=40 nstack_initial=1), State(pc_initial=38 nstack_initial=0), State(pc_initial=48 nstack_initial=0)])
2025-01-29 02:37:25,333 - DEBUG - stack: ['$phi40.0']
2025-01-29 02:37:25,333 - DEBUG - state.pc_initial: State(pc_initial=40 nstack_initial=1)
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=40, inst=POP_TOP(arg=None, lineno=1145)
2025-01-29 02:37:25,333 - DEBUG - stack ['$phi40.0']
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=42, inst=JUMP_FORWARD(arg=2, lineno=1145)
2025-01-29 02:37:25,333 - DEBUG - stack []
2025-01-29 02:37:25,333 - DEBUG - end state. edges=[Edge(pc=48, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,333 - DEBUG - pending: deque([State(pc_initial=38 nstack_initial=0), State(pc_initial=48 nstack_initial=0), State(pc_initial=48 nstack_initial=0)])
2025-01-29 02:37:25,333 - DEBUG - stack: []
2025-01-29 02:37:25,333 - DEBUG - state.pc_initial: State(pc_initial=38 nstack_initial=0)
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=38, inst=JUMP_FORWARD(arg=2, lineno=1145)
2025-01-29 02:37:25,333 - DEBUG - stack []
2025-01-29 02:37:25,333 - DEBUG - end state. edges=[Edge(pc=44, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,333 - DEBUG - pending: deque([State(pc_initial=48 nstack_initial=0), State(pc_initial=48 nstack_initial=0), State(pc_initial=44 nstack_initial=0)])
2025-01-29 02:37:25,333 - DEBUG - stack: []
2025-01-29 02:37:25,333 - DEBUG - state.pc_initial: State(pc_initial=48 nstack_initial=0)
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=48, inst=LOAD_FAST(arg=0, lineno=1148)
2025-01-29 02:37:25,333 - DEBUG - stack []
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=50, inst=LOAD_CONST(arg=2, lineno=1148)
2025-01-29 02:37:25,333 - DEBUG - stack ['$x48.0']
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=52, inst=BINARY_SUBSCR(arg=None, lineno=1148)
2025-01-29 02:37:25,333 - DEBUG - stack ['$x48.0', '$const50.1']
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=56, inst=STORE_FAST(arg=4, lineno=1148)
2025-01-29 02:37:25,333 - DEBUG - stack ['$52binary_subscr.2']
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=58, inst=LOAD_FAST(arg=1, lineno=1149)
2025-01-29 02:37:25,333 - DEBUG - stack []
2025-01-29 02:37:25,333 - DEBUG - dispatch pc=60, inst=UNARY_NEGATIVE(arg=None, lineno=1149)
2025-01-29 02:37:25,333 - DEBUG - stack ['$threshold58.3']
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=62, inst=LOAD_FAST(arg=4, lineno=1149)
2025-01-29 02:37:25,334 - DEBUG - stack ['$60unary_negative.4']
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=64, inst=SWAP(arg=2, lineno=1149)
2025-01-29 02:37:25,334 - DEBUG - stack ['$60unary_negative.4', '$x162.5']
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=66, inst=COPY(arg=2, lineno=1149)
2025-01-29 02:37:25,334 - DEBUG - stack ['$x162.5', '$60unary_negative.4']
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=68, inst=COMPARE_OP(arg=26, lineno=1149)
2025-01-29 02:37:25,334 - DEBUG - stack ['$x162.5', '$60unary_negative.4', '$x162.5']
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=72, inst=POP_JUMP_IF_FALSE(arg=5, lineno=1149)
2025-01-29 02:37:25,334 - DEBUG - stack ['$x162.5', '$68compare_op.6']
2025-01-29 02:37:25,334 - DEBUG - end state. edges=[Edge(pc=74, stack=('$x162.5',), blockstack=(), npush=0), Edge(pc=84, stack=('$x162.5',), blockstack=(), npush=0)]
2025-01-29 02:37:25,334 - DEBUG - pending: deque([State(pc_initial=48 nstack_initial=0), State(pc_initial=44 nstack_initial=0), State(pc_initial=74 nstack_initial=1), State(pc_initial=84 nstack_initial=1)])
2025-01-29 02:37:25,334 - DEBUG - pending: deque([State(pc_initial=44 nstack_initial=0), State(pc_initial=74 nstack_initial=1), State(pc_initial=84 nstack_initial=1)])
2025-01-29 02:37:25,334 - DEBUG - stack: []
2025-01-29 02:37:25,334 - DEBUG - state.pc_initial: State(pc_initial=44 nstack_initial=0)
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=44, inst=LOAD_CONST(arg=1, lineno=1146)
2025-01-29 02:37:25,334 - DEBUG - stack []
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=46, inst=STORE_FAST(arg=3, lineno=1146)
2025-01-29 02:37:25,334 - DEBUG - stack ['$const44.0']
2025-01-29 02:37:25,334 - DEBUG - end state. edges=[Edge(pc=48, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,334 - DEBUG - pending: deque([State(pc_initial=74 nstack_initial=1), State(pc_initial=84 nstack_initial=1), State(pc_initial=48 nstack_initial=0)])
2025-01-29 02:37:25,334 - DEBUG - stack: ['$phi74.0']
2025-01-29 02:37:25,334 - DEBUG - state.pc_initial: State(pc_initial=74 nstack_initial=1)
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=74, inst=LOAD_FAST(arg=1, lineno=1149)
2025-01-29 02:37:25,334 - DEBUG - stack ['$phi74.0']
2025-01-29 02:37:25,334 - DEBUG - dispatch pc=76, inst=COMPARE_OP(arg=26, lineno=1149)
2025-01-29 02:37:25,334 - DEBUG - stack ['$phi74.0', '$threshold74.1']
2025-01-29 02:37:25,335 - DEBUG - dispatch pc=80, inst=POP_JUMP_IF_FALSE(arg=5, lineno=1149)
2025-01-29 02:37:25,335 - DEBUG - stack ['$76compare_op.2']
2025-01-29 02:37:25,335 - DEBUG - end state. edges=[Edge(pc=82, stack=(), blockstack=(), npush=0), Edge(pc=92, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,335 - DEBUG - pending: deque([State(pc_initial=84 nstack_initial=1), State(pc_initial=48 nstack_initial=0), State(pc_initial=82 nstack_initial=0), State(pc_initial=92 nstack_initial=0)])
2025-01-29 02:37:25,335 - DEBUG - stack: ['$phi84.0']
2025-01-29 02:37:25,335 - DEBUG - state.pc_initial: State(pc_initial=84 nstack_initial=1)
2025-01-29 02:37:25,335 - DEBUG - dispatch pc=84, inst=POP_TOP(arg=None, lineno=1149)
2025-01-29 02:37:25,335 - DEBUG - stack ['$phi84.0']
2025-01-29 02:37:25,335 - DEBUG - dispatch pc=86, inst=JUMP_FORWARD(arg=2, lineno=1149)
2025-01-29 02:37:25,335 - DEBUG - stack []
2025-01-29 02:37:25,335 - DEBUG - end state. edges=[Edge(pc=92, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,335 - DEBUG - pending: deque([State(pc_initial=48 nstack_initial=0), State(pc_initial=82 nstack_initial=0), State(pc_initial=92 nstack_initial=0), State(pc_initial=92 nstack_initial=0)])
2025-01-29 02:37:25,335 - DEBUG - pending: deque([State(pc_initial=82 nstack_initial=0), State(pc_initial=92 nstack_initial=0), State(pc_initial=92 nstack_initial=0)])
2025-01-29 02:37:25,335 - DEBUG - stack: []
2025-01-29 02:37:25,335 - DEBUG - state.pc_initial: State(pc_initial=82 nstack_initial=0)
2025-01-29 02:37:25,335 - DEBUG - dispatch pc=82, inst=JUMP_FORWARD(arg=2, lineno=1149)
2025-01-29 02:37:25,335 - DEBUG - stack []
2025-01-29 02:37:25,335 - DEBUG - end state. edges=[Edge(pc=88, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,335 - DEBUG - pending: deque([State(pc_initial=92 nstack_initial=0), State(pc_initial=92 nstack_initial=0), State(pc_initial=88 nstack_initial=0)])
2025-01-29 02:37:25,335 - DEBUG - stack: []
2025-01-29 02:37:25,335 - DEBUG - state.pc_initial: State(pc_initial=92 nstack_initial=0)
2025-01-29 02:37:25,335 - DEBUG - dispatch pc=92, inst=LOAD_FAST(arg=2, lineno=1152)
2025-01-29 02:37:25,335 - DEBUG - stack []
2025-01-29 02:37:25,335 - DEBUG - dispatch pc=94, inst=POP_JUMP_IF_FALSE(arg=43, lineno=1152)
2025-01-29 02:37:25,335 - DEBUG - stack ['$zero_pos92.0']
2025-01-29 02:37:25,335 - DEBUG - end state. edges=[Edge(pc=96, stack=(), blockstack=(), npush=0), Edge(pc=182, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,335 - DEBUG - pending: deque([State(pc_initial=92 nstack_initial=0), State(pc_initial=88 nstack_initial=0), State(pc_initial=96 nstack_initial=0), State(pc_initial=182 nstack_initial=0)])
2025-01-29 02:37:25,335 - DEBUG - pending: deque([State(pc_initial=88 nstack_initial=0), State(pc_initial=96 nstack_initial=0), State(pc_initial=182 nstack_initial=0)])
2025-01-29 02:37:25,336 - DEBUG - stack: []
2025-01-29 02:37:25,336 - DEBUG - state.pc_initial: State(pc_initial=88 nstack_initial=0)
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=88, inst=LOAD_CONST(arg=1, lineno=1150)
2025-01-29 02:37:25,336 - DEBUG - stack []
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=90, inst=STORE_FAST(arg=4, lineno=1150)
2025-01-29 02:37:25,336 - DEBUG - stack ['$const88.0']
2025-01-29 02:37:25,336 - DEBUG - end state. edges=[Edge(pc=92, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:25,336 - DEBUG - pending: deque([State(pc_initial=96 nstack_initial=0), State(pc_initial=182 nstack_initial=0), State(pc_initial=92 nstack_initial=0)])
2025-01-29 02:37:25,336 - DEBUG - stack: []
2025-01-29 02:37:25,336 - DEBUG - state.pc_initial: State(pc_initial=96 nstack_initial=0)
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=96, inst=LOAD_GLOBAL(arg=1, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack []
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=106, inst=LOAD_ATTR(arg=2, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$null$96.1', '$96load_global.0']
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=126, inst=LOAD_FAST(arg=3, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$null$96.1', '$106load_attr.2']
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=128, inst=CALL(arg=1, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$null$96.1', '$106load_attr.2', '$x0126.3']
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=136, inst=LOAD_GLOBAL(arg=1, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$128call.4']
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=146, inst=LOAD_ATTR(arg=2, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$128call.4', '$null$136.6', '$136load_global.5']
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=166, inst=LOAD_FAST(arg=4, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$128call.4', '$null$136.6', '$146load_attr.7']
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=168, inst=CALL(arg=1, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$128call.4', '$null$136.6', '$146load_attr.7', '$x1166.8']
2025-01-29 02:37:25,336 - DEBUG - dispatch pc=176, inst=COMPARE_OP(arg=55, lineno=1153)
2025-01-29 02:37:25,336 - DEBUG - stack ['$128call.4', '$168call.9']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=180, inst=RETURN_VALUE(arg=None, lineno=1153)
2025-01-29 02:37:25,337 - DEBUG - stack ['$176compare_op.10']
2025-01-29 02:37:25,337 - DEBUG - end state. edges=[]
2025-01-29 02:37:25,337 - DEBUG - pending: deque([State(pc_initial=182 nstack_initial=0), State(pc_initial=92 nstack_initial=0)])
2025-01-29 02:37:25,337 - DEBUG - stack: []
2025-01-29 02:37:25,337 - DEBUG - state.pc_initial: State(pc_initial=182 nstack_initial=0)
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=182, inst=LOAD_GLOBAL(arg=1, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack []
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=192, inst=LOAD_ATTR(arg=4, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$null$182.1', '$182load_global.0']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=212, inst=LOAD_FAST(arg=3, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$null$182.1', '$192load_attr.2']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=214, inst=CALL(arg=1, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$null$182.1', '$192load_attr.2', '$x0212.3']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=222, inst=LOAD_GLOBAL(arg=1, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$214call.4']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=232, inst=LOAD_ATTR(arg=4, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$214call.4', '$null$222.6', '$222load_global.5']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=252, inst=LOAD_FAST(arg=4, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$214call.4', '$null$222.6', '$232load_attr.7']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=254, inst=CALL(arg=1, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$214call.4', '$null$222.6', '$232load_attr.7', '$x1252.8']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=262, inst=COMPARE_OP(arg=55, lineno=1155)
2025-01-29 02:37:25,337 - DEBUG - stack ['$214call.4', '$254call.9']
2025-01-29 02:37:25,337 - DEBUG - dispatch pc=266, inst=RETURN_VALUE(arg=None, lineno=1155)
2025-01-29 02:37:25,338 - DEBUG - stack ['$262compare_op.10']
2025-01-29 02:37:25,338 - DEBUG - end state. edges=[]
2025-01-29 02:37:25,338 - DEBUG - pending: deque([State(pc_initial=92 nstack_initial=0)])
2025-01-29 02:37:25,338 - DEBUG - -------------------------Prune PHIs-------------------------
2025-01-29 02:37:25,338 - DEBUG - Used_phis: defaultdict(<class 'set'>,
{State(pc_initial=0 nstack_initial=0): set(),
State(pc_initial=30 nstack_initial=1): {'$phi30.0'},
State(pc_initial=38 nstack_initial=0): set(),
State(pc_initial=40 nstack_initial=1): set(),
State(pc_initial=44 nstack_initial=0): set(),
State(pc_initial=48 nstack_initial=0): set(),
State(pc_initial=74 nstack_initial=1): {'$phi74.0'},
State(pc_initial=82 nstack_initial=0): set(),
State(pc_initial=84 nstack_initial=1): set(),
State(pc_initial=88 nstack_initial=0): set(),
State(pc_initial=92 nstack_initial=0): set(),
State(pc_initial=96 nstack_initial=0): set(),
State(pc_initial=182 nstack_initial=0): set()})
2025-01-29 02:37:25,338 - DEBUG - defmap: {'$phi30.0': State(pc_initial=0 nstack_initial=0),
'$phi40.0': State(pc_initial=0 nstack_initial=0),
'$phi74.0': State(pc_initial=48 nstack_initial=0),
'$phi84.0': State(pc_initial=48 nstack_initial=0)}
2025-01-29 02:37:25,338 - DEBUG - phismap: defaultdict(<class 'set'>,
{'$phi30.0': {('$x018.5', State(pc_initial=0 nstack_initial=0))},
'$phi40.0': {('$x018.5', State(pc_initial=0 nstack_initial=0))},
'$phi74.0': {('$x162.5', State(pc_initial=48 nstack_initial=0))},
'$phi84.0': {('$x162.5', State(pc_initial=48 nstack_initial=0))}})
2025-01-29 02:37:25,338 - DEBUG - changing phismap: defaultdict(<class 'set'>,
{'$phi30.0': {('$x018.5', State(pc_initial=0 nstack_initial=0))},
'$phi40.0': {('$x018.5', State(pc_initial=0 nstack_initial=0))},
'$phi74.0': {('$x162.5', State(pc_initial=48 nstack_initial=0))},
'$phi84.0': {('$x162.5', State(pc_initial=48 nstack_initial=0))}})
2025-01-29 02:37:25,338 - DEBUG - keep phismap: {'$phi30.0': {('$x018.5', State(pc_initial=0 nstack_initial=0))},
'$phi74.0': {('$x162.5', State(pc_initial=48 nstack_initial=0))}}
2025-01-29 02:37:25,338 - DEBUG - new_out: defaultdict(<class 'dict'>,
{State(pc_initial=0 nstack_initial=0): {'$phi30.0': '$x018.5'},
State(pc_initial=48 nstack_initial=0): {'$phi74.0': '$x162.5'}})
2025-01-29 02:37:25,338 - DEBUG - ----------------------DONE Prune PHIs-----------------------
2025-01-29 02:37:25,338 - DEBUG - block_infos State(pc_initial=0 nstack_initial=0):
AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$x4.0'}), (6, {'res': '$const6.1'}), (8, {'index': '$const6.1', 'target': '$x4.0', 'res': '$8binary_subscr.2'}), (12, {'value': '$8binary_subscr.2'}), (14, {'res': '$threshold14.3'}), (16, {'value': '$threshold14.3', 'res': '$16unary_negative.4'}), (18, {'res': '$x018.5'}), (24, {'lhs': '$16unary_negative.4', 'rhs': '$x018.5', 'res': '$24compare_op.6'}), (28, {'pred': '$24compare_op.6'})), outgoing_phis={'$phi30.0': '$x018.5'}, blockstack=(), active_try_block=None, outgoing_edgepushed={30: ('$x018.5',), 40: ('$x018.5',)})
2025-01-29 02:37:25,338 - DEBUG - block_infos State(pc_initial=30 nstack_initial=1):
AdaptBlockInfo(insts=((30, {'res': '$threshold30.1'}), (32, {'lhs': '$phi30.0', 'rhs': '$threshold30.1', 'res': '$32compare_op.2'}), (36, {'pred': '$32compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={38: (), 48: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=38 nstack_initial=0):
AdaptBlockInfo(insts=((38, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={44: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=40 nstack_initial=1):
AdaptBlockInfo(insts=((42, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={48: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=44 nstack_initial=0):
AdaptBlockInfo(insts=((44, {'res': '$const44.0'}), (46, {'value': '$const44.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={48: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=48 nstack_initial=0):
AdaptBlockInfo(insts=((48, {'res': '$x48.0'}), (50, {'res': '$const50.1'}), (52, {'index': '$const50.1', 'target': '$x48.0', 'res': '$52binary_subscr.2'}), (56, {'value': '$52binary_subscr.2'}), (58, {'res': '$threshold58.3'}), (60, {'value': '$threshold58.3', 'res': '$60unary_negative.4'}), (62, {'res': '$x162.5'}), (68, {'lhs': '$60unary_negative.4', 'rhs': '$x162.5', 'res': '$68compare_op.6'}), (72, {'pred': '$68compare_op.6'})), outgoing_phis={'$phi74.0': '$x162.5'}, blockstack=(), active_try_block=None, outgoing_edgepushed={74: ('$x162.5',), 84: ('$x162.5',)})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=74 nstack_initial=1):
AdaptBlockInfo(insts=((74, {'res': '$threshold74.1'}), (76, {'lhs': '$phi74.0', 'rhs': '$threshold74.1', 'res': '$76compare_op.2'}), (80, {'pred': '$76compare_op.2'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={82: (), 92: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=82 nstack_initial=0):
AdaptBlockInfo(insts=((82, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={88: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=84 nstack_initial=1):
AdaptBlockInfo(insts=((86, {}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={92: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=88 nstack_initial=0):
AdaptBlockInfo(insts=((88, {'res': '$const88.0'}), (90, {'value': '$const88.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={92: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=92 nstack_initial=0):
AdaptBlockInfo(insts=((92, {'res': '$zero_pos92.0'}), (94, {'pred': '$zero_pos92.0'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={96: (), 182: ()})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=96 nstack_initial=0):
AdaptBlockInfo(insts=((96, {'idx': 0, 'res': '$96load_global.0'}), (106, {'item': '$96load_global.0', 'res': '$106load_attr.2'}), (126, {'res': '$x0126.3'}), (128, {'func': '$106load_attr.2', 'args': ['$x0126.3'], 'kw_names': None, 'res': '$128call.4'}), (136, {'idx': 0, 'res': '$136load_global.5'}), (146, {'item': '$136load_global.5', 'res': '$146load_attr.7'}), (166, {'res': '$x1166.8'}), (168, {'func': '$146load_attr.7', 'args': ['$x1166.8'], 'kw_names': None, 'res': '$168call.9'}), (176, {'lhs': '$128call.4', 'rhs': '$168call.9', 'res': '$176compare_op.10'}), (180, {'retval': '$176compare_op.10', 'castval': '$180return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})
2025-01-29 02:37:25,339 - DEBUG - block_infos State(pc_initial=182 nstack_initial=0):
AdaptBlockInfo(insts=((182, {'idx': 0, 'res': '$182load_global.0'}), (192, {'item': '$182load_global.0', 'res': '$192load_attr.2'}), (212, {'res': '$x0212.3'}), (214, {'func': '$192load_attr.2', 'args': ['$x0212.3'], 'kw_names': None, 'res': '$214call.4'}), (222, {'idx': 0, 'res': '$222load_global.5'}), (232, {'item': '$222load_global.5', 'res': '$232load_attr.7'}), (252, {'res': '$x1252.8'}), (254, {'func': '$232load_attr.7', 'args': ['$x1252.8'], 'kw_names': None, 'res': '$254call.9'}), (262, {'lhs': '$214call.4', 'rhs': '$254call.9', 'res': '$262compare_op.10'}), (266, {'retval': '$262compare_op.10', 'castval': '$266return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})
2025-01-29 02:37:25,341 - DEBUG - label 0:
x = arg(0, name=x) ['x']
threshold = arg(1, name=threshold) ['threshold']
zero_pos = arg(2, name=zero_pos) ['zero_pos']
$const6.1 = const(int, 0) ['$const6.1']
x0 = getitem(value=x, index=$const6.1, fn=<built-in function getitem>) ['$const6.1', 'x', 'x0']
$16unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) ['$16unary_negative.4', 'threshold']
$24compare_op.6 = $16unary_negative.4 <= x0 ['$16unary_negative.4', '$24compare_op.6', 'x0']
bool28 = global(bool: <class 'bool'>) ['bool28']
$28pred = call bool28($24compare_op.6, func=bool28, args=(Var($24compare_op.6, audio.py:1145),), kws=(), vararg=None, varkwarg=None, target=None) ['$24compare_op.6', '$28pred', 'bool28']
$phi30.0 = x0 ['$phi30.0', 'x0']
branch $28pred, 30, 40 ['$28pred']
label 30:
$32compare_op.2 = $phi30.0 <= threshold ['$32compare_op.2', '$phi30.0', 'threshold']
bool36 = global(bool: <class 'bool'>) ['bool36']
$36pred = call bool36($32compare_op.2, func=bool36, args=(Var($32compare_op.2, audio.py:1145),), kws=(), vararg=None, varkwarg=None, target=None) ['$32compare_op.2', '$36pred', 'bool36']
branch $36pred, 38, 48 ['$36pred']
label 38:
jump 44 []
label 40:
jump 48 []
label 44:
x0 = const(int, 0) ['x0']
jump 48 []
label 48:
$const50.1 = const(int, -1) ['$const50.1']
x1 = getitem(value=x, index=$const50.1, fn=<built-in function getitem>) ['$const50.1', 'x', 'x1']
$60unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) ['$60unary_negative.4', 'threshold']
$68compare_op.6 = $60unary_negative.4 <= x1 ['$60unary_negative.4', '$68compare_op.6', 'x1']
bool72 = global(bool: <class 'bool'>) ['bool72']
$72pred = call bool72($68compare_op.6, func=bool72, args=(Var($68compare_op.6, audio.py:1149),), kws=(), vararg=None, varkwarg=None, target=None) ['$68compare_op.6', '$72pred', 'bool72']
$phi74.0 = x1 ['$phi74.0', 'x1']
branch $72pred, 74, 84 ['$72pred']
label 74:
$76compare_op.2 = $phi74.0 <= threshold ['$76compare_op.2', '$phi74.0', 'threshold']
bool80 = global(bool: <class 'bool'>) ['bool80']
$80pred = call bool80($76compare_op.2, func=bool80, args=(Var($76compare_op.2, audio.py:1149),), kws=(), vararg=None, varkwarg=None, target=None) ['$76compare_op.2', '$80pred', 'bool80']
branch $80pred, 82, 92 ['$80pred']
label 82:
jump 88 []
label 84:
jump 92 []
label 88:
x1 = const(int, 0) ['x1']
jump 92 []
label 92:
bool94 = global(bool: <class 'bool'>) ['bool94']
$94pred = call bool94(zero_pos, func=bool94, args=(Var(zero_pos, audio.py:1141),), kws=(), vararg=None, varkwarg=None, target=None) ['$94pred', 'bool94', 'zero_pos']
branch $94pred, 96, 182 ['$94pred']
label 96:
$96load_global.0 = global(np: <module 'numpy' from 'C:\\Users\\Ahmed\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\numpy\\__init__.py'>) ['$96load_global.0']
$106load_attr.2 = getattr(value=$96load_global.0, attr=signbit) ['$106load_attr.2', '$96load_global.0']
$128call.4 = call $106load_attr.2(x0, func=$106load_attr.2, args=[Var(x0, audio.py:1144)], kws=(), vararg=None, varkwarg=None, target=None) ['$106load_attr.2', '$128call.4', 'x0']
$136load_global.5 = global(np: <module 'numpy' from 'C:\\Users\\Ahmed\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\numpy\\__init__.py'>) ['$136load_global.5']
$146load_attr.7 = getattr(value=$136load_global.5, attr=signbit) ['$136load_global.5', '$146load_attr.7']
$168call.9 = call $146load_attr.7(x1, func=$146load_attr.7, args=[Var(x1, audio.py:1148)], kws=(), vararg=None, varkwarg=None, target=None) ['$146load_attr.7', '$168call.9', 'x1']
$176compare_op.10 = $128call.4 != $168call.9 ['$128call.4', '$168call.9', '$176compare_op.10']
$180return_value.11 = cast(value=$176compare_op.10) ['$176compare_op.10', '$180return_value.11']
return $180return_value.11 ['$180return_value.11']
label 182:
$182load_global.0 = global(np: <module 'numpy' from 'C:\\Users\\Ahmed\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\numpy\\__init__.py'>) ['$182load_global.0']
$192load_attr.2 = getattr(value=$182load_global.0, attr=sign) ['$182load_global.0', '$192load_attr.2']
$214call.4 = call $192load_attr.2(x0, func=$192load_attr.2, args=[Var(x0, audio.py:1144)], kws=(), vararg=None, varkwarg=None, target=None) ['$192load_attr.2', '$214call.4', 'x0']
$222load_global.5 = global(np: <module 'numpy' from 'C:\\Users\\Ahmed\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\numpy\\__init__.py'>) ['$222load_global.5']
$232load_attr.7 = getattr(value=$222load_global.5, attr=sign) ['$222load_global.5', '$232load_attr.7']
$254call.9 = call $232load_attr.7(x1, func=$232load_attr.7, args=[Var(x1, audio.py:1148)], kws=(), vararg=None, varkwarg=None, target=None) ['$232load_attr.7', '$254call.9', 'x1']
$262compare_op.10 = $214call.4 != $254call.9 ['$214call.4', '$254call.9', '$262compare_op.10']
$266return_value.11 = cast(value=$262compare_op.10) ['$262compare_op.10', '$266return_value.11']
return $266return_value.11 ['$266return_value.11']
2025-01-29 02:37:25,922 - DEBUG - bytecode dump:
> 0 NOP(arg=None, lineno=1039)
2 RESUME(arg=0, lineno=1039)
4 LOAD_FAST(arg=0, lineno=1042)
6 LOAD_CONST(arg=1, lineno=1042)
8 BINARY_SUBSCR(arg=None, lineno=1042)
12 LOAD_FAST(arg=0, lineno=1042)
14 LOAD_CONST(arg=2, lineno=1042)
16 BINARY_SUBSCR(arg=None, lineno=1042)
20 COMPARE_OP(arg=68, lineno=1042)
24 LOAD_FAST(arg=0, lineno=1042)
26 LOAD_CONST(arg=1, lineno=1042)
28 BINARY_SUBSCR(arg=None, lineno=1042)
32 LOAD_FAST(arg=0, lineno=1042)
34 LOAD_CONST(arg=3, lineno=1042)
36 BINARY_SUBSCR(arg=None, lineno=1042)
40 COMPARE_OP(arg=92, lineno=1042)
44 BINARY_OP(arg=1, lineno=1042)
48 RETURN_VALUE(arg=None, lineno=1042)
2025-01-29 02:37:25,922 - DEBUG - pending: deque([State(pc_initial=0 nstack_initial=0)])
2025-01-29 02:37:25,922 - DEBUG - stack: []
2025-01-29 02:37:25,922 - DEBUG - state.pc_initial: State(pc_initial=0 nstack_initial=0)
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=0, inst=NOP(arg=None, lineno=1039)
2025-01-29 02:37:25,922 - DEBUG - stack []
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=2, inst=RESUME(arg=0, lineno=1039)
2025-01-29 02:37:25,922 - DEBUG - stack []
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1042)
2025-01-29 02:37:25,922 - DEBUG - stack []
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=6, inst=LOAD_CONST(arg=1, lineno=1042)
2025-01-29 02:37:25,922 - DEBUG - stack ['$x4.0']
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=8, inst=BINARY_SUBSCR(arg=None, lineno=1042)
2025-01-29 02:37:25,922 - DEBUG - stack ['$x4.0', '$const6.1']
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=12, inst=LOAD_FAST(arg=0, lineno=1042)
2025-01-29 02:37:25,922 - DEBUG - stack ['$8binary_subscr.2']
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=14, inst=LOAD_CONST(arg=2, lineno=1042)
2025-01-29 02:37:25,922 - DEBUG - stack ['$8binary_subscr.2', '$x12.3']
2025-01-29 02:37:25,922 - DEBUG - dispatch pc=16, inst=BINARY_SUBSCR(arg=None, lineno=1042)
2025-01-29 02:37:25,922 - DEBUG - stack ['$8binary_subscr.2', '$x12.3', '$const14.4']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=20, inst=COMPARE_OP(arg=68, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$8binary_subscr.2', '$16binary_subscr.5']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=24, inst=LOAD_FAST(arg=0, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=26, inst=LOAD_CONST(arg=1, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6', '$x24.7']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=28, inst=BINARY_SUBSCR(arg=None, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6', '$x24.7', '$const26.8']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=32, inst=LOAD_FAST(arg=0, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=34, inst=LOAD_CONST(arg=3, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9', '$x32.10']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=36, inst=BINARY_SUBSCR(arg=None, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9', '$x32.10', '$const34.11']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=40, inst=COMPARE_OP(arg=92, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9', '$36binary_subscr.12']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=44, inst=BINARY_OP(arg=1, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$20compare_op.6', '$40compare_op.13']
2025-01-29 02:37:25,923 - DEBUG - dispatch pc=48, inst=RETURN_VALUE(arg=None, lineno=1042)
2025-01-29 02:37:25,923 - DEBUG - stack ['$binop_and_44.14']
2025-01-29 02:37:25,923 - DEBUG - end state. edges=[]
2025-01-29 02:37:25,923 - DEBUG - -------------------------Prune PHIs-------------------------
2025-01-29 02:37:25,924 - DEBUG - Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set()})
2025-01-29 02:37:25,924 - DEBUG - defmap: {}
2025-01-29 02:37:25,924 - DEBUG - phismap: defaultdict(<class 'set'>, {})
2025-01-29 02:37:25,924 - DEBUG - changing phismap: defaultdict(<class 'set'>, {})
2025-01-29 02:37:25,924 - DEBUG - keep phismap: {}
2025-01-29 02:37:25,924 - DEBUG - new_out: defaultdict(<class 'dict'>, {})
2025-01-29 02:37:25,924 - DEBUG - ----------------------DONE Prune PHIs-----------------------
2025-01-29 02:37:25,924 - DEBUG - block_infos State(pc_initial=0 nstack_initial=0):
AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$x4.0'}), (6, {'res': '$const6.1'}), (8, {'index': '$const6.1', 'target': '$x4.0', 'res': '$8binary_subscr.2'}), (12, {'res': '$x12.3'}), (14, {'res': '$const14.4'}), (16, {'index': '$const14.4', 'target': '$x12.3', 'res': '$16binary_subscr.5'}), (20, {'lhs': '$8binary_subscr.2', 'rhs': '$16binary_subscr.5', 'res': '$20compare_op.6'}), (24, {'res': '$x24.7'}), (26, {'res': '$const26.8'}), (28, {'index': '$const26.8', 'target': '$x24.7', 'res': '$28binary_subscr.9'}), (32, {'res': '$x32.10'}), (34, {'res': '$const34.11'}), (36, {'index': '$const34.11', 'target': '$x32.10', 'res': '$36binary_subscr.12'}), (40, {'lhs': '$28binary_subscr.9', 'rhs': '$36binary_subscr.12', 'res': '$40compare_op.13'}), (44, {'op': '&', 'lhs': '$20compare_op.6', 'rhs': '$40compare_op.13', 'res': '$binop_and_44.14'}), (48, {'retval': '$binop_and_44.14', 'castval': '$48return_value.15'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})
2025-01-29 02:37:25,925 - DEBUG - label 0:
x = arg(0, name=x) ['x']
$const6.1 = const(int, 0) ['$const6.1']
$8binary_subscr.2 = getitem(value=x, index=$const6.1, fn=<built-in function getitem>) ['$8binary_subscr.2', '$const6.1', 'x']
$const14.4 = const(int, -1) ['$const14.4']
$16binary_subscr.5 = getitem(value=x, index=$const14.4, fn=<built-in function getitem>) ['$16binary_subscr.5', '$const14.4', 'x']
$20compare_op.6 = $8binary_subscr.2 > $16binary_subscr.5 ['$16binary_subscr.5', '$20compare_op.6', '$8binary_subscr.2']
$const26.8 = const(int, 0) ['$const26.8']
$28binary_subscr.9 = getitem(value=x, index=$const26.8, fn=<built-in function getitem>) ['$28binary_subscr.9', '$const26.8', 'x']
$const34.11 = const(int, 1) ['$const34.11']
$36binary_subscr.12 = getitem(value=x, index=$const34.11, fn=<built-in function getitem>) ['$36binary_subscr.12', '$const34.11', 'x']
$40compare_op.13 = $28binary_subscr.9 >= $36binary_subscr.12 ['$28binary_subscr.9', '$36binary_subscr.12', '$40compare_op.13']
$binop_and_44.14 = $20compare_op.6 & $40compare_op.13 ['$20compare_op.6', '$40compare_op.13', '$binop_and_44.14']
$48return_value.15 = cast(value=$binop_and_44.14) ['$48return_value.15', '$binop_and_44.14']
return $48return_value.15 ['$48return_value.15']
2025-01-29 02:37:25,925 - DEBUG - bytecode dump:
> 0 NOP(arg=None, lineno=1045)
2 RESUME(arg=0, lineno=1045)
4 LOAD_FAST(arg=0, lineno=1048)
6 LOAD_CONST(arg=1, lineno=1048)
8 BINARY_SUBSCR(arg=None, lineno=1048)
12 LOAD_FAST(arg=0, lineno=1048)
14 LOAD_CONST(arg=2, lineno=1048)
16 BINARY_SUBSCR(arg=None, lineno=1048)
20 COMPARE_OP(arg=2, lineno=1048)
24 LOAD_FAST(arg=0, lineno=1048)
26 LOAD_CONST(arg=1, lineno=1048)
28 BINARY_SUBSCR(arg=None, lineno=1048)
32 LOAD_FAST(arg=0, lineno=1048)
34 LOAD_CONST(arg=3, lineno=1048)
36 BINARY_SUBSCR(arg=None, lineno=1048)
40 COMPARE_OP(arg=26, lineno=1048)
44 BINARY_OP(arg=1, lineno=1048)
48 RETURN_VALUE(arg=None, lineno=1048)
2025-01-29 02:37:25,925 - DEBUG - pending: deque([State(pc_initial=0 nstack_initial=0)])
2025-01-29 02:37:25,925 - DEBUG - stack: []
2025-01-29 02:37:25,926 - DEBUG - state.pc_initial: State(pc_initial=0 nstack_initial=0)
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=0, inst=NOP(arg=None, lineno=1045)
2025-01-29 02:37:25,926 - DEBUG - stack []
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=2, inst=RESUME(arg=0, lineno=1045)
2025-01-29 02:37:25,926 - DEBUG - stack []
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack []
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=6, inst=LOAD_CONST(arg=1, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$x4.0']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=8, inst=BINARY_SUBSCR(arg=None, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$x4.0', '$const6.1']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=12, inst=LOAD_FAST(arg=0, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$8binary_subscr.2']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=14, inst=LOAD_CONST(arg=2, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$8binary_subscr.2', '$x12.3']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=16, inst=BINARY_SUBSCR(arg=None, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$8binary_subscr.2', '$x12.3', '$const14.4']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=20, inst=COMPARE_OP(arg=2, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$8binary_subscr.2', '$16binary_subscr.5']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=24, inst=LOAD_FAST(arg=0, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$20compare_op.6']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=26, inst=LOAD_CONST(arg=1, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$20compare_op.6', '$x24.7']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=28, inst=BINARY_SUBSCR(arg=None, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$20compare_op.6', '$x24.7', '$const26.8']
2025-01-29 02:37:25,926 - DEBUG - dispatch pc=32, inst=LOAD_FAST(arg=0, lineno=1048)
2025-01-29 02:37:25,926 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9']
2025-01-29 02:37:25,927 - DEBUG - dispatch pc=34, inst=LOAD_CONST(arg=3, lineno=1048)
2025-01-29 02:37:25,927 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9', '$x32.10']
2025-01-29 02:37:25,927 - DEBUG - dispatch pc=36, inst=BINARY_SUBSCR(arg=None, lineno=1048)
2025-01-29 02:37:25,927 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9', '$x32.10', '$const34.11']
2025-01-29 02:37:25,927 - DEBUG - dispatch pc=40, inst=COMPARE_OP(arg=26, lineno=1048)
2025-01-29 02:37:25,927 - DEBUG - stack ['$20compare_op.6', '$28binary_subscr.9', '$36binary_subscr.12']
2025-01-29 02:37:25,927 - DEBUG - dispatch pc=44, inst=BINARY_OP(arg=1, lineno=1048)
2025-01-29 02:37:25,927 - DEBUG - stack ['$20compare_op.6', '$40compare_op.13']
2025-01-29 02:37:25,927 - DEBUG - dispatch pc=48, inst=RETURN_VALUE(arg=None, lineno=1048)
2025-01-29 02:37:25,927 - DEBUG - stack ['$binop_and_44.14']
2025-01-29 02:37:25,927 - DEBUG - end state. edges=[]
2025-01-29 02:37:25,927 - DEBUG - -------------------------Prune PHIs-------------------------
2025-01-29 02:37:25,927 - DEBUG - Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set()})
2025-01-29 02:37:25,928 - DEBUG - defmap: {}
2025-01-29 02:37:25,928 - DEBUG - phismap: defaultdict(<class 'set'>, {})
2025-01-29 02:37:25,928 - DEBUG - changing phismap: defaultdict(<class 'set'>, {})
2025-01-29 02:37:25,928 - DEBUG - keep phismap: {}
2025-01-29 02:37:25,928 - DEBUG - new_out: defaultdict(<class 'dict'>, {})
2025-01-29 02:37:25,928 - DEBUG - ----------------------DONE Prune PHIs-----------------------
2025-01-29 02:37:25,928 - DEBUG - block_infos State(pc_initial=0 nstack_initial=0):
AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$x4.0'}), (6, {'res': '$const6.1'}), (8, {'index': '$const6.1', 'target': '$x4.0', 'res': '$8binary_subscr.2'}), (12, {'res': '$x12.3'}), (14, {'res': '$const14.4'}), (16, {'index': '$const14.4', 'target': '$x12.3', 'res': '$16binary_subscr.5'}), (20, {'lhs': '$8binary_subscr.2', 'rhs': '$16binary_subscr.5', 'res': '$20compare_op.6'}), (24, {'res': '$x24.7'}), (26, {'res': '$const26.8'}), (28, {'index': '$const26.8', 'target': '$x24.7', 'res': '$28binary_subscr.9'}), (32, {'res': '$x32.10'}), (34, {'res': '$const34.11'}), (36, {'index': '$const34.11', 'target': '$x32.10', 'res': '$36binary_subscr.12'}), (40, {'lhs': '$28binary_subscr.9', 'rhs': '$36binary_subscr.12', 'res': '$40compare_op.13'}), (44, {'op': '&', 'lhs': '$20compare_op.6', 'rhs': '$40compare_op.13', 'res': '$binop_and_44.14'}), (48, {'retval': '$binop_and_44.14', 'castval': '$48return_value.15'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})
2025-01-29 02:37:25,928 - DEBUG - label 0:
x = arg(0, name=x) ['x']
$const6.1 = const(int, 0) ['$const6.1']
$8binary_subscr.2 = getitem(value=x, index=$const6.1, fn=<built-in function getitem>) ['$8binary_subscr.2', '$const6.1', 'x']
$const14.4 = const(int, -1) ['$const14.4']
$16binary_subscr.5 = getitem(value=x, index=$const14.4, fn=<built-in function getitem>) ['$16binary_subscr.5', '$const14.4', 'x']
$20compare_op.6 = $8binary_subscr.2 < $16binary_subscr.5 ['$16binary_subscr.5', '$20compare_op.6', '$8binary_subscr.2']
$const26.8 = const(int, 0) ['$const26.8']
$28binary_subscr.9 = getitem(value=x, index=$const26.8, fn=<built-in function getitem>) ['$28binary_subscr.9', '$const26.8', 'x']
$const34.11 = const(int, 1) ['$const34.11']
$36binary_subscr.12 = getitem(value=x, index=$const34.11, fn=<built-in function getitem>) ['$36binary_subscr.12', '$const34.11', 'x']
$40compare_op.13 = $28binary_subscr.9 <= $36binary_subscr.12 ['$28binary_subscr.9', '$36binary_subscr.12', '$40compare_op.13']
$binop_and_44.14 = $20compare_op.6 & $40compare_op.13 ['$20compare_op.6', '$40compare_op.13', '$binop_and_44.14']
$48return_value.15 = cast(value=$binop_and_44.14) ['$48return_value.15', '$binop_and_44.14']
return $48return_value.15 ['$48return_value.15']
2025-01-29 02:37:26,482 - INFO - Loaded audio for D:/College_work/DSP_/TuneSpy/Data/Songs/22050_FE!N.wav
2025-01-29 02:37:26,532 - DEBUG - bytecode dump:
> 0 NOP(arg=None, lineno=425)
2 RESUME(arg=0, lineno=425)
4 LOAD_FAST(arg=0, lineno=428)
6 LOAD_CONST(arg=1, lineno=428)
8 BINARY_SUBSCR(arg=None, lineno=428)
12 LOAD_FAST(arg=0, lineno=428)
14 LOAD_CONST(arg=2, lineno=428)
16 BINARY_SUBSCR(arg=None, lineno=428)
20 BINARY_OP(arg=0, lineno=428)
24 LOAD_CONST(arg=3, lineno=428)
26 LOAD_FAST(arg=0, lineno=428)
28 LOAD_CONST(arg=4, lineno=428)
30 BINARY_SUBSCR(arg=None, lineno=428)
34 BINARY_OP(arg=5, lineno=428)
38 BINARY_OP(arg=10, lineno=428)
42 STORE_FAST(arg=1, lineno=428)
44 LOAD_FAST(arg=0, lineno=429)
46 LOAD_CONST(arg=1, lineno=429)
48 BINARY_SUBSCR(arg=None, lineno=429)
52 LOAD_FAST(arg=0, lineno=429)
54 LOAD_CONST(arg=2, lineno=429)
56 BINARY_SUBSCR(arg=None, lineno=429)
60 BINARY_OP(arg=10, lineno=429)
64 LOAD_CONST(arg=3, lineno=429)
66 BINARY_OP(arg=11, lineno=429)
70 STORE_FAST(arg=2, lineno=429)
72 LOAD_GLOBAL(arg=1, lineno=431)
82 LOAD_ATTR(arg=2, lineno=431)
102 LOAD_FAST(arg=2, lineno=431)
104 CALL(arg=1, lineno=431)
112 LOAD_GLOBAL(arg=1, lineno=431)
122 LOAD_ATTR(arg=2, lineno=431)
142 LOAD_FAST(arg=1, lineno=431)
144 CALL(arg=1, lineno=431)
152 COMPARE_OP(arg=92, lineno=431)
156 POP_JUMP_IF_FALSE(arg=1, lineno=431)
158 RETURN_CONST(arg=4, lineno=434)
> 160 LOAD_FAST(arg=2, lineno=436)
162 UNARY_NEGATIVE(arg=None, lineno=436)
164 LOAD_FAST(arg=1, lineno=436)
166 BINARY_OP(arg=11, lineno=436)
170 RETURN_VALUE(arg=None, lineno=436)
2025-01-29 02:37:26,532 - DEBUG - pending: deque([State(pc_initial=0 nstack_initial=0)])
2025-01-29 02:37:26,532 - DEBUG - stack: []
2025-01-29 02:37:26,532 - DEBUG - state.pc_initial: State(pc_initial=0 nstack_initial=0)
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=0, inst=NOP(arg=None, lineno=425)
2025-01-29 02:37:26,532 - DEBUG - stack []
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=2, inst=RESUME(arg=0, lineno=425)
2025-01-29 02:37:26,532 - DEBUG - stack []
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack []
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=6, inst=LOAD_CONST(arg=1, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack ['$x4.0']
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=8, inst=BINARY_SUBSCR(arg=None, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack ['$x4.0', '$const6.1']
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=12, inst=LOAD_FAST(arg=0, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack ['$8binary_subscr.2']
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=14, inst=LOAD_CONST(arg=2, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack ['$8binary_subscr.2', '$x12.3']
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=16, inst=BINARY_SUBSCR(arg=None, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack ['$8binary_subscr.2', '$x12.3', '$const14.4']
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=20, inst=BINARY_OP(arg=0, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack ['$8binary_subscr.2', '$16binary_subscr.5']
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=24, inst=LOAD_CONST(arg=3, lineno=428)
2025-01-29 02:37:26,532 - DEBUG - stack ['$binop_add20.6']
2025-01-29 02:37:26,532 - DEBUG - dispatch pc=26, inst=LOAD_FAST(arg=0, lineno=428)
2025-01-29 02:37:26,533 - DEBUG - stack ['$binop_add20.6', '$const24.7']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=28, inst=LOAD_CONST(arg=4, lineno=428)
2025-01-29 02:37:26,533 - DEBUG - stack ['$binop_add20.6', '$const24.7', '$x26.8']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=30, inst=BINARY_SUBSCR(arg=None, lineno=428)
2025-01-29 02:37:26,533 - DEBUG - stack ['$binop_add20.6', '$const24.7', '$x26.8', '$const28.9']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=34, inst=BINARY_OP(arg=5, lineno=428)
2025-01-29 02:37:26,533 - DEBUG - stack ['$binop_add20.6', '$const24.7', '$30binary_subscr.10']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=38, inst=BINARY_OP(arg=10, lineno=428)
2025-01-29 02:37:26,533 - DEBUG - stack ['$binop_add20.6', '$binop_mul34.11']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=42, inst=STORE_FAST(arg=1, lineno=428)
2025-01-29 02:37:26,533 - DEBUG - stack ['$binop_sub38.12']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=44, inst=LOAD_FAST(arg=0, lineno=429)
2025-01-29 02:37:26,533 - DEBUG - stack []
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=46, inst=LOAD_CONST(arg=1, lineno=429)
2025-01-29 02:37:26,533 - DEBUG - stack ['$x44.13']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=48, inst=BINARY_SUBSCR(arg=None, lineno=429)
2025-01-29 02:37:26,533 - DEBUG - stack ['$x44.13', '$const46.14']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=52, inst=LOAD_FAST(arg=0, lineno=429)
2025-01-29 02:37:26,533 - DEBUG - stack ['$48binary_subscr.15']
2025-01-29 02:37:26,533 - DEBUG - dispatch pc=54, inst=LOAD_CONST(arg=2, lineno=429)
2025-01-29 02:37:26,533 - DEBUG - stack ['$48binary_subscr.15', '$x52.16']
2025-01-29 02:37:26,534 - DEBUG - dispatch pc=56, inst=BINARY_SUBSCR(arg=None, lineno=429)
2025-01-29 02:37:26,534 - DEBUG - stack ['$48binary_subscr.15', '$x52.16', '$const54.17']
2025-01-29 02:37:26,534 - DEBUG - dispatch pc=60, inst=BINARY_OP(arg=10, lineno=429)
2025-01-29 02:37:26,534 - DEBUG - stack ['$48binary_subscr.15', '$56binary_subscr.18']
2025-01-29 02:37:26,534 - DEBUG - dispatch pc=64, inst=LOAD_CONST(arg=3, lineno=429)
2025-01-29 02:37:26,534 - DEBUG - stack ['$binop_sub60.19']
2025-01-29 02:37:26,534 - DEBUG - dispatch pc=66, inst=BINARY_OP(arg=11, lineno=429)
2025-01-29 02:37:26,534 - DEBUG - stack ['$binop_sub60.19', '$const64.20']
2025-01-29 02:37:26,534 - DEBUG - dispatch pc=70, inst=STORE_FAST(arg=2, lineno=429)
2025-01-29 02:37:26,534 - DEBUG - stack ['$binop_truediv66.21']
2025-01-29 02:37:26,534 - DEBUG - dispatch pc=72, inst=LOAD_GLOBAL(arg=1, lineno=431)
2025-01-29 02:37:26,534 - DEBUG - stack []
2025-01-29 02:37:26,534 - DEBUG - dispatch pc=82, inst=LOAD_ATTR(arg=2, lineno=431)
2025-01-29 02:37:26,534 - DEBUG - stack ['$null$72.23', '$72load_global.22']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=102, inst=LOAD_FAST(arg=2, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$null$72.23', '$82load_attr.24']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=104, inst=CALL(arg=1, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$null$72.23', '$82load_attr.24', '$b102.25']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=112, inst=LOAD_GLOBAL(arg=1, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$104call.26']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=122, inst=LOAD_ATTR(arg=2, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$104call.26', '$null$112.28', '$112load_global.27']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=142, inst=LOAD_FAST(arg=1, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$104call.26', '$null$112.28', '$122load_attr.29']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=144, inst=CALL(arg=1, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$104call.26', '$null$112.28', '$122load_attr.29', '$a142.30']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=152, inst=COMPARE_OP(arg=92, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$104call.26', '$144call.31']
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=156, inst=POP_JUMP_IF_FALSE(arg=1, lineno=431)
2025-01-29 02:37:26,535 - DEBUG - stack ['$152compare_op.32']
2025-01-29 02:37:26,535 - DEBUG - end state. edges=[Edge(pc=158, stack=(), blockstack=(), npush=0), Edge(pc=160, stack=(), blockstack=(), npush=0)]
2025-01-29 02:37:26,535 - DEBUG - pending: deque([State(pc_initial=158 nstack_initial=0), State(pc_initial=160 nstack_initial=0)])
2025-01-29 02:37:26,535 - DEBUG - stack: []
2025-01-29 02:37:26,535 - DEBUG - state.pc_initial: State(pc_initial=158 nstack_initial=0)
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=158, inst=RETURN_CONST(arg=4, lineno=434)
2025-01-29 02:37:26,535 - DEBUG - stack []
2025-01-29 02:37:26,535 - DEBUG - end state. edges=[]
2025-01-29 02:37:26,535 - DEBUG - pending: deque([State(pc_initial=160 nstack_initial=0)])
2025-01-29 02:37:26,535 - DEBUG - stack: []
2025-01-29 02:37:26,535 - DEBUG - state.pc_initial: State(pc_initial=160 nstack_initial=0)
2025-01-29 02:37:26,535 - DEBUG - dispatch pc=160, inst=LOAD_FAST(arg=2, lineno=436)
2025-01-29 02:37:26,536 - DEBUG - stack []
2025-01-29 02:37:26,536 - DEBUG - dispatch pc=162, inst=UNARY_NEGATIVE(arg=None, lineno=436)
2025-01-29 02:37:26,536 - DEBUG - stack ['$b160.0']
2025-01-29 02:37:26,536 - DEBUG - dispatch pc=164, inst=LOAD_FAST(arg=1, lineno=436)
2025-01-29 02:37:26,536 - DEBUG - stack ['$162unary_negative.1']
2025-01-29 02:37:26,536 - DEBUG - dispatch pc=166, inst=BINARY_OP(arg=11, lineno=436)
2025-01-29 02:37:26,536 - DEBUG - stack ['$162unary_negative.1', '$a164.2']
2025-01-29 02:37:26,536 - DEBUG - dispatch pc=170, inst=RETURN_VALUE(arg=None, lineno=436)
2025-01-29 02:37:26,536 - DEBUG - stack ['$binop_truediv166.3']
2025-01-29 02:37:26,536 - DEBUG - end state. edges=[]
2025-01-29 02:37:26,536 - DEBUG - -------------------------Prune PHIs-------------------------
2025-01-29 02:37:26,536 - DEBUG - Used_phis: defaultdict(<class 'set'>,
{State(pc_initial=0 nstack_initial=0): set(),
State(pc_initial=158 nstack_initial=0): set(),
State(pc_initial=160 nstack_initial=0): set()})
2025-01-29 02:37:26,536 - DEBUG - defmap: {}
2025-01-29 02:37:26,536 - DEBUG - phismap: defaultdict(<class 'set'>, {})
2025-01-29 02:37:26,536 - DEBUG - changing phismap: defaultdict(<class 'set'>, {})
2025-01-29 02:37:26,536 - DEBUG - keep phismap: {}
2025-01-29 02:37:26,536 - DEBUG - new_out: defaultdict(<class 'dict'>, {})
2025-01-29 02:37:26,536 - DEBUG - ----------------------DONE Prune PHIs-----------------------
2025-01-29 02:37:26,536 - DEBUG - block_infos State(pc_initial=0 nstack_initial=0):
AdaptBlockInfo(insts=((0, {}), (2, {}), (4, {'res': '$x4.0'}), (6, {'res': '$const6.1'}), (8, {'index': '$const6.1', 'target': '$x4.0', 'res': '$8binary_subscr.2'}), (12, {'res': '$x12.3'}), (14, {'res': '$const14.4'}), (16, {'index': '$const14.4', 'target': '$x12.3', 'res': '$16binary_subscr.5'}), (20, {'op': '+', 'lhs': '$8binary_subscr.2', 'rhs': '$16binary_subscr.5', 'res': '$binop_add20.6'}), (24, {'res': '$const24.7'}), (26, {'res': '$x26.8'}), (28, {'res': '$const28.9'}), (30, {'index': '$const28.9', 'target': '$x26.8', 'res': '$30binary_subscr.10'}), (34, {'op': '*', 'lhs': '$const24.7', 'rhs': '$30binary_subscr.10', 'res': '$binop_mul34.11'}), (38, {'op': '-', 'lhs': '$binop_add20.6', 'rhs': '$binop_mul34.11', 'res': '$binop_sub38.12'}), (42, {'value': '$binop_sub38.12'}), (44, {'res': '$x44.13'}), (46, {'res': '$const46.14'}), (48, {'index': '$const46.14', 'target': '$x44.13', 'res': '$48binary_subscr.15'}), (52, {'res': '$x52.16'}), (54, {'res': '$const54.17'}), (56, {'index': '$const54.17', 'target': '$x52.16', 'res': '$56binary_subscr.18'}), (60, {'op': '-', 'lhs': '$48binary_subscr.15', 'rhs': '$56binary_subscr.18', 'res': '$binop_sub60.19'}), (64, {'res': '$const64.20'}), (66, {'op': '/', 'lhs': '$binop_sub60.19', 'rhs': '$const64.20', 'res': '$binop_truediv66.21'}), (70, {'value': '$binop_truediv66.21'}), (72, {'idx': 0, 'res': '$72load_global.22'}), (82, {'item': '$72load_global.22', 'res': '$82load_attr.24'}), (102, {'res': '$b102.25'}), (104, {'func': '$82load_attr.24', 'args': ['$b102.25'], 'kw_names': None, 'res': '$104call.26'}), (112, {'idx': 0, 'res': '$112load_global.27'}), (122, {'item': '$112load_global.27', 'res': '$122load_attr.29'}), (142, {'res': '$a142.30'}), (144, {'func': '$122load_attr.29', 'args': ['$a142.30'], 'kw_names': None, 'res': '$144call.31'}), (152, {'lhs': '$104call.26', 'rhs': '$144call.31', 'res': '$152compare_op.32'}), (156, {'pred': '$152compare_op.32'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={158: (), 160: ()})
2025-01-29 02:37:26,536 - DEBUG - block_infos State(pc_initial=158 nstack_initial=0):
AdaptBlockInfo(insts=((158, {'retval': '$const158.0', 'castval': '$158return_const.1'}),), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})
2025-01-29 02:37:26,536 - DEBUG - block_infos State(pc_initial=160 nstack_initial=0):
AdaptBlockInfo(insts=((160, {'res': '$b160.0'}), (162, {'value': '$b160.0', 'res': '$162unary_negative.1'}), (164, {'res': '$a164.2'}), (166, {'op': '/', 'lhs': '$162unary_negative.1', 'rhs': '$a164.2', 'res': '$binop_truediv166.3'}), (170, {'retval': '$binop_truediv166.3', 'castval': '$170return_value.4'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})
2025-01-29 02:37:26,537 - DEBUG - label 0:
x = arg(0, name=x) ['x']
$const6.1 = const(int, 1) ['$const6.1']
$8binary_subscr.2 = getitem(value=x, index=$const6.1, fn=<built-in function getitem>) ['$8binary_subscr.2', '$const6.1', 'x']
$const14.4 = const(int, -1) ['$const14.4']
$16binary_subscr.5 = getitem(value=x, index=$const14.4, fn=<built-in function getitem>) ['$16binary_subscr.5', '$const14.4', 'x']
$binop_add20.6 = $8binary_subscr.2 + $16binary_subscr.5 ['$16binary_subscr.5', '$8binary_subscr.2', '$binop_add20.6']
$const24.7 = const(int, 2) ['$const24.7']
$const28.9 = const(int, 0) ['$const28.9']
$30binary_subscr.10 = getitem(value=x, index=$const28.9, fn=<built-in function getitem>) ['$30binary_subscr.10', '$const28.9', 'x']
$binop_mul34.11 = $const24.7 * $30binary_subscr.10 ['$30binary_subscr.10', '$binop_mul34.11', '$const24.7']
a = $binop_add20.6 - $binop_mul34.11 ['$binop_add20.6', '$binop_mul34.11', 'a']
$const46.14 = const(int, 1) ['$const46.14']
$48binary_subscr.15 = getitem(value=x, index=$const46.14, fn=<built-in function getitem>) ['$48binary_subscr.15', '$const46.14', 'x']
$const54.17 = const(int, -1) ['$const54.17']
$56binary_subscr.18 = getitem(value=x, index=$const54.17, fn=<built-in function getitem>) ['$56binary_subscr.18', '$const54.17', 'x']
$binop_sub60.19 = $48binary_subscr.15 - $56binary_subscr.18 ['$48binary_subscr.15', '$56binary_subscr.18', '$binop_sub60.19']
$const64.20 = const(int, 2) ['$const64.20']
b = $binop_sub60.19 / $const64.20 ['$binop_sub60.19', '$const64.20', 'b']
$72load_global.22 = global(np: <module 'numpy' from 'C:\\Users\\Ahmed\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\numpy\\__init__.py'>) ['$72load_global.22']
$82load_attr.24 = getattr(value=$72load_global.22, attr=abs) ['$72load_global.22', '$82load_attr.24']
$104call.26 = call $82load_attr.24(b, func=$82load_attr.24, args=[Var(b, pitch.py:429)], kws=(), vararg=None, varkwarg=None, target=None) ['$104call.26', '$82load_attr.24', 'b']
$112load_global.27 = global(np: <module 'numpy' from 'C:\\Users\\Ahmed\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\site-packages\\numpy\\__init__.py'>) ['$112load_global.27']
$122load_attr.29 = getattr(value=$112load_global.27, attr=abs) ['$112load_global.27', '$122load_attr.29']
$144call.31 = call $122load_attr.29(a, func=$122load_attr.29, args=[Var(a, pitch.py:428)], kws=(), vararg=None, varkwarg=None, target=None) ['$122load_attr.29', '$144call.31', 'a']
$152compare_op.32 = $104call.26 >= $144call.31 ['$104call.26', '$144call.31', '$152compare_op.32']
bool156 = global(bool: <class 'bool'>) ['bool156']
$156pred = call bool156($152compare_op.32, func=bool156, args=(Var($152compare_op.32, pitch.py:431),), kws=(), vararg=None, varkwarg=None, target=None) ['$152compare_op.32', '$156pred', 'bool156']
branch $156pred, 158, 160 ['$156pred']
label 158:
$const158.0 = const(int, 0) ['$const158.0']
$158return_const.1 = cast(value=$const158.0) ['$158return_const.1', '$const158.0']
return $158return_const.1 ['$158return_const.1']
label 160:
$162unary_negative.1 = unary(fn=<built-in function neg>, value=b) ['$162unary_negative.1', 'b']
$binop_truediv166.3 = $162unary_negative.1 / a ['$162unary_negative.1', '$binop_truediv166.3', 'a']
$170return_value.4 = cast(value=$binop_truediv166.3) ['$170return_value.4', '$binop_truediv166.3']
return $170return_value.4 ['$170return_value.4']
2025-01-29 02:37:26,658 - DEBUG - Loaded backend qtagg version 5.15.11.
2025-01-29 02:37:26,702 - DEBUG - findfont: Matching sans\-serif:style=normal:variant=normal:weight=normal:stretch=normal:size=10.0.
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizThreeSymReg.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXNonUni.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXGeneralBolIta.ttf', name='STIXGeneral', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSerif-Bold.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\cmmi10.ttf', name='cmmi10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXNonUniIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\cmex10.ttf', name='cmex10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizFiveSymReg.ttf', name='STIXSizeFiveSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizFourSymReg.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXGeneralBol.ttf', name='STIXGeneral', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizOneSymBol.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizOneSymReg.ttf', name='STIXSizeOneSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSans-Bold.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 0.33499999999999996
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\cmr10.ttf', name='cmr10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSansMono-Bold.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSerifDisplay.ttf', name='DejaVu Serif Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizTwoSymBol.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXGeneralItalic.ttf', name='STIXGeneral', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,703 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizThreeSymBol.ttf', name='STIXSizeThreeSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\cmss10.ttf', name='cmss10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXNonUniBol.ttf', name='STIXNonUnicode', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSerif-BoldItalic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\cmsy10.ttf', name='cmsy10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\cmb10.ttf', name='cmb10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizTwoSymReg.ttf', name='STIXSizeTwoSym', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSansDisplay.ttf', name='DejaVu Sans Display', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXSizFourSymBol.ttf', name='STIXSizeFourSym', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSerif-Italic.ttf', name='DejaVu Serif', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSerif.ttf', name='DejaVu Serif', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSans-Oblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 1.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\cmtt10.ttf', name='cmtt10', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSansMono-BoldOblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXNonUniBolIta.ttf', name='STIXNonUnicode', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSans.ttf', name='DejaVu Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 0.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSansMono-Oblique.ttf', name='DejaVu Sans Mono', style='oblique', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSansMono.ttf', name='DejaVu Sans Mono', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\DejaVuSans-BoldOblique.ttf', name='DejaVu Sans', style='oblique', variant='normal', weight=700, stretch='normal', size='scalable')) = 1.335
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Roaming\\Python\\Python312\\site-packages\\matplotlib\\mpl-data\\fonts\\ttf\\STIXGeneral.ttf', name='STIXGeneral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,704 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\monbaiti.ttf', name='Mongolian Baiti', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\sylfaen.ttf', name='Sylfaen', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\calibri.ttf', name='Calibri', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LEELAWDB.TTF', name='Leelawadee', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ITCEDSCR.TTF', name='Edwardian Script ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\JOKERMAN.TTF', name='Jokerman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\CALIFB.TTF', name='Californian FB', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GILLUBCD.TTF', name='Gill Sans Ultra Bold Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\taile.ttf', name='Microsoft Tai Le', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GILC____.TTF', name='Gill Sans MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\FELIXTI.TTF', name='Felix Titling', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GIGI.TTF', name='Gigi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\seguili.ttf', name='Segoe UI', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\GaliModern-Black.otf', name='Gali Modern', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\CALISTB.TTF', name='Calisto MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ebrima.ttf', name='Ebrima', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BOD_BLAI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=900, stretch='normal', size='scalable')) = 11.525
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\lucon.ttf', name='Lucida Console', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\NIAGSOL.TTF', name='Niagara Solid', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GILB____.TTF', name='Gill Sans MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LSANS.TTF', name='Lucida Sans', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\couri.ttf', name='Courier New', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,705 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\HTOWERT.TTF', name='High Tower Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\timesbi.ttf', name='Times New Roman', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\FORTE.TTF', name='Forte', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BOD_BI.TTF', name='Bodoni MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\SHOWG.TTF', name='Showcard Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BAUHS93.TTF', name='Bauhaus 93', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\TheYearofTheCamel-Bold.otf', name='The Year of The Camel', style='normal', variant='normal', weight=800, stretch='normal', size='scalable')) = 10.43
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\malgun.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\seguibli.ttf', name='Segoe UI', style='italic', variant='normal', weight=900, stretch='normal', size='scalable')) = 11.525
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\CURLZ___.TTF', name='Curlz MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BRLNSDB.TTF', name='Berlin Sans FB Demi', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BRLNSR.TTF', name='Berlin Sans FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\SitkaI.ttc', name='Sitka Small', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\JUICE___.TTF', name='Juice ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LFAXDI.TTF', name='Lucida Fax', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LTYPEB.TTF', name='Lucida Sans Typewriter', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\UrdType.ttf', name='Urdu Typesetting', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\msyhl.ttc', name='Microsoft YaHei', style='normal', variant='normal', weight=290, stretch='normal', size='scalable')) = 10.1545
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ARIALN.TTF', name='Arial', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 6.613636363636363
2025-01-29 02:37:26,706 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\SitkaZ.ttc', name='Sitka Small', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\SitkaB.ttc', name='Sitka Small', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\majalla.ttf', name='Sakkal Majalla', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\malgunsl.ttf', name='Malgun Gothic', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BKANT.TTF', name='Book Antiqua', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\TheYearofTheCamel-Thin.otf', name='The Year of The Camel', style='normal', variant='normal', weight=100, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ARLRDBD.TTF', name='Arial Rounded MT Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\seguisym.ttf', name='Segoe UI Symbol', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\UrdTypeb.ttf', name='Urdu Typesetting', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\RMPro-Regular.ttf', name='RM Pro', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-ThinItalic.ttf', name='Poppins', style='italic', variant='normal', weight=250, stretch='normal', size='scalable')) = 11.1925
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GOTHICB.TTF', name='Century Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\RTL-Saudi-Bold.otf', name='RTL-Saudi', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\VIVALDII.TTF', name='Vivaldi', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\OUTLOOK.TTF', name='MS Outlook', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\CENTURY.TTF', name='Century', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LHANDW.TTF', name='Lucida Handwriting', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-ExtraLightItalic.ttf', name='Poppins', style='italic', variant='normal', weight=275, stretch='normal', size='scalable')) = 11.16875
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\MATURASC.TTF', name='Matura MT Script Capitals', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BOD_CB.TTF', name='Bodoni MT', style='normal', variant='normal', weight=700, stretch='condensed', size='scalable')) = 10.535
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\courbd.ttf', name='Courier New', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,707 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\SCRIPTBL.TTF', name='Script MT Bold', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\cambriai.ttf', name='Cambria', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-LightItalic.ttf', name='Poppins', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\trebucbi.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\verdanab.ttf', name='Verdana', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 3.9713636363636367
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\Candaral.ttf', name='Candara', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\calibrili.ttf', name='Calibri', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\YuGothM.ttc', name='Yu Gothic', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\FRADMIT.TTF', name='Franklin Gothic Demi', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-Regular.ttf', name='Poppins', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\za5arf.ttf', name='old foundry prints tfb', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\SF Saladin.otf', name='SF Saladin', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\SNAP____.TTF', name='Snap ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\calibrii.ttf', name='Calibri', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\YuGothB.ttc', name='Yu Gothic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ariali.ttf', name='Arial', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 7.413636363636363
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\\u0641\u0648\u062a\u0648\u063a\u0631\u0627\u0645\u064a \u0632\u062e\u0627\u0631\u0641 \u0627\u0644\u0645\u062e\u0637\u0648\u0637\u0627\u062a.ttf', name='fotograami - zkharef maktotat', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\HARLOWSI.TTF', name='Harlow Solid Italic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\AGENCYR.TTF', name='Agency FB', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\msuighub.ttf', name='Microsoft Uighur', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\CHILLER.TTF', name='Chiller', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,708 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\TCM_____.TTF', name='Tw Cen MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\YuGothR.ttc', name='Yu Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\HARNGTON.TTF', name='Harrington', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LeelawUI.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\constan.ttf', name='Constantia', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\TCB_____.TTF', name='Tw Cen MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ANTQUAB.TTF', name='Book Antiqua', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\mmrtext.ttf', name='Myanmar Text', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ROCKEB.TTF', name='Rockwell Extra Bold', style='normal', variant='normal', weight=800, stretch='normal', size='scalable')) = 10.43
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\TheYearofTheCamel-Light.otf', name='The Year of The Camel', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\PALSCRI.TTF', name='Palace Script MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,709 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Abu Dhabi Pro. Condenced.otf', name='Abu Dhabi Pro.', style='normal', variant='normal', weight=950, stretch='condensed', size='scalable')) = 10.772499999999999
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\PERBI___.TTF', name='Perpetua', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\seguisli.ttf', name='Segoe UI', style='italic', variant='normal', weight=350, stretch='normal', size='scalable')) = 11.0975
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\tradbdo.ttf', name='Traditional Arabic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LFAX.TTF', name='Lucida Fax', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ntailub.ttf', name='Microsoft New Tai Lue', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\simsun.ttc', name='SimSun', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GOUDOSI.TTF', name='Goudy Old Style', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LBRITED.TTF', name='Lucida Bright', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\l_10646.ttf', name='Lucida Sans Unicode', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\PER_____.TTF', name='Perpetua', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\CALISTI.TTF', name='Calisto MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\courbi.ttf', name='Courier New', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BELLI.TTF', name='Bell MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GOTHICI.TTF', name='Century Gothic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\simpbdo.ttf', name='Simplified Arabic', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\segoeuib.ttf', name='Segoe UI', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\segoeprb.ttf', name='Segoe Print', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ALGER.TTF', name='Algerian', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\PARCHM.TTF', name='Parchment', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GILI____.TTF', name='Gill Sans MT', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\TCCM____.TTF', name='Tw Cen MT Condensed', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25
2025-01-29 02:37:26,710 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\seguibl.ttf', name='Segoe UI', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GOUDOS.TTF', name='Goudy Old Style', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BOD_B.TTF', name='Bodoni MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\segmdl2.ttf', name='Segoe MDL2 Assets', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\msgothic.ttc', name='MS Gothic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ENGR.TTF', name='Engravers MT', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\msuighur.ttf', name='Microsoft Uighur', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GOUDOSB.TTF', name='Goudy Old Style', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LBRITEDI.TTF', name='Lucida Bright', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\aldhabi.ttf', name='Aldhabi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-Black.ttf', name='Poppins', style='normal', variant='normal', weight=900, stretch='normal', size='scalable')) = 10.525
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\cambria.ttc', name='Cambria', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\MISTRAL.TTF', name='Mistral', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\framd.ttf', name='Franklin Gothic Medium', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ERASDEMI.TTF', name='Eras Demi ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\majallab.ttf', name='Sakkal Majalla', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\corbeli.ttf', name='Corbel', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ntailu.ttf', name='Microsoft New Tai Lue', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GOTHICBI.TTF', name='Century Gothic', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\msjh.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ITCBLKAD.TTF', name='Blackadder ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,711 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ROCKB.TTF', name='Rockwell', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\cambriaz.ttf', name='Cambria', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\msyi.ttf', name='Microsoft Yi Baiti', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BOOKOSBI.TTF', name='Bookman Old Style', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\IMPRISHA.TTF', name='Imprint MT Shadow', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\CASTELAR.TTF', name='Castellar', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\WishShore.otf', name='Wish Shore', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\corbelz.ttf', name='Corbel', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\Candarai.ttf', name='Candara', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\webdings.ttf', name='Webdings', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\MTCORSVA.TTF', name='Monotype Corsiva', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\verdana.ttf', name='Verdana', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 3.6863636363636365
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BELLB.TTF', name='Bell MT', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\segoeuii.ttf', name='Segoe UI', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-BoldItalic.ttf', name='Poppins', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ROCKBI.TTF', name='Rockwell', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\RAGE.TTF', name='Rage Italic', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\NirmalaS.ttf', name='Nirmala UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\trebucbd.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\COPRGTB.TTF', name='Copperplate Gothic Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ELEPHNTI.TTF', name='Elephant', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\simpfxo.ttf', name='Simplified Arabic Fixed', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,712 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\INFROMAN.TTF', name='Informal Roman', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\DUBAI-MEDIUM.TTF', name='Dubai', style='normal', variant='normal', weight=500, stretch='normal', size='scalable')) = 10.145
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\TCCEB.TTF', name='Tw Cen MT Condensed Extra Bold', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\verdanaz.ttf', name='Verdana', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 4.971363636363637
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\FRABKIT.TTF', name='Franklin Gothic Book', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\MAIAN.TTF', name='Maiandra GD', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LBRITEI.TTF', name='Lucida Bright', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LFAXI.TTF', name='Lucida Fax', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GILSANUB.TTF', name='Gill Sans Ultra Bold', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\FRADMCN.TTF', name='Franklin Gothic Demi Cond', style='normal', variant='normal', weight=400, stretch='condensed', size='scalable')) = 10.25
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\simpo.ttf', name='Simplified Arabic', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\corbelli.ttf', name='Corbel', style='italic', variant='normal', weight=300, stretch='normal', size='scalable')) = 11.145
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\COLONNA.TTF', name='Colonna MT', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\segoeui.ttf', name='Segoe UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Khediawy.ttf', name='Khediawy', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LEELAWAD.TTF', name='Leelawadee', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LeelUIsl.ttf', name='Leelawadee UI', style='normal', variant='normal', weight=350, stretch='normal', size='scalable')) = 10.0975
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\VINERITC.TTF', name='Viner Hand ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\BRADHITC.TTF', name='Bradley Hand ITC', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Abd ElRady Pro Regular.otf', name='Abd Elrady Pro', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\mvboli.ttf', name='MV Boli', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\seguisbi.ttf', name='Segoe UI', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24
2025-01-29 02:37:26,713 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-SemiBold.ttf', name='Poppins', style='normal', variant='normal', weight=600, stretch='normal', size='scalable')) = 10.24
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\trebucit.ttf', name='Trebuchet MS', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\MAGNETOB.TTF', name='Magneto', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\almualli.ttf', name='HSN Moalla', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GILBI___.TTF', name='Gill Sans MT', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\consolaz.ttf', name='Consolas', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\msjhbd.ttc', name='Microsoft JhengHei', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\trebuc.ttf', name='Trebuchet MS', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\Nirmala.ttf', name='Nirmala UI', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-Bold.ttf', name='Poppins', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\arialbd.ttf', name='Arial', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 6.698636363636363
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\DUBAI-BOLD.TTF', name='Dubai', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\FRAHVIT.TTF', name='Franklin Gothic Heavy', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\GARA.TTF', name='Garamond', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LTYPE.TTF', name='Lucida Sans Typewriter', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\HATTEN.TTF', name='Haettenschweiler', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\MTEXTRA.TTF', name='MT Extra', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Wahran-Bold.otf', name='Wahran', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LBRITE.TTF', name='Lucida Bright', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\Candaraz.ttf', name='Candara', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\arabtype.ttf', name='Arabic Typesetting', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,714 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\Sitka.ttc', name='Sitka Small', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\PERTILI.TTF', name='Perpetua Titling MT', style='normal', variant='normal', weight=300, stretch='normal', size='scalable')) = 10.145
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\FRADM.TTF', name='Franklin Gothic Demi', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\himalaya.ttf', name='Microsoft Himalaya', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-SemiBoldItalic.ttf', name='Poppins', style='italic', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\ARIALNI.TTF', name='Arial', style='italic', variant='normal', weight=400, stretch='condensed', size='scalable')) = 7.613636363636363
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\tahomabd.ttf', name='Tahoma', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\segoeuiz.ttf', name='Segoe UI', style='italic', variant='normal', weight=700, stretch='normal', size='scalable')) = 11.335
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\consolai.ttf', name='Consolas', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\LTYPEBO.TTF', name='Lucida Sans Typewriter', style='oblique', variant='normal', weight=600, stretch='normal', size='scalable')) = 11.24
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\georgiab.ttf', name='Georgia', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Users\\Ahmed\\AppData\\Local\\Microsoft\\Windows\\Fonts\\Poppins-Italic.ttf', name='Poppins', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\HTOWERTI.TTF', name='High Tower Text', style='italic', variant='normal', weight=400, stretch='normal', size='scalable')) = 11.05
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\calibrib.ttf', name='Calibri', style='normal', variant='normal', weight=700, stretch='normal', size='scalable')) = 10.335
2025-01-29 02:37:26,715 - DEBUG - findfont: score(FontEntry(fname='C:\\Windows\\Fonts\\holomdl2.ttf', name='HoloLens MDL2 Assets', style='normal', variant='normal', weight=400, stretch='normal', size='scalable')) = 10.05