-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdditionalProjectInterpreterInfo.pydevinfo
More file actions
943 lines (942 loc) · 55.2 KB
/
AdditionalProjectInterpreterInfo.pydevinfo
File metadata and controls
943 lines (942 loc) · 55.2 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
-- VERSION_5
-- START DISKCACHE_3
PyDjuro.arithmetic|1736360380567514410|/home/sigma69/Documents/GitHub/Python_Collections-/PyDjuro/arithmetic.py
functions|1736360380751518461|/home/sigma69/Documents/GitHub/Python_Collections-/functions.py
cal_lexical|1736360380637515951|/home/sigma69/Documents/GitHub/Python_Collections-/cal_lexical.py
PycharmProjects.rando|1736360380569514454|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/rando.py
HandlingText|1736360380545513926|/home/sigma69/Documents/GitHub/Python_Collections-/HandlingText.py
reverseString|1736360381087525858|/home/sigma69/Documents/GitHub/Python_Collections-/reverseString.py
monthlySalary|1736360380800519540|/home/sigma69/Documents/GitHub/Python_Collections-/monthlySalary.py
snippet1|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/snippet1.py
simpleBoolean|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/simpleBoolean.py
snippet2|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/snippet2.py
snippet3|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/snippet3.py
tryExcept|1736360381098526100|/home/sigma69/Documents/GitHub/Python_Collections-/tryExcept.py
displayInvestgatioMessages|1736360380725517889|/home/sigma69/Documents/GitHub/Python_Collections-/displayInvestgatioMessages.py
t_test|1736360381090525924|/home/sigma69/Documents/GitHub/Python_Collections-/t_test.py
Right_vs_LeftFooter2|1736360380576514608|/home/sigma69/Documents/GitHub/Python_Collections-/Right_vs_LeftFooter2.py
FastNetSpeed|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/FastNetSpeed.py
tes|1736360381098526100|/home/sigma69/Documents/GitHub/Python_Collections-/tes.py
test_tensor|1736360381098526100|/home/sigma69/Documents/GitHub/Python_Collections-/test_tensor.py
EuclideanDistanceNumpy|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/EuclideanDistanceNumpy.py
PyDjuro.setup|1736360380567514410|/home/sigma69/Documents/GitHub/Python_Collections-/PyDjuro/setup.py
module|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/module.py
plotReview|1736360381083525770|/home/sigma69/Documents/GitHub/Python_Collections-/plotReview.py
sorted|1736360381090525924|/home/sigma69/Documents/GitHub/Python_Collections-/sorted.py
printName|1736360381083525770|/home/sigma69/Documents/GitHub/Python_Collections-/printName.py
Osinformation|1736360380567514410|/home/sigma69/Documents/GitHub/Python_Collections-/Osinformation.py
mathOperators|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/mathOperators.py
indexPositions|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/indexPositions.py
appendlist|1736449707170435381|/home/sigma69/Documents/GitHub/Python_Collections-/appendlist.py
ClassesObjetcs|1736360380543513882|/home/sigma69/Documents/GitHub/Python_Collections-/ClassesObjetcs.py
generate_text|1736360380751518461|/home/sigma69/Documents/GitHub/Python_Collections-/generate_text.py
nestedData|1736360380801519562|/home/sigma69/Documents/GitHub/Python_Collections-/nestedData.py
NetworkSockets|1736360380567514410|/home/sigma69/Documents/GitHub/Python_Collections-/NetworkSockets.py
question22|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question22.py
Right_Vs_LeftFooters|1736360380576514608|/home/sigma69/Documents/GitHub/Python_Collections-/Right_Vs_LeftFooters.py
question23|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question23.py
panels|1736360380807519694|/home/sigma69/Documents/GitHub/Python_Collections-/panels.py
question20|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question20.py
question21|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question21.py
test_GUI|1736360381098526100|/home/sigma69/Documents/GitHub/Python_Collections-/test_GUI.py
question26|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question26.py
question27|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question27.py
pythonkeywords|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/pythonkeywords.py
question24|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question24.py
question25|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question25.py
xmlPy|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/xmlPy.py
EuclideanDistance|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/EuclideanDistance.py
Search_Text|1736360380577514630|/home/sigma69/Documents/GitHub/Python_Collections-/Search_Text.py
ballPlot|1736450940456024191|/home/sigma69/Documents/GitHub/Python_Collections-/ballPlot.py
place_ValueOfNumbers|1736360380808519716|/home/sigma69/Documents/GitHub/Python_Collections-/place_ValueOfNumbers.py
log_avartar|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/log_avartar.py
GoogleApi|1736360380545513926|/home/sigma69/Documents/GitHub/Python_Collections-/GoogleApi.py
autogui|1736710685905684540|/home/sigma69/Documents/GitHub/Python_Collections-/autogui.py
currencyConvertor|1736360380646516149|/home/sigma69/Documents/GitHub/Python_Collections-/currencyConvertor.py
Question|1736360380573514542|/home/sigma69/Documents/GitHub/Python_Collections-/Question.py
cal_func_lexical|1736451320915215374|/home/sigma69/Documents/GitHub/Python_Collections-/cal_func_lexical.py
menutest|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/menutest.py
question11|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question11.py
question12|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question12.py
question10|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question10.py
conditions_recap|1736360380646516149|/home/sigma69/Documents/GitHub/Python_Collections-/conditions_recap.py
question15|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question15.py
loops|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/loops.py
question16|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question16.py
question13|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question13.py
auto_library|1737049912500857117|/home/sigma69/Documents/GitHub/Python_Collections-/auto_library.py
question14|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question14.py
question19|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question19.py
test_mult_func|1736360381098526100|/home/sigma69/Documents/GitHub/Python_Collections-/test_mult_func.py
PycharmProjects.pythonProject.shutills|1736360380569514454|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pythonProject/shutills.py
question17|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question17.py
question18|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question18.py
Data_Management_splice|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_splice.py
monitorBrowserV2|1736360380800519540|/home/sigma69/Documents/GitHub/Python_Collections-/monitorBrowserV2.py
NestedRecap|1736360380566514388|/home/sigma69/Documents/GitHub/Python_Collections-/NestedRecap.py
monitorBrowserV3|1736360380800519540|/home/sigma69/Documents/GitHub/Python_Collections-/monitorBrowserV3.py
conditions2|1736360380646516149|/home/sigma69/Documents/GitHub/Python_Collections-/conditions2.py
http_status|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/http_status.py
plotUsing_ion|1736360381083525770|/home/sigma69/Documents/GitHub/Python_Collections-/plotUsing_ion.py
inputs|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/inputs.py
Count_Vocabulary|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Count_Vocabulary.py
stringFeature|1736360381090525924|/home/sigma69/Documents/GitHub/Python_Collections-/stringFeature.py
Nhanes_DataSet|1736360380567514410|/home/sigma69/Documents/GitHub/Python_Collections-/Nhanes_DataSet.py
PycharmProjects.pythonProject.points|1736360380569514454|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pythonProject/points.py
PycharmProjects.pythonProject.main|1736360380568514432|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pythonProject/main.py
spell_checking|1736360381090525924|/home/sigma69/Documents/GitHub/Python_Collections-/spell_checking.py
powerRecursion|1736360381083525770|/home/sigma69/Documents/GitHub/Python_Collections-/powerRecursion.py
imd_dataset|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/imd_dataset.py
inputcalls|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/inputcalls.py
Data_Management|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management.py
PycharmProjects.flaskDocker|1736360380568514432|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/flaskDocker.py
maps|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/maps.py
Data_Management_splice2|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_splice2.py
loopRecap2|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/loopRecap2.py
pyQttest|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/pyQttest.py
RFiles|1736360380575514586|/home/sigma69/Documents/GitHub/Python_Collections-/RFiles.py
JsonRecap|1736360380565514366|/home/sigma69/Documents/GitHub/Python_Collections-/JsonRecap.py
SumofDigit|1736360380635515907|/home/sigma69/Documents/GitHub/Python_Collections-/SumofDigit.py
question3|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question3.py
question2|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question2.py
question5|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question5.py
question4|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question4.py
question1|1736360381084525792|/home/sigma69/Documents/GitHub/Python_Collections-/question1.py
spellCheck|1736360381090525924|/home/sigma69/Documents/GitHub/Python_Collections-/spellCheck.py
question7|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question7.py
question6|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question6.py
PyDjuro.__init__|1736360380567514410|/home/sigma69/Documents/GitHub/Python_Collections-/PyDjuro/__init__.py
question9|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question9.py
inputexample|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/inputexample.py
question8|1736360381085525814|/home/sigma69/Documents/GitHub/Python_Collections-/question8.py
PyDjuro.test_arithmetic|1736360380568514432|/home/sigma69/Documents/GitHub/Python_Collections-/PyDjuro/test_arithmetic.py
retrieveWebPage|1736360381087525858|/home/sigma69/Documents/GitHub/Python_Collections-/retrieveWebPage.py
secretspy|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/secretspy.py
PycharmProjects.pytorchTest|1736360380569514454|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pytorchTest.py
multi_arrays|1736360380800519540|/home/sigma69/Documents/GitHub/Python_Collections-/multi_arrays.py
Filter|1736360380545513926|/home/sigma69/Documents/GitHub/Python_Collections-/Filter.py
Find_Text|1736360380545513926|/home/sigma69/Documents/GitHub/Python_Collections-/Find_Text.py
global_nonlocal|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/global_nonlocal.py
refresh_Graphing|1736360381086525836|/home/sigma69/Documents/GitHub/Python_Collections-/refresh_Graphing.py
sliceRecap|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/sliceRecap.py
mainConnect|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/mainConnect.py
array_test|1737055628309756901|/home/sigma69/Documents/GitHub/Python_Collections-/array_test.py
openFile|1736360380807519694|/home/sigma69/Documents/GitHub/Python_Collections-/openFile.py
Creat_textbox_withtext|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Creat_textbox_withtext.py
unpackingOperator|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/unpackingOperator.py
Area_Circle|1737049379817329170|/home/sigma69/Documents/GitHub/Python_Collections-/Area_Circle.py
dictionary_dict|1736360380725517889|/home/sigma69/Documents/GitHub/Python_Collections-/dictionary_dict.py
passwordGen|1736360380807519694|/home/sigma69/Documents/GitHub/Python_Collections-/passwordGen.py
underlyingMechansim|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/underlyingMechansim.py
zip|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/zip.py
calculator|1736360380637515951|/home/sigma69/Documents/GitHub/Python_Collections-/calculator.py
compress|1736360380646516149|/home/sigma69/Documents/GitHub/Python_Collections-/compress.py
in|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/in.py
droidImage|1736360380749518417|/home/sigma69/Documents/GitHub/Python_Collections-/droidImage.py
clean_Code|1736360380646516149|/home/sigma69/Documents/GitHub/Python_Collections-/clean_Code.py
ClassesandObjects|1736360380543513882|/home/sigma69/Documents/GitHub/Python_Collections-/ClassesandObjects.py
Creat_textbox|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Creat_textbox.py
secretspy1|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/secretspy1.py
PycharmProjects.DSBCday2|1736360380568514432|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/DSBCday2.py
ExceptionsRecap|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/ExceptionsRecap.py
hello|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/hello.py
Acronyms|1737053189624755782|/home/sigma69/Documents/GitHub/Python_Collections-/Acronyms.py
Car_Small|1736360380543513882|/home/sigma69/Documents/GitHub/Python_Collections-/Car_Small.py
spliting_arrays|1736360381090525924|/home/sigma69/Documents/GitHub/Python_Collections-/spliting_arrays.py
list_sets_dictionaries|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/list_sets_dictionaries.py
Comon_context|1736360380543513882|/home/sigma69/Documents/GitHub/Python_Collections-/Comon_context.py
DeepCopies|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/DeepCopies.py
Right_Vs_LeftFooter|1736360380576514608|/home/sigma69/Documents/GitHub/Python_Collections-/Right_Vs_LeftFooter.py
pictures|1736360380808519716|/home/sigma69/Documents/GitHub/Python_Collections-/pictures.py
DataSets1|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/DataSets1.py
Question31|1736360380574514564|/home/sigma69/Documents/GitHub/Python_Collections-/Question31.py
StringConcatination|1736360380635515907|/home/sigma69/Documents/GitHub/Python_Collections-/StringConcatination.py
strings|1736360381090525924|/home/sigma69/Documents/GitHub/Python_Collections-/strings.py
File_Delete|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/File_Delete.py
Question30|1736360380574514564|/home/sigma69/Documents/GitHub/Python_Collections-/Question30.py
decisions|1736360380725517889|/home/sigma69/Documents/GitHub/Python_Collections-/decisions.py
ntlkBook1|1736360380806519672|/home/sigma69/Documents/GitHub/Python_Collections-/ntlkBook1.py
add2Number|1737065336017354215|/home/sigma69/Documents/GitHub/Python_Collections-/add2Number.py
you_tubeDownload|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/you_tubeDownload.py
socket1|1736360381088525880|/home/sigma69/Documents/GitHub/Python_Collections-/socket1.py
SimpleFraction|1736360380577514630|/home/sigma69/Documents/GitHub/Python_Collections-/SimpleFraction.py
forLoops|1736360380751518461|/home/sigma69/Documents/GitHub/Python_Collections-/forLoops.py
lists2|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/lists2.py
numbersDivisibleby6numbers|1736360380806519672|/home/sigma69/Documents/GitHub/Python_Collections-/numbersDivisibleby6numbers.py
Question28|1736360380573514542|/home/sigma69/Documents/GitHub/Python_Collections-/Question28.py
Question29|1736360380573514542|/home/sigma69/Documents/GitHub/Python_Collections-/Question29.py
dispersion_plot|1736360380725517889|/home/sigma69/Documents/GitHub/Python_Collections-/dispersion_plot.py
if_string|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/if_string.py
meanDistribution|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/meanDistribution.py
repeatingDecimals|1736360381087525858|/home/sigma69/Documents/GitHub/Python_Collections-/repeatingDecimals.py
Characters|1736360380543513882|/home/sigma69/Documents/GitHub/Python_Collections-/Characters.py
Nhanes_DataSet2|1736360380567514410|/home/sigma69/Documents/GitHub/Python_Collections-/Nhanes_DataSet2.py
Area_CircleImportTest|1736449803953523345|/home/sigma69/Documents/GitHub/Python_Collections-/Area_CircleImportTest.py
Starting_Nltk|1736360380635515907|/home/sigma69/Documents/GitHub/Python_Collections-/Starting_Nltk.py
class_areaRectangle|1736360380646516149|/home/sigma69/Documents/GitHub/Python_Collections-/class_areaRectangle.py
easyplotly|1736360380749518417|/home/sigma69/Documents/GitHub/Python_Collections-/easyplotly.py
instaLoader|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/instaLoader.py
CalculateSum|1736360380543513882|/home/sigma69/Documents/GitHub/Python_Collections-/CalculateSum.py
fetchWebpage|1736360380750518439|/home/sigma69/Documents/GitHub/Python_Collections-/fetchWebpage.py
decoraters|1736360380725517889|/home/sigma69/Documents/GitHub/Python_Collections-/decoraters.py
ballAngle|1736450907089305109|/home/sigma69/Documents/GitHub/Python_Collections-/ballAngle.py
exceptions|1736360380750518439|/home/sigma69/Documents/GitHub/Python_Collections-/exceptions.py
mainfunction|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/mainfunction.py
listComprehseion|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/listComprehseion.py
joining_arrays|1736360380798519496|/home/sigma69/Documents/GitHub/Python_Collections-/joining_arrays.py
monitorBrowser|1736360380800519540|/home/sigma69/Documents/GitHub/Python_Collections-/monitorBrowser.py
waterMark|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/waterMark.py
PycharmProjects.pythonProject.__init__|1736360380569514454|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pythonProject|^
increArr|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/increArr.py
PycharmProjects.__init__|1736360380569514454|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects|^
fakers|1736360380750518439|/home/sigma69/Documents/GitHub/Python_Collections-/fakers.py
Sofawiki_RCE|1736360380577514630|/home/sigma69/Documents/GitHub/Python_Collections-/Sofawiki_RCE.py
increment_decrement|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/increment_decrement.py_Efficient.py
matrix_product|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/matrix_product.py
PycharmProjects.footiball|1736360380568514432|/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/footiball.py
Data_Management_cols|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_cols.py
mathFunctions|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/mathFunctions.py
Arithmetic_Operations|1736450579288240719|/home/sigma69/Documents/GitHub/Python_Collections-/Arithmetic_Operations.py
importmainfunction|1736360380797519474|/home/sigma69/Documents/GitHub/Python_Collections-/importmainfunction.py
matrix_productTime_Complexity|1736360380799519518|/home/sigma69/Documents/GitHub/Python_Collections-/matrix_productTime_Complexity.py
brownWords|1737057030871131518|/home/sigma69/Documents/GitHub/Python_Collections-/brownWords.py
Data_Management_groupby|1736360380544513904|/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_groupby.py
writeFileGUI|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/writeFileGUI.py
comprehensions|1736360380646516149|/home/sigma69/Documents/GitHub/Python_Collections-/comprehensions.py
button_GUI|1736360380637515951|/home/sigma69/Documents/GitHub/Python_Collections-/button_GUI.py
Search_similar_Text|1736360380577514630|/home/sigma69/Documents/GitHub/Python_Collections-/Search_similar_Text.py
tutology|1736360381099526122|/home/sigma69/Documents/GitHub/Python_Collections-/tutology.py
buttonMsgBox_GUI|1736360380637515951|/home/sigma69/Documents/GitHub/Python_Collections-/buttonMsgBox_GUI.py
usingArt|1736361521005842391|/home/sigma69/Documents/GitHub/Python_Collections-/usingArt.py
-- END DISKCACHE
-- START DICTIONARY
390
119=/home/sigma69/Documents/GitHub/Python_Collections-/Car_Small.py
328=functions
283=/home/sigma69/Documents/GitHub/Python_Collections-/panels.py
286=cal_lexical
256=reverseString
242=snippet1
166=simpleBoolean
340=snippet2
136=snippet3
356=tryExcept
317=/home/sigma69/Documents/GitHub/Python_Collections-/conditions_recap.py
66=displayInvestgatioMessages
215=/home/sigma69/Documents/GitHub/Python_Collections-/compress.py
130=FastNetSpeed
288=tes
186=EuclideanDistanceNumpy
276=sorted
191=/home/sigma69/Documents/GitHub/Python_Collections-/EuclideanDistance.py
320=Osinformation
266=indexPositions
224=ClassesObjetcs
307=/home/sigma69/Documents/GitHub/Python_Collections-/question2.py
63=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/flaskDocker.py
142=NetworkSockets
319=/home/sigma69/Documents/GitHub/Python_Collections-/Osinformation.py
342=test_GUI
241=/home/sigma69/Documents/GitHub/Python_Collections-/snippet1.py
192=EuclideanDistance
310=place_ValueOfNumbers
194=autogui
35=/home/sigma69/Documents/GitHub/Python_Collections-/question22.py
188=cal_func_lexical
333=/home/sigma69/Documents/GitHub/Python_Collections-/t_test.py
318=conditions_recap
140=loops
112=test_mult_func
218=PycharmProjects.pythonProject.shutills
139=/home/sigma69/Documents/GitHub/Python_Collections-/loops.py
219=/home/sigma69/Documents/GitHub/Python_Collections-/repeatingDecimals.py
104=monitorBrowserV2
180=Data_Management_splice
331=/home/sigma69/Documents/GitHub/Python_Collections-/nestedData.py
102=monitorBrowserV3
144=NestedRecap
353=/home/sigma69/Documents/GitHub/Python_Collections-/inputexample.py
253=/home/sigma69/Documents/GitHub/Python_Collections-/HandlingText.py
273=/home/sigma69/Documents/GitHub/Python_Collections-/fetchWebpage.py
50=conditions2
299=/home/sigma69/Documents/GitHub/Python_Collections-/multi_arrays.py
336=http_status
265=/home/sigma69/Documents/GitHub/Python_Collections-/indexPositions.py
29=/home/sigma69/Documents/GitHub/Python_Collections-/maps.py
52=inputs
131=/home/sigma69/Documents/GitHub/Python_Collections-/numbersDivisibleby6numbers.py
280=Count_Vocabulary
184=Nhanes_DataSet
244=PycharmProjects.pythonProject.points
33=/home/sigma69/Documents/GitHub/Python_Collections-/Acronyms.py
374=CSVDataset.__init__
326=PycharmProjects.pythonProject.main
37=/home/sigma69/Documents/GitHub/Python_Collections-/add2Number.py
90=powerRecursion
295=/home/sigma69/Documents/GitHub/Python_Collections-/mainfunction.py
168=imd_dataset
279=/home/sigma69/Documents/GitHub/Python_Collections-/Count_Vocabulary.py
9=/home/sigma69/Documents/GitHub/Python_Collections-/question23.py
177=/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_cols.py
49=/home/sigma69/Documents/GitHub/Python_Collections-/conditions2.py
339=/home/sigma69/Documents/GitHub/Python_Collections-/snippet2.py
341=/home/sigma69/Documents/GitHub/Python_Collections-/test_GUI.py
169=/home/sigma69/Documents/GitHub/Python_Collections-/File_Delete.py
323=/home/sigma69/Documents/GitHub/Python_Collections-/you_tubeDownload.py
387=Glasses
88=pyQttest
308=question2
360=question5
272=question4
116=question1
96=spellCheck
314=question7
26=question6
230=question9
234=question8
163=/home/sigma69/Documents/GitHub/Python_Collections-/comprehensions.py
149=/home/sigma69/Documents/GitHub/Python_Collections-/module.py
125=/home/sigma69/Documents/GitHub/Python_Collections-/Question31.py
385=Football
67=/home/sigma69/Documents/GitHub/Python_Collections-/lists2.py
32=PycharmProjects.pytorchTest
252=global_nonlocal
287=/home/sigma69/Documents/GitHub/Python_Collections-/tes.py
347=/home/sigma69/Documents/GitHub/Python_Collections-/Creat_textbox.py
368=refresh_Graphing
311=/home/sigma69/Documents/GitHub/Python_Collections-/SumofDigit.py
316=sliceRecap
237=/home/sigma69/Documents/GitHub/Python_Collections-/question24.py
72=array_test
346=Creat_textbox_withtext
7=/home/sigma69/Documents/GitHub/Python_Collections-/Right_Vs_LeftFooter.py
321=/home/sigma69/Documents/GitHub/Python_Collections-/dictionary_dict.py
24=unpackingOperator
183=/home/sigma69/Documents/GitHub/Python_Collections-/Nhanes_DataSet.py
297=/home/sigma69/Documents/GitHub/Python_Collections-/menutest.py
361=/home/sigma69/Documents/GitHub/Python_Collections-/waterMark.py
359=/home/sigma69/Documents/GitHub/Python_Collections-/question5.py
58=passwordGen
322=dictionary_dict
381=Rectangle.__init__
386=Football.Gkeeper
187=/home/sigma69/Documents/GitHub/Python_Collections-/cal_func_lexical.py
207=/home/sigma69/Documents/GitHub/Python_Collections-/SimpleFraction.py
226=ClassesandObjects
348=Creat_textbox
213=/home/sigma69/Documents/GitHub/Python_Collections-/Sofawiki_RCE.py
240=secretspy1
388=Sunglasses
260=ExceptionsRecap
248=hello
34=Acronyms
290=list_sets_dictionaries
337=/home/sigma69/Documents/GitHub/Python_Collections-/stringFeature.py
18=DeepCopies
245=/home/sigma69/Documents/GitHub/Python_Collections-/Question30.py
350=DataSets1
126=Question31
51=/home/sigma69/Documents/GitHub/Python_Collections-/inputs.py
372=strings
289=/home/sigma69/Documents/GitHub/Python_Collections-/list_sets_dictionaries.py
170=File_Delete
246=Question30
22=decisions
87=/home/sigma69/Documents/GitHub/Python_Collections-/pyQttest.py
38=add2Number
205=/home/sigma69/Documents/GitHub/Python_Collections-/question25.py
327=/home/sigma69/Documents/GitHub/Python_Collections-/functions.py
189=/home/sigma69/Documents/GitHub/Python_Collections-/brownWords.py
324=you_tubeDownload
138=socket1
257=/home/sigma69/Documents/GitHub/Python_Collections-/Question29.py
227=/home/sigma69/Documents/GitHub/Python_Collections-/mathFunctions.py
113=/home/sigma69/Documents/GitHub/Python_Collections-/underlyingMechansim.py
208=SimpleFraction
28=forLoops
382=MLP.__init__
147=/home/sigma69/Documents/GitHub/Python_Collections-/listComprehseion.py
68=lists2
101=/home/sigma69/Documents/GitHub/Python_Collections-/monitorBrowserV3.py
132=numbersDivisibleby6numbers
43=/home/sigma69/Documents/GitHub/Python_Collections-/PyDjuro/arithmetic.py
262=Question28
258=Question29
306=if_string
271=/home/sigma69/Documents/GitHub/Python_Collections-/question4.py
6=meanDistribution
220=repeatingDecimals
1=/home/sigma69/Documents/GitHub/Python_Collections-/Arithmetic_Operations.py
83=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/footiball.py
172=Nhanes_DataSet2
274=fetchWebpage
304=decoraters
390=TestArithmetic
243=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pythonProject/points.py
285=/home/sigma69/Documents/GitHub/Python_Collections-/cal_lexical.py
60=ballAngle
247=/home/sigma69/Documents/GitHub/Python_Collections-/hello.py
155=/home/sigma69/Documents/GitHub/Python_Collections-/increment_decrement.py_Efficient.py
89=/home/sigma69/Documents/GitHub/Python_Collections-/powerRecursion.py
91=/home/sigma69/Documents/GitHub/Python_Collections-/currencyConvertor.py
201=/home/sigma69/Documents/GitHub/Python_Collections-/auto_library.py
269=/home/sigma69/Documents/GitHub/Python_Collections-/question16.py
25=/home/sigma69/Documents/GitHub/Python_Collections-/question6.py
389=Hatch_Back
79=/home/sigma69/Documents/GitHub/Python_Collections-/question26.py
107=/home/sigma69/Documents/GitHub/Python_Collections-/buttonMsgBox_GUI.py
39=/home/sigma69/Documents/GitHub/Python_Collections-/calculator.py
214=Sofawiki_RCE
261=/home/sigma69/Documents/GitHub/Python_Collections-/Question28.py
315=/home/sigma69/Documents/GitHub/Python_Collections-/sliceRecap.py
335=/home/sigma69/Documents/GitHub/Python_Collections-/http_status.py
349=/home/sigma69/Documents/GitHub/Python_Collections-/DataSets1.py
84=PycharmProjects.footiball
178=Data_Management_cols
117=/home/sigma69/Documents/GitHub/Python_Collections-/Area_Circle.py
228=mathFunctions
2=Arithmetic_Operations
95=/home/sigma69/Documents/GitHub/Python_Collections-/spellCheck.py
357=/home/sigma69/Documents/GitHub/Python_Collections-/plotReview.py
97=/home/sigma69/Documents/GitHub/Python_Collections-/instaLoader.py
164=comprehensions
93=/home/sigma69/Documents/GitHub/Python_Collections-/pictures.py
137=/home/sigma69/Documents/GitHub/Python_Collections-/socket1.py
209=/home/sigma69/Documents/GitHub/Python_Collections-/fakers.py
108=buttonMsgBox_GUI
277=/home/sigma69/Documents/GitHub/Python_Collections-/RFiles.py
198=usingArt
5=/home/sigma69/Documents/GitHub/Python_Collections-/meanDistribution.py
59=/home/sigma69/Documents/GitHub/Python_Collections-/ballAngle.py
44=PyDjuro.arithmetic
251=/home/sigma69/Documents/GitHub/Python_Collections-/global_nonlocal.py
82=PycharmProjects.rando
249=/home/sigma69/Documents/GitHub/Python_Collections-/inputcalls.py
254=HandlingText
371=/home/sigma69/Documents/GitHub/Python_Collections-/strings.py
124=monthlySalary
31=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pytorchTest.py
159=/home/sigma69/Documents/GitHub/Python_Collections-/question15.py
334=t_test
12=Right_vs_LeftFooter2
146=test_tensor
55=/home/sigma69/Documents/GitHub/Python_Collections-/question27.py
23=/home/sigma69/Documents/GitHub/Python_Collections-/unpackingOperator.py
150=module
292=PyDjuro.setup
197=/home/sigma69/Documents/GitHub/Python_Collections-/usingArt.py
355=/home/sigma69/Documents/GitHub/Python_Collections-/tryExcept.py
358=plotReview
105=/home/sigma69/Documents/GitHub/Python_Collections-/openFile.py
54=printName
20=mathOperators
193=/home/sigma69/Documents/GitHub/Python_Collections-/autogui.py
200=appendlist
129=/home/sigma69/Documents/GitHub/Python_Collections-/FastNetSpeed.py
21=/home/sigma69/Documents/GitHub/Python_Collections-/decisions.py
332=nestedData
36=question22
10=question23
282=Right_Vs_LeftFooters
74=question20
284=panels
366=question21
80=question26
56=question27
173=/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_splice2.py
238=question24
206=question25
99=/home/sigma69/Documents/GitHub/Python_Collections-/monitorBrowser.py
109=/home/sigma69/Documents/GitHub/Python_Collections-/button_GUI.py
162=xmlPy
313=/home/sigma69/Documents/GitHub/Python_Collections-/question7.py
196=ballPlot
343=/home/sigma69/Documents/GitHub/Python_Collections-/PyDjuro/test_arithmetic.py
42=GoogleApi
199=/home/sigma69/Documents/GitHub/Python_Collections-/appendlist.py
223=/home/sigma69/Documents/GitHub/Python_Collections-/ClassesObjetcs.py
92=currencyConvertor
122=Question
298=menutest
182=question11
165=/home/sigma69/Documents/GitHub/Python_Collections-/simpleBoolean.py
232=question12
71=/home/sigma69/Documents/GitHub/Python_Collections-/array_test.py
85=/home/sigma69/Documents/GitHub/Python_Collections-/easyplotly.py
217=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pythonProject/shutills.py
364=question10
160=question15
179=/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_splice.py
270=question16
264=question13
202=auto_library
268=question14
291=/home/sigma69/Documents/GitHub/Python_Collections-/PyDjuro/setup.py
294=question19
62=question17
158=question18
161=/home/sigma69/Documents/GitHub/Python_Collections-/xmlPy.py
267=/home/sigma69/Documents/GitHub/Python_Collections-/question14.py
281=/home/sigma69/Documents/GitHub/Python_Collections-/Right_Vs_LeftFooters.py
345=/home/sigma69/Documents/GitHub/Python_Collections-/Creat_textbox_withtext.py
239=/home/sigma69/Documents/GitHub/Python_Collections-/secretspy1.py
338=stringFeature
45=/home/sigma69/Documents/GitHub/Python_Collections-/increArr.py
380=MLP
229=/home/sigma69/Documents/GitHub/Python_Collections-/question9.py
41=/home/sigma69/Documents/GitHub/Python_Collections-/GoogleApi.py
250=inputcalls
176=Data_Management
195=/home/sigma69/Documents/GitHub/Python_Collections-/ballPlot.py
275=/home/sigma69/Documents/GitHub/Python_Collections-/sorted.py
235=/home/sigma69/Documents/GitHub/Python_Collections-/clean_Code.py
64=PycharmProjects.flaskDocker
30=maps
378=MyClass1
379=MyClass2
61=/home/sigma69/Documents/GitHub/Python_Collections-/question17.py
325=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/pythonProject/main.py
174=Data_Management_splice2
154=loopRecap2
278=RFiles
76=JsonRecap
53=/home/sigma69/Documents/GitHub/Python_Collections-/printName.py
312=SumofDigit
151=/home/sigma69/Documents/GitHub/Python_Collections-/retrieveWebPage.py
309=/home/sigma69/Documents/GitHub/Python_Collections-/place_ValueOfNumbers.py
15=/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management_groupby.py
13=/home/sigma69/Documents/GitHub/Python_Collections-/joining_arrays.py
263=/home/sigma69/Documents/GitHub/Python_Collections-/question13.py
103=/home/sigma69/Documents/GitHub/Python_Collections-/monitorBrowserV2.py
354=inputexample
344=PyDjuro.test_arithmetic
19=/home/sigma69/Documents/GitHub/Python_Collections-/mathOperators.py
65=/home/sigma69/Documents/GitHub/Python_Collections-/displayInvestgatioMessages.py
152=retrieveWebPage
111=/home/sigma69/Documents/GitHub/Python_Collections-/test_mult_func.py
221=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/DSBCday2.py
81=/home/sigma69/Documents/GitHub/Python_Collections-/PycharmProjects/rando.py
123=/home/sigma69/Documents/GitHub/Python_Collections-/monthlySalary.py
171=/home/sigma69/Documents/GitHub/Python_Collections-/Nhanes_DataSet2.py
127=/home/sigma69/Documents/GitHub/Python_Collections-/Characters.py
352=secretspy
175=/home/sigma69/Documents/GitHub/Python_Collections-/Data_Management.py
47=/home/sigma69/Documents/GitHub/Python_Collections-/droidImage.py
233=/home/sigma69/Documents/GitHub/Python_Collections-/question8.py
300=multi_arrays
212=Filter
69=/home/sigma69/Documents/GitHub/Python_Collections-/spliting_arrays.py
106=openFile
153=/home/sigma69/Documents/GitHub/Python_Collections-/loopRecap2.py
377=Rectangle
135=/home/sigma69/Documents/GitHub/Python_Collections-/snippet3.py
157=/home/sigma69/Documents/GitHub/Python_Collections-/question18.py
375=Compare
118=Area_Circle
114=underlyingMechansim
4=zip
40=calculator
216=compress
48=droidImage
57=/home/sigma69/Documents/GitHub/Python_Collections-/passwordGen.py
236=clean_Code
143=/home/sigma69/Documents/GitHub/Python_Collections-/NestedRecap.py
329=/home/sigma69/Documents/GitHub/Python_Collections-/class_areaRectangle.py
27=/home/sigma69/Documents/GitHub/Python_Collections-/forLoops.py
222=PycharmProjects.DSBCday2
231=/home/sigma69/Documents/GitHub/Python_Collections-/question12.py
383=Compare.__init__
351=/home/sigma69/Documents/GitHub/Python_Collections-/secretspy.py
70=spliting_arrays
120=Car_Small
305=/home/sigma69/Documents/GitHub/Python_Collections-/if_string.py
8=Right_Vs_LeftFooter
11=/home/sigma69/Documents/GitHub/Python_Collections-/Right_vs_LeftFooter2.py
301=/home/sigma69/Documents/GitHub/Python_Collections-/writeFileGUI.py
94=pictures
167=/home/sigma69/Documents/GitHub/Python_Collections-/imd_dataset.py
78=StringConcatination
384=Car.__init__
259=/home/sigma69/Documents/GitHub/Python_Collections-/ExceptionsRecap.py
303=/home/sigma69/Documents/GitHub/Python_Collections-/decoraters.py
293=/home/sigma69/Documents/GitHub/Python_Collections-/question19.py
369=/home/sigma69/Documents/GitHub/Python_Collections-/matrix_product.py
75=/home/sigma69/Documents/GitHub/Python_Collections-/JsonRecap.py
255=/home/sigma69/Documents/GitHub/Python_Collections-/reverseString.py
211=/home/sigma69/Documents/GitHub/Python_Collections-/Filter.py
128=Characters
181=/home/sigma69/Documents/GitHub/Python_Collections-/question11.py
134=Area_CircleImportTest
185=/home/sigma69/Documents/GitHub/Python_Collections-/EuclideanDistanceNumpy.py
330=class_areaRectangle
86=easyplotly
225=/home/sigma69/Documents/GitHub/Python_Collections-/ClassesandObjects.py
98=instaLoader
73=/home/sigma69/Documents/GitHub/Python_Collections-/question20.py
115=/home/sigma69/Documents/GitHub/Python_Collections-/question1.py
203=/home/sigma69/Documents/GitHub/Python_Collections-/matrix_productTime_Complexity.py
367=/home/sigma69/Documents/GitHub/Python_Collections-/refresh_Graphing.py
141=/home/sigma69/Documents/GitHub/Python_Collections-/NetworkSockets.py
296=mainfunction
148=listComprehseion
373=Car
14=joining_arrays
100=monitorBrowser
362=waterMark
46=increArr
210=fakers
156=increment_decrement
370=matrix_product
145=/home/sigma69/Documents/GitHub/Python_Collections-/test_tensor.py
121=/home/sigma69/Documents/GitHub/Python_Collections-/Question.py
17=/home/sigma69/Documents/GitHub/Python_Collections-/DeepCopies.py
204=matrix_productTime_Complexity
133=/home/sigma69/Documents/GitHub/Python_Collections-/Area_CircleImportTest.py
190=brownWords
16=Data_Management_groupby
302=writeFileGUI
3=/home/sigma69/Documents/GitHub/Python_Collections-/zip.py
110=button_GUI
363=/home/sigma69/Documents/GitHub/Python_Collections-/question10.py
77=/home/sigma69/Documents/GitHub/Python_Collections-/StringConcatination.py
376=CSVDataset
365=/home/sigma69/Documents/GitHub/Python_Collections-/question21.py
-- END DICTIONARY
-- START TREE 1
305
C|1|C!1^112#1*19@
L1|1|L1!3^17#1*35@
L2|1|L2!3^18#1*35@
L3|1|L3!3^20#1*35@
N|1|N!5^5#1*51@
X|4|X!7^22#1*67@X!5^4#1*51@X!9^17#1*83@X!11^17#1*99@
Y|1|Y!9^18#1*83@
a|9|a!13^17#1*115@a!15^11#1*131@a!1^34#1*19@a!17^29#1*147@a!19^6#1*163@a!21^9#1*179@a!23^1#1*195@a!25^1#1*211@a!27^17#1*227@
abb|2|abbrevs!29^42#1*243@abbrevs_upper!29^47#1*243@
acc|3|acc!31^157#1*259@accuracy!7^33#1*67@accuracy!11^28#1*99@
acr|1|acronyms!33^44#1*275@
act|2|actor!35^9#1*291@actor!9^72#1*83@
add|5|add_TwoNumbers!37^37#5*306@add!39^11#5*322@address!41^21#5*339@add!43^2#5*354@add_one!45^1#5*370@
adm|2|adminPass!47^72#5*387@adminPassword!47^71#5*387@
age|3|age!49^2#1*403@age!51^13#1*419@age!53^2#1*435@
ai|2|ai!1^62#1*19@ai!19^7#1*163@
air|1|airLineData!55^3#1*451@
all|1|all!57^8#1*467@
ang|1|angle!59^14#1*483@
ans|1|Answer!61^12#1*499@
api|2|api_key!41^4#1*339@api_url!63^6#1*515@
app|2|app!63^4#1*515@application_status!65^3#1*531@
are|1|areas!67^9#1*547@
arg|1|args!47^12#1*387@
arr|12|arr2!13^11#1*115@arr2!1^30#1*19@Arr2!69^7#1*563@Arr!1^103#1*19@arr1!71^15#5*578@arr1!13^10#1*115@arr!1^28#1*19@Arr2!1^108#1*19@arr3!13^12#1*115@Arr1!69^6#1*563@array!45^6#1*371@Arr!69^5#1*563@
asc|1|ascii_art!73^5#1*595@
ast|1|aString!75^5#1*611@
at|1|at!77^3#1*627@
ave|1|averageTemperature!79^34#1*643@
awa|4|AwayxG!81^5#1*659@awayTeam!83^18#1*675@AwayxG_goals!81^22#5*659@AwayxG_copy!81^19#5*659@
ax|1|ax!85^8#1*691@
axe|1|axes!9^77#1*83@
b|5|b!25^2#1*211@b!21^16#1*179@b!13^22#1*115@b!19^12#1*163@b!23^2#1*195@
b1_|1|b1_clicked!87^23#5*706@
b2_|1|b2_clicked!87^26#5*706@
bal|2|ballAngle!59^16#1*483@ballRetention!83^41#1*675@
ban|1|banner!47^16#5*386@
bas|3|base!89^6#1*723@base_currency_var!91^55#1*739@base_currency_dropdown!91^56#1*739@
bat|1|bath!67^6#1*547@
bed|1|bed!67^5#1*547@
bi|1|bi!19^13#1*163@
ble|1|blendWhite!93^100#5*754@
blo|1|blob!95^3#1*771@
bot|1|bot!97^5#1*787@
bro|3|browsers!99^4#1*803@browsers!101^6#1*819@browsers!103^7#1*835@
bt|1|bt!105^19#1*851@
but|5|button!107^17#1*867@button!109^22#1*883@button2!109^23#1*883@button3!109^24#1*883@button!111^27#2*899@
c|4|c!13^27#1*115@c!19^18#1*163@c!21^41#1*179@c!113^15#1*915@
c1|1|c1!115^9#1*931@
cal|2|calculate_circle_area!117^22#5*946@calculate_cylinder_area!117^35#5*946@
car|6|Car!119^13#7*961@Car!121^1#7*977@career_marketing!123^3#1*995@career_history!123^4#1*995@Car!125^1#7*1009@career_nursing!123^2#1*995@
cel|1|cells!9^24#1*83@
cen|1|centimeters!61^9#1*499@
cha|4|charcter!127^4#1*1027@changePixel!93^43#5*754@chars!47^34#1*387@changePixel2!93^56#5*754@
che|2|checkNetSpeed!129^5#5*1042@check_divisibility!131^2#5*1058@
ci|1|ci!19^19#1*163@
cir|2|circle_area!133^30#1*1075@circle_area!117^53#5*947@
cl1|2|cl1!135^1#1*1091@cl1_unicode!135^2#1*1091@
cla|2|class_report!7^35#1*67@class_report!11^30#1*99@
cli|1|client!137^8#1*1107@
clu|1|clubs!139^11#1*1123@
cmd|1|cmd!141^6#1*1139@
col|2|color!143^49#1*1155@COLAB!145^8#5*1171@
com|2|compri!147^29#1*1187@Compare!115^1#7*929@
con|8|conf_matrix!7^34#1*67@convert_button!91^66#1*739@console!37^35#1*307@convert_currency!91^25#5*738@console!33^48#1*275@conf_matrix!11^29#1*99@connect!149^3#5*1202@cone!35^4#1*291@
coo|1|coord!9^34#9*83@
cop|4|copyAndMirrorCat!93^124#5*754@copied_outer_list!17^3#1*147@copyCaterpillar!93^108#5*754@copied_version!17^2#1*147@
cor|2|corner_id!9^39#13*83@correct_syntax!95^5#1*771@
cou|5|countRows!79^18#1*643@counts!151^5#1*1219@count2!153^2#1*1235@countCols!79^22#1*643@count!153^1#1*1235@
cre|1|create_array!155^3#5*1250@
csv|1|CSVDataset!31^25#7*257@
ctx|1|ctx!41^16#1*339@
cyc|1|cycles_per_second!157^9#1*1267@
cyl|2|cylinder_area!117^54#5*947@cylinder_area!133^31#1*1075@
d|6|d!75^7#1*611@d!159^4#1*1283@d!13^32#1*115@d!1^49#1*19@d!21^42#1*179@d!19^24#1*163@
dat|7|data!141^10#5*1139@data!11^14#1*99@data!161^9#1*1299@data!7^19#1*67@data!163^1#1*1315@data_type!165^6#1*1331@data!41^31#5*339@
dd|1|dd!167^12#1*1347@
del|4|deltax!9^20#1*83@Delete_File!169^10#5*1362@Delete_btn!169^16#1*1363@deltay!9^21#1*83@
df|10|df!167^4#1*1347@df!171^5#1*1379@df!173^5#1*1395@df!175^5#1*1411@df!177^5#1*1427@df!179^6#1*1443@df!79^12#1*643@df!181^5#1*1459@df!15^14#1*131@df!183^5#1*1475@
df_|1|df_cols!177^6#1*1427@
di|2|di!19^25#1*163@di!1^77#1*19@
dis|17|distance!185^11#1*1491@display_title!187^7#5*1506@display_title!189^4#5*1522@display_title!37^7#5*306@distance!191^9#1*1539@display_title!193^4#5*1554@display_title!71^7#5*578@display_title!195^6#5*1570@display_title!1^21#5*18@display_title!197^3#5*1586@display_title!199^4#5*1602@distance!157^11#1*1267@display_title!117^16#5*946@display_title!133^17#5*1074@display_title!201^4#5*1618@display_title!59^4#5*482@display_title!33^7#5*274@
div|1|divide!43^4#5*354@
dom|2|domestic_animals!27^26#1*227@domainName!77^2#1*627@
e|2|e!19^38#1*163@e!159^6#1*1283@
ech|5|echoPhrase!109^12#5*882@echo_phrase_2!109^18#5*882@echoText!107^14#5*866@echoPhraseInMsgBox!107^10#5*866@echo_phrase1!109^15#5*882@
ei|1|ei!19^39#1*163@
ema|2|email_status!65^4#1*531@emails!97^30#1*787@
emp|1|empty!199^33#1*1603@
end|1|end_time!203^15#1*1635@
ent|1|entry_amount!91^50#1*739@
euc|2|euclidean_Distance!185^5#5*1490@euclidean_Distance!191^3#5*1538@
eva|1|evaluate_model!31^119#5*258@
exe|2|execution_time_np_dot!203^16#1*1635@execution_time_dot!203^22#1*1635@
exp|2|exp!89^7#1*723@expr!205^5#1*1651@
f|2|f!207^12#1*1667@f!19^44#1*163@
fak|1|fake!209^2#1*1683@
fha|1|fhand!151^3#1*1219@
fi|1|fi!19^45#1*163@
fig|1|fig!85^7#1*691@
fil|8|filter_testing!211^20#1*1699@filtered_words!211^21#1*1699@filename!213^14#1*1715@filtered!215^7#1*1731@files!213^65#1*1715@file_or_dir_path!217^4#1*1747@filtered_lists!211^29#1*1699@file_name!167^3#1*1347@
fin|1|find_repeating_length!219^1#5*1762@
fir|2|first_name!51^10#1*419@First!221^10#1*1779@
fol|4|followings_df!97^53#1*787@followers_df!97^44#1*787@followings!97^50#1*787@followers!97^41#1*787@
fon|1|font!73^4#1*595@
foo|2|Football!223^6#7*1793@Football!225^7#7*1809@
fou|3|fourx!163^11#1*1315@fourxsub!163^15#1*1315@fourWheels!143^5#1*1155@
fun|9|func!227^4#1*1827@func!229^8#1*1843@fun2!111^12#5*898@funcs!231^11#1*1859@function!229^1#5*1842@function!233^1#5*1874@func_text!235^1#5*1890@func_to_calculate!9^3#5*82@fun1!111^7#5*898@
g|2|g!237^8#1*1907@g!19^50#1*163@
gen|2|generate_password!239^7#5*1922@gender!51^14#1*419@
get|5|get_exchange_rate!91^6#5*738@get_network_connections!101^8#5*818@get_network_connections!103^9#5*834@get_json_data!63^9#5*514@get_id!9^8#5*82@
gi|1|gi!19^51#1*163@
gla|2|glasses!241^12#1*1939@Glasses!241^1#7*1937@
goa|3|goalDiff!243^3#1*1955@goalsFor!243^6#1*1955@goalsAgainst!243^7#1*1955@
gra|2|gravity!195^15#1*1571@grayScalePixel!93^93#5*754@
gre|3|greetings!73^7#1*595@greet!245^13#5*1970@greeting_doubled!29^39#1*243@
gro|1|group!217^8#1*1747@
h|1|h!19^56#1*163@
hal|1|hall!67^2#1*547@
hat|2|Hatch_Back!119^17#7*961@hatch!119^22#1*963@
hei|2|height!117^52#5*947@height!133^27#1*1075@
hel|1|Hello!247^8#5*1986@
hi|1|hi!19^57#1*163@
hom|4|HomexG_goals!81^21#5*659@HomexG!81^4#1*659@homeTeam!83^17#1*675@HomexG_copy!81^18#5*659@
hor|1|horizontalPosition!59^11#1*483@
hos|1|HOST!47^69#5*387@
i|14|i!249^1#1*2003@i!251^13#1*2019@i!253^4#1*2035@i!21^25#1*179@i!171^7#1*1379@i!255^4#1*2051@i!173^6#1*1395@i!127^13#1*1027@i!257^4#1*2067@i!259^17#5*2083@i!179^7#1*1443@i!261^17#1*2099@i!139^17#1*1123@i!263^1#1*2115@
ind|2|index!265^13#5*2131@index!267^4#1*2147@
inf|1|info!143^44#1*1155@
inn|1|inner_list!147^27#1*1187@
inp|1|input!161^30#1*1299@
int|2|interactor!9^66#1*83@interactor!35^16#1*291@
inv|1|investigationMessage!65^1#5*530@
ip_|1|ip_address!269^1#5*2162@
ipa|2|IPad!269^8#1*2163@ipaddress!269^9#1*2163@
ite|2|items!147^1#1*1187@items_array!259^5#5*2083@
j|10|j!139^24#1*1123@j!257^6#1*2067@j!251^14#1*2019@j!253^7#1*2035@j!15^16#1*131@j!263^2#1*2115@j!171^8#1*1379@j!75^16#1*611@j!127^12#1*1027@j!259^16#5*2083@
joi|1|joinChar!127^10#1*1027@
js|1|js!41^35#9*339@
k|3|k!171^9#1*1379@k!271^4#9*2179@k!253^6#1*2035@
kee|3|keep_events!211^1#5*1698@keepEvent!211^12#5*1698@keep_events!147^10#5*1186@
kit|1|kit!67^3#1*547@
kva|1|kval_pairs!273^21#1*2195@
l|3|l!275^15#1*2211@l!277^5#1*2227@l!279^6#1*2243@
l1|1|l1!23^10#1*195@
l2|1|l2!23^11#1*195@
lab|2|label_1!107^19#1*867@labels!267^3#1*2147@
las|2|lasocket!141^3#1*1139@Last_name!51^12#1*419@
lat|2|latex_code!205^7#1*1651@lat!41^46#5*339@
lef|8|left_footed!281^17#1*2259@left_f1!281^42#1*2259@left_footed!11^11#1*99@left_z!281^32#1*2259@left_recall!281^41#1*2259@left_footed!7^16#1*67@left_success_rate!281^21#1*2259@left_precision!281^40#1*2259@
len|5|length_1_19!219^16#1*1763@length_1_21!219^17#1*1763@length!283^7#1*2275@length_1_29!219^18#1*1763@length!57^10#1*467@
lex|11|lex5!285^24#1*2291@lex3!285^15#1*2291@lex3!287^15#1*2307@lex5!287^24#1*2307@lex!285^5#1*2291@lexical_diversity!187^15#5*1506@lex4!285^20#1*2291@lex2!287^11#1*2307@lex2!285^11#1*2291@lex4!287^20#1*2307@lex!287^5#1*2307@
lig|1|lightenPixel!93^84#5*754@
lis|5|Lists_Participants!289^14#1*2323@list4!3^13#1*35@list2!3^2#1*35@list1!3^1#1*35@list3!3^4#1*35@
liv|1|liv!67^4#1*547@
lng|1|lng!41^47#5*339@
loc|1|location!41^49#5*339@
log|2|login_url!213^20#1*1715@login_data!213^27#1*1715@
lon|2|long_description!291^4#5*2339@long_url!293^3#1*2355@
low|1|lower!57^3#1*467@
lst|5|lst!29^37#1*243@lst2!211^28#1*1699@lst!211^26#1*1699@lst_check!211^18#1*1699@lst!161^33#1*1299@
m|2|m!221^28#1*1779@m!1^44#1*19@
mai|3|main!213^6#5*1714@main!295^9#5*2370@main!297^10#5*2386@
map|2|mapper!35^6#1*291@mapper!9^70#1*83@
mas|1|master!111^18#2*899@
mat|1|matrix!299^8#1*2403@
max|2|maxTemperature!79^26#1*643@max_number!27^16#1*227@
md|1|md!1^54#1*19@
mdi|1|mdi!1^82#1*19@
mea|1|mean_success_rate!281^24#1*2259@
mes|1|mesh!9^47#1*83@
mi|1|mi!1^72#1*19@
mid|1|Middle_name!51^11#1*419@
min|1|minTemperature!79^30#1*643@
mlp|1|MLP!31^57#7*257@
mod|5|model!7^26#1*67@mod1!251^23#5*2018@model!31^153#1*259@mod_1a!251^27#5*2018@model!11^21#1*99@
mon|6|monitor_browser_activity!103^25#5*834@monitor_browser_processes!99^6#5*802@monitor_browser_activity!101^36#5*818@monthly_salary_history!123^9#1*995@monthly_salary_nursing!123^7#1*995@monthly_salary_marketing!123^8#1*995@
mul|4|multiply!43^6#5*354@multiply_By_two!147^2#1*1187@multiply_By_two_two!147^3#1*1187@multiplication!29^1#5*242@
my_|2|my_text_box!301^30#1*2419@my_decorator!303^1#5*2434@
myc|2|MyClass2!297^5#7*2385@MyClass1!297^1#7*2385@
n|2|n!237^12#1*1907@n!221^1#1*1779@
nam|4|name_check!305^2#1*2451@name!53^1#1*435@names!307^6#1*2467@names!289^23#1*2323@
nan|1|nanosecond!61^10#1*499@
neg|3|negative!93^16#5*754@negative2!93^26#5*754@negatePixel!93^49#5*754@
nes|1|nestedAutoMobiles!143^10#1*1155@
new|2|newTweet!243^31#5*1954@new_data!163^7#1*1315@
nin|1|nines!163^19#1*1315@
nor|1|norms_generator!9^59#1*83@
num|16|num1!37^51#1*307@nums!29^8#1*243@number!309^14#1*2483@numbers!215^4#1*1731@number!311^11#1*2499@num!261^1#1*2099@nums2!265^2#1*2131@number!131^20#1*1059@numbers!57^5#1*467@numbers!37^50#1*307@numbers!313^1#5*2514@numbers!315^1#1*2531@nums!265^1#1*2131@number_sum!311^2#5*2498@num2!37^52#1*307@nums!259^37#1*2083@
obj|1|objects!75^14#5*610@
ope|4|operating_system!317^16#1*2547@open_text!301^8#5*2418@open_btn!301^33#1*2419@open_file!105^10#5*850@
ori|2|original_array!155^10#1*1251@original!17^1#1*147@
os_|4|os_name!319^4#1*2563@os_version!319^5#1*2563@os_details!319^7#1*2563@os_release!319^6#1*2563@
out|3|outline_actor!9^89#1*83@outline_filter!9^83#1*83@outline_mapper!9^87#1*83@
ove|2|overwrite_text!301^24#5*2418@overwrite_btn!301^45#1*2419@
p|1|p!257^1#1*2067@
pag|1|page!273^4#1*2195@
par|3|parms!41^24#5*339@parser!47^10#1*387@param!77^11#1*627@
pas|5|passw!317^4#1*2547@passing!259^26#1*2083@passCompletion!83^42#1*675@password!57^12#1*467@passw_input!317^5#1*2547@
pat|2|path!31^149#1*259@PATH!47^70#5*387@
per|2|personsAga!321^1#1*2579@percentage!187^19#5*1506@
php|1|php_shell_code!213^54#1*1715@
pla|1|play_list!323^4#1*2595@
plu|1|plus_four!259^39#1*2083@
poi|3|pointsGained!243^2#1*1955@points!9^23#1*83@point_data!9^51#1*83@
pos|2|possession!83^40#1*675@postRequest!47^44#5*386@
pow|1|power!89^1#5*722@
pre|2|predict!31^139#5*258@prepare_data!31^88#5*258@
pri|3|print_hi!325^7#5*2610@print_array!155^6#5*1250@printColor!93^11#5*754@
pro|3|proxies!47^8#1*387@profile!97^7#1*787@profit!327^14#5*2626@
pt1|2|pt1!191^6#1*1539@pt1!185^8#1*1491@
pt2|2|pt2!185^9#1*1491@pt2!191^7#1*1539@
qua|2|quad!9^38#13*83@quadrupleStuff!29^21#5*242@
r|4|r!105^8#1*851@r!109^11#1*883@r!255^5#1*2051@r!107^8#1*867@
rad|2|radius!133^26#1*1075@radius!117^51#5*947@
ran|1|range!85^5#1*691@
rea|3|readPoem!277^3#1*2227@read_positions!309^1#5*2482@read!251^17#5*2018@
rec|2|rectangle!329^10#1*2643@Rectangle!329^1#7*2641@
red|1|reduceRedPixel!93^89#5*754@
ren|3|render_window!9^64#1*83@renderer!35^19#1*291@renderer!9^63#1*83@
res|11|res4!331^730#5*2659@resolve_ip!101^25#5*818@response!213^30#1*1715@result_label!91^70#1*739@result!23^20#1*195@result!311^12#1*2499@res!331^708#1*2659@response!137^14#1*1107@result!263^6#1*2115@res2!331^718#1*2659@results!159^3#1*1283@
ret|1|returnPicture!93^38#5*754@
rev|1|revers_String!255^1#5*2050@
rig|8|right_f1!281^38#1*2259@right_z!281^31#1*2259@right_footed!11^8#1*99@right_precision!281^36#1*2259@right_footed!281^10#1*2259@right_success_rate!281^20#1*2259@right_footed!7^13#1*67@right_recall!281^37#1*2259@
roo|1|root!91^45#1*739@
rou|1|roundedNumber!309^20#1*2483@
row|1|row!31^160#1*259@
s|2|s!1^39#1*19@s!275^11#1*2211@
sam|2|sample2!333^4#1*2675@sample1!333^3#1*2675@
sav|2|save!301^37#1*2419@save_text!301^14#5*2418@
say|1|say_hello!303^10#5*2434@
sel|1|selector!215^5#1*1731@
ser|1|serviceurl!41^11#5*339@
ses|1|session!213^17#1*1715@
sho|3|show_date!245^7#5*1970@short_url!293^6#1*2355@shotsTest!81^8#5*658@
sim|1|simple!327^7#5*2626@
sin|2|sinarr!1^91#1*19@sin!85^6#1*691@
six|1|sixWheels!143^6#1*1155@
siz|1|sizes!267^6#1*2147@
spe|2|speed_of_light!157^8#1*1267@speed_of_light!61^8#1*499@
spl|1|splitChar!127^5#1*1027@
sql|1|sqliPayload!47^36#5*386@
sqr|1|sqrtarr!1^96#1*19@
sta|3|status!335^5#1*2691@start_time!203^13#1*1635@status_code!335^1#1*2691@
std|1|std_dev!281^28#1*2259@
sto|7|store!179^5#1*1443@store!173^4#1*1395@store!183^4#1*1475@store!171^4#1*1379@store!15^13#1*131@store!175^4#1*1411@store!177^4#1*1427@
str|2|strange_func!231^3#5*1858@strng!337^1#1*2707@
stu|2|stuff!161^32#1*1299@students!259^24#1*2083@
sub|2|subset!315^4#1*2531@subtract!43^8#5*354@
sum|2|sum_X!5^7#1*51@sum!339^1#5*2722@
sun|1|Sunglasses!241^6#7*1937@
sym|1|symbols!57^6#1*467@
t|1|t!341^4#1*2739@
tar|5|target!265^5#1*2131@target_port!137^3#1*1107@target_currency_var!91^61#1*739@target_currency_dropdown!91^62#1*739@target_host!137^2#1*1107@
tea|2|TeamAway!83^31#1*675@Teamhome!83^30#1*675@
tes|2|TestArithmetic!343^6#7*2753@tester!147^25#1*1187@
tex|7|text!37^54#1*307@TEXT!283^5#1*2275@text!283^10#5*2274@text!345^9#1*2771@text!347^9#1*2787@text1!253^3#1*2035@text!33^51#5*275@
the|1|theHarvester!47^54#5*386@
thi|4|third!259^6#5*2083@things3!29^26#1*243@things!29^25#1*243@things4!29^28#1*243@
tim|2|time!27^10#1*227@time!195^17#1*1571@
tit|2|titanic!349^3#1*2803@title!51^15#1*419@
tok|1|token!351^3#1*2819@
tot|1|total_area!117^55#5*947@
toy|1|toyota!125^9#1*1011@
tra|2|transformer!29^44#5*242@train_model!31^99#5*258@
tre|1|tree!161^11#1*1299@
tri|3|tricky_list!307^1#5*2466@tripleStuff!29^17#5*242@triple!29^14#5*242@
twe|1|tweet_text!243^49#1*1955@
two|1|twoWheels!143^4#1*1155@
typ|1|type_tiny!293^5#1*2355@
uh|1|uh!41^30#5*339@
upl|1|upload_url!213^58#1*1715@
upp|1|UPPER!57^4#1*467@
url|2|url!41^27#5*339@url!77^12#1*627@
use|6|user_name!305^1#1*2451@user!217^7#1*1747@user_name!165^5#1*1331@userName!77^1#1*627@user_input!37^34#1*307@userEmail!77^4#1*627@
var|1|variance!281^27#1*2259@
vel|1|velocity!195^13#1*1571@
ver|2|vertical!195^19#1*1571@verticalPosition!59^12#1*483@
vie|1|viewPicture!93^1#5*754@
w|2|w!263^4#1*2115@w!353^13#1*2835@
web|1|website!77^10#1*627@
win|6|win!345^5#1*2771@win!347^5#1*2787@win!169^7#1*1363@window!35^12#1*291@win!301^5#1*2419@window!87^5#5*706@
wor|3|words_split!253^25#1*2035@words!253^26#1*2035@words!151^9#5*1219@
wri|3|write_text!301^19#5*2418@write_btn!301^41#1*2419@writePict!93^141#5*754@
x|15|x!273^11#1*2195@x!355^10#5*2851@x!227^3#1*1827@x!237^4#1*1907@x!353^10#1*2835@x!357^10#1*2867@x!313^6#5*2515@x!9^29#9*83@x!221^29#1*1779@x!113^6#1*915@x!359^1#1*2883@x!277^4#1*2227@x!361^3#1*2899@x!363^4#1*2915@x!365^1#1*2931@
x0|1|x0!9^13#1*83@
x_a|1|x_axis!367^6#1*2947@
x_m|1|x_max!9^15#1*83@
x_u|1|X_u!5^8#1*51@
x_v|1|x_values!163^21#1*1315@
xar|2|xarr!203^4#5*1634@xarr!369^4#5*2962@
xy|2|xy!203^14#1*1635@xy!369^20#1*2963@
xyi|2|xyi!203^20#1*1635@xyi!369^24#1*2963@
y|9|y!11^18#1*99@y!113^7#1*915@y!361^4#1*2899@y!359^2#1*2883@y!357^11#1*2867@y!363^5#1*2915@y!7^23#1*67@y!353^11#1*2835@y!9^30#9*83@
y0|1|y0!9^14#1*83@
y_a|1|y_axis!367^7#1*2947@
y_m|1|y_max!9^16#1*83@
y_p|2|y_pred!11^25#1*99@y_pred!7^30#1*67@
yar|2|yarr!203^8#5*1634@yarr!369^11#5*2962@
yha|1|yhat!31^161#1*259@
you|2|youtube_url!323^3#1*2595@your_age!371^5#1*2979@
z|2|z!353^12#1*2835@z!359^6#1*2883@
z_v|1|z_val!9^32#9*83@
zon|1|zoneTemperatures!79^9#1*643@
zva|1|zvals!9^26#1*83@
-- END TREE
-- START TREE 2
27