-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodule2Stage.txt
2366 lines (1769 loc) · 118 KB
/
module2Stage.txt
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
// This file was transformed using the mapping data in Quest-2025-02-11-14-26-03_Transformation.json.
// JSON ERROR --> Concept ID collision for ID: 714365367 | there are unexpected collisions between Quest ID(s): [CHILDWTR1_SRC] and Concept(s): [What was the source of water to [insert address from CHILDADD1 - CHILDADD3/your childhood home]?]
// JSON ERROR --> Concept ID collision for ID: 665593888 | there are unexpected collisions between Quest ID(s): [CHILDWTR2_SRC] and Concept(s): [What was the main source of water that you drank at [insert address from CHILDADD1 - CHILDADD3/your childhood home]? Please think about water used to make drinks.]
// JSON ERROR --> Concept ID collision for ID: 784119588 | there are unexpected collisions between Quest ID(s): [SRVBLU_LANGUAGE_V1R0, SRVBOH_LANGUAGE_V1R0, SRVBUM_LANGUAGE_V1R0, SRVCOE_LANGUAGE_V1R0, SRVCOV_LANGUAGE_V1R0, SRVLAW_LANGUAGE_V1R0, SRVMC_LANGUAGE_V1R0, SRVMRE_LANGUAGE_V1R0, SRVMW_LANGUAGE_V1R0, SRVQOL_LANGUAGE_V1R0, SRVSAS_LANGUAGE_V1R0, SRVSCR_LANGUAGE_V1R0, SRVSSN_LANGUAGE_V1R0]
// JSON ERROR --> Concept ID collision for ID: 431721131 | there are unexpected collisions between Quest ID(s): [QXAUTHOR1, SRVSCR_WHOCOMPLQX_V1R0]
// JSON ERROR --> CHILDWTR1_SRC option CHILDWTR1 conceptId 714365367 already maps to Quest code: CHILDWTR1_SRC | conceptId collision
// JSON ERROR --> CHILDWTR2_SRC option CHILDWTR2 conceptId 665593888 already maps to Quest code: CHILDWTR2_SRC | conceptId collision
// JSON ERROR --> SRVCOE_LANGUAGE_V1R0 conceptId 784119588 already maps to Quest code: SRVBLU_LANGUAGE_V1R0 | conceptId collision
// JSON ERROR --> SRVMRE_LANGUAGE_V1R0 conceptId 784119588 already maps to Quest code: SRVBLU_LANGUAGE_V1R0 | conceptId collision
// JSON ERROR --> SRVSCR_LANGUAGE_V1R0 conceptId 784119588 already maps to Quest code: SRVBLU_LANGUAGE_V1R0 | conceptId collision
// JSON ERROR --> SRVSCR_WHOCOMPLQX_V1R0 conceptId 431721131 already maps to Quest code: QXAUTHOR1 | conceptId collision
// JSON WARNING --> Concept ID 101310722 with concept "# Pills per day" is shared between these Textbox codes: [ACIDSUP3_1A, ACIDSUP3_2A, ACIDSUP3_3A, CHOLHTN3_1A, CHOLHTN3_2A, INSULIN3_1A, METFOR3_1A, PAINREL3_1A, PAINREL3_2A, PAINREL3_3A, PAINREL3_4A, PAINREL3_5A, PAINREL3_6A, PAINREL3_7A]
// JSON WARNING --> Concept ID 206625031 with concept "Age at diagnosis" is shared between these Textbox codes: [ANEMIA_AGE, ARRHYT_AGE, ASTHMA_AGE, BARESO_AGE, BLOODCLOT_AGE, BREASTDIS_AGE, CCD_AGE, CD_AGE, CHESTPAIN_AGE, CHF_AGE, CHILDCANC3A_AGE, CHILDCANC3B_AGE, CHILDCANC3C_AGE, CHILDCANC3D_AGE, CHILDCANC3E_AGE, CHILDCANC3F_AGE, CHILDCANC3G_AGE, CHILDCANC3H_AGE, CHILDCANC3I_AGE, CHILDCANC3J_AGE, CHILDCANC3K_AGE, CHILDCANC3L_AGE, CHILDCANC3M_AGE, CHILDCANC3N_AGE, CHILDCANC3O_AGE, CHILDCANC3P_AGE, CHILDCANC3Q_AGE, CHILDCANC3R_AGE, CHILDCANC3S_AGE, CHILDCANC3T_AGE, CHILDCANC3U_AGE, CHILDCANC3V_AGE, CHILDCANC3W_AGE, CHILDCANC3X_AGE, CHILDCANC3Y_AGE, CHLA_AGE, CHOL_AGE, CKD_AGE, COPD_AGE, CVD_AGE, DADCANC3A_AGE, DADCANC3B_AGE, DADCANC3C_AGE, DADCANC3D_AGE, DADCANC3E_AGE, DADCANC3F_AGE, DADCANC3G_AGE, DADCANC3H_AGE, DADCANC3I_AGE, DADCANC3J_AGE, DADCANC3K_AGE, DADCANC3L_AGE, DADCANC3M_AGE, DADCANC3N_AGE, DADCANC3O_AGE, DADCANC3P_AGE, DADCANC3Q_AGE, DADCANC3R_AGE, DADCANC3S_AGE, DADCANC3T_AGE, DADCANC3U_AGE, DADCANC3V_AGE, DCIS_AGE, DEPRESS2_AGE, DIVERT_AGE, DM2_AGE, ENDO_AGE, ENLGPROS_AGE, GALL_AGE, GENWARTS_AGE, GERD_AGE, GONORR_AGE, GOUT_AGE, GRAVES_AGE, HAYFEVER_AGE, HBVHCV_AGE, HEARTATT_AGE, HEARTVALV_AGE, HIVAIDS_AGE, HPV_AGE, HTN_AGE, IBD_AGE, IBS_AGE, KIDNEY_AGE, LIVCIRR_AGE, LUPUS_AGE, MOMCANC3A_AGE, MOMCANC3B_AGE, MOMCANC3C_AGE, MOMCANC3D_AGE, MOMCANC3E_AGE, MOMCANC3F_AGE, MOMCANC3G_AGE, MOMCANC3H_AGE, MOMCANC3I_AGE, MOMCANC3J_AGE, MOMCANC3K_AGE, MOMCANC3L_AGE, MOMCANC3M_AGE, MOMCANC3N_AGE, MOMCANC3O_AGE, MOMCANC3P_AGE, MOMCANC3Q_AGE, MOMCANC3R_AGE, MOMCANC3S_AGE, MOMCANC3T_AGE, MOMCANC3U_AGE, MOMCANC3V_AGE, MOMCANC3W_AGE, MONO_AGE, PANCREA_AGE, PCOS_AGE, RA_AGE, SHINGLES_AGE, SIBCANC3A_AGE, SIBCANC3B_AGE, SIBCANC3C_AGE, SIBCANC3D_AGE, SIBCANC3E_AGE, SIBCANC3F_AGE, SIBCANC3G_AGE, SIBCANC3H_AGE, SIBCANC3I_AGE, SIBCANC3J_AGE, SIBCANC3K_AGE, SIBCANC3L_AGE, SIBCANC3M_AGE, SIBCANC3N_AGE, SIBCANC3O_AGE, SIBCANC3P_AGE, SIBCANC3Q_AGE, SIBCANC3R_AGE, SIBCANC3S_AGE, SIBCANC3T_AGE, SIBCANC3U_AGE, SIBCANC3V_AGE, SIBCANC3W_AGE, SIBCANC3X_AGE, SIBCANC3Y_AGE, SKINCANC3_AGE, STROKE_AGE, SYPH_AGE, THYROID_AGE, TRICH_AGE, UC_AGE, UF_AGE]
// JSON WARNING --> Concept ID 261863326 with concept "Year at diagnosis" is shared between these Textbox codes: [ANEMIA_YEAR, ARRHYT_YEAR, ASTHMA_YEAR, BARESO_YEAR, BLOODCLOT_YEAR, BREASTDIS_YEAR, CCD_YEAR, CD_YEAR, CHESTPAIN_YEAR, CHF_YEAR, CHILDCANC3A_YEAR, CHILDCANC3B_YEAR, CHILDCANC3C_YEAR, CHILDCANC3D_YEAR, CHILDCANC3E_YEAR, CHILDCANC3F_YEAR, CHILDCANC3G_YEAR, CHILDCANC3H_YEAR, CHILDCANC3I_YEAR, CHILDCANC3J_YEAR, CHILDCANC3K_YEAR, CHILDCANC3L_YEAR, CHILDCANC3M_YEAR, CHILDCANC3N_YEAR, CHILDCANC3O_YEAR, CHILDCANC3P_YEAR, CHILDCANC3Q_YEAR, CHILDCANC3R_YEAR, CHILDCANC3S_YEAR, CHILDCANC3T_YEAR, CHILDCANC3U_YEAR, CHILDCANC3V_YEAR, CHILDCANC3W_YEAR, CHILDCANC3X_YEAR, CHILDCANC3Y_YEAR, CHLA_YEAR, CHOL_YEAR, CKD_YEAR, COPD_YEAR, CVD_YEAR, DADCANC3A_YEAR, DADCANC3B_YEAR, DADCANC3C_YEAR, DADCANC3D_YEAR, DADCANC3E_YEAR, DADCANC3F_YEAR, DADCANC3G_YEAR, DADCANC3H_YEAR, DADCANC3I_YEAR, DADCANC3J_YEAR, DADCANC3K_YEAR, DADCANC3L_YEAR, DADCANC3M_YEAR, DADCANC3N_YEAR, DADCANC3O_YEAR, DADCANC3P_YEAR, DADCANC3Q_YEAR, DADCANC3R_YEAR, DADCANC3S_YEAR, DADCANC3T_YEAR, DADCANC3U_YEAR, DADCANC3V_YEAR, DCIS_YEAR, DEPRESS2_YEAR, DIVERT_YEAR, DM2_YEAR, ENDO_YEAR, ENLGPROS_YEAR, GALL_YEAR, GENWARTS_YEAR, GERD_YEAR, GONORR_YEAR, GOUT_YEAR, GRAVES_YEAR, HAYFEVER_YEAR, HBVHCV_YEAR, HEARTATT_YEAR, HEARTVALV_YEAR, HIVAIDS_YEAR, HPV_YEAR, HTN_YEAR, IBD_YEAR, IBS_YEAR, KIDNEY_YEAR, LIVCIRR_YEAR, LUPUS_YEAR, MOMCANC3A_YEAR, MOMCANC3B_YEAR, MOMCANC3C_YEAR, MOMCANC3D_YEAR, MOMCANC3E_YEAR, MOMCANC3F_YEAR, MOMCANC3G_YEAR, MOMCANC3H_YEAR, MOMCANC3I_YEAR, MOMCANC3J_YEAR, MOMCANC3K_YEAR, MOMCANC3L_YEAR, MOMCANC3M_YEAR, MOMCANC3N_YEAR, MOMCANC3O_YEAR, MOMCANC3P_YEAR, MOMCANC3Q_YEAR, MOMCANC3R_YEAR, MOMCANC3S_YEAR, MOMCANC3T_YEAR, MOMCANC3U_YEAR, MOMCANC3V_YEAR, MOMCANC3W_YEAR, MONO_YEAR, PANCREA_YEAR, PCOS_YEAR, RA_YEAR, SHINGLES_YEAR, SIBCANC3A_YEAR, SIBCANC3B_YEAR, SIBCANC3C_YEAR, SIBCANC3D_YEAR, SIBCANC3E_YEAR, SIBCANC3F_YEAR, SIBCANC3G_YEAR, SIBCANC3H_YEAR, SIBCANC3I_YEAR, SIBCANC3J_YEAR, SIBCANC3K_YEAR, SIBCANC3L_YEAR, SIBCANC3M_YEAR, SIBCANC3N_YEAR, SIBCANC3O_YEAR, SIBCANC3P_YEAR, SIBCANC3Q_YEAR, SIBCANC3R_YEAR, SIBCANC3S_YEAR, SIBCANC3T_YEAR, SIBCANC3U_YEAR, SIBCANC3V_YEAR, SIBCANC3W_YEAR, SIBCANC3X_YEAR, SIBCANC3Y_YEAR, SKINCANC3_YEAR, STROKE_YEAR, SYPH_YEAR, THYROID_YEAR, TRICH_YEAR, UC_YEAR, UF_YEAR]
// JSON WARNING --> Concept ID 314198277 with concept "Last spent time at this address, year" is shared between these Textbox codes: [SEASADDYRS2_10_YEAR, SEASADDYRS2_1_YEAR, SEASADDYRS2_2_YEAR, SEASADDYRS2_3_YEAR, SEASADDYRS2_4_YEAR, SEASADDYRS2_5_YEAR, SEASADDYRS2_6_YEAR, SEASADDYRS2_7_YEAR, SEASADDYRS2_8_YEAR, SEASADDYRS2_9_YEAR]
// JSON WARNING --> Concept ID 434243220 with concept "Months used" is shared between these Textbox codes: [ANYCOMESTMONTH, COMBINEDMONTH, COPIUDMONTH, DEPROPROVMONTH, ESTOTHERMONTH, ESTSKINMONTH, HORCOMPILLMONTH, HORIUDMONTH, HORMEDOTHERMONTH, HORMEDPATCHMONTH, HORMEDRINGMONTH, MINIPILLMONTH, NORPLANTMONTH, ORALESTMONTH, ORALMEDMONTH, PATCHESTMONTH, PRESHOR2MONTH, PROESTMONTH, RINGMONTH, TWOPILLMONTH]
// JSON WARNING --> Concept ID 451310566 with concept "Months at address" is shared between these Textbox codes: [MONTHADD1, MONTHADD10, MONTHADD2, MONTHADD3, MONTHADD4, MONTHADD5, MONTHADD6, MONTHADD7, MONTHADD8, MONTHADD9]
// JSON WARNING --> Concept ID 623218391 with concept "Age at surgery" is shared between these Textbox codes: [APPEND_AGE, BARSUR_AGE, BREASTABSS_AGE, BREASTDBLREM_AGE, BREASTIMPLANTS_AGE, BREASTLACTREM_AGE, BREASTLIFT_AGE, BREASTOTH_AGE, BREASTPARTREM_AGE, BREASTRECON_AGE, BREASTREDN_AGE, BREASTREM_AGE, FTREM2_AGE, GALLREM_AGE, HYSTER_AGE, KIDREM2_AGE, LIPOSUCT_AGE, OVARYREM2_AGE, PENREM_AGE, PROSREM2_AGE, SPLEENREM_AGE, SRVSCR_APPENDECAGE_V1R1, SRVSCR_BARSURGAGE_V1R1, SRVSCR_BREASTABSCAGE_V1R1, SRVSCR_BREASTDBLREMAGE_V1R1, SRVSCR_BREASTIMPLAGE_V1R1, SRVSCR_BREASTLACREMAGE_V1R1, SRVSCR_BREASTLIFTAGE_V1R1, SRVSCR_BREASTOTHAGE_V1R1, SRVSCR_BREASTPTREMAGE_V1R1, SRVSCR_BREASTRECONAGE_V1R1, SRVSCR_BREASTREDAGE_V1R1, SRVSCR_BREASTREMAGE_V1R1, SRVSCR_CHOLECAGE_V1R1, SRVSCR_FSTSURGDBLREMAGE_V1R0, SRVSCR_HYSTERAGE_V1R1, SRVSCR_LIPOSUCTAGE_V1R1, SRVSCR_NEPHRECTOMYAGE_V1R0, SRVSCR_OOPHORECAGE_V1R1, SRVSCR_PENREMAGE_V1R1, SRVSCR_PROSREMSURGAGE_V1R1, SRVSCR_SALPINGECAGE_V1R1, SRVSCR_SECSURGDBLREMAGE_V1R0, SRVSCR_SPLENECTOMYAGE_V1R0, SRVSCR_TESTREMSURGAGE_V1R1, SRVSCR_THYROIDECTOMYAGE_V1R0, SRVSCR_TONSILSAGE_V1R1, SRVSCR_TUBLIGAGE_V1R1, SRVSCR_VASECTOMYAGE_V1R1, TESTREM2_AGE, THYRDREM_AGE, TONSILS_AGE, TUBLIG_AGE, VASEC_AGE]
// JSON WARNING --> Concept ID 707805344 with concept "# of Hours" is shared between these Textbox codes: [FALLASLEEPHOURS, LAYINBEDHRS, NONWORKAWAKEBEFOREUPHOURS, NONWORKFALLASLEEPHOURS, OUTSIDEHOURS, WORKDAYOUTSIDEHOURS]
// JSON WARNING --> Concept ID 765748316 with concept "Days per week" is shared between these Textbox codes: [ACETWEEK, ACIDSUP2_1WK, ACIDSUP2_2WK, ACIDSUP2_3WK, BABYASPRINWEEK, CELECOXIBWEEK, CHOLHTN2_1WK, CHOLHTN2_2WK, IBUPROFENWEEK, INSULIN2_1WK, METFOR2_1WK, NAPROXENWEEK, PAINRELWEEK, REGASPRINWEEK]
// JSON WARNING --> Concept ID 785412329 with concept "Days per month" is shared between these Textbox codes: [ACETMONTH, ACIDSUP2_1MO, ACIDSUP2_2MO, ACIDSUP2_3MO, BABYASPRINMONTH, CELECOXIBMONTH, CHOLHTN2_1MO, CHOLHTN2_2MO, IBUPROFENMONTH, INSULIN2_1MO, METFOR2_1MO, NAPROXENMONTH, PAINRELMONTH, REGASPRINMONTH]
// JSON WARNING --> Concept ID 802622485 with concept "Year of surgery" is shared between these Textbox codes: [APPEND_YEAR, BARSUR_YEAR, BREASTABSS_YEAR, BREASTDBLREM_YEAR, BREASTIMPLANTS_YEAR, BREASTLACTREM_YEAR, BREASTLIFT_YEAR, BREASTOTH_YEAR, BREASTPARTREM_YEAR, BREASTRECON_YEAR, BREASTREDN_YEAR, BREASTREM_YEAR, FTREM2_YEAR, GALLREM_YEAR, HYSTER_YEAR, KIDREM2_YEAR, LIPOSUCT_YEAR, OVARYREM2_YEAR, PENREM_YEAR, PROSREM2_YEAR, SPLEENREM_YEAR, SRVSCR_APPENDECYEAR_V1R0, SRVSCR_BARSURGYEAR_V1R0, SRVSCR_BREASTABSCYR_V1R0, SRVSCR_BREASTDBLREMYR_V1R0, SRVSCR_BREASTIMPLYR_V1R0, SRVSCR_BREASTLACREMYR_V1R0, SRVSCR_BREASTLIFTYR_V1R0, SRVSCR_BREASTOTHYR_V1R0, SRVSCR_BREASTPTREMYR_V1R0, SRVSCR_BREASTRECONYR_V1R0, SRVSCR_BREASTREDYR_V1R0, SRVSCR_BREASTREMYR_V1R0, SRVSCR_CHOLECYEAR_V1R0, SRVSCR_FSTSURGDBLREMYR_V1R0, SRVSCR_HYSTYEAR_V1R0, SRVSCR_LIPOSUCTYEAR_V1R0, SRVSCR_NEPHRECTOMYYR_V1R0, SRVSCR_OOPHORECYR_V1R0, SRVSCR_PENREMYEAR_V1R0, SRVSCR_PROSREMSURGYR_V1R0, SRVSCR_SALPINGECYR_V1R0, SRVSCR_SECSURGDBLREMYR_V1R0, SRVSCR_SPLENECTOMYYR_V1R0, SRVSCR_TESTREMSURGYR_V1R0, SRVSCR_THYROIDECTOMYYR_V1R0, SRVSCR_TONSILSYEAR_V1R0, SRVSCR_TUBLIGYEAR_V1R0, SRVSCR_VASECTOMYYR_V1R0, TESTREM2_YEAR, THYRDREM_YEAR, TONSILS_YEAR, TUBLIG_YEAR, VASEC_YEAR]
// JSON WARNING --> Concept ID 810608313 with concept "# Servings per day" is shared between these Textbox codes: [EAMAR9ANUM, EAMAR9CNUM, THMAR9ANUM, THMAR9CNUM]
// JSON WARNING --> Concept ID 850393641 with concept "# of Minutes" is shared between these Textbox codes: [FALLASLEEPMIN, LAYINBEDMIN, NONWORKAWAKEBEFOREUPMIN, NONWORKFALLASLEEPMIN, OUTSIDEMIN, WORKDAYOUTSIDEMIN]
// JSON WARNING --> Concept ID 942347130 with concept "Other breast surgeries: Please describe[text box]" is shared between these Textbox codes: [BREASTSUR_TB, SRVSCR_BREASTOTHERDES_V1R0]
// JSON WARNING --> Concept ID 943813942 with concept "Year moved out" is shared between these Textbox codes: [CHILDADD6_1_YEAR, HOMEMOVEOUT10_YEAR, HOMEMOVEOUT11_YEAR, HOMEMOVEOUT1_YEAR, HOMEMOVEOUT2_YEAR, HOMEMOVEOUT3_YEAR, HOMEMOVEOUT4_YEAR, HOMEMOVEOUT5_YEAR, HOMEMOVEOUT6_YEAR, HOMEMOVEOUT7_YEAR, HOMEMOVEOUT8_YEAR, HOMEMOVEOUT9_YEAR]
// JSON WARNING --> Concept ID 970604592 with concept "Years used" is shared between these Textbox codes: [ANYCOMESTYEAR, COMBINEDYEAR, COPIUDYEAR, DEPROPROVYEAR, ESTOTHERYEAR, ESTSKINYEAR, HORCOMPILLYEAR, HORIUDYEAR, HORMEDOTHERYEAR, HORMEDPATCHYEAR, HORMEDRINGYEAR, MINIPILLYEAR, NORPLANTYEAR, ORALESTYEAR, ORALMEDYEAR, PATCHESTYEAR, PRESHOR2YEAR, PROESTYEAR, RINGYEAR, TWOPILLYEAR]
//This file was last modified on Fri Feb 14 14:09:21 2025 -0500 (short timestamp = 2025-02-14-19-09-21)
//{"version":"2.3"}
{"name":"D_745268907_V2"}
[INTROM2] In this set of questions we ask about a few topics that affect your health. These topics include your current and past use of medications, your physical activity (including exercise), and your sleep habits.
|displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)|We also ask some questions about your reproductive health. These questions will focus mainly on your menstrual periods, pregnancies, and if you have used any hormonal medications.|
[SECTION1] <b>Medications</b>
First, we will ask you about your current and past use of different medications. This information will help us understand your medical history and current health status.
When we ask you to give an exact amount of pills, please make your best guess if you are not sure. If you take half a pill, please count this as one pill.
[D_399982309?]<b>Pain Relievers</b>
Have you ever taken any of these medications at least <b>4 times a month for 6 months or longer</b>? Select all that apply.
[469512398|babyAsprin] Baby or low-dose aspirin (81 mg or less) -> D_861838892
[194424439|regAsprin] Regular or extra strength aspirin (such as Bufferin® or Anacin®) -> D_837412550
[422188606|ibuprofen]Ibuprofen (such as Motrin® or Advil®) -> D_388804810
[555555502|acet] Acetaminophen (such as Tylenol®) -> D_614446276
[800410166|naproxen] Naproxen (such as Naprosyn®, Anaprox®, or Aleve®) -> D_234177873
[221645137|celecoxib] Celebrex® (Celecoxib) -> D_248599913
[974248369|painReliever] Prescription pain relievers containing opioids (such as hydrocodone (such as Vicodin®, Lorcet®, Lortab®, or Norco®), oxycodone (such as OxyContin® or Percocet®), morphine (such as Kadian® or Avinza®), Fentanyl, codeine, tramadol, methadone, oxymorphone, hydromorphone (Dilaudid®), or meperidine (Demerol®)) -> D_697661603
[535003378*] None of the above
< -> D_414005872 >
[D_861838892?] During the time(s) that you were taking <b>baby or low-dose aspirin (81 mg or less)</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=PAINREL2_1 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=PAINREL2_1 id=D_785412329 min=1 max=31|
< -> D_596961796 >
[D_596961796?] On the days that you took baby or low-dose aspirin (81 mg or less), about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_113681507 >
[D_113681507?] About how many years did you take baby or low-dose aspirin (81 mg or less)?
#Years |__|__|min=1 max=_value("age")|
< -> D_177526169 >
[D_177526169?] When was the <b>last</b> time you took baby or low-dose aspirin (81 mg or less)?
(317567178) In the past month -> D_643807999
(484055234) More than a month ago, but in the past year -> D_643807999
(802197176) More than 1 year ago -> D_564374538
< #NR -> D_564374538 >
[D_564374538?] How many years ago did you <b>last</b> take baby or low-dose aspirin (81 mg or less)?
#Years ago |__|__|min=1 max=_value("age")|
< -> D_643807999 >
[D_643807999?] Why did you take baby or low-dose aspirin (81 mg or less)? Select all that apply.
[323106499] Arthritis
[769901710] Back pain/backache
[727773491,displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)] Menstrual Pain
[283652434] Disease prevention
[243596698] Headaches/migraine
[853261835] Illness, cold/flu, fever
[191656389] Muscle or joint pain, joint or bone injuries, sprains, or strains
[558504672] Toothache
[D_837412550?] During the time(s) that you were taking <b>regular or extra strength aspirin</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=PAINREL2_2 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=PAINREL2_2 id=D_785412329 min=1 max=31|
< -> D_825189914 >
[D_825189914?] On the days that you took regular or extra strength aspirin, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_615979584 >
[D_615979584?] About how many years did you take regular or extra strength aspirin?
#Years |__|__|min=1 max=_value("age")|
< -> D_814141708 >
[D_814141708?] When was the <b>last</b> time you took regular or extra strength aspirin?
(317567178) In the past month -> D_275143071
(484055234) More than a month ago, but in the past year -> D_275143071
(802197176) More than 1 year ago -> D_265428345
< #NR -> D_265428345 >
[D_265428345?] How many years ago did you <b>last</b> take regular or extra strength aspirin?
#Years ago |__|__|min=1 max=_value("age")|
< -> D_275143071 >
[D_275143071?] Why did you take regular or extra strength aspirin? Select all that apply.
[323106499] Arthritis
[769901710] Back pain/backache
[727773491,displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)] Menstrual Pain
[283652434] Disease prevention
[243596698] Headaches/migraine
[853261835] Illness, cold/flu, fever
[191656389] Muscle or joint pain, joint or bone injuries, sprains, or strains
[558504672] Toothache
[D_388804810?] During the time(s) that you were taking <b>ibuprofen</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=PAINREL2_3 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=PAINREL2_3 id=D_785412329 min=1 max=31|
< -> D_753416375 >
[D_753416375?] On the days that you took ibuprofen, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_771526486 >
[D_771526486?] About how many years did you take ibuprofen?
#Years |__|__|min=1 max=_value("age")|
< -> D_292658699 >
[D_292658699?] When was the <b>last</b> time you took ibuprofen?
(317567178) In the past month -> D_152138929
(484055234) More than a month ago, but in the past year -> D_152138929
(802197176) More than 1 year ago -> D_491549803
< #NR -> D_491549803 >
[D_491549803?] How many years ago did you <b>last</b> take ibuprofen?
#Years ago |__|__|min=1 max=_value("age")|
< -> D_152138929 >
[D_152138929?] Why did you take ibuprofen? Select all that apply.
[323106499] Arthritis
[769901710] Back pain/backache
[727773491,displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)] Menstrual Pain
[283652434] Disease prevention
[243596698] Headaches/migraine
[853261835] Illness, cold/flu, fever
[191656389] Muscle or joint pain, joint or bone injuries, sprains, or strains
[558504672] Toothache
[D_614446276?] During the time(s) that you were taking <b>acetaminophen</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=PAINREL2_4 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=PAINREL2_4 id=D_785412329 min=1 max=31|
< -> D_646042915 >
[D_646042915?] On the days that you took acetaminophen, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_270254670 >
[D_270254670?] About how many years did you take acetaminophen?
#Years |__|__|min=1 max=_value("age")|
< -> D_861824298 >
[D_861824298?] When was the <b>last</b> time you took acetaminophen?
(317567178) In the past month -> D_630231395
(484055234) More than a month ago, but in the past year -> D_630231395
(802197176) More than 1 year ago -> D_846227588
< #NR -> D_846227588 >
[D_846227588?] How many years ago did you <b>last</b> take acetaminophen?
#Years ago |__|__|min=1 max=_value("age")|
< -> D_630231395 >
[D_630231395?] Why did you take acetaminophen? Select all that apply.
[323106499] Arthritis
[769901710] Back pain/backache
[727773491,displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)] Menstrual Pain
[283652434] Disease prevention
[243596698] Headaches/migraine
[853261835] Illness, cold/flu, fever
[191656389] Muscle or joint pain, joint or bone injuries, sprains, or strains
[558504672] Toothache
[D_234177873?] During the time(s) that you were taking <b>naproxen</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=PAINREL2_5 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=PAINREL2_5 id=D_785412329 min=1 max=31|
< -> D_799338907 >
[D_799338907?] On the days that you took naproxen, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_376720409 >
[D_376720409?] About how many years did you take naproxen?
#Years |__|__|min=1 max=_value("age")|
< -> D_575646308 >
[D_575646308?] When was the <b>last</b> time you took naproxen?
(317567178) In the past month -> D_655266993
(484055234) More than a month ago, but in the past year -> D_655266993
(802197176) More than 1 year ago -> D_798182168
< #NR -> D_798182168 >
[D_798182168?] How many years ago did you <b>last</b> take naproxen?
#Years ago |__|__|min=1 max=_value("age")|
< -> D_655266993 >
[D_655266993?] Why did you take naproxen? Select all that apply.
[323106499] Arthritis
[769901710] Back pain/backache
[727773491,displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)] Menstrual Pain
[283652434] Disease prevention
[243596698] Headaches/migraine
[853261835] Illness, cold/flu, fever
[191656389] Muscle or joint pain, joint or bone injuries, sprains, or strains
[558504672] Toothache
[D_248599913?] During the time(s) that you were taking <b>Celebrex® (celecoxib)</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=PAINREL2_6 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=PAINREL2_6 id=D_785412329 min=1 max=31|
< -> D_893965588 >
[D_893965588?] On the days that you took Celebrex® (celecoxib), about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_439072744>
[D_439072744?] About how many years did you take Celebrex® (celecoxib)?
#Years |__|__|min=1 max=_value("age")|
< -> D_733861762 >
[D_733861762?] When was the <b>last</b> time you took Celebrex® (celecoxib)?
(317567178) In the past month -> D_509383583
(484055234) More than a month ago, but in the past year -> D_509383583
(802197176) More than 1 year ago -> D_322479862
< #NR -> D_322479862 >
[D_322479862?] How many years ago did you <b>last</b> take Celebrex® (celecoxib)?
#Years ago |__|__|min=1 max=_value("age")|
< -> D_509383583 >
[D_509383583?] Why did you take Celebrex® (celecoxib)? Select all that apply.
[323106499] Arthritis
[769901710] Back pain/backache
[727773491,displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)] Menstrual Pain
[283652434] Disease prevention
[243596698] Headaches/migraine
[853261835] Illness, cold/flu, fever
[191656389] Muscle or joint pain, joint or bone injuries, sprains, or strains
[558504672] Toothache
[D_697661603?] During the time(s) that you were taking <b>prescription pain relievers containing opioids</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=PAINREL2_7 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=PAINREL2_7 id=D_785412329 min=1 max=31|
< -> D_438682764 >
[D_438682764?] On the days that you took prescription pain relievers containing opioids, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_445571225 >
[D_445571225?] About how many years did you take prescription pain relievers containing opioids?
#Years |__|__|min=1 max=_value("age")|
< -> D_761822652 >
[D_761822652?] When was the <b>last</b> time you took prescription pain relievers containing opioids?
(317567178) In the past month -> D_887435355
(484055234) More than a month ago, but in the past year -> D_887435355
(802197176) More than 1 year ago -> D_737490587
< #NR -> D_737490587 >
[D_737490587?] How many years ago did you <b>last</b> take prescription pain relievers containing opioids?
#Years ago |__|__|min=1 max=_value("age")|
< -> D_887435355 >
[D_887435355?] Why did you take prescription pain relievers containing opioids? Select all that apply.
[323106499] Arthritis
[769901710] Back pain/backache
[727773491,displayif=valueIsOneOf("D_750420077",578416151,434651539) or valueEquals("D_407056417",536341288)] Menstrual Pain
[283652434] Disease prevention
[243596698] Headaches/migraine
[853261835] Illness, cold/flu, fever
[191656389] Muscle or joint pain, joint or bone injuries, sprains, or strains
[558504672] Toothache
[D_414005872?] Did you ever use prescription pain relievers that contain opioids in any way not directed by a doctor? This might include using them without a prescription, using more than directed, or using them more often or for a longer time than directed. Please remember that we protect your privacy. We remove information that can identify you from your survey answers before we share them with researchers.
(104430631) No
(132099255) Sometimes
(211590917) Often
(746038746) Prefer not to answer
[D_614123836?] <b>Cholesterol and Blood Pressure (Hypertension) Medications</b>
Have you ever taken any of these medications at least <b>4 times a month for 6 months or longer</b>? Select all that apply.
[480724806|statin] Cholesterol or lipid lowering drugs/Statins (such as atorvastatin (Lipitor®), fluvastatin (such as Lescol® or Lescol® XL), lovastatin (such as Mevacor® or Altoprev®), pravastatin (Pravachol®), rosuvastatin (Crestor®), simvastatin (Zocor), or pitavastatin (Livalo®)) -> D_731790154
[819373917|hbp] Drugs used to treat high blood pressure (hypertension) (such as Bumetanide (Bumex®), Chlorthalidone (Hygroton®), Chlorothiazide (Diuril®), Ethacrynate (Edecrin®), Furosemide (Lasix®), Hydrochlorothiazide HCTZ (such as Esidrix®, Hydrodiuril®, or Microzide®), Indapamide (Lozol®), Methyclothiazide (Enduron®), Metolazone (such as Mykroz® or Zaroxolyn®), or Torsemide (Demadex®)) -> D_305292465
[535003378*] None of the above
< -> D_112024853 >
[D_731790154?] During the time(s) that you were taking <b>statins/cholesterol or lipid lowering drugs</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=CHOLHTN2_1 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=CHOLHTN2_1 id=D_785412329 min=1 max=31|
< -> D_550092533 >
[D_550092533?] On the days that you took statins/cholesterol or lipid lowering drugs, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_163057677 >
[D_163057677?] About how many years did you take statins/cholesterol or lipid lowering drugs?
#Years |__|__|min=1 max=_value("age")|
< -> D_225047594 >
[D_225047594?] When was the <b>last</b> time you took statins/cholesterol or lipid lowering drugs?
(317567178) In the past month
(484055234) More than a month ago, but in the past year
(802197176) More than 1 year ago -> D_297084062
< #NR -> D_297084062 >
[D_297084062?] How many years ago did you <b>last</b> take statins/cholesterol or lipid lowering drugs?
#Years ago |__|__|min=1 max=_value("age")|
[D_305292465?] During the time(s) that you were taking <b>anti-hypertensive medication/drugs used to treat hypertension (high blood pressure)</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=CHOLHTN2_2 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=CHOLHTN2_2 id=D_785412329 min=1 max=31|
< -> D_901498441 >
[D_901498441?] On the days that you took anti-hypertensive medication/drugs used to treat hypertension (high blood pressure), about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_147792229 >
[D_147792229?] About how many years did you take anti-hypertensive medication/drugs used to treat hypertension (high blood pressure)?
#Years |__|__|min=1 max=_value("age")|
< -> D_976052812 >
[D_976052812?] When was the <b>last</b> time you took anti-hypertensive medication/drugs used to treat hypertension (high blood pressure)?
(317567178) In the past month
(484055234) More than a month ago, but in the past year
(802197176) More than 1 year ago -> D_991427384
< #NR -> D_991427384 >
[D_991427384?] How many years ago did you <b>last</b> take anti-hypertensive medication/drugs used to treat hypertension (high blood pressure)?
#Years ago |__|__|min=1 max=_value("age")|
[D_112024853?]<b>Metformin</b>
Have you ever taken <b>metformin</b> (such as Glucophage®, Glumetza®, Riomet®, Fortamet®, or Glucophage® XR) at least <b>4 times a month for 6 months or longer</b>?
(353358909) Yes -> D_694817520
(104430631) No -> D_982448213
< #NR -> D_982448213 >
[D_694817520?] During the time(s) that you were taking <b>metformin</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=METFOR2_1 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=METFOR2_1 id=D_785412329 min=1 max=31|
[D_991622246?] On the days that you took metformin, about how many milligrams did you take <b>per day</b>, on most days?
#Milligrams per day |__|__|id=D_101310722 min=0|
[178420302*] Don’t know
[D_450131058?] About how many years did you take metformin?
#Years |__|__|min=1 max=_value("age")|
[D_991873978?] When was the <b>last</b> time you took metformin?
(317567178) In the past month -> D_982448213
(484055234) More than a month ago, but in the past year -> D_982448213
(802197176) More than 1 year ago -> D_371176229
< #NR -> D_982448213 >
[D_371176229?] How many years ago did you <b>last</b> take metformin?
#Years ago |__|__|min=1 max=_value("age")|
[D_982448213?]<b>Insulin</b>
Have you ever taken <b>insulin</b> at least <b>4 times a month for 6 months or longer</b>?
(353358909) Yes -> D_745223146
(104430631) No -> D_643361372
< #NR -> D_643361372 >
[D_745223146?] During the time(s) that you were taking insulin, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=INSULIN2_1 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__| xor=INSULIN2_1 id=D_785412329 min=1 max=31|
[D_273218182?] On the days that you took insulin, about how many units did you take <b>per day</b>, on most days?
#Units per day |__|__|id=D_101310722 min=1|
[178420302*] Don’t know
[D_850202336?] On the days that you took insulin, what concentration did you take?
(310201523) 100 unit per ml
(290716491) 500 unit per ml
(178420302) Don't know
(807835037) Other: Please describe |__|id=D_526448646|
[D_799903478?] About how many years did you take insulin?
#Years |__|__|min=1 max=_value("age")|
[D_465635548?] When was the <b>last</b> time you took insulin?
(317567178) In the past month -> D_643361372
(484055234) More than a month ago, but in the past year -> D_643361372
(802197176) More than 1 year ago -> D_556235252
< #NR -> D_643361372 >
[D_556235252?] How many years ago did you <b>last</b> take insulin?
#Years ago |__|__|min=1 max=_value("age")|
[D_643361372?]<b>Acid Suppressive Drugs</b>
Have you ever taken any of these medications at least <b>4 times a month for 6 months or longer</b>? Select all that apply.
[933374659|prespump]Prescription proton pump inhibitors (such as omeprazole (such as Prilosec® or Zegerid®), esomeprazole (Nexium®), lansoprazole (Prevacid®), rabeprazole (AcipHex), pantoprazole (Protonix®), or dexlansoprazole (Dexilant®)) -> D_172234651
[920460744|otcpump]Over-the-counter proton pump inhibitors (such as esomeprazole (Nexium®), omeprazole (Prilosec® OTC), omeprazole with sodium bicarbonate (Zegerid®), or lansoprazole (Prevacid® 24HR)) -> D_416865817
[449861632|otcblkr] Over-the-counter H2 receptor blockers (such as famotidine (Pepcid®, Zantac®, or Tagamet®)) -> D_266752903
[535003378*] None of the above
< -> SECTION2 >
[D_172234651?,displayif=equals(D_643361372,933374659)] During the time(s) that you were taking <b>prescription proton pump inhibitors</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=ACIDSUP2_1 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__|xor=ACIDSUP2_1 id=D_785412329 min=1 max=31|
< -> D_753610471 >
[D_753610471?,displayif=equals(D_643361372,933374659)] On the days that you took prescription proton pump inhibitors, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_424183977 >
[D_424183977?,displayif=equals(D_643361372,933374659)] About how many years did you take prescription proton pump inhibitors?
#Years |__|__|min=1 max=_value("age")|
< -> D_824287808 >
[D_824287808?,displayif=equals(D_643361372,933374659)] When was the <b>last</b> time you took prescription proton pump inhibitors?
(317567178) In the past month
(484055234) More than a month ago, but in the past year
(802197176) More than 1 year ago -> D_889053435
< #NR -> D_889053435 >
[D_889053435?,displayif=equals(D_643361372,933374659)] How many years ago did you <b>last</b> take prescription proton pump inhibitors?
#Years ago |__|__|min=1 max=_value("age")|
[D_416865817?,displayif=equals(D_643361372,920460744)] During the time(s) that you were taking <b>over-the-counter proton pump inhibitors</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=ACIDSUP2_2 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__|xor=ACIDSUP2_2 id=D_785412329 min=1 max=31|
< -> D_803968511 >
[D_803968511?,displayif=equals(D_643361372,920460744)] On the days that you took over-the-counter proton pump inhibitors, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_378572291 >
[D_378572291?,displayif=equals(D_643361372,920460744)] About how many years did you take over-the-counter proton pump inhibitors?
#Years |__|__|min=1 max=_value("age")|
< -> D_846978339 >
[D_846978339?,displayif=equals(D_643361372,920460744)] When was the <b>last</b> time you took over-the-counter proton pump inhibitors?
(317567178) In the past month
(484055234) More than a month ago, but in the past year
(802197176) More than 1 year ago -> D_936366310
< #NR -> D_936366310 >
[D_936366310?,displayif=equals(D_643361372,920460744)] How many years ago did you <b>last</b> take over-the-counter proton pump inhibitors?
#Years ago |__|__|min=1 max=_value("age")|
[D_266752903?,displayif=equals(D_643361372,449861632)] During the time(s) that you were taking <b>over-the-counter H2 receptor blockers</b>, about how many <b>days per week OR per month</b> did you take it? Please fill out either days per week or days per month.
#Days per Week |__|__|xor=ACIDSUP2_3 id=D_765748316 min=1 max=7|
Or
#Days per Month |__|__|xor=ACIDSUP2_3 id=D_785412329 min=1 max=31|
< -> D_618427836 >
[D_618427836?,displayif=equals(D_643361372,449861632)] On the days that you took over-the-counter H2 receptor blockers, about how many pills did you take <b>per day</b>, on most days?
#Pills per day |__|__|id=D_101310722 min=1 max=99|
[178420302*] Don’t know
< -> D_774514900 >
[D_774514900?,displayif=equals(D_643361372,449861632)] About how many years did you take over-the-counter H2 receptor blockers?
#Years |__|__|min=1 max=_value("age")|
< -> D_368595692 >
[D_368595692?,displayif=equals(D_643361372,449861632)] When was the <b>last</b> time you took over-the-counter H2 receptor blockers?
(317567178) In the past month
(484055234) More than a month ago, but in the past year
(802197176) More than 1 year ago -> D_497904005
< #NR -> D_497904005 >
[D_497904005?,displayif=equals(D_643361372,449861632)] How many years ago did you <b>last</b> take over-the-counter H2 receptor blockers?
#Years ago |__|__|min=1 max=_value("age")|
[SECTION2] <b>Reproductive Health</b>
In the next set of questions, we ask about your reproductive health. Remember, we protect your privacy. We remove information that can identify you from your survey answers before we share them with researchers.
// PTH - recoded SECTION2_SKIPPED to account for changes in the updated Quex, so all males are skipped to TESTTHER
[SECTION2_SKIPPED,displayif=not (equals("D_407056417",536341288) or valueIsOneOf("D_750420077",578416151,434651539))]
<b>Testosterone & Other Hormone Therapy</b>
< -> D_111235606 >
[INTROWH,displayif=equals("D_407056417",536341288) or valueIsOneOf("D_750420077",578416151,434651539)]This section asks about your menstrual history, past or current pregnancies and your use of hormone medications.
When we ask you to give an exact date, age, or number, please make your best guess if you are not sure.
[INTROMENSHIS]<b>Menstrual Health History</b>
First, we ask you some questions about your first menstrual period and your menstrual cycle shortly after you started your first menstrual period. If you were using hormonal medication or device during this time, we are interested in your cycle length <b>before</b> you used the hormonal medication or device.
[D_496539718?]
How old were you when you had your <b>first</b> menstrual period? Please make your best guess if you are not sure.
Age |__|__|id=D_969451837 min=0 max=_value("age")|
[648960871*] I have never had a menstrual period -> INTROMENSHIS2
< #NR -> INTROMENSHIS2 >
[D_167997205?] How long after your first menstrual period did your periods become regular? By regular, we mean that you could predict the start of your next period within a few days. If you had to take hormonal medication or device for your period to become regular, please select “Never became regular”.
(648960871) Never became regular -> INTROMENSHIS2
(868025301) Within 1 year -> D_972593606
(939110313) 1 to 2 years -> D_972593606
(410083265) More than 2 years to 3 years -> D_972593606
(718537646) More than 3 years to 4 years -> D_972593606
(801142243) More than 4 years -> D_972593606
(178420302) Don't know -> D_972593606
< #NR -> INTROMENSHIS2 >
[D_972593606?] Once your menstrual periods became regular, what was the usual length of your menstrual cycle? The length of a menstrual cycle is the number of days from the first day of one menstrual period to the first day of the next menstrual period.
(549031911) Too irregular to guess or used hormonal medication or device (such as an intrauterine device (IUD)) to control menstrual cycle -> INTROMENSHIS2
(858427002) Less than 21 days -> INTROMENSHIS2
(471375042) 21 days or more -> D_791830593
< #NR-> INTROMENSHIS2 >
[D_791830593?] About how many days long was your usual menstrual cycle?
#Days |__|__|min=21 max=99|
[INTROMENSHIS2] In the next set of questions we ask about your menstrual experience in the <b>past 12 months</b>. Please answer these questions to the best of your ability. The combination of responses that you provide will help researchers better understand your menstrual health and experience.
[D_547633480?]In the <b>past 12 months</b> have you experienced any of the following? <b>Check all that apply.</b>
[801183888] Bleeding or spotting in between periods
[825584471] Bleeding or spotting after sex
[503760666] Heavy bleeding during your period
[120016082] Irregular periods in which cycle length varies by more than 7-9 days
[386152189] Bleeding after menopause -> D_534920374
[535003378*] I have <b>not</b> experienced any of the above
[D_164595895?,displayif=doesNotEqual(D_496539718,648960871)] In just the <b>past 12 months</b>, what was the usual length of your menstrual cycle? Please do <b>not</b> consider breakthrough bleeding (also known as spotting) as part of the menstrual cycle.
(650420270) I have not had a menstrual period in the past 12 months -> D_614145455
(113064256) I have had at least one menstrual period in the past 12 months but the frequency of my period changed (such as it stopped, became irregular, or difficult to predict) -> PREG
(548167685) Too irregular to guess -> D_534920374
(178420302) I don't know -> D_534920374
(859025516) Less than 21 days -> PREG
(471375042) 21 days or more -> D_263114971
< #NR -> PREG>
[D_263114971?,displayif=doesNotEqual(D_496539718,648960871)] In the <b>past 12 months</b>, about how many days long was your usual menstrual cycle? Breakthrough bleeding is <b>not</b> part of the menstrual cycle.
#Days |__|__|min=21 max=99|
< -> PREG>
[D_614145455?,displayif=doesNotEqual(D_496539718,648960871)] Please pick the option that best describes why you have <b>not</b> had a menstrual period in the <b>past 12 months</b>:
(582425113) My periods stopped naturally due to menopause -> PREG
(330745988) My periods stopped because I began taking female hormones during the menopausal transition or menopause (“the change of life”) -> PREG
(909774794) My periods stopped after surgery that removed my uterus and/or both ovaries -> D_534920374
(868504994) My periods stopped after endometrial ablation (removal of the endometrium – lining of the uterus) -> D_534920374
(655309065) I am currently using a hormonal medication or device (such as an intrauterine device (IUD)) to prevent pregnancy, manage my menstrual cycle symptoms, and/or manage conditions like endometriosis or polycystic ovarian syndrome (PCOS) -> D_534920374
(757609794) I was pregnant or breastfeeding during the last year -> D_534920374
(585076356) My periods stopped after radiation or chemotherapy -> D_534920374
(807835037) My periods stopped for other reasons: Please describe |__|id=D_672810476| -> D_534920374
< #NR-> PREG >
[D_534920374?,displayif=doesNotEqual(D_496539718,648960871)] How old were you when you had your <b>last</b> menstrual period?
Age |__|__|min=0 max=_value("age")|
< #NR-> PREG >
[PREG]<b>Pregnancies</b> <br/>
Next, we will ask you some questions about pregnancies that you may have had.
[D_849945160?]Are you currently pregnant?
(353358909) Yes -> D_405571048
(104430631) No -> D_996243083
[D_996243083?]Have you ever been pregnant?
(353358909) Yes -> D_405571048
(104430631) No -> FERT1
< #NR -> FERT1 >
[D_405571048!] How many times have you been pregnant? Please include all live births, as well as pregnancies that ended as stillbirths or other pregnancy losses. Twins, triplets, or higher multiples count as one pregnancy.
#Pregnancies |__|__|min=1 max=99|
//[PREGWARNING,displayif=equals(isDefined(PREG3,-1),-1)] You told us that you have been pregnant, or are pregnant now. Click ‘back’ to enter the number of pregnancies you have had, or click next to skip this question.
//< -> FERT1 >
//[PREGCONFIRM,displayif=greaterThan(isDefined(PREG3,-1),-1)] You told us that you have been pregnant {$PREG3} time|displayif=greaterThan(PREG3,1)|s|, including all live births, as well as pregnancies that ended as stillbirths or other pregnancy losses.
//If this is <b>not</b> correct, please select the “Back” button to update your response. If this is correct, please select the “Next” button to move forward.
<loop max=25>
[D_968816827?,displayif=greaterThanOrEqual(D_405571048,#loop)]
How old were you when your {##} pregnancy began?
Age |__|__|min=isDefined(D_969451837,0) max=_value("age")|
[D_391951010?,displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))]
What was the outcome of this pregnancy?
(223216393) Live birth: single infant -> D_771528780
(628445697) Live birth: twins, triplets, or higher multiples
(419220239) Live birth and loss of one or more of multiples
(306890578) Pregnancy loss before 20 weeks -> PREGSUMMARY
(858244199) Pregnancy loss after 20 weeks -> D_779052408
(746038746) Prefer not to answer -> PREGSUMMARY
< #NR -> PREGSUMMARY >
[D_281494550?,displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))]
|displayif=equals(D_391951010,628445697)|How many infants were delivered?||displayif=equals(D_391951010,419220239)|How many infants were delivered? Include live births and stillbirths in your response.|
(582602017) Two (Twins)
(105727261) Three (Triplets)
(720288326) Four or more
[D_771528780?,displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))] What was the method of delivery?
(660308254) Cesarean
(936573532) Vaginal
[D_486574018?,displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))]
|displayif=or(equals(D_391951010,223216393),equals(D_391951010,628445697))|Did you |popup|breastfeed|breastfeed|Using a breast pump to express breastmilk, sometimes called "exclusively pumping," counts as breastfeeding.| ||displayif=equals(D_391951010,223216393)|this child||displayif=equals(D_391951010,628445697)|these children||displayif=or(equals(D_391951010,223216393),equals(D_391951010,628445697))|? If you are currently breastfeeding, select yes.| |displayif=equals(D_391951010,419220239)|Did you |popup|breastfeed|breastfeed|Using a breast pump to express breastmilk, sometimes called "exclusively pumping," counts as breastfeeding.|? If you are currently breastfeeding, select yes.|
(353358909) Yes
(104430631) No -> D_779052408
< #NR -> D_779052408 >
[D_278277373?,displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))]
|displayif=or(equals(D_391951010,223216393),equals(D_391951010,628445697))|How many months did you |popup|breastfeed|breastfeed|Using a breast pump to express breastmilk, sometimes called "exclusively pumping," counts as breastfeeding.| ||displayif=equals(D_391951010,223216393)|this child||displayif=equals(D_391951010,628445697)|these children||displayif=or(equals(D_391951010,223216393),equals(D_391951010,628445697))|? If you are currently breastfeeding, please tell us the number of months you have been breastfeeding so far.| |displayif=equals(D_391951010,419220239)|How many months did you |popup|breastfeed|breastfeed|Using a breast pump to express breastmilk, sometimes called "exclusively pumping," counts as breastfeeding.|? If you are currently breastfeeding, please tell us the number of months you have been breastfeeding so far.|
#Months breastfed |__|__|min=0 max=99|
[D_779052408?,displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))]
Did a doctor or other health professional tell you that you have or had <b>gestational diabetes</b> during this pregnancy?
(353358909) Yes
(104430631) No
[D_133297530?,displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))]
Did a doctor or other health professional tell you that you have or had |popup|<b>eclampsia or pre-eclampsia</b>|Eclampsia or Pre-eclampsia|A related medical condition is HELLP Syndrome. If a doctor or other health professional has ever told you that you have HELLP Syndrome, answer yes| during this pregnancy?
(353358909) Yes
(104430631) No
[PREGSUMMARY,displayif=greaterThanOrEqual(D_405571048,#loop)] Here’s a summary of the information you shared about this pregnancy. If any of the information is incorrect, please select the “Back” button to update your responses. If all of the information is correct, please select the “Next” button to move forward.
Pregnancy number: #loop
Age when pregnancy began: {$D_968816827} <br/>
|displayif=or(and(equals(D_849945160,353358909),greaterThan(D_405571048,#loop)),and(doesNotEqual(D_849945160,353358909),greaterThanOrEqual(D_405571048,#loop)))|Outcome of pregnancy: ||displayif=equals(D_391951010,223216393)| Live birth: single infant||displayif=equals(D_391951010,628445697)| Live birth: twins, triplets, or higher multiples||displayif=equals(D_391951010,419220239)| Live birth and loss of one or more of multiples||displayif=equals(D_391951010,306890578)| Pregnancy loss before 20 weeks ||displayif=equals(D_391951010,858244199)| Pregnancy loss after 20 weeks ||displayif=equals(D_391951010,746038746)| Prefer not to answer|<br/>
|displayif=valueIsOneOf("D_391951010",628445697,419220239)| Number of infants:||displayif=equals(D_281494550,582602017)| Two (Twins)||displayif=equals(D_281494550,105727261)| Three (Triplets)||displayif=equals(D_281494550,720288326)| Four or more|<br/>
|displayif=valueIsOneOf("D_391951010",223216393,628445697,419220239)| Method of delivery:||displayif=equals(D_771528780,660308254)| Cesarean||displayif=equals(D_771528780,936573532)| Vaginal|<br/>
|displayif=valueIsOneOf("D_391951010",223216393,628445697,419220239)| Did you breastfeed: ||displayif=equals(D_486574018,353358909)| Yes||displayif=equals(D_486574018,104430631)| No|<br/>
|displayif=equals(D_486574018,353358909)| Number of months of breastfeeding: {$D_278277373}|<br/>
|displayif=valueIsOneOf("D_391951010",223216393,628445697,419220239,858244199)| Did you have gestational diabetes:||displayif=equals(D_779052408,353358909)| Yes||displayif=equals(D_779052408,104430631)| No|<br/>
|displayif=valueIsOneOf("D_391951010",223216393,628445697,419220239,858244199)| Did you have pre-eclampsia or eclampsia:||displayif=equals(D_133297530,353358909)| Yes||displayif=equals(D_133297530,104430631)| No|
</loop>
[FERT1]<b>Fertility</b>
Next we will ask you some questions about your efforts to get pregnant and your use of medications designed to help you get pregnant.
[D_939897560?] Have you ever tried to get pregnant for more than one year, but did not get pregnant during that time?
(353358909) Yes
(104430631) No -> D_224681201
< #NR -> D_224681201>
[D_760801131?] How old were you when you <b>first</b> tried to get pregnant for over a year?
Age |__|__|min=0 max=_value("age")|
[D_424047361?] Did you ever seek medical advice when you tried to get pregnant for over a year?
(353358909) Yes
(104430631) No -> D_224681201
< #NR -> D_224681201>
[D_548355426?] When you tried to get pregnant for over a year, do you know what the issue was that caused you not to get pregnant?
Select all that apply.
[342735868|tubBloc] Tubal blockage
[990599372|OvaHorm] Ovary or hormone problem
[863286658|Endo] Endometriosis
[202355614|CerMuc] Cervical mucous factor
[201434907|SpousInf] Spouse/partners infertility
[570171052|notLooked] Cause of infertility was not looked into
[498799217|noCause] No cause was found
[807835037|Other] Other: Please describe |__|id=D_833755477|
[D_224681201?] Have you ever used fertility medications?
(353358909) Yes
(104430631) No -> D_111082535
(746038746) Prefer not to answer -> D_111082535
< #NR-> D_111082535>
[D_881200765?] Have you ever used any of these fertility medications? Select all that apply.
[619799524|clomid] Clomid® (clomiphene) -> D_139673389
[663814928|gonadotropins] Gonadotropins, which are commonly referred to as "injectables" or "injectable hormones" (such as Follistim®, Menopur®, Bravelle®, or Gonal-F®) -> D_943996164
[642004888|danazol] Danazol -> D_994899398
[454641975|danocrine] Danocrine® -> D_198719822
[256131117|hcg] hCG -> D_628137243
[532607252|milophene] Milophene® -> D_399078599
[459188493|lupronDepot] Lupron Depot® -> D_560711355
[304927036|nolvadex] Nolvadex® (tamoxifen) -> D_309710463
[100181644|pergonal] Pergonal® -> D_167207966
[372219003|serophene] Serophene® -> D_538349354
[743731422|synarel] Synarel® nasal solution -> D_767785846
[807835037|Other] Other medication: Please describe |__|id=D_762700622| -> D_466346054
[535003378*] None of the above
< -> D_111082535 >
[D_139673389?] In total, how many months or cycles did you take <b>Clomid®</b>?
#Months or cycles |__|__|min=0|
[D_943996164?] In total, how many months or cycles did you take <b>gonadotropins</b>?
#Months or cycles |__|__|min=0|
[D_994899398?] In total, how many months or cycles did you take <b>Danazol®</b>?
#Months or cycles |__|__|min=0|
[D_198719822?] In total, how many months or cycles did you take <b>Danocrine®</b>?
#Months or cycles |__|__|min=0|
[D_628137243?] In total, how many months or cycles did you take <b>hCG</b>?
#Months or cycles |__|__|min=0|
[D_399078599?] In total, how many months or cycles did you take <b>Milophene®</b>?
#Months or cycles |__|__|min=0|
[D_560711355?] In total, how many months or cycles did you take <b>Lupron Depot®</b>?
#Months or cycles |__|__|min=0|
[D_309710463?] In total, how many months or cycles did you take <b>Nolvadex®</b>?
#Months or cycles |__|__|min=0|
[D_167207966?] In total, how many months or cycles did you take <b>Pergonal®</b>?
#Months or cycles |__|__|min=0|
[D_538349354?] In total, how many months or cycles did you take <b>Serophene®</b>?
#Months or cycles |__|__|min=0|
[D_767785846?] In total, how many months or cycles did you take <b>Synarel® nasal solution</b>?
#Months or cycles |__|__|min=0|
[D_466346054?] In total, how many months or cycles did you take |displayif=exists("D_762700622")|<b>{$D_762700622}</b>?</br></br>||displayif=doesNotExist("D_762700622")|<b>the other fertility medication</b>?</br>|
#Months or cycles |__|__|min=0|
[D_111082535?] Have you ever had <b>in vitro fertilization (IVF)</b>?
(353358909) Yes -> D_875135634
(104430631) No -> HORMED
< #NR -> HORMED >
[D_875135634?] In total, how many times or cycles have you had in vitro fertilization (IVF)?
#Times or cycles |__|__|min=0 max=99|
[HORMED]<b>Hormone Medications and/or Contraceptive Devices</b>
The next few questions ask about your use of hormone medications and/or contraceptive devices, such as "the pill" or a vaginal ring.
[D_543780863?] Have you ever used any of these hormonal medications or devices? Select all that apply.
[441493408|comPill] Combined oral contraceptive pills, commonly called "the pill" (combined means the pill includes both estrogen and progesterone/progestin) -> D_880331901
[612012325|miniPill] Progesterone-only or progestin-only contraceptive pills, commonly called "the mini-pill" (including Opill®)-> D_809735528
[100752105|norplant] Norplant® (inserted under the skin of your upper arm, lasts several years) -> D_220105997
[207913198|depoProv] Depo-Provera® (birth control shot given once every three months) -> D_938969985
[863920008|ring] Vaginal ring (such as NuvaRing®, inserted vaginally each month) -> D_902999015
[787142499|patch] Birth control patch (such as Ortho Evra, applied to the skin) -> D_807214881
[205223932|copIud] Copper IUD (such as Paraguard® intrauterine device) -> D_901154649
[817131019|horIud] Hormonal IUD (such as Mirena® intrauterine device) -> D_404596261
[181769837|other] Other -> D_583012139
[535003378*] None of the above
< -> MENOHOR >
[D_880331901?]
How old were you when you <b>first</b> used <b>combined oral contraceptive pills</b>?
Age |__|__|min=0 max=_value("age")|
< -> D_301052397 >
[D_301052397?]
Are you currently using combined oral contraceptive pills?
(353358909) Yes -> D_215455305
(104430631) No -> D_734836192
< #NR -> D_734836192 >
[D_734836192?]
How old were you when you <b>last</b> used combined oral contraceptive pills?
Age |__|__|min=0 max=_value("age")|
< -> D_215455305 >
[D_215455305?]
In total, how many months OR years have you used combined oral contraceptive pills?
#Months |__|__|xor=HORMED5_1 id=D_434243220 min=0 max=99|
Or, if it is easier to remember years, enter that here:
#Years |__|__| xor=HORMED5_1 id=D_970604592 min=0 max=_value("age")|
[D_809735528?]
How old were you when you <b>first</b> used <b>progesterone-only or progestin-only contraceptive pills</b>?
Age |__|__|min=0 max=_value("age")|
< -> D_958009220 >
[D_958009220?]
Are you currently using progesterone-only or progestin-only contraceptive pills?
(353358909) Yes -> D_654271781
(104430631) No -> D_946211808
< #NR -> D_946211808 >
[D_946211808?]
How old were you when you <b>last</b> used progesterone-only or progestin-only contraceptive pills?
Age |__|__|min=0 max=_value("age")|
< -> D_654271781 >
[D_654271781?]
In total, how many months OR years have you used progesterone-only or progestin-only contraceptive pills?
#Months |__|__|xor=HORMED5_2 id=D_434243220 min=0 max=99|
Or, if it is easier to remember years, enter that here:
#Years |__|__| xor=HORMED5_2 id=D_970604592 min=0 max=_value("age")|
[D_220105997?]
How old were you when you <b>first</b> used <b>Norplant®</b>?
Age |__|__|min=0 max=_value("age")|
< -> D_806253825 >
[D_806253825?]
Are you currently using Norplant®?
(353358909) Yes -> D_604086099
(104430631) No -> D_819957363
< #NR -> D_819957363 >
[D_819957363?]
How old were you when you <b>last</b> used Norplant®?
Age |__|__|min=0 max=_value("age")|
< -> D_604086099 >
[D_604086099?]
In total, how many months OR years have you used Norplant®?
#Months |__|__|xor=HORMED5_3 id=D_434243220 min=0 max=99|
Or, if it is easier to remember years, enter that here:
#Years |__|__| xor=HORMED5_3 id=D_970604592 min=0 max=_value("age")|
[D_938969985?]
How old were you when you <b>first</b> used <b>Depo-Provera®</b>?
Age |__|__|min=0 max=_value("age")|
< -> D_876683805 >
[D_876683805?]
Are you currently using <b>Depo-Provera®</b>?
(353358909) Yes -> D_899455852
(104430631) No -> D_118237712
< #NR -> D_118237712 >
[D_118237712?]
How old were you when you <b>last</b> used Depo-Provera®?
Age |__|__|min=0 max=_value("age")|
< -> D_899455852 >
[D_899455852?]
In total, how many months OR years have you used Depo-Provera®?
#Months |__|__|xor=HORMED5_4 id=D_434243220 min=0 max=99|
Or, if it is easier to remember years, enter that here:
#Years |__|__| xor=HORMED5_4 id=D_970604592 min=0 max=_value("age")|
[D_902999015?]
How old were you when you <b>first</b> used <b>vaginal ring</b>?
Age |__|__|min=0 max=_value("age")|
< -> D_484006644 >
[D_484006644?]
Are you currently using vaginal ring?
(353358909) Yes -> D_358011592
(104430631) No -> D_190721176
< #NR -> D_190721176 >
[D_190721176?]
How old were you when you <b>last</b> used vaginal ring?
Age |__|__|min=0 max=_value("age")|
< -> D_358011592 >