-
Notifications
You must be signed in to change notification settings - Fork 2
/
mainGUI.py
1357 lines (1348 loc) · 72.4 KB
/
mainGUI.py
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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'mainGUI.ui'
#
# Created by: PyQt5 UI code generator 5.15.1
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(1081, 600)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(":/icons/icons/icon.ico"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
MainWindow.setWindowIcon(icon)
MainWindow.setStyleSheet("background-color: rgb(225, 225, 225);")
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.verticalLayout = QtWidgets.QVBoxLayout(self.centralwidget)
self.verticalLayout.setContentsMargins(0, 0, 0, 0)
self.verticalLayout.setSpacing(0)
self.verticalLayout.setObjectName("verticalLayout")
self.horizontalFrame = QtWidgets.QFrame(self.centralwidget)
self.horizontalFrame.setStyleSheet("background-color:rgb(255, 85, 0);\n"
"min-height:40;\n"
"max-height:40;")
self.horizontalFrame.setObjectName("horizontalFrame")
self.horizontalLayout = QtWidgets.QHBoxLayout(self.horizontalFrame)
self.horizontalLayout.setContentsMargins(-1, 6, -1, -1)
self.horizontalLayout.setObjectName("horizontalLayout")
self.Logo = QtWidgets.QLabel(self.horizontalFrame)
self.Logo.setStyleSheet("min-width:30px;\n"
"max-width:30px;\n"
"min-height:30px;\n"
"max-height:30px;")
self.Logo.setText("")
self.Logo.setPixmap(QtGui.QPixmap(":/icons/icons/logo.png"))
self.Logo.setScaledContents(True)
self.Logo.setObjectName("Logo")
self.horizontalLayout.addWidget(self.Logo, 0, QtCore.Qt.AlignHCenter)
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout.addItem(spacerItem)
self.CodeGeneratorPushButton = QtWidgets.QPushButton(self.horizontalFrame)
self.CodeGeneratorPushButton.setMinimumSize(QtCore.QSize(27, 27))
self.CodeGeneratorPushButton.setMaximumSize(QtCore.QSize(27, 27))
self.CodeGeneratorPushButton.setStyleSheet("QPushButton#CodeGeneratorPushButton {\n"
" min-width: 25px;\n"
" max-width: 25px;\n"
" min-height: 25px;\n"
" max-height: 25px;\n"
" background-color: rgba(255, 255, 255, 0%);\n"
" \n"
" border:1px;\n"
" border-color: rgb(255, 85, 0);\n"
" border-style: solid;\n"
" border-top-left-radius: 5px;\n"
" border-top-right-radius: 5px;\n"
" border-bottom-right-radius: 5px;\n"
" border-bottom-left-radius:5px;\n"
"}\n"
"\n"
"QPushButton#CodeGeneratorPushButton:hover {\n"
" background: rgb(255, 119, 51);\n"
"}\n"
"\n"
"QPushButton#CodeGeneratorPushButton:pressed {\n"
" background: rgba(255, 255, 255, 0%);\n"
"}")
self.CodeGeneratorPushButton.setText("")
icon1 = QtGui.QIcon()
icon1.addPixmap(QtGui.QPixmap(":/icons/icons/code.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.CodeGeneratorPushButton.setIcon(icon1)
self.CodeGeneratorPushButton.setIconSize(QtCore.QSize(25, 25))
self.CodeGeneratorPushButton.setObjectName("CodeGeneratorPushButton")
self.horizontalLayout.addWidget(self.CodeGeneratorPushButton)
self.RegexSheetPushButton = QtWidgets.QPushButton(self.horizontalFrame)
self.RegexSheetPushButton.setMinimumSize(QtCore.QSize(27, 27))
self.RegexSheetPushButton.setMaximumSize(QtCore.QSize(27, 27))
self.RegexSheetPushButton.setStyleSheet("QPushButton#RegexSheetPushButton {\n"
" min-width: 25px;\n"
" max-width: 25px;\n"
" min-height: 25px;\n"
" max-height: 25px;\n"
" background-color: rgba(255, 255, 255, 0%);\n"
" \n"
" border:1px;\n"
" border-color: rgb(255, 85, 0);\n"
" border-style: solid;\n"
" border-top-left-radius: 5px;\n"
" border-top-right-radius: 5px;\n"
" border-bottom-right-radius: 5px;\n"
" border-bottom-left-radius:5px;\n"
"}\n"
"\n"
"QPushButton#RegexSheetPushButton:hover {\n"
" background: rgb(255, 119, 51);\n"
"}\n"
"\n"
"QPushButton#RegexSheetPushButton:pressed {\n"
" background: rgba(255, 255, 255, 0%);\n"
"}")
self.RegexSheetPushButton.setText("")
icon2 = QtGui.QIcon()
icon2.addPixmap(QtGui.QPixmap(":/icons/icons/sheet.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.RegexSheetPushButton.setIcon(icon2)
self.RegexSheetPushButton.setIconSize(QtCore.QSize(25, 25))
self.RegexSheetPushButton.setObjectName("RegexSheetPushButton")
self.horizontalLayout.addWidget(self.RegexSheetPushButton)
self.AboutPushButton = QtWidgets.QPushButton(self.horizontalFrame)
self.AboutPushButton.setMinimumSize(QtCore.QSize(27, 27))
self.AboutPushButton.setMaximumSize(QtCore.QSize(27, 27))
self.AboutPushButton.setStyleSheet("QPushButton#AboutPushButton {\n"
" min-width: 25px;\n"
" max-width: 25px;\n"
" min-height: 25px;\n"
" max-height: 25px;\n"
" background-color: rgba(255, 255, 255, 0%);\n"
" \n"
" border:1px;\n"
" border-color: rgb(255, 85, 0);\n"
" border-style: solid;\n"
" border-top-left-radius: 5px;\n"
" border-top-right-radius: 5px;\n"
" border-bottom-right-radius: 5px;\n"
" border-bottom-left-radius:5px;\n"
"}\n"
"\n"
"QPushButton#AboutPushButton:hover {\n"
" background: rgb(255, 119, 51);\n"
"}\n"
"\n"
"QPushButton#AboutPushButton:pressed {\n"
" background: rgba(255, 255, 255, 0%);\n"
"}")
self.AboutPushButton.setText("")
icon3 = QtGui.QIcon()
icon3.addPixmap(QtGui.QPixmap(":/icons/icons/info.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.AboutPushButton.setIcon(icon3)
self.AboutPushButton.setIconSize(QtCore.QSize(25, 25))
self.AboutPushButton.setObjectName("AboutPushButton")
self.horizontalLayout.addWidget(self.AboutPushButton)
self.verticalLayout.addWidget(self.horizontalFrame, 0, QtCore.Qt.AlignTop)
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
self.verticalLayout_4 = QtWidgets.QVBoxLayout()
self.verticalLayout_4.setContentsMargins(15, 15, 15, 0)
self.verticalLayout_4.setSpacing(6)
self.verticalLayout_4.setObjectName("verticalLayout_4")
self.horizontalLayout_4 = QtWidgets.QHBoxLayout()
self.horizontalLayout_4.setContentsMargins(-1, 0, -1, -1)
self.horizontalLayout_4.setObjectName("horizontalLayout_4")
self.label = QtWidgets.QLabel(self.centralwidget)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label.setFont(font)
self.label.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label.setObjectName("label")
self.horizontalLayout_4.addWidget(self.label)
self.NoMatchesLabel = QtWidgets.QLabel(self.centralwidget)
self.NoMatchesLabel.setStyleSheet(" background-color: rgb(153, 153, 153);\n"
" color: rgb(255, 255, 255);\n"
" border-style: solid;\n"
" border-top-left-radius: 5px;\n"
" border-top-right-radius: 5px;\n"
" border-bottom-right-radius: 5px;\n"
" border-bottom-left-radius: 5px;\n"
" min-width:150px;\n"
" max-width:150px;\n"
" min-height:20;\n"
" max-height:20;")
self.NoMatchesLabel.setAlignment(QtCore.Qt.AlignCenter)
self.NoMatchesLabel.setObjectName("NoMatchesLabel")
self.horizontalLayout_4.addWidget(self.NoMatchesLabel)
self.verticalLayout_4.addLayout(self.horizontalLayout_4)
self.line = QtWidgets.QFrame(self.centralwidget)
self.line.setFrameShape(QtWidgets.QFrame.HLine)
self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line.setObjectName("line")
self.verticalLayout_4.addWidget(self.line, 0, QtCore.Qt.AlignTop)
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
self.horizontalLayout_3.setContentsMargins(0, 0, -1, -1)
self.horizontalLayout_3.setSpacing(0)
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
self.RegexTextEdit = QtWidgets.QPlainTextEdit(self.centralwidget)
font = QtGui.QFont()
font.setPointSize(9)
self.RegexTextEdit.setFont(font)
self.RegexTextEdit.setStyleSheet("QPlainTextEdit {\n"
" min-width:360px;\n"
" min-height:30;\n"
" max-height:30;\n"
" margin-bottom:5px;\n"
" \n"
" padding-left: 5px;\n"
" padding-top: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(255,255,255,100%);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 0px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QPlainTextEdit::focus {\n"
" border-bottom-color:rgb(255, 85, 0);\n"
"}\n"
"\n"
"QPlainTextEdit::disabled {\n"
" background: rgba(0,0,0,.04);\n"
" border-bottom-color: rgba(0,0,0,.15);\n"
"}")
self.RegexTextEdit.setObjectName("RegexTextEdit")
self.horizontalLayout_3.addWidget(self.RegexTextEdit)
self.ProcessPushButton = QtWidgets.QPushButton(self.centralwidget)
self.ProcessPushButton.setStyleSheet("QPushButton#ProcessPushButton {\n"
" min-width:60px;\n"
" max-width:60px;\n"
" min-height:35;\n"
" max-height:35;\n"
" margin-bottom:5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(255,255,255,100%);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 0px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QPushButton#ProcessPushButton:hover {\n"
" background: rgba(255,255,255,50%);\n"
" border-bottom-color:rgb(255, 85, 0);\n"
"}\n"
"\n"
"QPushButton#ProcessPushButton:pressed {\n"
" background: rgba(255,255,255,100%);\n"
" border-bottom-color:rgb(255, 85, 0);\n"
"}\n"
"\n"
"QPushButton#ProcessPushButton:disabled {\n"
" background: rgba(0,0,0,.04);\n"
" border-bottom-color: rgba(0,0,0,.15); \n"
"}")
self.ProcessPushButton.setObjectName("ProcessPushButton")
self.horizontalLayout_3.addWidget(self.ProcessPushButton, 0, QtCore.Qt.AlignHCenter|QtCore.Qt.AlignVCenter)
self.verticalLayout_4.addLayout(self.horizontalLayout_3)
self.label_2 = QtWidgets.QLabel(self.centralwidget)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_2.setFont(font)
self.label_2.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_2.setObjectName("label_2")
self.verticalLayout_4.addWidget(self.label_2)
self.line_2 = QtWidgets.QFrame(self.centralwidget)
self.line_2.setFrameShape(QtWidgets.QFrame.HLine)
self.line_2.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_2.setObjectName("line_2")
self.verticalLayout_4.addWidget(self.line_2)
self.TestStringTextEdit = QtWidgets.QPlainTextEdit(self.centralwidget)
font = QtGui.QFont()
font.setPointSize(11)
self.TestStringTextEdit.setFont(font)
self.TestStringTextEdit.setStyleSheet("QPlainTextEdit {\n"
" min-width:360px;\n"
" min-height:30;\n"
" \n"
" padding-left: 5px;\n"
" padding-top: 10px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(255,255,255,100%);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QPlainTextEdit::focus {\n"
" border-bottom-color:rgb(255, 85, 0);\n"
"}\n"
"\n"
"QPlainTextEdit::disabled {\n"
" background: rgba(0,0,0,.04);\n"
" border-bottom-color: rgba(0,0,0,.15);\n"
"}")
self.TestStringTextEdit.setObjectName("TestStringTextEdit")
self.verticalLayout_4.addWidget(self.TestStringTextEdit)
self.horizontalLayout_2.addLayout(self.verticalLayout_4)
self.verticalFrame = QtWidgets.QFrame(self.centralwidget)
self.verticalFrame.setStyleSheet("background-color: rgb(238, 238, 238);\n"
"min-width: 300;\n"
"max-width: 500;")
self.verticalFrame.setObjectName("verticalFrame")
self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.verticalFrame)
self.verticalLayout_2.setContentsMargins(10, 10, 10, 10)
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.widget = QtWidgets.QWidget(self.verticalFrame)
self.widget.setStyleSheet("background-color:rgb(249, 249, 249)")
self.widget.setObjectName("widget")
self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.widget)
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.label_3 = QtWidgets.QLabel(self.widget)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_3.setFont(font)
self.label_3.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_3.setObjectName("label_3")
self.verticalLayout_3.addWidget(self.label_3)
self.line_3 = QtWidgets.QFrame(self.widget)
self.line_3.setFrameShape(QtWidgets.QFrame.HLine)
self.line_3.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_3.setObjectName("line_3")
self.verticalLayout_3.addWidget(self.line_3)
self.RresultScrollArea = QtWidgets.QScrollArea(self.widget)
self.RresultScrollArea.setStyleSheet("border:No;")
self.RresultScrollArea.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
self.RresultScrollArea.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
self.RresultScrollArea.setWidgetResizable(True)
self.RresultScrollArea.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignTop)
self.RresultScrollArea.setObjectName("RresultScrollArea")
self.scrollAreaWidgetContents = QtWidgets.QWidget()
self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 300, 449))
self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents")
self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.scrollAreaWidgetContents)
self.verticalLayout_5.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_5.setSpacing(0)
self.verticalLayout_5.setObjectName("verticalLayout_5")
self.RresultScrollArea.setWidget(self.scrollAreaWidgetContents)
self.verticalLayout_3.addWidget(self.RresultScrollArea)
self.verticalLayout_2.addWidget(self.widget)
self.horizontalLayout_2.addWidget(self.verticalFrame)
self.verticalLayout.addLayout(self.horizontalLayout_2)
MainWindow.setCentralWidget(self.centralwidget)
self.menubar = QtWidgets.QMenuBar(MainWindow)
self.menubar.setGeometry(QtCore.QRect(0, 0, 1081, 21))
self.menubar.setObjectName("menubar")
MainWindow.setMenuBar(self.menubar)
self.statusbar = QtWidgets.QStatusBar(MainWindow)
self.statusbar.setObjectName("statusbar")
MainWindow.setStatusBar(self.statusbar)
self.SheetDockWidget = QtWidgets.QDockWidget(MainWindow)
self.SheetDockWidget.setMinimumSize(QtCore.QSize(312, 91))
self.SheetDockWidget.setMaximumSize(QtCore.QSize(312, 524287))
self.SheetDockWidget.setStyleSheet("")
self.SheetDockWidget.setObjectName("SheetDockWidget")
self.dockWidgetContents_4 = QtWidgets.QWidget()
self.dockWidgetContents_4.setObjectName("dockWidgetContents_4")
self.gridLayout = QtWidgets.QGridLayout(self.dockWidgetContents_4)
self.gridLayout.setContentsMargins(0, 0, 0, 0)
self.gridLayout.setSpacing(0)
self.gridLayout.setObjectName("gridLayout")
self.scrollArea_2 = QtWidgets.QScrollArea(self.dockWidgetContents_4)
self.scrollArea_2.setStyleSheet("border:No;")
self.scrollArea_2.setWidgetResizable(True)
self.scrollArea_2.setObjectName("scrollArea_2")
self.scrollAreaWidgetContents_3 = QtWidgets.QWidget()
self.scrollAreaWidgetContents_3.setGeometry(QtCore.QRect(0, 0, 296, 1465))
self.scrollAreaWidgetContents_3.setObjectName("scrollAreaWidgetContents_3")
self.verticalLayout_16 = QtWidgets.QVBoxLayout(self.scrollAreaWidgetContents_3)
self.verticalLayout_16.setObjectName("verticalLayout_16")
self.verticalLayout_17 = QtWidgets.QVBoxLayout()
self.verticalLayout_17.setObjectName("verticalLayout_17")
self.label_126 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_126.setFont(font)
self.label_126.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_126.setObjectName("label_126")
self.verticalLayout_17.addWidget(self.label_126)
self.line_12 = QtWidgets.QFrame(self.scrollAreaWidgetContents_3)
self.line_12.setStyleSheet("background-color:rgb(255, 85, 0);\n"
"border:No;\n"
"height:1px")
self.line_12.setFrameShape(QtWidgets.QFrame.HLine)
self.line_12.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_12.setObjectName("line_12")
self.verticalLayout_17.addWidget(self.line_12)
self.verticalLayout_16.addLayout(self.verticalLayout_17)
self.horizontalLayout_62 = QtWidgets.QHBoxLayout()
self.horizontalLayout_62.setObjectName("horizontalLayout_62")
self.label_127 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_127.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_127.setObjectName("label_127")
self.horizontalLayout_62.addWidget(self.label_127)
self.label_128 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_128.setObjectName("label_128")
self.horizontalLayout_62.addWidget(self.label_128)
self.verticalLayout_16.addLayout(self.horizontalLayout_62)
self.horizontalLayout_63 = QtWidgets.QHBoxLayout()
self.horizontalLayout_63.setObjectName("horizontalLayout_63")
self.label_129 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_129.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_129.setObjectName("label_129")
self.horizontalLayout_63.addWidget(self.label_129)
self.label_130 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_130.setObjectName("label_130")
self.horizontalLayout_63.addWidget(self.label_130)
self.verticalLayout_16.addLayout(self.horizontalLayout_63)
self.horizontalLayout_64 = QtWidgets.QHBoxLayout()
self.horizontalLayout_64.setObjectName("horizontalLayout_64")
self.label_131 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_131.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_131.setObjectName("label_131")
self.horizontalLayout_64.addWidget(self.label_131)
self.label_132 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_132.setObjectName("label_132")
self.horizontalLayout_64.addWidget(self.label_132)
self.verticalLayout_16.addLayout(self.horizontalLayout_64)
self.horizontalLayout_65 = QtWidgets.QHBoxLayout()
self.horizontalLayout_65.setObjectName("horizontalLayout_65")
self.label_133 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_133.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_133.setObjectName("label_133")
self.horizontalLayout_65.addWidget(self.label_133)
self.label_134 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_134.setObjectName("label_134")
self.horizontalLayout_65.addWidget(self.label_134)
self.verticalLayout_16.addLayout(self.horizontalLayout_65)
self.horizontalLayout_66 = QtWidgets.QHBoxLayout()
self.horizontalLayout_66.setObjectName("horizontalLayout_66")
self.label_135 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_135.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_135.setObjectName("label_135")
self.horizontalLayout_66.addWidget(self.label_135)
self.label_136 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_136.setObjectName("label_136")
self.horizontalLayout_66.addWidget(self.label_136)
self.verticalLayout_16.addLayout(self.horizontalLayout_66)
self.horizontalLayout_67 = QtWidgets.QHBoxLayout()
self.horizontalLayout_67.setObjectName("horizontalLayout_67")
self.label_137 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_137.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_137.setObjectName("label_137")
self.horizontalLayout_67.addWidget(self.label_137)
self.label_138 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_138.setObjectName("label_138")
self.horizontalLayout_67.addWidget(self.label_138)
self.verticalLayout_16.addLayout(self.horizontalLayout_67)
self.verticalLayout_18 = QtWidgets.QVBoxLayout()
self.verticalLayout_18.setObjectName("verticalLayout_18")
self.label_139 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_139.setFont(font)
self.label_139.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_139.setObjectName("label_139")
self.verticalLayout_18.addWidget(self.label_139)
self.line_13 = QtWidgets.QFrame(self.scrollAreaWidgetContents_3)
self.line_13.setStyleSheet("background-color:rgb(255, 85, 0);\n"
"border:No;\n"
"height:1px")
self.line_13.setFrameShape(QtWidgets.QFrame.HLine)
self.line_13.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_13.setObjectName("line_13")
self.verticalLayout_18.addWidget(self.line_13)
self.verticalLayout_16.addLayout(self.verticalLayout_18)
self.horizontalLayout_68 = QtWidgets.QHBoxLayout()
self.horizontalLayout_68.setObjectName("horizontalLayout_68")
self.label_140 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_140.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_140.setObjectName("label_140")
self.horizontalLayout_68.addWidget(self.label_140)
self.label_141 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_141.setObjectName("label_141")
self.horizontalLayout_68.addWidget(self.label_141)
self.verticalLayout_16.addLayout(self.horizontalLayout_68)
self.horizontalLayout_69 = QtWidgets.QHBoxLayout()
self.horizontalLayout_69.setObjectName("horizontalLayout_69")
self.label_142 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_142.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_142.setObjectName("label_142")
self.horizontalLayout_69.addWidget(self.label_142)
self.label_143 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_143.setObjectName("label_143")
self.horizontalLayout_69.addWidget(self.label_143)
self.verticalLayout_16.addLayout(self.horizontalLayout_69)
self.horizontalLayout_70 = QtWidgets.QHBoxLayout()
self.horizontalLayout_70.setObjectName("horizontalLayout_70")
self.label_144 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_144.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_144.setObjectName("label_144")
self.horizontalLayout_70.addWidget(self.label_144)
self.label_145 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_145.setObjectName("label_145")
self.horizontalLayout_70.addWidget(self.label_145)
self.verticalLayout_16.addLayout(self.horizontalLayout_70)
self.horizontalLayout_71 = QtWidgets.QHBoxLayout()
self.horizontalLayout_71.setObjectName("horizontalLayout_71")
self.label_146 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_146.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_146.setObjectName("label_146")
self.horizontalLayout_71.addWidget(self.label_146)
self.label_147 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_147.setObjectName("label_147")
self.horizontalLayout_71.addWidget(self.label_147)
self.verticalLayout_16.addLayout(self.horizontalLayout_71)
self.horizontalLayout_72 = QtWidgets.QHBoxLayout()
self.horizontalLayout_72.setObjectName("horizontalLayout_72")
self.label_148 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_148.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_148.setObjectName("label_148")
self.horizontalLayout_72.addWidget(self.label_148)
self.label_149 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_149.setObjectName("label_149")
self.horizontalLayout_72.addWidget(self.label_149)
self.verticalLayout_16.addLayout(self.horizontalLayout_72)
self.horizontalLayout_73 = QtWidgets.QHBoxLayout()
self.horizontalLayout_73.setObjectName("horizontalLayout_73")
self.label_150 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_150.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_150.setObjectName("label_150")
self.horizontalLayout_73.addWidget(self.label_150)
self.label_151 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_151.setObjectName("label_151")
self.horizontalLayout_73.addWidget(self.label_151)
self.verticalLayout_16.addLayout(self.horizontalLayout_73)
self.horizontalLayout_74 = QtWidgets.QHBoxLayout()
self.horizontalLayout_74.setObjectName("horizontalLayout_74")
self.label_152 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_152.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_152.setObjectName("label_152")
self.horizontalLayout_74.addWidget(self.label_152)
self.label_153 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_153.setObjectName("label_153")
self.horizontalLayout_74.addWidget(self.label_153)
self.verticalLayout_16.addLayout(self.horizontalLayout_74)
self.horizontalLayout_75 = QtWidgets.QHBoxLayout()
self.horizontalLayout_75.setObjectName("horizontalLayout_75")
self.label_154 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_154.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_154.setObjectName("label_154")
self.horizontalLayout_75.addWidget(self.label_154)
self.label_155 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_155.setObjectName("label_155")
self.horizontalLayout_75.addWidget(self.label_155)
self.verticalLayout_16.addLayout(self.horizontalLayout_75)
self.verticalLayout_19 = QtWidgets.QVBoxLayout()
self.verticalLayout_19.setObjectName("verticalLayout_19")
self.label_156 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_156.setFont(font)
self.label_156.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_156.setObjectName("label_156")
self.verticalLayout_19.addWidget(self.label_156)
self.line_14 = QtWidgets.QFrame(self.scrollAreaWidgetContents_3)
self.line_14.setStyleSheet("background-color:rgb(255, 85, 0);\n"
"border:No;\n"
"height:1px")
self.line_14.setFrameShape(QtWidgets.QFrame.HLine)
self.line_14.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_14.setObjectName("line_14")
self.verticalLayout_19.addWidget(self.line_14)
self.verticalLayout_16.addLayout(self.verticalLayout_19)
self.horizontalLayout_76 = QtWidgets.QHBoxLayout()
self.horizontalLayout_76.setObjectName("horizontalLayout_76")
self.label_157 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_157.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_157.setObjectName("label_157")
self.horizontalLayout_76.addWidget(self.label_157)
self.label_158 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_158.setObjectName("label_158")
self.horizontalLayout_76.addWidget(self.label_158)
self.verticalLayout_16.addLayout(self.horizontalLayout_76)
self.horizontalLayout_77 = QtWidgets.QHBoxLayout()
self.horizontalLayout_77.setObjectName("horizontalLayout_77")
self.label_159 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_159.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_159.setObjectName("label_159")
self.horizontalLayout_77.addWidget(self.label_159)
self.label_160 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_160.setObjectName("label_160")
self.horizontalLayout_77.addWidget(self.label_160)
self.verticalLayout_16.addLayout(self.horizontalLayout_77)
self.horizontalLayout_78 = QtWidgets.QHBoxLayout()
self.horizontalLayout_78.setObjectName("horizontalLayout_78")
self.label_161 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_161.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_161.setObjectName("label_161")
self.horizontalLayout_78.addWidget(self.label_161)
self.label_162 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_162.setObjectName("label_162")
self.horizontalLayout_78.addWidget(self.label_162)
self.verticalLayout_16.addLayout(self.horizontalLayout_78)
self.horizontalLayout_79 = QtWidgets.QHBoxLayout()
self.horizontalLayout_79.setObjectName("horizontalLayout_79")
self.label_163 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_163.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_163.setObjectName("label_163")
self.horizontalLayout_79.addWidget(self.label_163)
self.label_164 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_164.setObjectName("label_164")
self.horizontalLayout_79.addWidget(self.label_164)
self.verticalLayout_16.addLayout(self.horizontalLayout_79)
self.horizontalLayout_80 = QtWidgets.QHBoxLayout()
self.horizontalLayout_80.setObjectName("horizontalLayout_80")
self.label_165 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_165.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_165.setObjectName("label_165")
self.horizontalLayout_80.addWidget(self.label_165)
self.label_166 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_166.setObjectName("label_166")
self.horizontalLayout_80.addWidget(self.label_166)
self.verticalLayout_16.addLayout(self.horizontalLayout_80)
self.horizontalLayout_81 = QtWidgets.QHBoxLayout()
self.horizontalLayout_81.setObjectName("horizontalLayout_81")
self.label_167 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_167.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_167.setObjectName("label_167")
self.horizontalLayout_81.addWidget(self.label_167)
self.label_168 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_168.setObjectName("label_168")
self.horizontalLayout_81.addWidget(self.label_168)
self.verticalLayout_16.addLayout(self.horizontalLayout_81)
self.horizontalLayout_82 = QtWidgets.QHBoxLayout()
self.horizontalLayout_82.setObjectName("horizontalLayout_82")
self.label_169 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_169.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_169.setObjectName("label_169")
self.horizontalLayout_82.addWidget(self.label_169)
self.label_170 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_170.setObjectName("label_170")
self.horizontalLayout_82.addWidget(self.label_170)
self.verticalLayout_16.addLayout(self.horizontalLayout_82)
self.verticalLayout_20 = QtWidgets.QVBoxLayout()
self.verticalLayout_20.setObjectName("verticalLayout_20")
self.label_171 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_171.setFont(font)
self.label_171.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_171.setObjectName("label_171")
self.verticalLayout_20.addWidget(self.label_171)
self.line_15 = QtWidgets.QFrame(self.scrollAreaWidgetContents_3)
self.line_15.setStyleSheet("background-color:rgb(255, 85, 0);\n"
"border:No;\n"
"height:1px")
self.line_15.setFrameShape(QtWidgets.QFrame.HLine)
self.line_15.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_15.setObjectName("line_15")
self.verticalLayout_20.addWidget(self.line_15)
self.verticalLayout_16.addLayout(self.verticalLayout_20)
self.horizontalLayout_83 = QtWidgets.QHBoxLayout()
self.horizontalLayout_83.setObjectName("horizontalLayout_83")
self.label_172 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_172.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_172.setObjectName("label_172")
self.horizontalLayout_83.addWidget(self.label_172)
self.label_173 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_173.setObjectName("label_173")
self.horizontalLayout_83.addWidget(self.label_173)
self.verticalLayout_16.addLayout(self.horizontalLayout_83)
self.horizontalLayout_84 = QtWidgets.QHBoxLayout()
self.horizontalLayout_84.setObjectName("horizontalLayout_84")
self.label_174 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_174.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_174.setObjectName("label_174")
self.horizontalLayout_84.addWidget(self.label_174)
self.label_175 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_175.setObjectName("label_175")
self.horizontalLayout_84.addWidget(self.label_175)
self.verticalLayout_16.addLayout(self.horizontalLayout_84)
self.horizontalLayout_85 = QtWidgets.QHBoxLayout()
self.horizontalLayout_85.setObjectName("horizontalLayout_85")
self.label_176 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_176.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_176.setObjectName("label_176")
self.horizontalLayout_85.addWidget(self.label_176)
self.label_177 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_177.setObjectName("label_177")
self.horizontalLayout_85.addWidget(self.label_177)
self.verticalLayout_16.addLayout(self.horizontalLayout_85)
self.horizontalLayout_86 = QtWidgets.QHBoxLayout()
self.horizontalLayout_86.setObjectName("horizontalLayout_86")
self.label_178 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_178.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_178.setObjectName("label_178")
self.horizontalLayout_86.addWidget(self.label_178)
self.label_179 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_179.setObjectName("label_179")
self.horizontalLayout_86.addWidget(self.label_179)
self.verticalLayout_16.addLayout(self.horizontalLayout_86)
self.horizontalLayout_87 = QtWidgets.QHBoxLayout()
self.horizontalLayout_87.setObjectName("horizontalLayout_87")
self.label_180 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_180.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_180.setObjectName("label_180")
self.horizontalLayout_87.addWidget(self.label_180)
self.label_181 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_181.setObjectName("label_181")
self.horizontalLayout_87.addWidget(self.label_181)
self.verticalLayout_16.addLayout(self.horizontalLayout_87)
self.horizontalLayout_88 = QtWidgets.QHBoxLayout()
self.horizontalLayout_88.setObjectName("horizontalLayout_88")
self.label_182 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_182.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_182.setObjectName("label_182")
self.horizontalLayout_88.addWidget(self.label_182)
self.label_183 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_183.setObjectName("label_183")
self.horizontalLayout_88.addWidget(self.label_183)
self.verticalLayout_16.addLayout(self.horizontalLayout_88)
self.horizontalLayout_89 = QtWidgets.QHBoxLayout()
self.horizontalLayout_89.setObjectName("horizontalLayout_89")
self.label_184 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_184.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_184.setObjectName("label_184")
self.horizontalLayout_89.addWidget(self.label_184)
self.label_185 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_185.setObjectName("label_185")
self.horizontalLayout_89.addWidget(self.label_185)
self.verticalLayout_16.addLayout(self.horizontalLayout_89)
self.horizontalLayout_90 = QtWidgets.QHBoxLayout()
self.horizontalLayout_90.setObjectName("horizontalLayout_90")
self.label_186 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_186.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_186.setObjectName("label_186")
self.horizontalLayout_90.addWidget(self.label_186)
self.label_187 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_187.setObjectName("label_187")
self.horizontalLayout_90.addWidget(self.label_187)
self.verticalLayout_16.addLayout(self.horizontalLayout_90)
self.horizontalLayout_91 = QtWidgets.QHBoxLayout()
self.horizontalLayout_91.setObjectName("horizontalLayout_91")
self.label_188 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_188.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_188.setObjectName("label_188")
self.horizontalLayout_91.addWidget(self.label_188)
self.label_189 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_189.setObjectName("label_189")
self.horizontalLayout_91.addWidget(self.label_189)
self.verticalLayout_16.addLayout(self.horizontalLayout_91)
self.verticalLayout_21 = QtWidgets.QVBoxLayout()
self.verticalLayout_21.setObjectName("verticalLayout_21")
self.label_190 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_190.setFont(font)
self.label_190.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_190.setObjectName("label_190")
self.verticalLayout_21.addWidget(self.label_190)
self.line_16 = QtWidgets.QFrame(self.scrollAreaWidgetContents_3)
self.line_16.setStyleSheet("background-color:rgb(255, 85, 0);\n"
"border:No;\n"
"height:1px")
self.line_16.setFrameShape(QtWidgets.QFrame.HLine)
self.line_16.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_16.setObjectName("line_16")
self.verticalLayout_21.addWidget(self.line_16)
self.verticalLayout_16.addLayout(self.verticalLayout_21)
self.horizontalLayout_92 = QtWidgets.QHBoxLayout()
self.horizontalLayout_92.setObjectName("horizontalLayout_92")
self.label_191 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_191.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_191.setObjectName("label_191")
self.horizontalLayout_92.addWidget(self.label_191)
self.label_192 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_192.setObjectName("label_192")
self.horizontalLayout_92.addWidget(self.label_192)
self.verticalLayout_16.addLayout(self.horizontalLayout_92)
self.horizontalLayout_93 = QtWidgets.QHBoxLayout()
self.horizontalLayout_93.setObjectName("horizontalLayout_93")
self.label_193 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_193.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_193.setObjectName("label_193")
self.horizontalLayout_93.addWidget(self.label_193)
self.label_194 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_194.setObjectName("label_194")
self.horizontalLayout_93.addWidget(self.label_194)
self.verticalLayout_16.addLayout(self.horizontalLayout_93)
self.horizontalLayout_94 = QtWidgets.QHBoxLayout()
self.horizontalLayout_94.setObjectName("horizontalLayout_94")
self.label_195 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_195.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_195.setObjectName("label_195")
self.horizontalLayout_94.addWidget(self.label_195)
self.label_196 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_196.setObjectName("label_196")
self.horizontalLayout_94.addWidget(self.label_196)
self.verticalLayout_16.addLayout(self.horizontalLayout_94)
self.horizontalLayout_95 = QtWidgets.QHBoxLayout()
self.horizontalLayout_95.setObjectName("horizontalLayout_95")
self.label_197 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_197.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_197.setObjectName("label_197")
self.horizontalLayout_95.addWidget(self.label_197)
self.label_198 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_198.setObjectName("label_198")
self.horizontalLayout_95.addWidget(self.label_198)
self.verticalLayout_16.addLayout(self.horizontalLayout_95)
self.horizontalLayout_96 = QtWidgets.QHBoxLayout()
self.horizontalLayout_96.setObjectName("horizontalLayout_96")
self.label_199 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_199.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_199.setObjectName("label_199")
self.horizontalLayout_96.addWidget(self.label_199)
self.label_200 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_200.setObjectName("label_200")
self.horizontalLayout_96.addWidget(self.label_200)
self.verticalLayout_16.addLayout(self.horizontalLayout_96)
self.horizontalLayout_97 = QtWidgets.QHBoxLayout()
self.horizontalLayout_97.setObjectName("horizontalLayout_97")
self.label_201 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_201.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_201.setObjectName("label_201")
self.horizontalLayout_97.addWidget(self.label_201)
self.label_202 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_202.setObjectName("label_202")
self.horizontalLayout_97.addWidget(self.label_202)
self.verticalLayout_16.addLayout(self.horizontalLayout_97)
self.horizontalLayout_98 = QtWidgets.QHBoxLayout()
self.horizontalLayout_98.setObjectName("horizontalLayout_98")
self.label_203 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_203.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_203.setObjectName("label_203")
self.horizontalLayout_98.addWidget(self.label_203)
self.label_204 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_204.setObjectName("label_204")
self.horizontalLayout_98.addWidget(self.label_204)
self.verticalLayout_16.addLayout(self.horizontalLayout_98)
self.horizontalLayout_99 = QtWidgets.QHBoxLayout()
self.horizontalLayout_99.setObjectName("horizontalLayout_99")
self.label_205 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_205.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_205.setObjectName("label_205")
self.horizontalLayout_99.addWidget(self.label_205)
self.label_206 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_206.setObjectName("label_206")
self.horizontalLayout_99.addWidget(self.label_206)
self.verticalLayout_16.addLayout(self.horizontalLayout_99)
self.horizontalLayout_100 = QtWidgets.QHBoxLayout()
self.horizontalLayout_100.setObjectName("horizontalLayout_100")
self.label_207 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_207.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_207.setObjectName("label_207")
self.horizontalLayout_100.addWidget(self.label_207)
self.label_208 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_208.setObjectName("label_208")
self.horizontalLayout_100.addWidget(self.label_208)
self.verticalLayout_16.addLayout(self.horizontalLayout_100)
self.horizontalLayout_101 = QtWidgets.QHBoxLayout()
self.horizontalLayout_101.setObjectName("horizontalLayout_101")
self.label_209 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_209.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_209.setObjectName("label_209")
self.horizontalLayout_101.addWidget(self.label_209)
self.label_210 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_210.setObjectName("label_210")
self.horizontalLayout_101.addWidget(self.label_210)
self.verticalLayout_16.addLayout(self.horizontalLayout_101)
self.horizontalLayout_102 = QtWidgets.QHBoxLayout()
self.horizontalLayout_102.setObjectName("horizontalLayout_102")
self.label_211 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_211.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_211.setObjectName("label_211")
self.horizontalLayout_102.addWidget(self.label_211)
self.label_212 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_212.setObjectName("label_212")
self.horizontalLayout_102.addWidget(self.label_212)
self.verticalLayout_16.addLayout(self.horizontalLayout_102)
self.horizontalLayout_103 = QtWidgets.QHBoxLayout()
self.horizontalLayout_103.setObjectName("horizontalLayout_103")
self.label_213 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_213.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_213.setObjectName("label_213")
self.horizontalLayout_103.addWidget(self.label_213)
self.label_214 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_214.setObjectName("label_214")
self.horizontalLayout_103.addWidget(self.label_214)
self.verticalLayout_16.addLayout(self.horizontalLayout_103)
self.verticalLayout_22 = QtWidgets.QVBoxLayout()
self.verticalLayout_22.setObjectName("verticalLayout_22")
self.label_215 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
font = QtGui.QFont()
font.setFamily("Arial")
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_215.setFont(font)
self.label_215.setStyleSheet("min-height:15;\n"
"max-height:15;\n"
"background-color: rgba(0, 0, 0, 0%);")
self.label_215.setObjectName("label_215")
self.verticalLayout_22.addWidget(self.label_215)
self.line_17 = QtWidgets.QFrame(self.scrollAreaWidgetContents_3)
self.line_17.setStyleSheet("background-color:rgb(255, 85, 0);\n"
"border:No;\n"
"height:1px")
self.line_17.setFrameShape(QtWidgets.QFrame.HLine)
self.line_17.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_17.setObjectName("line_17")
self.verticalLayout_22.addWidget(self.line_17)
self.verticalLayout_16.addLayout(self.verticalLayout_22)
self.horizontalLayout_104 = QtWidgets.QHBoxLayout()
self.horizontalLayout_104.setObjectName("horizontalLayout_104")
self.label_216 = QtWidgets.QLabel(self.scrollAreaWidgetContents_3)
self.label_216.setStyleSheet("min-width:100px;\n"
"max-width:100px;")
self.label_216.setObjectName("label_216")
self.horizontalLayout_104.addWidget(self.label_216)