-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathout.csv
More file actions
We can't make this file beautiful and searchable because it's too large.
19795 lines (19795 loc) · 648 KB
/
out.csv
File metadata and controls
19795 lines (19795 loc) · 648 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title,langcode,status,title,promote,body,field_biozap_buttons,field_dni_do_potwierdzenia_skute,field_skrypt,field_urzadzenie
"Abdominal inf 1","en",true,"Abdominal inf 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ABDOMINAL INF 1 84m
# Abdominal_inflammation
#
freq 2720000 180
freq 2489000 180
freq 2170000 180
freq 2000000 180
freq 1865000 180
freq 1800000 180
freq 1600000 180
freq 1550000 180
freq 880000 180
freq 832000 180
freq 802000 180
freq 787000 180
freq 776000 180
freq 727000 180
freq 660000 180
freq 465000 180
freq 450000 180
freq 444000 180
freq 440000 180
freq 428000 180
freq 380000 180
freq 250000 180
freq 146000 180
freq 125000 180
freq 95000 180
freq 72000 180
freq 20000 180
freq 1200 180
off
@","multiZAP"
"Abdominal pain","en",true,"Abdominal pain",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ABDOMINAL PAIN 12m
# Abdominal_pain
#
freq 10000000 180
freq 3000000 180
freq 95000 180
freq 3000 180
off
@","multiZAP"
"Abscesses 1","en",true,"Abscesses 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ABSCESSES 1 51m
# Abscesses_1
#
freq 2720000 180
freq 2170000 180
freq 1865000 180
freq 1550000 180
freq 880000 180
freq 802000 180
freq 787000 180
freq 760000 180
freq 727000 180
freq 690000 180
freq 660000 180
freq 500000 180
freq 465000 180
freq 450000 180
freq 444000 180
freq 428000 180
freq 190000 180
off
@","multiZAP"
"Abscesses sec 1","en",true,"Abscesses sec 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ABSCESSES SEC 1 24m
# Abscesses_secondary
#
freq 1550000 180
freq 802000 180
freq 760000 180
freq 660000 180
freq 465000 180
freq 450000 180
freq 444000 180
freq 428000 180
off
@","multiZAP"
"Abscesses","en",true,"Abscesses",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ABSCESSES 33m
# Abscesses
# also use Staphylococcus aureus and see Listeriose
freq 2720000 180
freq 2170000 180
freq 1865000 180
freq 1550000 180
freq 880000 180
freq 802000 180
freq 787000 180
freq 727000 180
freq 500000 180
freq 444000 180
freq 190000 180
off
@","multiZAP"
"Acidosis","en",true,"Acidosis",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACIDOSIS 24m
# Acidosis
# hyperacidity. Also use a calcium magnesium supplement long term
freq 10000000 180
freq 880000 180
freq 802000 180
freq 787000 180
freq 776000 180
freq 727000 180
freq 146000 180
freq 20000 180
off
@","multiZAP"
"Acne","en",true,"Acne",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACNE 60m
# Acne
# run 564 for 6 min
freq 2720000 180
freq 2170000 180
freq 1800000 180
freq 1600000 180
freq 1550000 180
freq 1552000 180
freq 1500000 180
freq 802000 180
freq 880000 180
freq 778000 180
freq 787000 180
freq 760000 180
freq 741000 180
freq 727000 180
freq 660000 180
freq 564000 180
freq 465000 180
freq 450000 180
freq 444000 180
freq 428000 180
off
@","multiZAP"
"Aconite","en",true,"Aconite",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACONITE 9m
# Aconite
# used to stimulate lymphocyte production
freq 3347000 180
freq 5611000 180
freq 2791000 180
off
@","multiZAP"
"Actinobacillus","en",true,"Actinobacillus",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACTINOBACILLUS 60m
# Actinobacillus
# a potentially pathogenic bacteria found in mammals. 773*. 776*. 778*. 822*
freq 488000 180
freq 565000 180
freq 672000 180
freq 674000 180
freq 678000 180
freq 773000 180
freq 766000 180
freq 768000 180
freq 776000 180
freq 777000 180
freq 778000 180
freq 822000 180
freq 885000 180
freq 887000 180
freq 7877000 180
freq 9687000 180
freq 42664000 180
freq 42666000 180
freq 46668000 180
freq 46787000 180
off
@","multiZAP"
"Actinomyces i 1","en",true,"Actinomyces i 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACTINOMYCES I 1 54m
# Actinomyces_israelii
# a bacterium normally found in the bowel and throat that can cause deep. pus filled holes in tissue. Also see Streptothrix. 222*. 262*. 488*. 567*. 7880*
freq 23000 180
freq 222000 180
freq 262000 180
freq 2154000 180
freq 465000 180
freq 488000 180
freq 567000 180
freq 7880000 180
freq 10000000 180
freq 787000 180
freq 747000 180
freq 727000 180
freq 20000 180
freq 660000 180
freq 690000 180
freq 160000 180
freq 73000 180
freq 1100 180
off
@","multiZAP"
"Actinomycosis","en",true,"Actinomycosis",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACTINOMYCOSIS 0m
# Actinomycosis
# use Streptothrix
off
@","multiZAP"
"Acupuncture d 1","en",true,"Acupuncture d 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACUPUNCTURE D 1 3m
# Acupuncture_disturbance_field
# scar focus
freq 5900 180
off
@","multiZAP"
"Acute pain","en",true,"Acute pain",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ACUTE PAIN 30m
# Acute_pain
#
freq 3000000 180
freq 95000 180
freq 10000000 180
freq 1550000 180
freq 802000 180
freq 880000 180
freq 787000 180
freq 727000 180
freq 690000 180
freq 666000 180
off
@","multiZAP"
"Adenoids","en",true,"Adenoids",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADENOIDS 75m
# Adenoids
#
freq 1550000 180
freq 802000 180
freq 880000 180
freq 787000 180
freq 776000 180
freq 727000 180
freq 444000 180
freq 20000 180
freq 428000 180
freq 660000 180
freq 2720000 180
freq 2170000 180
freq 14000 180
freq 333000 180
freq 523000 180
freq 768000 180
freq 786000 180
freq 1865000 180
freq 590000 180
freq 690000 180
freq 780000 180
freq 807000 180
freq 810000 180
freq 1570000 180
freq 2000000 180
off
@","multiZAP"
"Adenoma cervical","en",true,"Adenoma cervical",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADENOMA CERVICAL 3m
# Adenoma_cervical
# epithelial tumor of the cervix that can be either benign or malignant. Also see Cancer.
freq 433000 180
off
@","multiZAP"
"Adenovirus 36","en",true,"Adenovirus 36",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADENOVIRUS 36 12m
# Adenovirus_36
# AD-36 may be related to weight gain in some cases
freq 8875000 180
freq 6140000 180
freq 5859000 180
freq 5797000 180
off
@","multiZAP"
"Adenovirus comp","en",true,"Adenovirus comp",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADENOVIRUS COMP 147m
# Adenovirus_comp
#
freq 10000000 180
freq 7767000 180
freq 7762000 180
freq 7702000 180
freq 7009000 180
freq 7001000 180
freq 6989000 180
freq 5000000 180
freq 4868000 180
freq 2720000 180
freq 2050000 180
freq 1500000 180
freq 1395000 180
freq 1062000 180
freq 1060000 180
freq 1034000 180
freq 1009000 180
freq 969000 180
freq 968000 180
freq 962000 180
freq 959000 180
freq 960000 180
freq 952000 180
freq 951000 180
freq 942000 180
freq 880000 180
freq 1550000 180
freq 802000 180
freq 787000 180
freq 768000 180
freq 728000 180
freq 690000 180
freq 660000 180
freq 555000 180
freq 523000 180
freq 522000 180
freq 1865000 180
freq 444000 180
freq 333000 180
freq 300000 180
freq 180000 180
freq 160000 180
freq 125000 180
freq 95000 180
freq 72000 180
freq 60000 180
freq 48000 180
freq 26000 180
freq 20000 180
off
@","multiZAP"
"Adenovirus hc","en",true,"Adenovirus hc",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADENOVIRUS HC 30m
# Adenovirus_HC
#
freq 28729000 1
scan 28730000 179
freq 16628000 1
scan 16629000 179
freq 18471000 180
freq 18670000 1
scan 18671000 179
freq 19566000 1
scan 19567000 179
freq 1407000 1
scan 1408000 179
freq 827900 180
freq 919620 180
freq 929530 180
freq 974150 180
off
@","multiZAP"
"Adenovirus","en",true,"Adenovirus",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADENOVIRUS 21m
# Adenovirus
# a virus that can cause colds/flu and infections in the lungs. stomach. and intestines
freq 333000 180
freq 523000 180
freq 666000 180
freq 786000 180
freq 768000 180
freq 959000 180
freq 962000 180
off
@","multiZAP"
"Adhesions","en",true,"Adhesions",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADHESIONS 33m
# Adhesions
#
freq 2720000 180
freq 2170000 180
freq 1550000 180
freq 802000 180
freq 880000 180
freq 787000 180
freq 776000 180
freq 760000 180
freq 727000 180
freq 660000 180
freq 190000 180
off
@","multiZAP"
"Adnexitis","en",true,"Adnexitis",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADNEXITIS 21m
# Adnexitis
# swelling of the ovaries or Fallopian tubes
freq 440000 180
freq 441000 180
freq 522000 180
freq 572000 180
freq 3343000 180
freq 3833000 180
freq 5312000 180
off
@","multiZAP"
"Adrenal stimu 1","en",true,"Adrenal stimu 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADRENAL STIMU 1 9m
# Adrenal_stimulant
#
freq 10000 180
freq 20000 180
freq 2250000 180
off
@","multiZAP"
"Adynamia geri 1","en",true,"Adynamia geri 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ADYNAMIA GERI 1 15m
# Adynamia_geriatric
# fatigue of age
freq 410000 180
freq 220000 180
freq 100000 180
freq 60000 180
freq 27500 180
off
@","multiZAP"
"Aflatoxin hc","en",true,"Aflatoxin hc",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AFLATOXIN HC 12m
# Aflatoxin_HC
#
freq 438740 180
freq 466010 180
freq 9359000 1
scan 9360000 179
freq 8812000 1
scan 8813000 179
off
@","multiZAP"
"Aflatoxin","en",true,"Aflatoxin",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AFLATOXIN 18m
# Aflatoxin
# a liver-damaging toxin produced by certain food molds
freq 344000 180
freq 510000 180
freq 943000 180
freq 474000 180
freq 476000 180
freq 568000 180
off
@","multiZAP"
"African trypa 1","en",true,"African trypa 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AFRICAN TRYPA 1 9m
# African_trypanosomiasis
#
freq 656000 180
freq 988000 180
freq 780000 180
off
@","multiZAP"
"Agyfla hc","en",true,"Agyfla hc",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AGYFLA HC 6m
# Agyfla_HC
#
freq 3534000 1
scan 3535000 179
freq 175990 180
off
@","multiZAP"
"Aids 1","en",true,"Aids 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AIDS 1 33m
# AIDS_1
# not for use in U.S. see HIV
freq 2489000 180
freq 465000 180
freq 727000 180
freq 787000 180
freq 880000 180
freq 1550000 180
freq 1500000 180
freq 1200 180
freq 31000000 180
freq 31750000 180
freq 34750000 180
off
@","multiZAP"
"Aids 2","en",true,"Aids 2",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AIDS 2 36m
# AIDS_2
#
freq 1440 180
freq 1550000 180
freq 1500000 180
freq 249000 180
freq 418000 180
freq 727000 180
freq 787000 180
freq 880000 180
freq 2489000 180
freq 3100000 180
freq 3175000 180
freq 3475000 180
off
@","multiZAP"
"Aids kaposis 1","en",true,"Aids kaposis 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AIDS KAPOSIS 1 0m
# AIDS_Kaposis_sarcoma
# use Cancer_Kaposis_sarcoma
off
@","multiZAP"
"Aids secondary","en",true,"Aids secondary",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AIDS SECONDARY 9m
# AIDS_secondary
# use 1113 for 12 min. 2128 for 16 min. 6121 for 21 min. 33 for 1 min
freq 1113000 180
freq 2128000 180
freq 6121000 180
off
@","multiZAP"
"Akathisia","en",true,"Akathisia",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AKATHISIA 9m
# Akathisia
#
freq 230000 180
freq 7830 180
freq 3000 180
off
@","multiZAP"
"Alcoholism","en",true,"Alcoholism",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALCOHOLISM 3m
# Alcoholism
#
freq 10000000 180
off
@","multiZAP"
"Allergy 1","en",true,"Allergy 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALLERGY 1 60m
# Allergy_1
#
freq 10000000 180
freq 1865000 180
freq 880000 180
freq 787000 180
freq 727000 180
freq 690000 180
freq 660000 180
freq 555000 180
freq 522000 180
freq 473000 180
freq 444000 180
freq 330000 180
freq 290000 180
freq 146000 180
freq 125000 180
freq 95000 180
freq 72000 180
freq 33000 180
freq 20000 180
freq 3000 180
off
@","multiZAP"
"Allergy polle 1","en",true,"Allergy polle 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALLERGY POLLE 1 9m
# Allergy_pollen_TR
# pulse 64 75. converge 2 0.03125. dwell 500
freq 116113000 180
freq 119061000 1
scan 119062000 179
freq 119441000 1
scan 119442000 179
off
@","multiZAP"
"Allergy","en",true,"Allergy",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALLERGY 45m
# Allergy
# also see Pertussis
freq 10000000 180
freq 7344000 180
freq 5000000 180
freq 1550000 180
freq 1234000 180
freq 740000 180
freq 880000 180
freq 835000 180
freq 787000 180
freq 727000 180
freq 500000 180
freq 330000 180
freq 160000 180
freq 30000 180
freq 3000 180
off
@","multiZAP"
"Alopecia","en",true,"Alopecia",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALOPECIA 51m
# Alopecia
# loss of hair
freq 10000000 180
freq 30000000 180
freq 5000000 180
freq 2720000 180
freq 2170000 180
freq 1552000 180
freq 880000 180
freq 800000 180
freq 787000 180
freq 727000 180
freq 465000 180
freq 330000 180
freq 146000 180
freq 95000 180
freq 28000 180
freq 20000 180
freq 3000 180
off
@","multiZAP"
"Alpha strepto 1","en",true,"Alpha strepto 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALPHA STREPTO 1 12m
# Alpha_streptococcus_HC
#
freq 18919000 1
scan 18920000 179
freq 18670000 1
scan 18671000 179
freq 941930 180
freq 929530 180
off
@","multiZAP"
"Als 1","en",true,"Als 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALS 1 30m
# ALS_1
# Amyotropic lateral sclerosis. possibly caused by mycoplasma fermentans. Also use MS and see Echo virus. Coxsackie. Herpes 6. Bartonella. and Lyme freqs. Use 2900 for 30 min
freq 2900000 180
freq 864000 180
freq 790000 180
freq 690000 180
freq 610000 180
freq 470000 180
freq 484000 180
freq 986000 180
freq 644000 180
freq 254000 180
off
@","multiZAP"
"Als 2","en",true,"Als 2",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALS 2 129m
# ALS_2
# Potential causative viruses
freq 5000000 180
freq 3636000 180
freq 2632000 180
freq 1850000 180
freq 1500000 180
freq 1488000 180
freq 1422000 180
freq 1189000 180
freq 1044000 180
freq 922000 180
freq 868000 180
freq 845000 180
freq 822000 180
freq 788000 180
freq 776000 180
freq 766000 180
freq 742000 180
freq 733000 180
freq 721000 180
freq 676000 180
freq 654000 180
freq 625000 180
freq 620000 180
freq 607000 180
freq 608000 180
freq 609000 180
freq 610000 180
freq 611000 180
freq 612000 180
freq 613000 180
freq 595000 180
freq 515000 180
freq 487000 180
freq 461000 180
freq 435000 180
freq 423000 180
freq 380000 180
freq 322000 180
freq 283000 180
freq 232000 180
freq 144000 180
freq 136000 180
freq 20000 180
off
@","multiZAP"
"Als 3","en",true,"Als 3",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALS 3 3m
# ALS_3
# use 2900 for 60 min
freq 2900000 180
off
@","multiZAP"
"Als 4","en",true,"Als 4",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALS 4 93m
# ALS_4
# also use for MS
freq 10000000 180
freq 5000000 180
freq 2900000 180
freq 2750000 180
freq 2700000 180
freq 2145000 180
freq 938000 180
freq 862000 180
freq 841000 180
freq 777000 180
freq 766000 180
freq 741000 180
freq 739000 180
freq 688000 180
freq 682000 180
freq 660000 180
freq 572000 180
freq 532000 180
freq 520000 180
freq 477000 180
freq 442000 180
freq 433000 180
freq 344000 180
freq 343000 180
freq 342000 180
freq 338000 180
freq 324000 180
freq 322000 180
freq 253000 180
freq 242000 180
freq 112000 180
off
@","multiZAP"
"Als 5","en",true,"Als 5",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALS 5 39m
# ALS_5
# use 2900 for 20 min
freq 2900000 180
freq 986000 180
freq 864000 180
freq 790000 180
freq 728000 180
freq 690000 180
freq 660000 180
freq 644000 180
freq 980000 180
freq 692000 180
freq 610000 180
freq 484000 180
freq 254000 180
off
@","multiZAP"
"Alternaria te 1","en",true,"Alternaria te 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALTERNARIA TE 1 6m
# Alternaria_tenuis
# a fungus associated with lung ailments
freq 853000 180
freq 304000 180
off
@","multiZAP"
"Alzheimers 1","en",true,"Alzheimers 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALZHEIMERS 1 51m
# Alzheimers_1
# also see ALS sets
freq 430000 180
freq 620000 180
freq 624000 180
freq 840000 180
freq 866000 180
freq 5148000 180
freq 2213000 180
freq 19180000 1
scan 19181000 179
freq 742400 180
freq 303000 180
freq 23200 180
freq 3773000 1
scan 3774000 179
freq 943300 180
freq 471660 180
freq 470900 180
freq 941800 180
freq 3767000 1
scan 3768000 179
off
@","multiZAP"
"Alzheimers 2","en",true,"Alzheimers 2",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALZHEIMERS 2 24m
# Alzheimers_2
#
freq 19180000 1
scan 19181000 179
freq 2213000 180
freq 5148000 180
freq 866000 180
freq 840000 180
freq 624000 180
freq 620000 180
freq 430000 180
off
@","multiZAP"
"Alzheimers tr","en",true,"Alzheimers tr",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ALZHEIMERS TR 69m
# Alzheimers_TR
#
freq 430000 180
freq 620000 180
freq 624000 180
freq 866000 180
freq 5148000 180
freq 2213000 180
freq 1918000 180
freq 742400 180
freq 303000 180
freq 23200 180
freq 2900000 180
freq 864000 180
freq 790000 180
freq 690000 180
freq 610000 180
freq 470000 180
freq 484000 180
freq 986000 180
freq 644000 180
freq 254000 180
freq 30000 180
freq 33000 180
freq 6000 180
off
@","multiZAP"
"Amenorrhea","en",true,"Amenorrhea",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AMENORRHEA 27m
# Amenorrhea
# absence of menstruation
freq 10000000 180
freq 880000 180
freq 1550000 180
freq 802000 180
freq 787000 180
freq 760000 180
freq 727000 180
freq 465000 180
freq 20000 180
off
@","multiZAP"
"Amoeba hepar 1","en",true,"Amoeba hepar 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AMOEBA HEPAR 1 12m
# Amoeba_hepar_abcess
# liver abcess caused by amoebic infection
freq 344000 180
freq 605000 180
freq 510000 180
freq 943000 180
off
@","multiZAP"
"Amoeba","en",true,"Amoeba",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AMOEBA 21m
# Amoeba
# a single celled. sometimes infectious microorganism
freq 310000 180
freq 333000 180
freq 532000 180
freq 732000 180
freq 769000 180
freq 827000 180
freq 1522000 180
off
@","multiZAP"
"Amoebic dysen 1","en",true,"Amoebic dysen 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AMOEBIC DYSEN 1 0m
# Amoebic_dysentery
# use Entamoeba histolytica
off
@","multiZAP"
"Amyotropic la 1","en",true,"Amyotropic la 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# AMYOTROPIC LA 1 0m
# Amyotropic_lateral_sclerosis
# use ALS
off
@","multiZAP"
"Anal itching","en",true,"Anal itching",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANAL ITCHING 54m
# Anal_itching
# also use Parasites enterobiasis and see Parasites general set
freq 10000000 180
freq 880000 180
freq 787000 180
freq 760000 180
freq 727000 180
freq 465000 180
freq 125000 180
freq 120000 180
freq 95000 180
freq 72000 180
freq 444000 180
freq 1865000 180
freq 20000 180
freq 773000 180
freq 826000 180
freq 827000 180
freq 835000 180
freq 4152000 180
off
@","multiZAP"
"Anaphylaxis","en",true,"Anaphylaxis",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANAPHYLAXIS 3m
# Anaphylaxis
#
freq 10000000 180
off
@","multiZAP"
"Anaplasma mar 1","en",true,"Anaplasma mar 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANAPLASMA MAR 1 12m
# Anaplasma_marginale_HC
#
freq 19267000 1
scan 19268000 179
freq 959280 180
freq 21010000 1
scan 21011000 179
freq 1046000 1
scan 1047000 179
off
@","multiZAP"
"Aneurysm","en",true,"Aneurysm",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANEURYSM 33m
# Aneurysm
#
freq 880000 180
freq 787000 180
freq 760000 180
freq 727000 180
freq 465000 180
freq 125000 180
freq 95000 180
freq 72000 180
freq 444000 180
freq 1865000 180
freq 20000 180
off
@","multiZAP"
"Angina pectoris","en",true,"Angina pectoris",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANGINA PECTORIS 63m
# Angina_pectoris
#
freq 3000 180
freq 230000 180
freq 2720000 180
freq 2170000 180
freq 1800000 180
freq 1600000 180
freq 1500000 180
freq 880000 180
freq 832000 180
freq 787000 180
freq 776000 180
freq 727000 180
freq 465000 180
freq 444000 180
freq 1865000 180
freq 125000 180
freq 95000 180
freq 72000 180
freq 20000 180
freq 660000 180
freq 7830 180
off
@","multiZAP"
"Angina quinsy","en",true,"Angina quinsy",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANGINA QUINSY 21m
# Angina_quinsy
# inflammation of lymph gland in throat
freq 787000 180
freq 776000 180
freq 727000 180
freq 690000 180
freq 465000 180
freq 428000 180
freq 660000 180
off
@","multiZAP"
"Ankylosing sp 1","en",true,"Ankylosing sp 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANKYLOSING SP 1 63m
# Ankylosing_spondylitis
# arthritis of the spine. Use 326 longer periods after buildup
freq 3000000 180
freq 95000 180
freq 1550000 180
freq 802000 180
freq 880000 180
freq 787000 180
freq 776000 180
freq 727000 180
freq 650000 180
freq 625000 180
freq 600000 180
freq 28000 180
freq 10000 180
freq 35000 180
freq 7690 180
freq 1200 180
freq 110000 180
freq 100000 180
freq 60000 180
freq 428000 180
freq 680000 180
off
@","multiZAP"
"Anosmia","en",true,"Anosmia",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANOSMIA 6m
# Anosmia
# loss of smell
freq 20000 180
freq 10000000 180
off
@","multiZAP"
"Anthrax 1","en",true,"Anthrax 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANTHRAX 1 45m
# Anthrax_1
#
freq 644000 180
freq 643000 180
freq 642000 180
freq 639000 180
freq 638000 180
freq 637000 180
freq 634000 180
freq 633000 180
freq 632000 180
freq 629000 180
freq 628000 180
freq 627000 180
freq 624000 180
freq 623000 180
freq 622000 180
off
@","multiZAP"
"Anthrax","en",true,"Anthrax",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANTHRAX 45m
# Anthrax
# also see Bacillus_anthracis_HC
freq 4000000 180
freq 16655000 180
freq 1370000 180
freq 1365000 180
freq 930000 180
freq 900000 180
freq 768000 180
freq 633000 180
freq 500000 180
freq 420000 180
freq 414000 180
freq 400000 180
freq 273000 180
freq 224000 180
freq 129000 180
off
@","multiZAP"
"Antiseptic","en",true,"Antiseptic",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANTISEPTIC 0m
# Antiseptic
# use General antiseptic
off
@","multiZAP"
"Anxiety 1","en",true,"Anxiety 1",false,"Script imported from github. See: <a href='https://github.com/biotronika/scriptIMPORTER' target='_blank'>https://github.com/biotronika/scriptIMPORTER</a>","","30","# ANXIETY 1 15m
# Anxiety_1
# General anxiety disorder. Use 1.5 for 3 min. 6.8. 7.8 for 5 min. 95 for 3 min. 10000 for 5 min
freq 1500 180
freq 6800 180
freq 7800 180
freq 95000 180
freq 10000000 180