-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodule3Stage.txt
2190 lines (1567 loc) · 213 KB
/
module3Stage.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-01-10-17-29-30_Transformation.json.
// JSON ERROR --> Concept ID collision for ID: 285545471 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2A_SRC] and Concept(s): [In a usual week, about how often do you drink tap water from your home? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 961178879 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2B_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make a cup of coffee? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 138116092 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2C_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make a cup of hot tea? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 393682471 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2D_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make a glass of iced tea? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 364303962 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2E_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make any other beverages or soup? We are interested in all tap water, whether or not it has been filtered or treated.]
// JSON ERROR --> Concept ID collision for ID: 944517297 | there are unexpected collisions between Quest ID(s): [DRINKSWTR2F_SRC] and Concept(s): [In a usual week, about how often do you use tap water from your home to make [insert response from DRINKSWTR1/other beverages]? We are interested in all tap water, whether or not it has been filtered or treated.]
// 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 --> DRINKSWTR2A_SRC option DRINKSWTR2A conceptId 285545471 already maps to Quest code: DRINKSWTR2A_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2B_SRC option DRINKSWTR2B conceptId 961178879 already maps to Quest code: DRINKSWTR2B_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2C_SRC option DRINKSWTR2C conceptId 138116092 already maps to Quest code: DRINKSWTR2C_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2D_SRC option DRINKSWTR2D conceptId 393682471 already maps to Quest code: DRINKSWTR2D_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2E_SRC option DRINKSWTR2E conceptId 364303962 already maps to Quest code: DRINKSWTR2E_SRC | conceptId collision
// JSON ERROR --> DRINKSWTR2F_SRC option DRINKSWTR2F conceptId 944517297 already maps to Quest code: DRINKSWTR2F_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]
// ---------------------------------------------------------
// TRANSFORMER WARNING COUNT = 8
// ---------------------------------------------------------
// count: 8 | warning: "TOBACCO | this may be an untransformed Quest code"
//This file was last modified on Thu Dec 12 09:48:59 2024 -0500 (short timestamp = 2024-12-12-14-48-59)
//{"version":"1.6"}
{"name":"D_965707586"}
[INTROM3] The next questions are about your tobacco, nicotine, cannabis (marijuana), and alcohol use. In the last section, we will ask you about your exposure to the sun and use of tanning beds.
[INTROSMO] <b>Tobacco and Nicotine</b> <br/> <br/> First, we will ask you about your use of tobacco and nicotine products. Many questions will ask you to share the age you were when you started or stopped using a product. Please make your best guess if you are not sure about the age you were when you started or stopped using a product.
Please remember that we protect your privacy. We remove information that can identify you from your survey answers before we share them with researchers.
[D_947205597?] Have you ever used any of these <b>tobacco</b> products, even once? Select all that apply.
[712653855] Cigarettes (manufactured or hand-rolled)
[706254326] Electronic delivery devices that can be vaped, such as e-cigarettes; some of the most popular brands include Juul, blu, and NJOY. These electronic delivery devices are battery-powered and create vapor.
[198133418] Cigars, cigarillos, or little filtered cigars; some of the most popular brands include Macanudo, Romeo y Julieta, Black and Mild, Swisher Sweets, Prime Time, and Cheyenne. Please do not include blunts as we will be asking about cannabis (marijuana) use in a later section.
[817381897] Chewing tobacco, snus, snuff, or dip; some of the most popular brands are Red Man, Levi Garrett, BEECH-NUT, Skoal, and Copenhagen.
[539648641] Hookah or water pipe
[686310465] Tobacco pipe
[535003378*] I have <b>not</b> used any of these tobacco products
< #NR-> D_337810964 >
[D_763164658?,displayif=equals(D_947205597,712653855)]<b>Cigarettes</b>
How many <b>cigarettes</b> have you smoked in your life?
(151488193) 10 or less -> D_624111331
(805449318) 11 to 49 -> D_624111331
(486319890) 50 to 99 -> D_194557808
(132232896) 100 or more -> D_194557808
< #NR -> D_624111331>
[D_194557808?,displayif=equals(D_947205597,712653855)] How old were you when you first smoked a cigarette?
Age first smoked a cigarette |__|__|min=0 max=_value("age")|
[D_790436165?,displayif=equals(D_947205597,712653855)]How old were you when you started smoking cigarettes on a |popup|regular basis|Informational Text|We understand that the meaning of 'regular basis' might be different for different people. When you answer this question, please think about what 'regular basis' means to you.|?
Age started smoking cigarettes on a regular basis |__|__|id=D_408696162 min=valueOrDefault("D_194557808",0) max=_value("age")|
[648960871*] Never smoked on a regular basis
[D_639684251?,displayif=equals(D_947205597,712653855)] Do you smoke cigarettes now?
(419415087) No, not at all -> D_798549704
(299561721) Yes, but rarely -> D_798549704
(716761013) Yes, some days -> D_798549704
(804785430) Yes, every day -> D_304657762
[D_798549704?,displayif=equals(D_947205597,712653855)] When was the <b>last</b> time you smoked cigarettes?
(317567178) In the past month -> D_227439141
(484055234) More than a month ago, but in the past year -> D_318569032
(802197176) More than 1 year ago -> D_204884007
< #NR -> D_304657762>
[D_227439141?,displayif=equals(D_947205597,712653855)] <b>On how many of the past 30 days </b>have you smoked cigarettes?
#Days smoked in past 30 days |__|__|min=1 max=30|
< -> D_304657762>
[D_318569032?,displayif=equals(D_947205597,712653855)] How many months ago did you <b>last</b> smoke cigarettes?
#Months ago last smoked cigarettes |__|__|min=1 max=11|
< -> D_400969127>
[D_204884007?,displayif=equals(D_947205597,712653855)] How old were you when you <b>last</b> smoked cigarettes?
Age when last smoked cigarettes |__|__|min=valueOrDefault("D_408696162","D_194557808",0) max=_value("age")|
[D_400969127?,displayif=equals(D_947205597,712653855)] During the time you last smoked cigarettes, did you smoke cigarettes <b>every day</b>?
(104430631) No -> D_820220019
(353358909) Yes -> D_304657762
[D_820220019?,displayif=equals(D_947205597,712653855)] During that time, how many days (1 to 30) did you smoke cigarettes in a usual month?
#Days smoked in a usual month |__|__|min=1 max=30|
[D_304657762?,displayif=equals(D_947205597,712653855)] On days that you |displayif=doesNotExist("D_798549704") or valueEquals("D_798549704",317567178)|smoke||displayif=valueIsOneOf("D_798549704",484055234,802197176)|smoked|, how many cigarettes |displayif=doesNotExist("D_798549704") or valueEquals("D_798549704",317567178)|do||displayif=valueIsOneOf("D_798549704",484055234,802197176)|did| you smoke <b>per day</b>? Please provide the number of cigarettes, <b>not</b> the number of packs.
#Cigarettes smoked per day |__|__|min=1 max=99|
[D_815776236?,displayif=and(doesNotEqual(or(or(equals(D_639684251,804785430),and(or(or(equals(D_639684251,716761013),equals(D_639684251,299561721)),equals(D_639684251,419415087)),and(equals(D_798549704,484055234),equals(D_400969127,353358909)))),and(or(or(equals(D_639684251,716761013),equals(D_639684251,299561721)),equals(D_639684251,419415087)),and(equals(D_798549704,802197176),equals(D_400969127,353358909)))),1),equals(D_947205597,712653855))] Now thinking about your entire life, did you ever smoke cigarettes <b>every day</b>?
(104430631) No -> D_624111331
(353358909) Yes -> D_560293868
< #NR -> D_624111331 >
[D_560293868?,displayif=and(doesNotEqual(or(or(equals(D_639684251,804785430),and(or(or(equals(D_639684251,716761013),equals(D_639684251,299561721)),equals(D_639684251,419415087)),and(equals(D_798549704,484055234),equals(D_400969127,353358909)))),and(or(or(equals(D_639684251,716761013),equals(D_639684251,299561721)),equals(D_639684251,419415087)),and(equals(D_798549704,802197176),equals(D_400969127,353358909)))),1),equals(D_947205597,712653855))] How old were you when you stopped smoking cigarettes <b>every day</b>?
Age stopped smoking every day |__|__|min=valueOrDefault("D_408696162","D_194557808",0) max=_value("age")|
[D_399659169?,displayif=and(doesNotEqual(or(or(equals(D_639684251,804785430),and(or(or(equals(D_639684251,716761013),equals(D_639684251,299561721)),equals(D_639684251,419415087)),and(equals(D_798549704,484055234),equals(D_400969127,353358909)))),and(or(or(equals(D_639684251,716761013),equals(D_639684251,299561721)),equals(D_639684251,419415087)),and(equals(D_798549704,802197176),equals(D_400969127,353358909)))),1),equals(D_947205597,712653855))] When you were a daily smoker, how many cigarettes did you smoke <b>per day</b>?
#Cigarettes smoked per day |__|__|__|min=1 max=999|
[D_667002790?,displayif=equals(D_947205597,712653855)] On a usual day that you |displayif=doesNotExist("D_798549704") or valueEquals("D_798549704",317567178)| smoke||displayif=valueIsOneOf("D_798549704",484055234,802197176)|smoked|, how soon after you |displayif=doesNotExist("D_798549704") or valueEquals("D_798549704",317567178)|wake up||displayif=valueIsOneOf("D_798549704",484055234,802197176)|woke up| |displayif=doesNotExist("D_798549704") or valueEquals("D_798549704",317567178)|do||displayif=valueIsOneOf("D_798549704",484055234,802197176)|did| you smoke your first cigarette of the day?
(169225725) 5 minutes or less
(967681778) 6 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
[D_534351312?,displayif=equals(D_947205597,712653855)] On a usual day that you |displayif=doesNotExist("D_798549704") or valueEquals("D_798549704",317567178)| smoke,||displayif=valueIsOneOf("D_798549704",484055234,802197176)|smoked,| how often|displayif=doesNotExist("D_798549704") or valueEquals("D_798549704",317567178)| do||displayif=valueIsOneOf("D_798549704",484055234,802197176)| did| you smoke a cigarette before your first meal of the day?
(122802180) Almost all the time
(950591599) Most of the time
(167208049) About half of the time
(793320798) Some of the time
(216450786) Almost never
// Age ranges are shown if (CIG1 == 4 && (CIG4 == 1 || CIG7B == 1 || CIG8C == 1))
// A range is also only shown if CIG3_AGE <= the top of the range and (AGE-2) > the bottom of the range, if CIG8C==1 then also require CIG8 >= the bottom of the range
// When displaying the bottom of the range it should be replaced by CIG3_AGE if that is larger
// When display the top of the range, if CIG8C=1 then show the smaller of CIG8, AGE, and the top of the range; otherwise show the smaller of AGE and the top of the range.
// The final range has no upper bound so just ignore the top of the range requirements
// see Squish #4
// 0 -17
[D_594608533?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",18)<=17 or valueOrDefault("age",18)<=17))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",18)<=17 or valueOrDefault("D_204884007",18)<=17)))]
On days that you smoked when you were age|displayif=valueOrDefault("D_408696162",18)<=17| {$D_408696162} ||displayif=valueOrDefault("D_408696162",1)> 17| 0 |to |displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),lessThan(isDefined(D_204884007,17),17))|{$D_204884007}||displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),greaterThanOrEqual(isDefined(D_204884007,17),17))|17||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),lessThanOrEqual(age,17))|{$u:age}||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),greaterThan(age,17))|17|, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
// 18-24
[D_923371868?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",25)<=24 and valueOrDefault("age",17)>=18))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",25)<=24 and valueOrDefault("D_204884007",17)>=18)))]
On days that you smoked when you were age |displayif=valueOrDefault("D_408696162",1)>=18 and valueOrDefault("D_408696162",25)<=24|{$D_408696162}||displayif=valueOrDefault("D_408696162",19)< 18|18| to |displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),lessThan(isDefined(D_204884007,24),24))|{$D_204884007}||displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),greaterThanOrEqual(isDefined(D_204884007,24),24))|24||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),lessThanOrEqual(age,24))|{$u:age}||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),greaterThan(age,24))|24|, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
// 25-29
[D_445537380?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",30)<=29 and valueOrDefault("age",24)>=25))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",30)<=29 and valueOrDefault("D_204884007",24)>=25)))]
On days that you smoked when you were age |displayif=valueOrDefault("D_408696162",1)>=25 and valueOrDefault("D_408696162",30)<=29|{$D_408696162} ||displayif=valueOrDefault("D_408696162",26)< 25|25| to |displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),lessThan(isDefined(D_204884007,29),29))|{$D_204884007}||displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),greaterThanOrEqual(isDefined(D_204884007,29),29))|29||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),lessThanOrEqual(age,29))|{$u:age}||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),greaterThan(age,29))|29|, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
// 30-39
[D_387489930?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",40)<=39 and valueOrDefault("age",29)>=30))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",40)<=39 and valueOrDefault("D_204884007",29)>=30)))]
On days that you smoked when you were age |displayif=valueOrDefault("D_408696162",1)>30 and valueOrDefault("D_408696162",40)<=39|{$D_408696162} ||displayif=valueOrDefault("D_408696162",31)< 30|30| to |displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),lessThan(isDefined(D_204884007,39),39))|{$D_204884007}||displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),greaterThanOrEqual(isDefined(D_204884007,39),39))|39||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),lessThanOrEqual(age,39))|{$u:age}||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),greaterThan(age,39))|39|, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
// 40-49
[D_493642768?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",50)<=49 and valueOrDefault("age",39)>=40))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",50)<=49 and valueOrDefault("D_204884007",39)>=40)))]
On days that you smoked when you were age |displayif=valueOrDefault("D_408696162",1)>=40 and valueOrDefault("D_408696162",50)<=49|{$D_408696162} ||displayif=valueOrDefault("D_408696162",41)< 40|40| to |displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),lessThan(isDefined(D_204884007,49),49))|{$D_204884007}||displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),greaterThanOrEqual(isDefined(D_204884007,49),49))|49||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),lessThanOrEqual(age,49))|{$u:age}||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),greaterThan(age,49))|49|, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
// 50-59
[D_821629868?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",60)<=59 and valueOrDefault("age",49)>=50))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",60)<=59 and valueOrDefault("D_204884007",49)>=50)))]
On days that you smoked when you were age |displayif=valueOrDefault("D_408696162",1)>=50 and valueOrDefault("D_408696162",60)<=59|{$D_408696162} ||displayif=valueOrDefault("D_408696162",51)< 50|50| to |displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),lessThan(isDefined(D_204884007,59),59))|{$D_204884007}||displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),greaterThanOrEqual(isDefined(D_204884007,59),59))|59||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),lessThanOrEqual(age,59))|{$u:age}||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),greaterThan(age,59))|59|, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
// 60-69
[D_434034366?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",70)<=69 and valueOrDefault("age",59)>=60))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",70)<=69 and valueOrDefault("D_204884007",59)>=60)))]
On days that you smoked when you were age |displayif=valueOrDefault("D_408696162",1)>=60 and valueOrDefault("D_408696162",70)<=69|{$D_408696162} ||displayif=valueOrDefault("D_408696162",61)< 60|60| to |displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),lessThan(isDefined(D_204884007,69),69))|{$D_204884007}||displayif=and(and(equals(D_400969127,353358909),doesNotEqual(isDefined(D_204884007,-1),-1)),greaterThanOrEqual(isDefined(D_204884007,69),69))|69||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),lessThanOrEqual(age,69))|{$u:age}||displayif=and(or(doesNotEqual(D_400969127,353358909),equals(isDefined(D_204884007,-1),-1)),greaterThan(age,69))|69|, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
// 70+
[D_842088582?,displayif=(exists("D_408696162") and ((valueEquals("D_763164658",132232896) and valueEquals("D_639684251",804785430)) and (valueOrDefault("D_408696162",69)>=70 or valueOrDefault("age",69)>=70))) or (allExist("D_408696162","D_204884007") and ((valueEquals("D_763164658",132232896) and valueEquals("D_400969127",353358909)) and (valueOrDefault("D_408696162",69)>=70 or valueOrDefault("D_204884007",69)>=70)))]
On days that you smoked when you were age |displayif=valueOrDefault("age",1)>=70 and valueOrDefault("D_408696162",1)<70|70||displayif=valueOrDefault("D_408696162",1)>70|{$D_408696162}| or older, about how many cigarettes did you smoke <b>per day</b>?
#CIGARETTES PER DAY |__|__|min=0 max=99|
[D_624111331?,displayif=equals(D_947205597,706254326)]<b>Electronic Nicotine Delivery Devices</b>
The next questions are about electronic nicotine delivery devices, such as e-cigarettes; some of the most popular brands include JUUL, blu, and NJOY. These devices are also called "vapes" and using these devices is called "vaping".
How many days have you used <b>e-cigarettes or other vaping devices for nicotine or tobacco</b> in your life?
(151488193) 10 or less -> D_182431332
(805449318) 11 to 49 -> D_182431332
(486319890) 50 to 99 -> D_761037053
(132232896) 100 or more -> D_761037053
< #NR -> D_182431332>
[D_761037053?,displayif=equals(D_947205597,706254326)] How old were you when you <b>first</b> used e-cigarettes or other vaping devices for nicotine or tobacco?
Age first vaped |__|__|min=0 max=_value("age")|
[D_550244580?,displayif=equals(D_947205597,706254326)]
How old were you when you started using e-cigarettes or other vaping devices for nicotine or tobacco on a |popup|regular basis|Informational Text|We understand that the meaning of 'regular basis' might be different for different people. When you answer this question, please think about what "regular basis" means to you.|?
Age started vaping on a regular basis |__|__|id=D_517801904 min=isDefined(D_761037053,0) max=_value("age")|
[648960871*] Never used them on a regular basis
[D_751046675?,displayif=equals(D_947205597,706254326)] Do you use e-cigarettes or other vaping devices for nicotine or tobacco now?
(419415087) No, not at all -> D_238422161
(299561721) Yes, but rarely -> D_238422161
(716761013) Yes, some days -> D_238422161
(804785430) Yes, every day -> D_982470672
[D_238422161?,displayif=equals(D_947205597,706254326)] When was the <b>last</b> time you used e-cigarettes or other vaping devices for nicotine or tobacco?
(317567178) In the past month -> D_716554850
(484055234) More than a month ago, but in the past year -> D_724079256
(802197176) More than 1 year ago -> D_360277949
< #NR -> D_982470672>
[D_716554850?,displayif=equals(D_947205597,706254326)] <b>On how many of the past 30 days</b> have you used e-cigarettes or other vaping devices for nicotine or tobacco?
#Days used e-cigarettes or other vaping devices in past 30 days |__|__|min=1 max=30|
< -> D_982470672>
[D_724079256?,displayif=equals(D_947205597,706254326)] How many months ago did you <b>last</b> use e-cigarettes or other vaping devices for nicotine or tobacco?
#Months ago last used e-cigarettes or other vaping devices |__|__|min=1 max=11|
<-> D_242276545>
[D_360277949?,displayif=equals(D_947205597,706254326)] How old were you when you <b>last</b> used e-cigarettes or other vaping devices for nicotine or tobacco?
Age when last used e-cigarettes or other vaping devices |__|__|min=isDefined(isDefined(D_517801904,D_761037053),0) max=_value("age")|
[D_242276545?,displayif=equals(D_947205597,706254326)] During the time you last used e-cigarettes or other vaping devices for nicotine or tobacco, did you use them <b>every day</b>?
(104430631) No -> D_183546626
(353358909) Yes -> D_982470672
[D_183546626?,displayif=equals(D_947205597,706254326)] During that time, how many days (1 to 30) did you use e-cigarettes or other vaping devices for nicotine or tobacco in a usual month?
# Days used e-cigarettes or other vaping devices for nicotine or tobacco in usual month |__|__|min=1 max=30|
[D_982470672?,displayif=equals(D_947205597,706254326)]
On days that you |displayif=doesNotExist("D_238422161") or valueEquals("D_238422161",317567178)|use||displayif=valueIsOneOf("D_238422161",484055234,802197176)|used| e-cigarettes or other vaping devices, what is the total amount of time you |displayif=doesNotExist("D_238422161") or valueEquals("D_238422161",317567178)|use||displayif=valueIsOneOf("D_238422161",484055234,802197176)|used| them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
[D_333072838?,displayif=and(doesNotEqual(or(or(equals(D_751046675,804785430),and(or(or(equals(D_751046675,716761013),equals(D_751046675,299561721)),equals(D_751046675,419415087)),and(equals(D_238422161,484055234),equals(D_242276545,353358909)))),and(or(or(equals(D_751046675,716761013),equals(D_751046675,299561721)),equals(D_751046675,419415087)),and(equals(D_238422161,802197176),equals(D_242276545,353358909)))),1),equals(D_947205597,706254326))] Now thinking about your entire life, did you ever use e-cigarettes or other vaping devices for nicotine or tobacco <b>every day</b>?
(104430631) No -> D_182431332
(353358909) Yes -> D_388614168
< #NR -> D_182431332>
[D_388614168?,displayif=and(doesNotEqual(or(or(equals(D_751046675,804785430),and(or(or(equals(D_751046675,716761013),equals(D_751046675,299561721)),equals(D_751046675,419415087)),and(equals(D_238422161,484055234),equals(D_242276545,353358909)))),and(or(or(equals(D_751046675,716761013),equals(D_751046675,299561721)),equals(D_751046675,419415087)),and(equals(D_238422161,802197176),equals(D_242276545,353358909)))),1),equals(D_947205597,706254326))] How old were you when you stopped using e-cigarettes or other vaping devices for nicotine or tobacco <b>every day</b>?
Age stopped using e-cigarettes or other vaping devices every day |__|__|min=isDefined(isDefined(D_517801904,D_761037053),0) max=_value("age")|
[D_656911826?,displayif=and(doesNotEqual(or(or(equals(D_751046675,804785430),and(or(or(equals(D_751046675,716761013),equals(D_751046675,299561721)),equals(D_751046675,419415087)),and(equals(D_238422161,484055234),equals(D_242276545,353358909)))),and(or(or(equals(D_751046675,716761013),equals(D_751046675,299561721)),equals(D_751046675,419415087)),and(equals(D_238422161,802197176),equals(D_242276545,353358909)))),1),equals(D_947205597,706254326))] When you were a daily user of e-cigarettes or other vaping devices for nicotine or tobacco, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
[D_370901901?,displayif=equals(D_947205597,706254326)] What brand and model of device |displayif=doesNotExist("D_238422161") or valueEquals("D_238422161",317567178)|do||displayif=valueIsOneOf("D_238422161",484055234,802197176)|did| you use most often?
Device Brand/Model |__|
// Same logic as CIGLIFEA-CIGLIFEH just with different variable names
// 0 -17
[D_240089798?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",18)<=17 or valueOrDefault("age",18)<=17))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",18)<=17 or valueOrDefault("D_360277949",18)<=17)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=greaterThanOrEqual(isDefined(D_517801904,-1),0)|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),0)|0| to |displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),lessThan(isDefined(D_360277949,17),17))|{$D_360277949}||displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),greaterThanOrEqual(isDefined(D_360277949,17),17))|17||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),lessThanOrEqual(age,17))|{$u:age}||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),greaterThan(age,17))|17|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
// 18-24
[D_536216847?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",25)<=24 and valueOrDefault("age",17)>=18))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",25)<=24 and valueOrDefault("D_360277949",17)>=18)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=valueOrDefault("D_517801904",1)>=18 and valueOrDefault("D_517801904",1)<=24|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),18)|18| to |displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),lessThan(isDefined(D_360277949,24),24))|{$D_360277949}||displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),greaterThanOrEqual(isDefined(D_360277949,24),24))|24||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),lessThanOrEqual(age,24))|{$u:age}||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),greaterThan(age,24))|24|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
// 25-29
[D_622394149?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",30)<=29 and valueOrDefault("age",24)>=25))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",30)<=29 and valueOrDefault("D_360277949",24)>=25)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=valueOrDefault("D_517801904",1)>=25 and valueOrDefault("D_517801904",30)<=29|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),25)|25| to |displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),lessThan(isDefined(D_360277949,29),29))|{$D_360277949}||displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),greaterThanOrEqual(isDefined(D_360277949,29),29))|29||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),lessThanOrEqual(age,29))|{$u:age}||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),greaterThan(age,29))|29|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
// 30-39
[D_442002787?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",40)<=39 and valueOrDefault("age",29)>=30))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",40)<=39 and valueOrDefault("D_360277949",29)>=30)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=valueOrDefault("D_517801904",1)>30 and valueOrDefault("D_517801904",40)<=39|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),30)|30| to |displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),lessThan(isDefined(D_360277949,39),39))|{$D_360277949}||displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),greaterThanOrEqual(isDefined(D_360277949,39),39))|39||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),lessThanOrEqual(age,39))|{$u:age}||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),greaterThan(age,39))|39|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
// 40-49
[D_208578552?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",50)<=49 and valueOrDefault("age",39)>=40))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",50)<=49 and valueOrDefault("D_360277949",39)>=40)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=valueOrDefault("D_517801904",1)>=40 and valueOrDefault("D_517801904",50)<=49|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),40)|40| to |displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),lessThan(isDefined(D_360277949,49),49))|{$D_360277949}||displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),greaterThanOrEqual(isDefined(D_360277949,49),49))|49||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),lessThanOrEqual(age,49))|{$u:age}||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),greaterThan(age,49))|49|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
// 50-59
[D_480155628?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",60)<=59 and valueOrDefault("age",49)>=50))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",60)<=59 and valueOrDefault("D_360277949",49)>=50)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=valueOrDefault("D_517801904",1)>=50 and valueOrDefault("D_517801904",60)<=59|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),50)|50| to |displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),lessThan(isDefined(D_360277949,59),59))|{$D_360277949}||displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),greaterThanOrEqual(isDefined(D_360277949,59),59))|59||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),lessThanOrEqual(age,59))|{$u:age}||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),greaterThan(age,59))|59|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
// 60-69
[D_640944113?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",70)<=69 and valueOrDefault("age",59)>=60))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",70)<=69 and valueOrDefault("D_360277949",59)>=60)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=valueOrDefault("D_517801904",1)>=60 and valueOrDefault("D_517801904",70)<=69|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),60)|60| to |displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),lessThan(isDefined(D_360277949,69),69))|{$D_360277949}||displayif=and(and(equals(D_242276545,353358909),doesNotEqual(isDefined(D_360277949,-1),-1)),greaterThanOrEqual(isDefined(D_360277949,69),69))|69||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),lessThanOrEqual(age,69))|{$u:age}||displayif=and(or(doesNotEqual(D_242276545,353358909),equals(isDefined(D_360277949,-1),-1)),greaterThan(age,69))|69|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
// 70+
[D_866159532?,displayif=(exists("D_517801904") and ((valueEquals("D_624111331",132232896) and valueEquals("D_751046675",804785430)) and (valueOrDefault("D_517801904",69)>=70 or valueOrDefault("age",69)>=70))) or (allExist("D_517801904","D_360277949") and ((valueEquals("D_624111331",132232896) and valueEquals("D_242276545",353358909)) and (valueOrDefault("D_517801904",69)>=70 or valueOrDefault("D_360277949",69)>=70)))]
On days that you used e-cigarettes or other vaping devices for nicotine or tobacco when you were age |displayif=greaterThanOrEqual(isDefined(D_517801904,-1),70)|{$D_517801904}||displayif=lessThan(isDefined(D_517801904,-1),70)|70| or older, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(402752509) Didn’t use e-cigarettes or other vaping devices during this time
[D_182431332?,displayif=equals(D_947205597,198133418)]<b>Cigars and Cigarillos</b>
The next questions are about your use of cigars, cigarillos, or little filtered cigars. Some of the most popular brands include Macanudo, Romeo y Julieta, Black and Mild, Swisher Sweets, Prime Time, and Cheyenne.
How many <b>cigars, cigarillos, or little filtered cigars</b> have you smoked in your life?
(151488193) 10 or less -> D_306320432
(805449318) 11 to 49 -> D_306320432
(486319890) 50 to 99 -> D_241771440
(132232896) 100 or more -> D_241771440
<#NR -> D_306320432>
[D_241771440?,displayif=equals(D_947205597,198133418)] How old were you when you <b>first</b> smoked cigars, cigarillos, or little filtered cigars?
Age first smoked cigars, cigarillos, or little filtered cigars |__|__|min=0 max=_value("age")|
[D_814115676?,displayif=equals(D_947205597,198133418)]
How old were you when you started smoking cigars, cigarillos, or little filtered cigars on a |popup|regular basis|Informational Text|We understand that the meaning of 'regular basis' might be different for different people. When you answer this question, please think about what "regular basis" means to you.|?
Age started smoking cigars, cigarillos, or little filtered cigars on a regular basis |__|__|id=D_851145096 min=isDefined(D_241771440,0) max=_value("age")|
[648960871*] Never smoked on a regular basis
[D_564438246?,displayif=equals(D_947205597,198133418)] Do you smoke cigars, cigarillos, or little filtered cigars now?
(419415087) No, not at all -> D_789271762
(299561721) Yes, but rarely -> D_789271762
(716761013) Yes, some days -> D_789271762
(804785430) Yes, every day -> D_780721084
[D_789271762?,displayif=equals(D_947205597,198133418)] When was the <b>last</b> time you smoked cigars, cigarillos, or little filtered cigars?
(317567178) In the past month -> D_622210148
(484055234) More than a month ago, but in the past year -> D_457290610
(802197176) More than 1 year ago -> D_997412869
< #NR -> D_780721084>
[D_622210148?,displayif=equals(D_947205597,198133418)] <b>On how many of the past 30 days </b> have you smoked cigars, cigarillos, or little filtered cigars?
#Days smoked cigars, cigarillos, or little filtered cigars in past 30 days |__|__|min=1 max=30|
< -> D_780721084>
[D_457290610?,displayif=equals(D_947205597,198133418)] How many months ago did you <b>last</b> smoke cigars, cigarillos, or little filtered cigars?
#Months ago last smoked cigars, cigarillos, or little filtered cigars |__|__|min=1 max=11|
<-> D_395480458>
[D_997412869?,displayif=equals(D_947205597,198133418)] How old were you when you <b>last</b> smoked cigars, cigarillos, or little filtered cigars?
Age when last smoked cigars, cigarillos, or little filtered cigars |__|__|min=isDefined(isDefined(D_851145096,D_241771440),0) max=_value("age")|
[D_395480458?,displayif=equals(D_947205597,198133418)] During the time you last smoked cigars, cigarillos, or little filtered cigars, did you smoke them <b>every day</b>?
(104430631) No -> D_674378360
(353358909) Yes -> D_780721084
[D_674378360?,displayif=equals(D_947205597,198133418)] During that time, how many days (1 to 30) did you smoke cigars, cigarillos, or little filtered cigars in a usual month?
#Days smoked in a month |__|__|min=1 max=30|
[D_780721084?,displayif=equals(D_947205597,198133418)]
On days that you |displayif=doesNotExist("D_789271762") or valueEquals("D_789271762",317567178)|smoke||displayif=valueIsOneOf("D_789271762",484055234,802197176)|smoked|, how many cigars, cigarillos, or little filtered cigars |displayif=doesNotExist("D_789271762") or valueEquals("D_789271762",317567178)|do||displayif=valueIsOneOf("D_789271762",484055234,802197176)|did| you smoke <b>per day</b>?
#cigars, cigarillos, or little filtered cigars smoked per day |__|__|min=1 max=99|
[D_287715042?,displayif=and(doesNotEqual(or(or(equals(D_564438246,804785430),and(or(or(equals(D_564438246,716761013),equals(D_564438246,299561721)),equals(D_564438246,419415087)),and(equals(D_789271762,484055234),equals(D_395480458,353358909)))),and(or(or(equals(D_564438246,716761013),equals(D_564438246,299561721)),equals(D_564438246,419415087)),and(equals(D_789271762,802197176),equals(D_395480458,353358909)))),1),equals(D_947205597,198133418))] Now thinking about your entire life, did you ever smoke cigars, cigarillos, or little filtered cigars <b>every day</b>?
(104430631) No -> D_306320432
(353358909) Yes -> D_145078867
< #NR -> D_306320432>
[D_145078867?,displayif=and(doesNotEqual(or(or(equals(D_564438246,804785430),and(or(or(equals(D_564438246,716761013),equals(D_564438246,299561721)),equals(D_564438246,419415087)),and(equals(D_789271762,484055234),equals(D_395480458,353358909)))),and(or(or(equals(D_564438246,716761013),equals(D_564438246,299561721)),equals(D_564438246,419415087)),and(equals(D_789271762,802197176),equals(D_395480458,353358909)))),1),equals(D_947205597,198133418))] How old were you when you stopped smoking cigars, cigarillos, or little filtered cigars <b>every day</b>?
Age stopped smoking every day |__|__|min=isDefined(isDefined(D_851145096,D_241771440),0) max=_value("age")|
[D_598954337?,displayif=and(doesNotEqual(or(or(equals(D_564438246,804785430),and(or(or(equals(D_564438246,716761013),equals(D_564438246,299561721)),equals(D_564438246,419415087)),and(equals(D_789271762,484055234),equals(D_395480458,353358909)))),and(or(or(equals(D_564438246,716761013),equals(D_564438246,299561721)),equals(D_564438246,419415087)),and(equals(D_789271762,802197176),equals(D_395480458,353358909)))),1),equals(D_947205597,198133418))] When you were a daily smoker, how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
# cigars, cigarillos, or little filtered cigars smoked per day |__|__|__|min=1 max=999|
[D_103566006?,displayif=equals(D_947205597,198133418)] What kind of cigar, cigarillo or little filtered cigar |displayif=doesNotExist("D_789271762") or valueEquals("D_789271762",317567178)|do||displayif=valueIsOneOf("D_789271762",484055234,802197176)|did| you usually use? Select all that apply.
[123926260] Cigar
[741643840] Cigarillo
[959535900] Little filtered cigar
[807835037] Other: Please describe |__|id=D_325879966|
// Same logic as CIGLIFEA-CIGLIFEH just with different variable names
// 0 -17
[D_254689566?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",18)<=17 or valueOrDefault("age",18)<=17))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",18)<=17 or valueOrDefault("D_997412869",18)<=17)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),0)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),0)|0| to |displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),lessThan(isDefined(D_997412869,17),17))|{$D_997412869}||displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),greaterThanOrEqual(isDefined(D_997412869,17),17))|17||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),lessThanOrEqual(age,17))|{$u:age}||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),greaterThan(age,17))|17|, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
// 18-24
[D_951151270?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",25)<=24 and valueOrDefault("age",17)>=18))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",25)<=24 and valueOrDefault("D_997412869",17)>=18)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),18)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),18)|18| to |displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),lessThan(isDefined(D_997412869,24),24))|{$D_997412869}||displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),greaterThanOrEqual(isDefined(D_997412869,24),24))|24||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),lessThanOrEqual(age,24))|{$u:age}||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),greaterThan(age,24))|24|, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
// 25-29
[D_237415094?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",30)<=29 and valueOrDefault("age",24)>=25))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",30)<=29 and valueOrDefault("D_997412869",24)>=25)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),25)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),25)|25| to |displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),lessThan(isDefined(D_997412869,29),29))|{$D_997412869}||displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),greaterThanOrEqual(isDefined(D_997412869,29),29))|29||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),lessThanOrEqual(age,29))|{$u:age}||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),greaterThan(age,29))|29|, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
// 30-39
[D_868868325?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",40)<=39 and valueOrDefault("age",29)>=30))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",40)<=39 and valueOrDefault("D_997412869",29)>=30)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),30)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),30)|30| to |displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),lessThan(isDefined(D_997412869,39),39))|{$D_997412869}||displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),greaterThanOrEqual(isDefined(D_997412869,39),39))|39||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),lessThanOrEqual(age,39))|{$u:age}||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),greaterThan(age,39))|39|, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
// 40-49
[D_243519559?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",50)<=49 and valueOrDefault("age",39)>=40))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",50)<=49 and valueOrDefault("D_997412869",39)>=40)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),40)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),40)|40| to |displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),lessThan(isDefined(D_997412869,49),49))|{$D_997412869}||displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),greaterThanOrEqual(isDefined(D_997412869,49),49))|49||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),lessThanOrEqual(age,49))|{$u:age}||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),greaterThan(age,49))|49|, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
// 50-59
[D_365370279?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",60)<=59 and valueOrDefault("age",49)>=50))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",60)<=59 and valueOrDefault("D_997412869",49)>=50)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),50)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),50)|50| to |displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),lessThan(isDefined(D_997412869,59),59))|{$D_997412869}||displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),greaterThanOrEqual(isDefined(D_997412869,59),59))|59||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),lessThanOrEqual(age,59))|{$u:age}||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),greaterThan(age,59))|59|, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
// 60-69
[D_645681293?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",70)<=69 and valueOrDefault("age",59)>=60))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",70)<=69 and valueOrDefault("D_997412869",59)>=60)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),60)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),60)|60| to |displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),lessThan(isDefined(D_997412869,69),69))|{$D_997412869}||displayif=and(and(equals(D_395480458,353358909),doesNotEqual(isDefined(D_997412869,-1),-1)),greaterThanOrEqual(isDefined(D_997412869,69),69))|69||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),lessThanOrEqual(age,69))|{$u:age}||displayif=and(or(doesNotEqual(D_395480458,353358909),equals(isDefined(D_997412869,-1),-1)),greaterThan(age,69))|69|, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
// 70+
[D_440364083?,displayif=(exists("D_851145096") and ((valueEquals("D_182431332",132232896) and valueEquals("D_564438246",804785430)) and (valueOrDefault("D_851145096",69)>=70 or valueOrDefault("age",69)>=70))) or (allExist("D_851145096","D_997412869") and ((valueEquals("D_182431332",132232896) and valueEquals("D_395480458",353358909)) and (valueOrDefault("D_851145096",69)>=70 or valueOrDefault("D_997412869",69)>=70)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_851145096,-1),70)|{$D_851145096}||displayif=lessThan(isDefined(D_851145096,-1),70)|70| or older, about how many cigars, cigarillos, or little filtered cigars did you smoke <b>per day</b>?
#CIGARS, CIGARILLOS, OR LITTLE FILTERED CIGARS PER DAY |__|__|min=0 max=99|
[D_306320432?,displayif=equals(D_947205597,817381897)]<b>Smokeless Tobacco</b>
The next questions are about your use of chewing tobacco, snus, snuff, or dip. Some of the most popular brands are Red Man, Levi Garrett, BEECH-NUT, Skoal, and Copenhagen.
How many days have you used <b>chewing tobacco, snus, snuff, or dip</b> in your life?
(151488193) 10 or less -> D_981755099
(805449318) 11 to 49 -> D_981755099
(486319890) 50 to 99 -> D_213679054
(132232896) 100 or more -> D_213679054
< #NR -> D_981755099>
[D_213679054?,displayif=equals(D_947205597,817381897)] How old were you when you <b>first</b> used chewing tobacco, snus, snuff, or dip?
Age first used chewing tobacco, snus, snuff, or dip |__|__|min=0 max=_value("age")|
[D_257300783?,displayif=equals(D_947205597,817381897)]
How old were you when you started using chewing tobacco, snus, snuff, or dip on a |popup|regular basis|Informational Text|We understand that the meaning of 'regular basis' might be different for different people. When you answer this question, please think about what "regular basis" means to you.|?
Age started using chewing tobacco, snus, snuff, or dip on a regular basis |__|__|id=D_424527685 min=isDefined(D_213679054,0) max=_value("age")|
[648960871*] Never used them on a regular basis
[D_101710639?,displayif=equals(D_947205597,817381897)] Do you use chewing tobacco, snus, snuff, or dip now?
(419415087) No, not at all -> D_344631681
(299561721) Yes, but rarely -> D_344631681
(716761013) Yes, some days -> D_344631681
(804785430) Yes, every day -> D_394049992
[D_344631681?,displayif=equals(D_947205597,817381897)] When was the <b>last</b> time you used chewing tobacco, snus, snuff, or dip?
(317567178) In the past month -> D_872821562
(484055234) More than a month ago, but in the past year -> D_344583659
(802197176) More than 1 year ago -> D_671380198
< #NR -> D_394049992>
[D_872821562?,displayif=equals(D_947205597,817381897)] <b>On how many of the past 30 days </b> have you used chewing tobacco, snus, snuff, or dip?
#Days used chewing tobacco, snus, snuff, or dip in past 30 days |__|__|min=1 max=30|
< -> D_394049992>
[D_344583659?,displayif=equals(D_947205597,817381897)] How many months ago did you <b>last</b> use chewing tobacco, snus, snuff, or dip?
#Months ago last used chewing tobacco, snus, snuff, or dip |__|__|min=1 max=11|
< -> D_785139115>
[D_671380198?,displayif=equals(D_947205597,817381897)] How old were you when you <b>last</b> used chewing tobacco, snus, snuff, or dip?
Age when last used chewing tobacco, snus, snuff, or dip |__|__|min=isDefined(isDefined(D_424527685,D_213679054),0) max=_value("age")|
[D_785139115?,displayif=equals(D_947205597,817381897)] During the time you last used chewing tobacco, snus, snuff, or dip, did you use them <b>every day</b>?
(104430631) No -> D_549400618
(353358909) Yes -> D_394049992
[D_549400618?,displayif=equals(D_947205597,817381897)] During that time, how many days (1 to 30) did you use chewing tobacco, snus, snuff, or dip in a usual month?
#Days used chewing tobacco, snus, snuff, or dip in usual month|__|__|min=1 max=30|
[D_394049992?,displayif=equals(D_947205597,817381897)]
On days that you |displayif=doesNotExist("D_344631681") or valueEquals("D_344631681",317567178)|use||displayif=valueIsOneOf("D_344631681",484055234,802197176)|used| them, what is the total amount of time you |displayif=doesNotExist("D_344631681") or valueEquals("D_344631681",317567178)|use||displayif=valueIsOneOf("D_344631681",484055234,802197176)|used| chewing tobacco, snus, snuff, or dip <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
[D_673842048?,displayif=and(doesNotEqual(or(or(equals(D_101710639,804785430),and(or(or(equals(D_101710639,716761013),equals(D_101710639,299561721)),equals(D_101710639,419415087)),and(equals(D_344631681,484055234),equals(D_785139115,353358909)))),and(or(or(equals(D_101710639,716761013),equals(D_101710639,299561721)),equals(D_101710639,419415087)),and(equals(D_344631681,802197176),equals(D_785139115,353358909)))),1),equals(D_947205597,817381897))] Now thinking about your entire life, did you ever use chewing tobacco, snus, snuff, or dip <b>every day</b>?
(104430631) No -> D_981755099
(353358909) Yes -> D_568113091
< #NR -> D_981755099>
[D_568113091?,displayif=and(doesNotEqual(or(or(equals(D_101710639,804785430),and(or(or(equals(D_101710639,716761013),equals(D_101710639,299561721)),equals(D_101710639,419415087)),and(equals(D_344631681,484055234),equals(D_785139115,353358909)))),and(or(or(equals(D_101710639,716761013),equals(D_101710639,299561721)),equals(D_101710639,419415087)),and(equals(D_344631681,802197176),equals(D_785139115,353358909)))),1),equals(D_947205597,817381897))] How old were you when you stopped using chewing tobacco, snus, snuff, or dip <b>every day</b>?
Age stopped using chewing tobacco, snus, snuff, or dip every day |__|__|min=isDefined(isDefined(D_424527685,D_213679054),0) max=_value("age")|
[D_537807075?,displayif=and(doesNotEqual(or(or(equals(D_101710639,804785430),and(or(or(equals(D_101710639,716761013),equals(D_101710639,299561721)),equals(D_101710639,419415087)),and(equals(D_344631681,484055234),equals(D_785139115,353358909)))),and(or(or(equals(D_101710639,716761013),equals(D_101710639,299561721)),equals(D_101710639,419415087)),and(equals(D_344631681,802197176),equals(D_785139115,353358909)))),1),equals(D_947205597,817381897))] When you were a daily user of chewing tobacco, snus, snuff, or dip, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
[D_960332453?,displayif=equals(D_947205597,817381897)]What brand of chewing tobacco, snus, snuff, or dip |displayif=doesNotExist("D_344631681") or valueEquals("D_344631681",317567178)|do||displayif=valueIsOneOf("D_344631681",484055234,802197176)|did| you use most often?
Brand of chewing tobacco, snus, snuff, or dip |__|
// Same logic as CIGLIFEA-CIGLIFEH just with different variable names
// 0 -17
[D_495592561?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",18)<=17 or valueOrDefault("age",18)<=17))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",18)<=17 or valueOrDefault("D_671380198",18)<=17)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),0)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),0)|0| to |displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),lessThan(isDefined(D_671380198,17),17))|{$D_671380198}||displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),greaterThanOrEqual(isDefined(D_671380198,17),17))|17||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),lessThanOrEqual(age,17))|{$u:age}||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),greaterThan(age,17))|17|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
// 18-24
[D_705282587?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",25)<=24 and valueOrDefault("age",17)>=18))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",25)<=24 and valueOrDefault("D_671380198",17)>=18)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),18)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),18)|18| to |displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),lessThan(isDefined(D_671380198,24),24))|{$D_671380198}||displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),greaterThanOrEqual(isDefined(D_671380198,24),24))|24||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),lessThanOrEqual(age,24))|{$u:age}||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),greaterThan(age,24))|24|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
// 25-29
[D_133396976?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",30)<=29 and valueOrDefault("age",24)>=25))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",30)<=29 and valueOrDefault("D_671380198",24)>=25)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),25)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),25)|25| to |displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),lessThan(isDefined(D_671380198,29),29))|{$D_671380198}||displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),greaterThanOrEqual(isDefined(D_671380198,29),29))|29||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),lessThanOrEqual(age,29))|{$u:age}||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),greaterThan(age,29))|29|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
// 30-39
[D_628770824?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",40)<=39 and valueOrDefault("age",29)>=30))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",40)<=39 and valueOrDefault("D_671380198",29)>=30)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),30)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),30)|30| to |displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),lessThan(isDefined(D_671380198,39),39))|{$D_671380198}||displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),greaterThanOrEqual(isDefined(D_671380198,39),39))|39||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),lessThanOrEqual(age,39))|{$u:age}||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),greaterThan(age,39))|39|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
// 40-49
[D_558707243?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",50)<=49 and valueOrDefault("age",39)>=40))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",50)<=49 and valueOrDefault("D_671380198",39)>=40)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),40)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),40)|40| to |displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),lessThan(isDefined(D_671380198,49),49))|{$D_671380198}||displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),greaterThanOrEqual(isDefined(D_671380198,49),49))|49||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),lessThanOrEqual(age,49))|{$u:age}||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),greaterThan(age,49))|49|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
// 50-59
[D_929034795?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",60)<=59 and valueOrDefault("age",49)>=50))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",60)<=59 and valueOrDefault("D_671380198",49)>=50)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),50)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),50)|50| to |displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),lessThan(isDefined(D_671380198,59),59))|{$D_671380198}||displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),greaterThanOrEqual(isDefined(D_671380198,59),59))|59||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),lessThanOrEqual(age,59))|{$u:age}||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),greaterThan(age,59))|59|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
// 60-69
[D_995220236?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",70)<=69 and valueOrDefault("age",59)>=60))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",70)<=69 and valueOrDefault("D_671380198",59)>=60)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),60)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),60)|60| to |displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),lessThan(isDefined(D_671380198,69),69))|{$D_671380198}||displayif=and(and(equals(D_785139115,353358909),doesNotEqual(isDefined(D_671380198,-1),-1)),greaterThanOrEqual(isDefined(D_671380198,69),69))|69||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),lessThanOrEqual(age,69))|{$u:age}||displayif=and(or(doesNotEqual(D_785139115,353358909),equals(isDefined(D_671380198,-1),-1)),greaterThan(age,69))|69|, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
// 70+
[D_551301510?,displayif=(exists("D_424527685") and ((valueEquals("D_306320432",132232896) and valueEquals("D_101710639",804785430)) and (valueOrDefault("D_424527685",69)>=70 or valueOrDefault("age",69)>=70))) or (allExist("D_424527685","D_671380198") and ((valueEquals("D_306320432",132232896) and valueEquals("D_785139115",353358909)) and (valueOrDefault("D_424527685",69)>=70 or valueOrDefault("D_671380198",69)>=70)))]
On days that you used chewing tobacco, snus, snuff, or dip when you were age |displayif=greaterThanOrEqual(isDefined(D_424527685,-1),70)|{$D_424527685}||displayif=lessThan(isDefined(D_424527685,-1),70)|70| or older, what is the total amount of time you used them <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(971933131) Didn’t use chewing tobacco, snus, snuff, or dip during this time
[D_981755099?,displayif=equals(D_947205597,539648641)]<b>Hookah and Water Pipes</b>
The next questions are about your use of hookahs or water pipes for smoking tobacco.
How many days have you smoked tobacco using a <b>hookah or water pipe</b> in your life?
(151488193) 10 or less -> D_559388168
(805449318) 11 to 49 -> D_559388168
(486319890) 50 to 99 -> D_127871793
(132232896) 100 or more -> D_127871793
< #NR -> D_559388168>
[D_127871793?,displayif=equals(D_947205597,539648641)] How old were you when you <b>first</b> smoked tobacco using a hookah or water pipe?
Age first smoked tobacco using a hookah or water pipe |__|__|min=0 max=_value("age")|
[D_154603497?,displayif=equals(D_947205597,539648641)]
How old were you when you started smoking a hookah or water pipe on a |popup|regular basis|Informational Text|We understand that the meaning of 'regular basis' might be different for different people. When you answer this question, please think about what "regular basis" means to you.|?
Age started smoking a hookah or water pipe on a regular basis |__|__|id=D_234430294 min=isDefined(D_127871793,0) max=_value("age")|
[648960871*] Never smoked on a regular basis
[D_472007171?,displayif=equals(D_947205597,539648641)] Do you smoke a hookah or water pipe now?
(419415087) No, not at all -> D_787047261
(299561721) Yes, but rarely -> D_787047261
(716761013) Yes, some days -> D_787047261
(804785430) Yes, every day -> D_356470028
[D_787047261?,displayif=equals(D_947205597,539648641)] When was the <b>last</b> time you smoked a hookah or water pipe?
(317567178) In the past month -> D_915293401
(484055234) More than a month ago, but in the past year -> D_268407776
(802197176) More than 1 year ago -> D_938333920
< #NR -> D_356470028>
[D_915293401?,displayif=equals(D_947205597,539648641)] <b>On how many of the past 30 days </b> have you smoked a hookah or water pipe?
#Days smoked in past 30 days |__|__|min=1 max=30|
<-> D_356470028>
[D_268407776?,displayif=equals(D_947205597,539648641)] How many months ago did you <b>last</b> smoke a hookah or water pipe?
#Months ago last smoked a hookah or water pipe |__|__|min=1 max=11|
<-> D_585702271>
[D_938333920?,displayif=equals(D_947205597,539648641)] How old were you when you <b>last</b> smoked a hookah or water pipe?
Age when last smoked a hookah or water pipe |__|__|min=isDefined(isDefined(D_234430294,D_127871793),0) max=_value("age")|
[D_585702271?,displayif=equals(D_947205597,539648641)] During the time you last smoked a hookah or water pipe, did you ever smoke <b>every day</b>?
(104430631) No -> D_827661413
(353358909) Yes -> D_356470028
[D_827661413?,displayif=equals(D_947205597,539648641)] During that time, how many days (1 to 30) did you smoke a hookah or water pipe in a usual month?
#Days smoked in usual month |__|__|min=1 max=30|
[D_356470028?,displayif=equals(D_947205597,539648641)]
On days that you |displayif=doesNotExist("D_787047261") or valueEquals("D_787047261",317567178)|smoke||displayif=valueIsOneOf("D_787047261",484055234,802197176)|smoked|, what is the total amount of time you |displayif=doesNotExist("D_787047261") or valueEquals("D_787047261",317567178)|smoke||displayif=valueIsOneOf("D_787047261",484055234,802197176)|smoked| a hookah or water pipe <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
[D_720305356?,displayif=and(doesNotEqual(or(or(equals(D_472007171,804785430),and(or(or(equals(D_472007171,716761013),equals(D_472007171,299561721)),equals(D_472007171,419415087)),and(equals(D_787047261,484055234),equals(D_585702271,353358909)))),and(or(or(equals(D_472007171,716761013),equals(D_472007171,299561721)),equals(D_472007171,419415087)),and(equals(D_787047261,802197176),equals(D_585702271,353358909)))),1),equals(D_947205597,539648641))] Now thinking about your entire life, did you ever smoke a hookah or water pipe <b>every day</b>?
(104430631) No -> D_559388168
(353358909) Yes -> D_951901114
< #NR -> D_559388168>
[D_951901114?,displayif=and(doesNotEqual(or(or(equals(D_472007171,804785430),and(or(or(equals(D_472007171,716761013),equals(D_472007171,299561721)),equals(D_472007171,419415087)),and(equals(D_787047261,484055234),equals(D_585702271,353358909)))),and(or(or(equals(D_472007171,716761013),equals(D_472007171,299561721)),equals(D_472007171,419415087)),and(equals(D_787047261,802197176),equals(D_585702271,353358909)))),1),equals(D_947205597,539648641))] How old were you when you stopped smoking a hookah or water pipe <b>every day</b>?
Age stopped smoking a hookah or water pipe every day |__|__|min=isDefined(isDefined(D_234430294,D_127871793),0) max=_value("age")|
[D_471435289?,displayif=and(doesNotEqual(or(or(equals(D_472007171,804785430),and(or(or(equals(D_472007171,716761013),equals(D_472007171,299561721)),equals(D_472007171,419415087)),and(equals(D_787047261,484055234),equals(D_585702271,353358909)))),and(or(or(equals(D_472007171,716761013),equals(D_472007171,299561721)),equals(D_472007171,419415087)),and(equals(D_787047261,802197176),equals(D_585702271,353358909)))),1),equals(D_947205597,539648641))] When you were a daily smoker, what is the total amount of time you smoked a hookah or water pipe <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
// Same logic as CIGLIFEA-CIGLIFEH just with different variable names
// 0-17
[D_445712879?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",18)<=17 or valueOrDefault("age",18)<=17))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",18)<=17 or valueOrDefault("D_938333920",18)<=17)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),0)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),0)|0| to |displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),lessThan(isDefined(D_938333920,17),17))|{$D_938333920}||displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),greaterThanOrEqual(isDefined(D_938333920,17),17))|17||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),lessThanOrEqual(age,17))|{$u:age}||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),greaterThan(age,17))|17|, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
// 18-24
[D_620425840?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",25)<=24 and valueOrDefault("age",17)>=18))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",25)<=24 and valueOrDefault("D_938333920",17)>=18)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),18)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),18)|18| to |displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),lessThan(isDefined(D_938333920,24),24))|{$D_938333920}||displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),greaterThanOrEqual(isDefined(D_938333920,24),24))|24||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),lessThanOrEqual(age,24))|{$u:age}||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),greaterThan(age,24))|24|, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
// 25-29
[D_798627028?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",30)<=29 and valueOrDefault("age",24)>=25))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",30)<=29 and valueOrDefault("D_938333920",24)>=25)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),25)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),25)|25| to |displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),lessThan(isDefined(D_938333920,29),29))|{$D_938333920}||displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),greaterThanOrEqual(isDefined(D_938333920,29),29))|29||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),lessThanOrEqual(age,29))|{$u:age}||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),greaterThan(age,29))|29|, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
// 30-39
[D_584608368?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",40)<=39 and valueOrDefault("age",29)>=30))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",40)<=39 and valueOrDefault("D_938333920",29)>=30)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),30)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),30)|30| to |displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),lessThan(isDefined(D_938333920,39),39))|{$D_938333920}||displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),greaterThanOrEqual(isDefined(D_938333920,39),39))|39||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),lessThanOrEqual(age,39))|{$u:age}||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),greaterThan(age,39))|39|, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
// 40-49
[D_921623945?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",50)<=49 and valueOrDefault("age",39)>=40))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",50)<=49 and valueOrDefault("D_938333920",39)>=40)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),40)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),40)|40| to |displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),lessThan(isDefined(D_938333920,49),49))|{$D_938333920}||displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),greaterThanOrEqual(isDefined(D_938333920,49),49))|49||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),lessThanOrEqual(age,49))|{$u:age}||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),greaterThan(age,49))|49|, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
// 50-59
[D_370253256?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",60)<=59 and valueOrDefault("age",49)>=50))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",60)<=59 and valueOrDefault("D_938333920",49)>=50)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),50)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),50)|50| to |displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),lessThan(isDefined(D_938333920,59),59))|{$D_938333920}||displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),greaterThanOrEqual(isDefined(D_938333920,59),59))|59||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),lessThanOrEqual(age,59))|{$u:age}||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),greaterThan(age,59))|59|, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
// 60-69
[D_470096941?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",70)<=69 and valueOrDefault("age",59)>=60))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",70)<=69 and valueOrDefault("D_938333920",59)>=60)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),60)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),60)|60| to |displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),lessThan(isDefined(D_938333920,69),69))|{$D_938333920}||displayif=and(and(equals(D_585702271,353358909),doesNotEqual(isDefined(D_938333920,-1),-1)),greaterThanOrEqual(isDefined(D_938333920,69),69))|69||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),lessThanOrEqual(age,69))|{$u:age}||displayif=and(or(doesNotEqual(D_585702271,353358909),equals(isDefined(D_938333920,-1),-1)),greaterThan(age,69))|69|, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
// 70+
[D_544356746?,displayif=(exists("D_234430294") and ((valueEquals("D_981755099",132232896) and valueEquals("D_472007171",804785430)) and (valueOrDefault("D_234430294",69)>=70 or valueOrDefault("age",69)>=70))) or (allExist("D_234430294","D_938333920") and ((valueEquals("D_981755099",132232896) and valueEquals("D_585702271",353358909)) and (valueOrDefault("D_234430294",69)>=70 or valueOrDefault("D_938333920",69)>=70)))]
On days that you smoked a hookah or water pipe when you were age |displayif=greaterThanOrEqual(isDefined(D_234430294,-1),70)|{$D_234430294}||displayif=lessThan(isDefined(D_234430294,-1),70)|70| or older, what is the total amount of time you smoked <b>per day</b>?
(428999623) 15 minutes or less
(248303092) 16 to 30 minutes
(998679771) 31 to 59 minutes
(638092100) 1 hour
(127455035) 2 hours or more
(118191655) Didn’t smoke a hookah or water pipe during this time
[D_559388168?,displayif=equals(D_947205597,686310465)]<b>Tobacco Pipes</b>
The next questions are about your use of tobacco pipes.
How many days have you smoked a <b>tobacco pipe</b> in your life?
(151488193) 10 or less -> D_337810964
(805449318) 11 to 49 -> D_337810964
(486319890) 50 to 99 -> D_450151555
(132232896) 100 or more -> D_450151555
<#NR -> D_337810964>
[D_450151555?,displayif=equals(D_947205597,686310465)] How old were you when you <b>first</b> smoked a tobacco pipe?
Age first smoked a tobacco pipe |__|__|min=0 max=_value("age")|
[D_546410473?,displayif=equals(D_947205597,686310465)]
How old were you when you started smoking a tobacco pipe on a |popup|regular basis|Informational Text|We understand that the meaning of 'regular basis' might be different for different people. When you answer this question, please think about what "regular basis" means to you.|?
Age started smoking a tobacco pipe on a regular basis |__|__|id=D_663551714 min=isDefined(D_450151555,0) max=_value("age")|
[648960871*] Never smoked on a regular basis
[D_458395129?,displayif=equals(D_947205597,686310465)] Do you smoke a tobacco pipe now?
(419415087) No, not at all -> D_845122623
(299561721) Yes, but rarely -> D_845122623
(716761013) Yes, some days -> D_845122623
(804785430) Yes, every day -> D_780767323
[D_845122623?,displayif=equals(D_947205597,686310465)] When was the <b>last</b> time you smoked a tobacco pipe?
(317567178) In the past month -> D_679300202
(484055234) More than a month ago, but in the past year -> D_146877593
(802197176) More than 1 year ago -> D_780685299
< #NR -> D_780767323>
[D_679300202?,displayif=equals(D_947205597,686310465)] <b>On how many of the past 30 days </b> have you smoked a tobacco pipe?
#Days smoked a pipe in past 30 days |__|__|min=1 max=30|
< -> D_780767323>
[D_146877593?,displayif=equals(D_947205597,686310465)] How many months ago did you <b>last</b> smoke a tobacco pipe?
#Months ago last smoked a pipe |__|__|min=1 max=11|
< -> D_311569789>
[D_780685299?,displayif=equals(D_947205597,686310465)] How old were you when you <b>last</b> smoked a tobacco pipe?
Age when last smoked a tobacco pipe |__|__|min=isDefined(isDefined(D_663551714,D_450151555),0) max=_value("age")|
[D_311569789?,displayif=equals(D_947205597,686310465)] During the time you last smoked a tobacco pipe, did you smoke <b>every day</b>?
(104430631) No -> D_652477674
(353358909) Yes -> D_780767323
[D_652477674?,displayif=equals(D_947205597,686310465)] During that time, how many days (1 to 30) did you smoke a tobacco pipe in a usual month?
#Days smoked in usual month |__|__|min=1 max=30|
[D_780767323?,displayif=equals(D_947205597,686310465)]
On days that you |displayif=doesNotExist("D_845122623") or valueEquals("D_845122623",317567178)|smoke||displayif=valueIsOneOf("D_845122623",484055234,802197176)|smoked|, how many pipe fills of tobacco |displayif=doesNotExist("D_845122623") or valueEquals("D_845122623",317567178)|do||displayif=valueIsOneOf("D_845122623",484055234,802197176)|did| you smoke <b>per day</b>?
#Pipe fills smoked per day |__|__|min=1 max=99|
[D_385490512?,displayif=and(doesNotEqual(or(or(equals(D_458395129,804785430),and(or(or(equals(D_458395129,716761013),equals(D_458395129,299561721)),equals(D_458395129,419415087)),and(equals(D_845122623,484055234),equals(D_311569789,353358909)))),and(or(or(equals(D_458395129,716761013),equals(D_458395129,299561721)),equals(D_458395129,419415087)),and(equals(D_845122623,802197176),equals(D_311569789,353358909)))),1),equals(D_947205597,686310465))] Now thinking about your entire life, did you ever smoke a tobacco pipe <b>every day</b>?
(104430631) No -> D_337810964
(353358909) Yes -> D_119378795
< #NR -> D_337810964>
[D_119378795?,displayif=and(doesNotEqual(or(or(equals(D_458395129,804785430),and(or(or(equals(D_458395129,716761013),equals(D_458395129,299561721)),equals(D_458395129,419415087)),and(equals(D_845122623,484055234),equals(D_311569789,353358909)))),and(or(or(equals(D_458395129,716761013),equals(D_458395129,299561721)),equals(D_458395129,419415087)),and(equals(D_845122623,802197176),equals(D_311569789,353358909)))),1),equals(D_947205597,686310465))] How old were you when you stopped smoking a tobacco pipe <b>every day</b>?
Age stopped smoking every day |__|__|min=isDefined(isDefined(D_663551714,D_450151555),0) max=_value("age")|
[D_286598574?,displayif=and(doesNotEqual(or(or(equals(D_458395129,804785430),and(or(or(equals(D_458395129,716761013),equals(D_458395129,299561721)),equals(D_458395129,419415087)),and(equals(D_845122623,484055234),equals(D_311569789,353358909)))),and(or(or(equals(D_458395129,716761013),equals(D_458395129,299561721)),equals(D_458395129,419415087)),and(equals(D_845122623,802197176),equals(D_311569789,353358909)))),1),equals(D_947205597,686310465))] When you were a daily smoker, how many pipe fills of tobacco did you smoke <b>per day</b>?
#Pipe fills of tobacco smoked per day |__|__|__|min=1 max=99|
// Same logic as CIGLIFEA-CIGLIFEH just with different variable names
// 0-17
[D_689339933?,displayif=(exists("D_663551714") and ((valueEquals("D_559388168",132232896) and valueEquals("D_458395129",804785430)) and (valueOrDefault("D_663551714",18)<=17 or valueOrDefault("age",18)<=17))) or (allExist("D_663551714","D_780685299") and ((valueEquals("D_559388168",132232896) and valueEquals("D_311569789",353358909)) and (valueOrDefault("D_663551714",18)<=17 or valueOrDefault("D_780685299",18)<=17)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_663551714,-1),0)|{$D_663551714}||displayif=lessThan(isDefined(D_663551714,-1),0)|0| to |displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),lessThan(isDefined(D_780685299,17),17))|{$D_780685299}||displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),greaterThanOrEqual(isDefined(D_780685299,17),17))|17||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),lessThanOrEqual(age,17))|{$u:age}||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),greaterThan(age,17))|17|, about how many pipe fills of tobacco did you smoke <b>per day</b>?
#PIPE FILLS OF TOBACCO PER DAY |__|__|min=0 max=99|
// TRANSFORMER WARNING --> TOBACCO | this may be an untransformed Quest code
// 18-24
[D_812430894?,displayif=(exists("D_663551714") and ((valueEquals("D_559388168",132232896) and valueEquals("D_458395129",804785430)) and (valueOrDefault("D_663551714",25)<=24 and valueOrDefault("age",17)>=18))) or (allExist("D_663551714","D_780685299") and ((valueEquals("D_559388168",132232896) and valueEquals("D_311569789",353358909)) and (valueOrDefault("D_663551714",25)<=24 and valueOrDefault("D_780685299",17)>=18)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_663551714,-1),18)|{$D_663551714}||displayif=lessThan(isDefined(D_663551714,-1),18)|18| to |displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),lessThan(isDefined(D_780685299,24),24))|{$D_780685299}||displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),greaterThanOrEqual(isDefined(D_780685299,24),24))|24||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),lessThanOrEqual(age,24))|{$u:age}||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),greaterThan(age,24))|24|, about how many pipe fills of tobacco did you smoke <b>per day</b>?
#PIPE FILLS OF TOBACCO PER DAY |__|__|min=0 max=99|
// TRANSFORMER WARNING --> TOBACCO | this may be an untransformed Quest code
// 25-29
[D_178242940?,displayif=(exists("D_663551714") and ((valueEquals("D_559388168",132232896) and valueEquals("D_458395129",804785430)) and (valueOrDefault("D_663551714",30)<=29 and valueOrDefault("age",24)>=25))) or (allExist("D_663551714","D_780685299") and ((valueEquals("D_559388168",132232896) and valueEquals("D_311569789",353358909)) and (valueOrDefault("D_663551714",30)<=29 and valueOrDefault("D_780685299",24)>=25)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_663551714,-1),25)|{$D_663551714}||displayif=lessThan(isDefined(D_663551714,-1),25)|25| to |displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),lessThan(isDefined(D_780685299,29),29))|{$D_780685299}||displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),greaterThanOrEqual(isDefined(D_780685299,29),29))|29||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),lessThanOrEqual(age,29))|{$u:age}||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),greaterThan(age,29))|29|, about how many pipe fills of tobacco did you smoke <b>per day</b>?
#PIPE FILLS OF TOBACCO PER DAY |__|__|min=0 max=99|
// TRANSFORMER WARNING --> TOBACCO | this may be an untransformed Quest code
// 30-39
[D_501545129?,displayif=(exists("D_663551714") and ((valueEquals("D_559388168",132232896) and valueEquals("D_458395129",804785430)) and (valueOrDefault("D_663551714",40)<=39 and valueOrDefault("age",29)>=30))) or (allExist("D_663551714","D_780685299") and ((valueEquals("D_559388168",132232896) and valueEquals("D_311569789",353358909)) and (valueOrDefault("D_663551714",40)<=39 and valueOrDefault("D_780685299",29)>=30)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_663551714,-1),30)|{$D_663551714}||displayif=lessThan(isDefined(D_663551714,-1),30)|30| to |displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),lessThan(isDefined(D_780685299,39),39))|{$D_780685299}||displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),greaterThanOrEqual(isDefined(D_780685299,39),39))|39||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),lessThanOrEqual(age,39))|{$u:age}||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),greaterThan(age,39))|39|, about how many pipe fills of tobacco did you smoke <b>per day</b>?
#PIPE FILLS OF TOBACCO PER DAY |__|__|min=0 max=99|
// TRANSFORMER WARNING --> TOBACCO | this may be an untransformed Quest code
// 40-49
[D_197309242?,displayif=(exists("D_663551714") and ((valueEquals("D_559388168",132232896) and valueEquals("D_458395129",804785430)) and (valueOrDefault("D_663551714",50)<=49 and valueOrDefault("age",39)>=40))) or (allExist("D_663551714","D_780685299") and ((valueEquals("D_559388168",132232896) and valueEquals("D_311569789",353358909)) and (valueOrDefault("D_663551714",50)<=49 and valueOrDefault("D_780685299",39)>=40)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_663551714,-1),40)|{$D_663551714}||displayif=lessThan(isDefined(D_663551714,-1),40)|40| to |displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),lessThan(isDefined(D_780685299,49),49))|{$D_780685299}||displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),greaterThanOrEqual(isDefined(D_780685299,49),49))|49||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),lessThanOrEqual(age,49))|{$u:age}||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),greaterThan(age,49))|49|, about how many pipe fills of tobacco did you smoke <b>per day</b>?
#PIPE FILLS OF TOBACCO PER DAY |__|__|min=0 max=99|
// TRANSFORMER WARNING --> TOBACCO | this may be an untransformed Quest code
// 50-59
[D_550850568?,displayif=(exists("D_663551714") and ((valueEquals("D_559388168",132232896) and valueEquals("D_458395129",804785430)) and (valueOrDefault("D_663551714",60)<=59 and valueOrDefault("age",49)>=50))) or (allExist("D_663551714","D_780685299") and ((valueEquals("D_559388168",132232896) and valueEquals("D_311569789",353358909)) and (valueOrDefault("D_663551714",60)<=59 and valueOrDefault("D_780685299",49)>=50)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_663551714,-1),50)|{$D_663551714}||displayif=lessThan(isDefined(D_663551714,-1),50)|50| to |displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),lessThan(isDefined(D_780685299,59),59))|{$D_780685299}||displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),greaterThanOrEqual(isDefined(D_780685299,59),59))|59||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),lessThanOrEqual(age,59))|{$u:age}||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),greaterThan(age,59))|59|, about how many pipe fills of tobacco did you smoke <b>per day</b>?
#PIPE FILLS OF TOBACCO PER DAY |__|__|min=0 max=99|
// TRANSFORMER WARNING --> TOBACCO | this may be an untransformed Quest code
// 60-69
[D_277284423?,displayif=(exists("D_663551714") and ((valueEquals("D_559388168",132232896) and valueEquals("D_458395129",804785430)) and (valueOrDefault("D_663551714",70)<=69 and valueOrDefault("age",59)>=60))) or (allExist("D_663551714","D_780685299") and ((valueEquals("D_559388168",132232896) and valueEquals("D_311569789",353358909)) and (valueOrDefault("D_663551714",70)<=69 and valueOrDefault("D_780685299",59)>=60)))]
On days that you smoked when you were age |displayif=greaterThanOrEqual(isDefined(D_663551714,-1),60)|{$D_663551714}||displayif=lessThan(isDefined(D_663551714,-1),60)|60| to |displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),lessThan(isDefined(D_780685299,69),69))|{$D_780685299}||displayif=and(and(equals(D_311569789,353358909),doesNotEqual(isDefined(D_780685299,-1),-1)),greaterThanOrEqual(isDefined(D_780685299,69),69))|69||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),lessThanOrEqual(age,69))|{$u:age}||displayif=and(or(doesNotEqual(D_311569789,353358909),equals(isDefined(D_780685299,-1),-1)),greaterThan(age,69))|69|, about how many pipe fills of tobacco did you smoke <b>per day</b>?