/* This is an example of a Stata DO program that creates a Stata file from the 2004 National Hospital Ambulatory Medical Care Survey - Emergency Department public-use ASCII file. The "infile" command in this example point to the directory "c:\nhamcs\ed04\" for both the dictionary (ed04.dct) and the data (ed04.dat), and should be edited to reflect the desired location(s) accordingly. */ set memory 50m infile using "c:\nhamcs\ed04\ed04.dct", using("c:\nhamcs\ed04\ed04.dat") clear #delimit ; label define vmonth 1 "January" 2 "February" 3 "March" 4 "April" 5 "May" 6 "June" 7 "July" 8 "August" 9 "September" 10 "October" 11 "November" 12 "December"; label define vdayr 1 "Sunday" 2 "Monday" 3 "Tuesday" 4 "Wednesday" 5 "Thursday" 6 "Friday" 7 "Saturday"; label define age 0 "Under one year" 100 "100 years and over"; destring arrtime, replace; label define arrtime 0000 "12:00 Midnight" 0001 "12:01 a.m." 0002 "12:02 a.m." 0003 "12:03 a.m." 0004 "12:04 a.m." 0005 "12:05 a.m." 0006 "12:06 p.m." 0007 "12:07 a.m." 0008 "12:08 a.m." 0009 "12:09 a.m." 0010 "12:10 a.m." 0011 "12:11 a.m." 0012 "12:12 a.m." 0013 "12:13 a.m." 0014 "12:14 a.m." 0015 "12:15 a.m." 0016 "12:16 a.m." 0017 "12:17 a.m." 0018 "12:18 a.m." 0019 "12:19 a.m." 0020 "12:20 a.m." 0021 "12:21 a.m." 0022 "12:22 a.m." 0023 "12:23 a.m." 0024 "12:24 a.m." 0025 "12:25 a.m." 0026 "12:26 a.m." 0027 "12:27 a.m." 0028 "12:28 a.m." 0029 "12:29 a.m." 0030 "12:30 a.m." 0031 "12:31 a.m." 0032 "12:32 a.m." 0033 "12:33 a.m." 0034 "12:34 a.m." 0035 "12:35 a.m." 0036 "12:36 a.m." 0037 "12:37 a.m." 0038 "12:38 a.m." 0039 "12:39 a.m." 0040 "12:40 a.m." 0041 "12:41 a.m." 0042 "12:42 a.m." 0043 "12:43 a.m." 0044 "12:44 a.m." 0045 "12:45 a.m." 0046 "12:46 a.m." 0047 "12:47 a.m." 0048 "12:48 a.m." 0049 "12:49 a.m." 0050 "12:50 a.m." 0051 "12:51 a.m." 0052 "12:52 a.m." 0053 "12:53 a.m." 0054 "12:54 a.m." 0055 "12:55 a.m." 0056 "12:56 a.m." 0057 "12:57 a.m." 0058 "12:58 a.m." 0059 "12:59 a.m." 0100 "1:00 a.m." 0101 "1:01 a.m." 0102 "1:02 a.m." 0103 "1:03 a.m." 0104 "1:04 a.m." 0105 "1:05 a.m." 0106 "1:06 a.m." 0107 "1:07 a.m." 0108 "1:08 a.m." 0109 "1:09 a.m." 0110 "1:10 a.m." 0111 "1:11 a.m." 0112 "1:12 a.m." 0113 "1:13 a.m." 0114 "1:14 a.m." 0115 "1:15 a.m." 0116 "1:16 a.m." 0117 "1:17 a.m." 0118 "1:18 a.m." 0119 "1:19 a.m." 0120 "1:20 a.m." 0121 "1:21 a.m." 0122 "1:22 a.m." 0123 "1:23 a.m." 0124 "1:24 a.m." 0125 "1:25 a.m." 0126 "1:26 a.m." 0127 "1:27 a.m." 0128 "1:28 a.m." 0129 "1:29 a.m." 0130 "1:30 a.m." 0131 "1:31 a.m." 0132 "1:32 a.m." 0133 "1:33 a.m." 0134 "1:34 a.m." 0135 "1:35 a.m." 0136 "1:36 a.m." 0137 "1:37 a.m." 0138 "1:38 a.m." 0139 "1:39 a.m." 0140 "1:40 a.m." 0141 "1:41 a.m." 0142 "1:42 a.m." 0143 "1:43 a.m." 0144 "1:44 a.m." 0145 "1:45 a.m." 0146 "1:46 a.m." 0147 "1:47 a.m." 0148 "1:48 a.m." 0149 "1:49 a.m." 0150 "1:50 a.m." 0151 "1:51 a.m." 0152 "1:52 a.m." 0153 "1:53 a.m." 0154 "1:54 a.m." 0155 "1:55 a.m." 0156 "1:56 a.m." 0157 "1:57 a.m." 0158 "1:58 a.m." 0159 "1:59 a.m." 0200 "2:00 a.m." 0201 "2:01 a.m." 0202 "2:02 a.m." 0203 "2:03 a.m." 0204 "2:04 a.m." 0205 "2:05 a.m." 0206 "2:06 a.m." 0207 "2:07 a.m." 0208 "2:08 a.m." 0209 "2:09 a.m." 0210 "2:10 a.m." 0211 "2:11 a.m." 0212 "2:12 a.m." 0213 "2:13 a.m." 0214 "2:14 a.m." 0215 "2:15 a.m." 0216 "2:16 a.m." 0217 "2:17 a.m." 0218 "2:18 a.m." 0219 "2:19 a.m." 0220 "2:20 a.m." 0221 "2:21 a.m." 0222 "2:22 a.m." 0223 "2:23 a.m." 0224 "2:24 a.m." 0225 "2:25 a.m." 0226 "2:26 a.m." 0227 "2:27 a.m." 0228 "2:28 a.m." 0229 "2:29 a.m." 0230 "2:30 a.m." 0231 "2:31 a.m." 0232 "2:32 a.m." 0233 "2:33 a.m." 0234 "2:34 a.m." 0235 "2:35 a.m." 0236 "2:36 a.m." 0237 "2:37 a.m." 0238 "2:38 a.m." 0239 "2:39 a.m." 0240 "2:40 a.m." 0241 "2:41 a.m." 0242 "2:42 a.m." 0243 "2:43 a.m." 0244 "2:44 a.m." 0245 "2:45 a.m." 0246 "2:46 a.m." 0247 "2:47 a.m." 0248 "2:48 a.m." 0249 "2:49 a.m." 0250 "2:50 a.m." 0251 "2:51 a.m." 0252 "2:52 a.m." 0253 "2:53 a.m." 0254 "2:54 a.m." 0255 "2:55 a.m." 0256 "2:56 a.m." 0257 "2:57 a.m." 0258 "2:58 a.m." 0259 "2:59 a.m." 0300 "3:00 a.m." 0301 "3:01 a.m." 0302 "3:02 a.m." 0303 "3:03 a.m." 0304 "3:04 a.m." 0305 "3:05 a.m." 0306 "3:06 a.m." 0307 "3:07 a.m." 0308 "3:08 a.m." 0309 "3:09 a.m." 0310 "3:10 a.m." 0311 "3:11 a.m." 0312 "3:12 a.m." 0313 "3:13 a.m." 0314 "3:14 a.m." 0315 "3:15 a.m." 0316 "3:16 a.m." 0317 "3:17 a.m." 0318 "3:18 a.m." 0319 "3:19 a.m." 0320 "3:20 a.m." 0321 "3:21 a.m." 0322 "3:22 a.m." 0323 "3:23 a.m." 0324 "3:24 a.m." 0325 "3:25 a.m." 0326 "3:26 a.m." 0327 "3:27 a.m." 0328 "3:28 a.m." 0329 "3:29 a.m." 0330 "3:30 a.m." 0331 "3:31 a.m." 0332 "3:32 a.m." 0333 "3:33 a.m." 0334 "3:34 a.m." 0335 "3:35 a.m." 0336 "3:36 a.m." 0337 "3:37 a.m." 0338 "3:38 a.m." 0339 "3:39 a.m." 0340 "3:40 a.m." 0341 "3:41 a.m." 0342 "3:42 a.m." 0343 "3:43 a.m." 0344 "3:44 a.m." 0345 "3:45 a.m." 0346 "3:46 a.m." 0347 "3:47 a.m." 0348 "3:48 a.m." 0349 "3:49 a.m." 0350 "3:50 a.m." 0351 "3:51 a.m." 0352 "3:52 a.m." 0353 "3:53 a.m." 0354 "3:54 a.m." 0355 "3:55 a.m." 0356 "3:56 a.m." 0357 "3:57 a.m." 0358 "3:58 a.m." 0359 "3:59 a.m." 0400 "4:00 a.m." 0401 "4:01 a.m." 0402 "4:02 a.m." 0403 "4:03 a.m." 0404 "4:04 a.m." 0405 "4:05 a.m." 0406 "4:06 a.m." 0407 "4:07 a.m." 0408 "4:08 a.m." 0409 "4:09 a.m." 0410 "4:10 a.m." 0411 "4:11 a.m." 0412 "4:12 a.m." 0413 "4:13 a.m." 0414 "4:14 a.m." 0415 "4:15 a.m." 0416 "4:16 a.m." 0417 "4:17 a.m." 0418 "4:18 a.m." 0419 "4:19 a.m." 0420 "4:20 a.m." 0421 "4:21 a.m." 0422 "4:22 a.m." 0423 "4:23 a.m." 0424 "4:24 a.m." 0425 "4:25 a.m." 0426 "4:26 a.m." 0427 "4:27 a.m." 0428 "4:28 a.m." 0429 "4:29 a.m." 0430 "4:30 a.m." 0431 "4:31 a.m." 0432 "4:32 a.m." 0433 "4:33 a.m." 0434 "4:34 a.m." 0435 "4:35 a.m." 0436 "4:36 a.m." 0437 "4:37 a.m." 0438 "4:38 a.m." 0439 "4:39 a.m." 0440 "4:40 a.m." 0441 "4:41 a.m." 0442 "4:42 a.m." 0443 "4:43 a.m." 0444 "4:44 a.m." 0445 "4:45 a.m." 0446 "4:46 a.m." 0447 "4:47 a.m." 0448 "4:48 a.m." 0449 "4:49 a.m." 0450 "4:50 a.m." 0451 "4:51 a.m." 0452 "4:52 a.m." 0453 "4:53 a.m." 0454 "4:54 a.m." 0455 "4:55 a.m." 0456 "4:56 a.m." 0457 "4:57 a.m." 0458 "4:58 a.m." 0459 "4:59 a.m." 0500 "5:00 a.m." 0501 "5:01 a.m." 0502 "5:02 a.m." 0503 "5:03 a.m." 0504 "5:04 a.m." 0505 "5:05 a.m." 0506 "5:06 a.m." 0507 "5:07 a.m." 0508 "5:08 a.m." 0509 "5:09 a.m." 0510 "5:10 a.m." 0511 "5:11 a.m." 0512 "5:12 a.m." 0513 "5:13 a.m." 0514 "5:14 a.m." 0515 "5:15 a.m." 0516 "5:16 a.m." 0517 "5:17 a.m." 0518 "5:18 a.m." 0519 "5:19 a.m." 0520 "5:20 a.m." 0521 "5:21 a.m." 0522 "5:22 a.m." 0523 "5:23 a.m." 0524 "5:24 a.m." 0525 "5:25 a.m." 0526 "5:26 a.m." 0527 "5:27 a.m." 0528 "5:28 a.m." 0529 "5:29 a.m." 0530 "5:30 a.m." 0531 "5:31 a.m." 0532 "5:32 a.m." 0533 "5:33 a.m." 0534 "5:34 a.m." 0535 "5:35 a.m." 0536 "5:36 a.m." 0537 "5:37 a.m." 0538 "5:38 a.m." 0539 "5:39 a.m." 0540 "5:40 a.m." 0541 "5:41 a.m." 0542 "5:42 a.m." 0543 "5:43 a.m." 0544 "5:44 a.m." 0545 "5:45 a.m." 0546 "5:46 a.m." 0547 "5:47 a.m." 0548 "5:48 a.m." 0549 "5:49 a.m." 0550 "5:50 a.m." 0551 "5:51 a.m." 0552 "5:52 a.m." 0553 "5:53 a.m." 0554 "5:54 a.m." 0555 "5:55 a.m." 0556 "5:56 a.m." 0557 "5:57 a.m." 0558 "5:58 a.m." 0559 "5:59 a.m." 0600 "6:00 a.m." 0601 "6:01 a.m." 0602 "6:02 a.m." 0603 "6:03 a.m." 0604 "6:04 a.m." 0605 "6:05 a.m." 0606 "6:06 a.m." 0607 "6:07 a.m." 0608 "6:08 a.m." 0609 "6:09 a.m." 0610 "6:10 a.m." 0611 "6:11 a.m." 0612 "6:12 a.m." 0613 "6:13 a.m." 0614 "6:14 a.m." 0615 "6:15 a.m." 0616 "6:16 a.m." 0617 "6:17 a.m." 0618 "6:18 a.m." 0619 "6:19 a.m." 0620 "6:20 a.m." 0621 "6:21 a.m." 0622 "6:22 a.m." 0623 "6:23 a.m." 0624 "6:24 a.m." 0625 "6:25 a.m." 0626 "6:26 a.m." 0627 "6:27 a.m." 0628 "6:28 a.m." 0629 "6:29 a.m." 0630 "6:30 a.m." 0631 "6:31 a.m." 0632 "6:32 a.m." 0633 "6:33 a.m." 0634 "6:34 a.m." 0635 "6:35 a.m." 0636 "6:36 a.m." 0637 "6:37 a.m." 0638 "6:38 a.m." 0639 "6:39 a.m." 0640 "6:40 a.m." 0641 "6:41 a.m." 0642 "6:42 a.m." 0643 "6:43 a.m." 0644 "6:44 a.m." 0645 "6:45 a.m." 0646 "6:46 a.m." 0647 "6:47 a.m." 0648 "6:48 a.m." 0649 "6:49 a.m." 0650 "6:50 a.m." 0651 "6:51 a.m." 0652 "6:52 a.m." 0653 "6:53 a.m." 0654 "6:54 a.m." 0655 "6:55 a.m." 0656 "6:56 a.m." 0657 "6:57 a.m." 0658 "6:58 a.m." 0659 "6:59 a.m." 0700 "7:00 a.m." 0701 "7:01 a.m." 0702 "7:02 a.m." 0703 "7:03 a.m." 0704 "7:04 a.m." 0705 "7:05 a.m." 0706 "7:06 a.m." 0707 "7:07 a.m." 0708 "7:08 a.m." 0709 "7:09 a.m." 0710 "7:10 a.m." 0711 "7:11 a.m." 0712 "7:12 a.m." 0713 "7:13 a.m." 0714 "7:14 a.m." 0715 "7:15 a.m." 0716 "7:16 a.m." 0717 "7:17 a.m." 0718 "7:18 a.m." 0719 "7:19 a.m." 0720 "7:20 a.m." 0721 "7:21 a.m." 0722 "7:22 a.m." 0723 "7:23 a.m." 0724 "7:24 a.m." 0725 "7:25 a.m." 0726 "7:26 a.m." 0727 "7:27 a.m." 0728 "7:28 a.m." 0729 "7:29 a.m." 0730 "7:30 a.m." 0731 "7:31 a.m." 0732 "7:32 a.m." 0733 "7:33 a.m." 0734 "7:34 a.m." 0735 "7:35 a.m." 0736 "7:36 a.m." 0737 "7:37 a.m." 0738 "7:38 a.m." 0739 "7:39 a.m." 0740 "7:40 a.m." 0741 "7:41 a.m." 0742 "7:42 a.m." 0743 "7:43 a.m." 0744 "7:44 a.m." 0745 "7:45 a.m." 0746 "7:46 a.m." 0747 "7:47 a.m." 0748 "7:48 a.m." 0749 "7:49 a.m." 0750 "7:50 a.m." 0751 "7:51 a.m." 0752 "7:52 a.m." 0753 "7:53 a.m." 0754 "7:54 a.m." 0755 "7:55 a.m." 0756 "7:56 a.m." 0757 "7:57 a.m." 0758 "7:58 a.m." 0759 "7:59 a.m." 0800 "8:00 a.m." 0801 "8:01 a.m." 0802 "8:02 a.m." 0803 "8:03 a.m." 0804 "8:04 a.m." 0805 "8:05 a.m." 0806 "8:06 a.m." 0807 "8:07 a.m." 0808 "8:08 a.m." 0809 "8:09 a.m." 0810 "8:10 a.m." 0811 "8:11 a.m." 0812 "8:12 a.m." 0813 "8:13 a.m." 0814 "8:14 a.m." 0815 "8:15 a.m." 0816 "8:16 a.m." 0817 "8:17 a.m." 0818 "8:18 a.m." 0819 "8:19 a.m." 0820 "8:20 a.m." 0821 "8:21 a.m." 0822 "8:22 a.m." 0823 "8:23 a.m." 0824 "8:24 a.m." 0825 "8:25 a.m." 0826 "8:26 a.m." 0827 "8:27 a.m." 0828 "8:28 a.m." 0829 "8:29 a.m." 0830 "8:30 a.m." 0831 "8:31 a.m." 0832 "8:32 a.m." 0833 "8:33 a.m." 0834 "8:34 a.m." 0835 "8:35 a.m." 0836 "8:36 a.m." 0837 "8:37 a.m." 0838 "8:38 a.m." 0839 "8:39 a.m." 0840 "8:40 a.m." 0841 "8:41 a.m." 0842 "8:42 a.m." 0843 "8:43 a.m." 0844 "8:44 a.m." 0845 "8:45 a.m." 0846 "8:46 a.m." 0847 "8:47 a.m." 0848 "8:48 a.m." 0849 "8:49 a.m." 0850 "8:50 a.m." 0851 "8:51 a.m." 0852 "8:52 a.m." 0853 "8:53 a.m." 0854 "8:54 a.m." 0855 "8:55 a.m." 0856 "8:56 a.m." 0857 "8:57 a.m." 0858 "8:58 a.m." 0859 "8:59 a.m." 0900 "9:00 a.m." 0901 "9:01 a.m." 0902 "9:02 a.m." 0903 "9:03 a.m." 0904 "9:04 a.m." 0905 "9:05 a.m." 0906 "9:06 a.m." 0907 "9:07 a.m." 0908 "9:08 a.m." 0909 "9:09 a.m." 0910 "9:10 a.m." 0911 "9:11 a.m." 0912 "9:12 a.m." 0913 "9:13 a.m." 0914 "9:14 a.m." 0915 "9:15 a.m." 0916 "9:16 a.m." 0917 "9:17 a.m." 0918 "9:18 a.m." 0919 "9:19 a.m." 0920 "9:20 a.m." 0921 "9:21 a.m." 0922 "9:22 a.m." 0923 "9:23 a.m." 0924 "9:24 a.m." 0925 "9:25 a.m." 0926 "9:26 a.m." 0927 "9:27 a.m." 0928 "9:28 a.m." 0929 "9:29 a.m." 0930 "9:30 a.m." 0931 "9:31 a.m." 0932 "9:32 a.m." 0933 "9:33 a.m." 0934 "9:34 a.m." 0935 "9:35 a.m." 0936 "9:36 a.m." 0937 "9:37 a.m." 0938 "9:38 a.m." 0939 "9:39 a.m." 0940 "9:40 a.m." 0941 "9:41 a.m." 0942 "9:42 a.m." 0943 "9:43 a.m." 0944 "9:44 a.m." 0945 "9:45 a.m." 0946 "9:46 a.m." 0947 "9:47 a.m." 0948 "9:48 a.m." 0949 "9:49 a.m." 0950 "9:50 a.m." 0951 "9:51 a.m." 0952 "9:52 a.m." 0953 "9:53 a.m." 0954 "9:54 a.m." 0955 "9:55 a.m." 0956 "9:56 a.m." 0957 "9:57 a.m." 0958 "9:58 a.m." 0959 "9:59 a.m." 1000 "10:00 a.m." 1001 "10:01 a.m." 1002 "10:02 a.m." 1003 "10:03 a.m." 1004 "10:04 a.m." 1005 "10:05 a.m." 1006 "10:06 a.m." 1007 "10:07 a.m." 1008 "10:08 a.m." 1009 "10:09 a.m." 1010 "10:10 a.m." 1011 "10:11 a.m." 1012 "10:12 a.m." 1013 "10:13 a.m." 1014 "10:14 a.m." 1015 "10:15 a.m." 1016 "10:16 a.m." 1017 "10:17 a.m." 1018 "10:18 a.m." 1019 "10:19 a.m." 1020 "10:20 a.m." 1021 "10:21 a.m." 1022 "10:22 a.m." 1023 "10:23 a.m." 1024 "10:24 a.m." 1025 "10:25 a.m." 1026 "10:26 a.m." 1027 "10:27 a.m." 1028 "10:28 a.m." 1029 "10:29 a.m." 1030 "10:30 a.m." 1031 "10:31 a.m." 1032 "10:32 a.m." 1033 "10:33 a.m." 1034 "10:34 a.m." 1035 "10:35 a.m." 1036 "10:36 a.m." 1037 "10:37 a.m." 1038 "10:38 a.m." 1039 "10:39 a.m." 1040 "10:40 a.m." 1041 "10:41 a.m." 1042 "10:42 a.m." 1043 "10:43 a.m." 1044 "10:44 a.m." 1045 "10:45 a.m." 1046 "10:46 a.m." 1047 "10:47 a.m." 1048 "10:48 a.m." 1049 "10:49 a.m." 1050 "10:50 a.m." 1051 "10:51 a.m." 1052 "10:52 a.m." 1053 "10:53 a.m." 1054 "10:54 a.m." 1055 "10:55 a.m." 1056 "10:56 a.m." 1057 "10:57 a.m." 1058 "10:58 a.m." 1059 "10:59 a.m." 1100 "11:00 a.m." 1101 "11:01 a.m." 1102 "11:02 a.m." 1103 "11:03 a.m." 1104 "11:04 a.m." 1105 "11:05 a.m." 1106 "11:06 a.m." 1107 "11:07 a.m." 1108 "11:08 a.m." 1109 "11:09 a.m." 1110 "11:10 a.m." 1111 "11:11 a.m." 1112 "11:12 a.m." 1113 "11:13 a.m." 1114 "11:14 a.m." 1115 "11:15 a.m." 1116 "11:16 a.m." 1117 "11:17 a.m." 1118 "11:18 a.m." 1119 "11:19 a.m." 1120 "11:20 a.m." 1121 "11:21 a.m." 1122 "11:22 a.m." 1123 "11:23 a.m." 1124 "11:24 a.m." 1125 "11:25 a.m." 1126 "11:26 a.m." 1127 "11:27 a.m." 1128 "11:28 a.m." 1129 "11:29 a.m." 1130 "11:30 a.m." 1131 "11:31 a.m." 1132 "11:32 a.m." 1133 "11:33 a.m." 1134 "11:34 a.m." 1135 "11:35 a.m." 1136 "11:36 a.m." 1137 "11:37 a.m." 1138 "11:38 a.m." 1139 "11:39 a.m." 1140 "11:40 a.m." 1141 "11:41 a.m." 1142 "11:42 a.m." 1143 "11:43 a.m." 1144 "11:44 a.m." 1145 "11:45 a.m." 1146 "11:46 a.m." 1147 "11:47 a.m." 1148 "11:48 a.m." 1149 "11:49 a.m." 1150 "11:50 a.m." 1151 "11:51 a.m." 1152 "11:52 a.m." 1153 "11:53 a.m." 1154 "11:54 a.m." 1155 "11:55 a.m." 1156 "11:56 a.m." 1157 "11:57 a.m." 1158 "11:58 a.m." 1159 "11:59 a.m." 1200 "12:00 noon" 1201 "12:01 p.m." 1202 "12:02 p.m." 1203 "12:03 p.m." 1204 "12:04 p.m." 1205 "12:05 p.m." 1206 "12:06 p.m." 1207 "12:07 p.m." 1208 "12:08 p.m." 1209 "12:09 p.m." 1210 "12:10 p.m." 1211 "12:11 p.m." 1212 "12:12 p.m." 1213 "12:13 p.m." 1214 "12:14 p.m." 1215 "12:15 p.m." 1216 "12:16 p.m." 1217 "12:17 p.m." 1218 "12:18 p.m." 1219 "12:19 p.m." 1220 "12:20 p.m." 1221 "12:21 p.m." 1222 "12:22 p.m." 1223 "12:23 p.m." 1224 "12:24 p.m." 1225 "12:25 p.m." 1226 "12:26 p.m." 1227 "12:27 p.m." 1228 "12:28 p.m." 1229 "12:29 p.m." 1230 "12:30 p.m." 1231 "12:31 p.m." 1232 "12:32 p.m." 1233 "12:33 p.m." 1234 "12:34 p.m." 1235 "12:35 p.m." 1236 "12:36 p.m." 1237 "12:37 p.m." 1238 "12:38 p.m." 1239 "12:39 p.m." 1240 "12:40 p.m." 1241 "12:41 p.m." 1242 "12:42 p.m." 1243 "12:43 p.m." 1244 "12:44 p.m." 1245 "12:45 p.m." 1246 "12:46 p.m." 1247 "12:47 p.m." 1248 "12:48 p.m." 1249 "12:49 p.m." 1250 "12:50 p.m." 1251 "12:51 p.m." 1252 "12:52 p.m." 1253 "12:53 p.m." 1254 "12:54 p.m." 1255 "12:55 p.m." 1256 "12:56 p.m." 1257 "12:57 p.m." 1258 "12:58 p.m." 1259 "12:59 p.m." 1300 "1:00 p.m." 1301 "1:01 p.m." 1302 "1:02 p.m." 1303 "1:03 p.m." 1304 "1:04 p.m." 1305 "1:05 p.m." 1306 "1:06 p.m." 1307 "1:07 p.m." 1308 "1:08 p.m." 1309 "1:09 p.m." 1310 "1:10 p.m." 1311 "1:11 p.m." 1312 "1:12 p.m." 1313 "1:13 p.m." 1314 "1:14 p.m." 1315 "1:15 p.m." 1316 "1:16 p.m." 1317 "1:17 p.m." 1318 "1:18 p.m." 1319 "1:19 p.m." 1320 "1:20 p.m." 1321 "1:21 p.m." 1322 "1:22 p.m." 1323 "1:23 p.m." 1324 "1:24 p.m." 1325 "1:25 p.m." 1326 "1:26 p.m." 1327 "1:27 p.m." 1328 "1:28 p.m." 1329 "1:29 p.m." 1330 "1:30 p.m." 1331 "1:31 p.m." 1332 "1:32 p.m." 1333 "1:33 p.m." 1334 "1:34 p.m." 1335 "1:35 p.m." 1336 "1:36 p.m." 1337 "1:37 p.m." 1338 "1:38 p.m." 1339 "1:39 p.m." 1340 "1:40 p.m." 1341 "1:41 p.m." 1342 "1:42 p.m." 1343 "1:43 p.m." 1344 "1:44 p.m." 1345 "1:45 p.m." 1346 "1:46 p.m." 1347 "1:47 p.m." 1348 "1:48 p.m." 1349 "1:49 p.m." 1350 "1:50 p.m." 1351 "1:51 p.m." 1352 "1:52 p.m." 1353 "1:53 p.m." 1354 "1:54 p.m." 1355 "1:55 p.m." 1356 "1:56 p.m." 1357 "1:57 p.m." 1358 "1:58 p.m." 1359 "1:59 p.m." 1400 "2:00 p.m." 1401 "2:01 p.m." 1402 "2:02 p.m." 1403 "2:03 p.m." 1404 "2:04 p.m." 1405 "2:05 p.m." 1406 "2:06 p.m." 1407 "2:07 p.m." 1408 "2:08 p.m." 1409 "2:09 p.m." 1410 "2:10 p.m." 1411 "2:11 p.m." 1412 "2:12 p.m." 1413 "2:13 p.m." 1414 "2:14 p.m." 1415 "2:15 p.m." 1416 "2:16 p.m." 1417 "2:17 p.m." 1418 "2:18 p.m." 1419 "2:19 p.m." 1420 "2:20 p.m." 1421 "2:21 p.m." 1422 "2:22 p.m." 1423 "2:23 p.m." 1424 "2:24 p.m." 1425 "2:25 p.m." 1426 "2:26 p.m." 1427 "2:27 p.m." 1428 "2:28 p.m." 1429 "2:29 p.m." 1430 "2:30 p.m." 1431 "2:31 p.m." 1432 "2:32 p.m." 1433 "2:33 p.m." 1434 "2:34 p.m." 1435 "2:35 p.m." 1436 "2:36 p.m." 1437 "2:37 p.m." 1438 "2:38 p.m." 1439 "2:39 p.m." 1440 "2:40 p.m." 1441 "2:41 p.m." 1442 "2:42 p.m." 1443 "2:43 p.m." 1444 "2:44 p.m." 1445 "2:45 p.m." 1446 "2:46 p.m." 1447 "2:47 p.m." 1448 "2:48 p.m." 1449 "2:49 p.m." 1450 "2:50 p.m." 1451 "2:51 p.m." 1452 "2:52 p.m." 1453 "2:53 p.m." 1454 "2:54 p.m." 1455 "2:55 p.m." 1456 "2:56 p.m." 1457 "2:57 p.m." 1458 "2:58 p.m." 1459 "2:59 p.m." 1500 "3:00 p.m." 1501 "3:01 p.m." 1502 "3:02 p.m." 1503 "3:03 p.m." 1504 "3:04 p.m." 1505 "3:05 p.m." 1506 "3:06 p.m." 1507 "3:07 p.m." 1508 "3:08 p.m." 1509 "3:09 p.m." 1510 "3:10 p.m." 1511 "3:11 p.m." 1512 "3:12 p.m." 1513 "3:13 p.m." 1514 "3:14 p.m." 1515 "3:15 p.m." 1516 "3:16 p.m." 1517 "3:17 p.m." 1518 "3:18 p.m." 1519 "3:19 p.m." 1520 "3:20 p.m." 1521 "3:21 p.m." 1522 "3:22 p.m." 1523 "3:23 p.m." 1524 "3:24 p.m." 1525 "3:25 p.m." 1526 "3:26 p.m." 1527 "3:27 p.m." 1528 "3:28 p.m." 1529 "3:29 p.m." 1530 "3:30 p.m." 1531 "3:31 p.m." 1532 "3:32 p.m." 1533 "3:33 p.m." 1534 "3:34 p.m." 1535 "3:35 p.m." 1536 "3:36 p.m." 1537 "3:37 p.m." 1538 "3:38 p.m." 1539 "3:39 p.m." 1540 "3:40 p.m." 1541 "3:41 p.m." 1542 "3:42 p.m." 1543 "3:43 p.m." 1544 "3:44 p.m." 1545 "3:45 p.m." 1546 "3:46 p.m." 1547 "3:47 p.m." 1548 "3:48 p.m." 1549 "3:49 p.m." 1550 "3:50 p.m." 1551 "3:51 p.m." 1552 "3:52 p.m." 1553 "3:53 p.m." 1554 "3:54 p.m." 1555 "3:55 p.m." 1556 "3:56 p.m." 1557 "3:57 p.m." 1558 "3:58 p.m." 1559 "3:59 p.m." 1600 "4:00 p.m." 1601 "4:01 p.m." 1602 "4:02 p.m." 1603 "4:03 p.m." 1604 "4:04 p.m." 1605 "4:05 p.m." 1606 "4:06 p.m." 1607 "4:07 p.m." 1608 "4:08 p.m." 1609 "4:09 p.m." 1610 "4:10 p.m." 1611 "4:11 p.m." 1612 "4:12 p.m." 1613 "4:13 p.m." 1614 "4:14 p.m." 1615 "4:15 p.m." 1616 "4:16 p.m." 1617 "4:17 p.m." 1618 "4:18 p.m." 1619 "4:19 p.m." 1620 "4:20 p.m." 1621 "4:21 p.m." 1622 "4:22 p.m." 1623 "4:23 p.m." 1624 "4:24 p.m." 1625 "4:25 p.m." 1626 "4:26 p.m." 1627 "4:27 p.m." 1628 "4:28 p.m." 1629 "4:29 p.m." 1630 "4:30 p.m." 1631 "4:31 p.m." 1632 "4:32 p.m." 1633 "4:33 p.m." 1634 "4:34 p.m." 1635 "4:35 p.m." 1636 "4:36 p.m." 1637 "4:37 p.m." 1638 "4:38 p.m." 1639 "4:39 p.m." 1640 "4:40 p.m." 1641 "4:41 p.m." 1642 "4:42 p.m." 1643 "4:43 p.m." 1644 "4:44 p.m." 1645 "4:45 p.m." 1646 "4:46 p.m." 1647 "4:47 p.m." 1648 "4:48 p.m." 1649 "4:49 p.m." 1650 "4:50 p.m." 1651 "4:51 p.m." 1652 "4:52 p.m." 1653 "4:53 p.m." 1654 "4:54 p.m." 1655 "4:55 p.m." 1656 "4:56 p.m." 1657 "4:57 p.m." 1658 "4:58 p.m." 1659 "4:59 p.m." 1700 "5:00 p.m." 1701 "5:01 p.m." 1702 "5:02 p.m." 1703 "5:03 p.m." 1704 "5:04 p.m." 1705 "5:05 p.m." 1706 "5:06 p.m." 1707 "5:07 p.m." 1708 "5:08 p.m." 1709 "5:09 p.m." 1710 "5:10 p.m." 1711 "5:11 p.m." 1712 "5:12 p.m." 1713 "5:13 p.m." 1714 "5:14 p.m." 1715 "5:15 p.m." 1716 "5:16 p.m." 1717 "5:17 p.m." 1718 "5:18 p.m." 1719 "5:19 p.m." 1720 "5:20 p.m." 1721 "5:21 p.m." 1722 "5:22 p.m." 1723 "5:23 p.m." 1724 "5:24 p.m." 1725 "5:25 p.m." 1726 "5:26 p.m." 1727 "5:27 p.m." 1728 "5:28 p.m." 1729 "5:29 p.m." 1730 "5:30 p.m." 1731 "5:31 p.m." 1732 "5:32 p.m." 1733 "5:33 p.m." 1734 "5:34 p.m." 1735 "5:35 p.m." 1736 "5:36 p.m." 1737 "5:37 p.m." 1738 "5:38 p.m." 1739 "5:39 p.m." 1740 "5:40 p.m." 1741 "5:41 p.m." 1742 "5:42 p.m." 1743 "5:43 p.m." 1744 "5:44 p.m." 1745 "5:45 p.m." 1746 "5:46 p.m." 1747 "5:47 p.m." 1748 "5:48 p.m." 1749 "5:49 p.m." 1750 "5:50 p.m." 1751 "5:51 p.m." 1752 "5:52 p.m." 1753 "5:53 p.m." 1754 "5:54 p.m." 1755 "5:55 p.m." 1756 "5:56 p.m." 1757 "5:57 p.m." 1758 "5:58 p.m." 1759 "5:59 p.m." 1800 "6:00 p.m." 1801 "6:01 p.m." 1802 "6:02 p.m." 1803 "6:03 p.m." 1804 "6:04 p.m." 1805 "6:05 p.m." 1806 "6:06 p.m." 1807 "6:07 p.m." 1808 "6:08 p.m." 1809 "6:09 p.m." 1810 "6:10 p.m." 1811 "6:11 p.m." 1812 "6:12 p.m." 1813 "6:13 p.m." 1814 "6:14 p.m." 1815 "6:15 p.m." 1816 "6:16 p.m." 1817 "6:17 p.m." 1818 "6:18 p.m." 1819 "6:19 p.m." 1820 "6:20 p.m." 1821 "6:21 p.m." 1822 "6:22 p.m." 1823 "6:23 p.m." 1824 "6:24 p.m." 1825 "6:25 p.m." 1826 "6:26 p.m." 1827 "6:27 p.m." 1828 "6:28 p.m." 1829 "6:29 p.m." 1830 "6:30 p.m." 1831 "6:31 p.m." 1832 "6:32 p.m." 1833 "6:33 p.m." 1834 "6:34 p.m." 1835 "6:35 p.m." 1836 "6:36 p.m." 1837 "6:37 p.m." 1838 "6:38 p.m." 1839 "6:39 p.m." 1840 "6:40 p.m." 1841 "6:41 p.m." 1842 "6:42 p.m." 1843 "6:43 p.m." 1844 "6:44 p.m." 1845 "6:45 p.m." 1846 "6:46 p.m." 1847 "6:47 p.m." 1848 "6:48 p.m." 1849 "6:49 p.m." 1850 "6:50 p.m." 1851 "6:51 p.m." 1852 "6:52 p.m." 1853 "6:53 p.m." 1854 "6:54 p.m." 1855 "6:55 p.m." 1856 "6:56 p.m." 1857 "6:57 p.m." 1858 "6:58 p.m." 1859 "6:59 p.m." 1900 "7:00 p.m." 1901 "7:01 p.m." 1902 "7:02 p.m." 1903 "7:03 p.m." 1904 "7:04 p.m." 1905 "7:05 p.m." 1906 "7:06 p.m." 1907 "7:07 p.m." 1908 "7:08 p.m." 1909 "7:09 p.m." 1910 "7:10 p.m." 1911 "7:11 p.m." 1912 "7:12 p.m." 1913 "7:13 p.m." 1914 "7:14 p.m." 1915 "7:15 p.m." 1916 "7:16 p.m." 1917 "7:17 p.m." 1918 "7:18 p.m." 1919 "7:19 p.m." 1920 "7:20 p.m." 1921 "7:21 p.m." 1922 "7:22 p.m." 1923 "7:23 p.m." 1924 "7:24 p.m." 1925 "7:25 p.m." 1926 "7:26 p.m." 1927 "7:27 p.m." 1928 "7:28 p.m." 1929 "7:29 p.m." 1930 "7:30 p.m." 1931 "7:31 p.m." 1932 "7:32 p.m." 1933 "7:33 p.m." 1934 "7:34 p.m." 1935 "7:35 p.m." 1936 "7:36 p.m." 1937 "7:37 p.m." 1938 "7:38 p.m." 1939 "7:39 p.m." 1940 "7:40 p.m." 1941 "7:41 p.m." 1942 "7:42 p.m." 1943 "7:43 p.m." 1944 "7:44 p.m." 1945 "7:45 p.m." 1946 "7:46 p.m." 1947 "7:47 p.m." 1948 "7:48 p.m." 1949 "7:49 p.m." 1950 "7:50 p.m." 1951 "7:51 p.m." 1952 "7:52 p.m." 1953 "7:53 p.m." 1954 "7:54 p.m." 1955 "7:55 p.m." 1956 "7:56 p.m." 1957 "7:57 p.m." 1958 "7:58 p.m." 1959 "7:59 p.m." 2000 "8:00 p.m." 2001 "8:01 p.m." 2002 "8:02 p.m." 2003 "8:03 p.m." 2004 "8:04 p.m." 2005 "8:05 p.m." 2006 "8:06 p.m." 2007 "8:07 p.m." 2008 "8:08 p.m." 2009 "8:09 p.m." 2010 "8:10 p.m." 2011 "8:11 p.m." 2012 "8:12 p.m." 2013 "8:13 p.m." 2014 "8:14 p.m." 2015 "8:15 p.m." 2016 "8:16 p.m." 2017 "8:17 p.m." 2018 "8:18 p.m." 2019 "8:19 p.m." 2020 "8:20 p.m." 2021 "8:21 p.m." 2022 "8:22 p.m." 2023 "8:23 p.m." 2024 "8:24 p.m." 2025 "8:25 p.m." 2026 "8:26 p.m." 2027 "8:27 p.m." 2028 "8:28 p.m." 2029 "8:29 p.m." 2030 "8:30 p.m." 2031 "8:31 p.m." 2032 "8:32 p.m." 2033 "8:33 p.m." 2034 "8:34 p.m." 2035 "8:35 p.m." 2036 "8:36 p.m." 2037 "8:37 p.m." 2038 "8:38 p.m." 2039 "8:39 p.m." 2040 "8:40 p.m." 2041 "8:41 p.m." 2042 "8:42 p.m." 2043 "8:43 p.m." 2044 "8:44 p.m." 2045 "8:45 p.m." 2046 "8:46 p.m." 2047 "8:47 p.m." 2048 "8:48 p.m." 2049 "8:49 p.m." 2050 "8:50 p.m." 2051 "8:51 p.m." 2052 "8:52 p.m." 2053 "8:53 p.m." 2054 "8:54 p.m." 2055 "8:55 p.m." 2056 "8:56 p.m." 2057 "8:57 p.m." 2058 "8:58 p.m." 2059 "8:59 p.m." 2100 "9:00 p.m." 2101 "9:01 p.m." 2102 "9:02 p.m." 2103 "9:03 p.m." 2104 "9:04 p.m." 2105 "9:05 p.m." 2106 "9:06 p.m." 2107 "9:07 p.m." 2108 "9:08 p.m." 2109 "9:09 p.m." 2110 "9:10 p.m." 2111 "9:11 p.m." 2112 "9:12 p.m." 2113 "9:13 p.m." 2114 "9:14 p.m." 2115 "9:15 p.m." 2116 "9:16 p.m." 2117 "9:17 p.m." 2118 "9:18 p.m." 2119 "9:19 p.m." 2120 "9:20 p.m." 2121 "9:21 p.m." 2122 "9:22 p.m." 2123 "9:23 p.m." 2124 "9:24 p.m." 2125 "9:25 p.m." 2126 "9:26 p.m." 2127 "9:27 p.m." 2128 "9:28 p.m." 2129 "9:29 p.m." 2130 "9:30 p.m." 2131 "9:31 p.m." 2132 "9:32 p.m." 2133 "9:33 p.m." 2134 "9:34 p.m." 2135 "9:35 p.m." 2136 "9:36 p.m." 2137 "9:37 p.m." 2138 "9:38 p.m." 2139 "9:39 p.m." 2140 "9:40 p.m." 2141 "9:41 p.m." 2142 "9:42 p.m." 2143 "9:43 p.m." 2144 "9:44 p.m." 2145 "9:45 p.m." 2146 "9:46 p.m." 2147 "9:47 p.m." 2148 "9:48 p.m." 2149 "9:49 p.m." 2150 "9:50 p.m." 2151 "9:51 p.m." 2152 "9:52 p.m." 2153 "9:53 p.m." 2154 "9:54 p.m." 2155 "9:55 p.m." 2156 "9:56 p.m." 2157 "9:57 p.m." 2158 "9:58 p.m." 2159 "9:59 p.m." 2200 "10:00 p.m." 2201 "10:01 p.m." 2202 "10:02 p.m." 2203 "10:03 p.m." 2204 "10:04 p.m." 2205 "10:05 p.m." 2206 "10:06 p.m." 2207 "10:07 p.m." 2208 "10:08 p.m." 2209 "10:09 p.m." 2210 "10:10 p.m." 2211 "10:11 p.m." 2212 "10:12 p.m." 2213 "10:13 p.m." 2214 "10:14 p.m." 2215 "10:15 p.m." 2216 "10:16 p.m." 2217 "10:17 p.m." 2218 "10:18 p.m." 2219 "10:19 p.m." 2220 "10:20 p.m." 2221 "10:21 p.m." 2222 "10:22 p.m." 2223 "10:23 p.m." 2224 "10:24 p.m." 2225 "10:25 p.m." 2226 "10:26 p.m." 2227 "10:27 p.m." 2228 "10:28 p.m." 2229 "10:29 p.m." 2230 "10:30 p.m." 2231 "10:31 p.m." 2232 "10:32 p.m." 2233 "10:33 p.m." 2234 "10:34 p.m." 2235 "10:35 p.m." 2236 "10:36 p.m." 2237 "10:37 p.m." 2238 "10:38 p.m." 2239 "10:39 p.m." 2240 "10:40 p.m." 2241 "10:41 p.m." 2242 "10:42 p.m." 2243 "10:43 p.m." 2244 "10:44 p.m." 2245 "10:45 p.m." 2246 "10:46 p.m." 2247 "10:47 p.m." 2248 "10:48 p.m." 2249 "10:49 p.m." 2250 "10:50 p.m." 2251 "10:51 p.m." 2252 "10:52 p.m." 2253 "10:53 p.m." 2254 "10:54 p.m." 2255 "10:55 p.m." 2256 "10:56 p.m." 2257 "10:57 p.m." 2258 "10:58 p.m." 2259 "10:59 p.m." 2300 "11:00 p.m." 2301 "11:01 p.m." 2302 "11:02 p.m." 2303 "11:03 p.m." 2304 "11:04 p.m." 2305 "11:05 p.m." 2306 "11:06 p.m." 2307 "11:07 p.m." 2308 "11:08 p.m." 2309 "11:09 p.m." 2310 "11:10 p.m." 2311 "11:11 p.m." 2312 "11:12 p.m." 2313 "11:13 p.m." 2314 "11:14 p.m." 2315 "11:15 p.m." 2316 "11:16 p.m." 2317 "11:17 p.m." 2318 "11:18 p.m." 2319 "11:19 p.m." 2320 "11:20 p.m." 2321 "11:21 p.m." 2322 "11:22 p.m." 2323 "11:23 p.m." 2324 "11:24 p.m." 2325 "11:25 p.m." 2326 "11:26 p.m." 2327 "11:27 p.m." 2328 "11:28 p.m." 2329 "11:29 p.m." 2330 "11:30 p.m." 2331 "11:31 p.m." 2332 "11:32 p.m." 2333 "11:33 p.m." 2334 "11:34 p.m." 2335 "11:35 p.m." 2336 "11:36 p.m." 2337 "11:37 p.m." 2338 "11:38 p.m." 2339 "11:39 p.m." 2340 "11:40 p.m." 2341 "11:41 p.m." 2342 "11:42 p.m." 2343 "11:43 p.m." 2344 "11:44 p.m." 2345 "11:45 p.m." 2346 "11:46 p.m." 2347 "11:47 p.m." 2348 "11:48 p.m." 2349 "11:49 p.m." 2350 "11:50 p.m." 2351 "11:51 p.m." 2352 "11:52 p.m." 2353 "11:53 p.m." 2354 "11:54 p.m." 2355 "11:55 p.m." 2356 "11:56 p.m." 2357 "11:57 p.m." 2358 "11:58 p.m." 2359 "11:59 p.m." 9999 "Unknown"; label define waittime 999 "Unknown"; label define lov 9999 "Unknown"; label define reside 0 "Blank" 1 "Yes" 2 "No" 3 "Unknown"; label define sex 1 "Female" 2 "Male"; label define ethnic 0 "Blank" 1 "Hispanic or Latino" 2 "Not Hispanic or Latino"; label define arrive 0 "No box is marked" 1 "Ambulance" 2 "Public service" 3 "Walk-in" 4 "Unknown"; label define race 1 "White Only" 2 "Black/African American only" 3 "Asian only" 4 "Native Hawaiian/Oth Pac Isl only" 5 "American Indian/Alaska Native only" 6 "More than one race reported"; label define paytype 0 "Blank" 1 "Private insurance" 2 "Medicare" 3 "Medicaid" 4 "Worker's compensation" 5 "Self-pay" 6 "No charge" 7 "Other" 8 "Unknown"; label define tempf 0 "Blank" 600 "60.0" 601 "60.1" 602 "60.2" 603 "60.3" 604 "60.4" 605 "60.5" 606 "60.6" 607 "60.7" 608 "60.8" 609 "60.9" 610 "61.0" 611 "61.1" 612 "61.2" 613 "61.3" 614 "61.4" 615 "61.5" 616 "61.6" 617 "61.7" 618 "61.8" 619 "61.9" 620 "62.0" 621 "62.1" 622 "62.2" 623 "62.3" 624 "62.4" 625 "62.5" 626 "62.6" 627 "62.7" 628 "62.8" 629 "62.9" 630 "63.0" 631 "63.1" 632 "63.2" 633 "63.3" 634 "63.4" 635 "63.5" 636 "63.6" 637 "63.7" 638 "63.8" 639 "63.9" 640 "64.0" 641 "64.1" 642 "64.2" 643 "64.3" 644 "64.4" 645 "64.5" 646 "64.6" 647 "64.7" 648 "64.8" 649 "64.9" 650 "65.0" 651 "65.1" 652 "65.2" 653 "65.3" 654 "65.4" 655 "65.5" 656 "65.6" 657 "65.7" 658 "65.8" 659 "65.9" 660 "65.0" 661 "66.1" 662 "66.2" 663 "66.3" 664 "66.4" 665 "66.5" 666 "66.6" 667 "66.7" 668 "66.8" 669 "66.9" 670 "67.0" 671 "67.1" 672 "67.2" 673 "67.3" 674 "67.4" 675 "67.5" 676 "67.6" 677 "67.7" 678 "67.8" 679 "67.9" 680 "68.0" 681 "68.1" 682 "68.2" 683 "68.3" 684 "68.4" 685 "68.5" 686 "68.6" 687 "68.7" 688 "68.8" 689 "68.9" 690 "69.0" 691 "69.1" 692 "69.2" 693 "69.3" 694 "69.4" 695 "69.5" 696 "69.6" 697 "69.7" 698 "69.8" 699 "69.9" 700 "70.0" 701 "70.1" 702 "70.2" 703 "70.3" 704 "70.4" 705 "70.5" 706 "70.6" 707 "70.7" 708 "70.8" 709 "70.9" 710 "71.0" 711 "71.1" 712 "71.2" 713 "71.3" 714 "71.4" 715 "71.5" 716 "71.6" 717 "71.7" 718 "71.8" 719 "71.9" 720 "72.0" 721 "72.1" 722 "72.2" 723 "72.3" 724 "72.4" 725 "72.5" 726 "72.6" 727 "72.7" 728 "72.8" 729 "72.9" 730 "73.0" 731 "73.1" 732 "73.2" 733 "73.3" 734 "73.4" 735 "73.5" 736 "73.6" 737 "73.7" 738 "73.8" 739 "73.9" 740 "74.0" 741 "74.1" 742 "74.2" 743 "74.3" 744 "74.4" 745 "74.5" 746 "74.6" 747 "74.7" 748 "74.8" 749 "74.9" 750 "75.0" 751 "75.1" 752 "75.2" 753 "75.3" 754 "75.4" 755 "75.5" 756 "75.6" 757 "75.7" 758 "75.8" 759 "75.9" 760 "76.0" 761 "76.1" 762 "76.2" 763 "76.3" 764 "76.4" 765 "76.5" 766 "76.6" 767 "76.7" 768 "76.8" 769 "76.9" 770 "77.0" 771 "77.1" 772 "77.2" 773 "77.3" 774 "77.4" 775 "77.5" 776 "77.6" 777 "77.7" 778 "77.8" 779 "77.9" 780 "78.0" 781 "78.1" 782 "78.2" 783 "78.3" 784 "78.4" 785 "78.5" 786 "78.6" 787 "78.7" 788 "78.8" 789 "78.9" 790 "79.0" 791 "79.1" 792 "79.2" 793 "79.3" 794 "79.4" 795 "79.5" 796 "79.6" 797 "79.7" 798 "79.8" 799 "79.9" 800 "80.0" 801 "80.1" 802 "80.2" 803 "80.3" 804 "80.4" 805 "80.5" 806 "80.6" 807 "80.7" 808 "80.8" 809 "80.9" 810 "81.0" 811 "81.1" 812 "81.2" 813 "81.3" 814 "81.4" 815 "81.5" 816 "81.6" 817 "81.7" 818 "81.8" 819 "81.9" 820 "82.0" 821 "82.1" 822 "82.2" 823 "82.3" 824 "82.4" 825 "82.5" 826 "82.6" 827 "82.7" 828 "82.8" 829 "82.9" 830 "83.0" 831 "83.1" 832 "83.2" 833 "83.3" 834 "83.4" 835 "83.5" 836 "83.6" 837 "83.7" 838 "83.8" 839 "83.9" 840 "84.0" 841 "84.1" 842 "84.2" 843 "84.3" 844 "84.4" 845 "84.5" 846 "84.6" 847 "84.7" 848 "84.8" 849 "84.9" 850 "85.0" 851 "85.1" 852 "85.2" 853 "85.3" 854 "85.4" 855 "85.5" 856 "85.6" 857 "85.7" 858 "85.8" 859 "85.9" 860 "86.0" 861 "86.1" 862 "86.2" 863 "86.3" 864 "86.4" 865 "86.5" 866 "86.6" 867 "86.7" 868 "86.8" 869 "86.9" 870 "87.0" 871 "87.1" 872 "87.2" 873 "87.3" 874 "87.4" 875 "87.5" 876 "87.6" 877 "87.7" 878 "87.8" 879 "87.9" 880 "88.0" 881 "88.1" 882 "88.2" 883 "88.3" 884 "88.4" 885 "88.5" 886 "88.6" 887 "88.7" 888 "88.8" 889 "88.9" 890 "89.0" 891 "89.1" 892 "89.2" 893 "89.3" 894 "89.4" 895 "89.5" 896 "89.6" 897 "89.7" 898 "89.8" 899 "89.9" 900 "90.0" 901 "90.1" 902 "90.2" 903 "90.3" 904 "90.4" 905 "90.5" 906 "90.6" 907 "90.7" 908 "90.8" 909 "90.9" 910 "91.0" 911 "91.1" 912 "91.2" 913 "91.3" 914 "91.4" 915 "91.5" 916 "91.6" 917 "91.7" 918 "91.8" 919 "91.9" 920 "92.0" 921 "92.1" 922 "92.2" 923 "92.3" 924 "92.4" 925 "92.5" 926 "92.6" 927 "92.7" 928 "92.8" 929 "92.9" 930 "93.0" 931 "93.1" 932 "93.2" 933 "93.3" 934 "93.4" 935 "93.5" 936 "93.6" 937 "93.7" 938 "93.8" 939 "93.9" 940 "94.0" 941 "94.1" 942 "94.2" 943 "94.3" 944 "94.4" 945 "94.5" 946 "94.6" 947 "94.7" 948 "94.8" 949 "94.9" 950 "95.0" 951 "95.1" 952 "95.2" 953 "95.3" 954 "95.4" 955 "95.5" 956 "95.6" 957 "95.7" 958 "95.8" 959 "95.9" 960 "96.0" 961 "96.1" 962 "96.2" 963 "96.3" 964 "96.4" 965 "96.5" 966 "96.6" 967 "96.7" 968 "96.8" 969 "96.9" 970 "97.0" 971 "97.1" 972 "97.2" 973 "97.3" 974 "97.4" 975 "97.5" 976 "97.6" 977 "97.7" 978 "97.8" 979 "97.9" 980 "98.0" 981 "98.1" 982 "98.2" 983 "98.3" 984 "98.4" 985 "98.5" 986 "98.6" 987 "98.7" 988 "98.8" 989 "98.9" 990 "99.0" 991 "99.1" 992 "99.2" 993 "99.3" 994 "99.4" 995 "99.5" 996 "99.6" 997 "99.7" 998 "99.8" 999 "99.9" 1000 "100.0" 1001 "100.1" 1002 "100.2" 1003 "100.3" 1004 "100.4" 1005 "100.5" 1006 "100.6" 1007 "100.7" 1008 "100.8" 1009 "100.9" 1010 "100.0" 1011 "101.1" 1012 "101.2" 1013 "101.3" 1014 "101.4" 1015 "101.5" 1016 "101.6" 1017 "101.7" 1018 "101.8" 1019 "101.9" 1020 "102.0" 1021 "102.1" 1022 "102.2" 1023 "102.3" 1024 "102.4" 1025 "102.5" 1026 "102.6" 1027 "102.7" 1028 "102.8" 1029 "102.9" 1030 "103.0" 1031 "103.1" 1032 "103.2" 1033 "103.3" 1034 "103.4" 1035 "103.5" 1036 "103.6" 1037 "103.7" 1038 "103.8" 1039 "103.9" 1040 "104.0" 1041 "104.1" 1042 "104.2" 1043 "104.3" 1044 "104.4" 1045 "104.5" 1046 "104.6" 1047 "104.7" 1048 "104.8" 1049 "104.9" 1050 "105.0" 1051 "105.1" 1052 "105.2" 1053 "105.3" 1054 "105.4" 1055 "105.5" 1056 "105.6" 1057 "105.7" 1058 "105.8" 1059 "105.9" 1060 "106.0" 1061 "106.1" 1062 "106.2" 1063 "106.3" 1064 "106.4" 1065 "106.5" 1066 "106.6" 1067 "106.7" 1068 "106.8" 1069 "106.9" 1070 "107.0" 1071 "107.1" 1072 "107.2" 1073 "107.3" 1074 "107.4" 1075 "107.5" 1076 "107.6" 1077 "107.7" 1078 "107.8" 1079 "107.9" 1080 "108.0" 1081 "108.1" 1082 "108.2" 1083 "108.3" 1084 "108.4" 1085 "108.5" 1086 "108.6" 1087 "108.7" 1088 "108.8" 1089 "108.9" 1090 "109.0" 1091 "109.1" 1092 "109.2" 1093 "109.3" 1094 "109.4" 1095 "109.5" 1096 "109.6" 1097 "109.7" 1098 "109.8" 1099 "109.9" 1100 "110.0" 1101 "110.1" 1102 "110.2" 1103 "110.3" 1104 "110.4" 1105 "110.5" 1106 "110.6" 1107 "110.7" 1108 "110.8" 1109 "110.9" 1110 "111.0" 1111 "111.1" 1112 "111.2"; label define pulse 999 "Blank"; label define bpsys 999 "Blank"; label define bpdias 998 "P, Palp, DOP or DOPPLER" 999 "Blank"; label define oriented 0 "Blank" 1 "Yes" 2 "No" 3 "Unknown"; label define immed 1 "Unknown/no triage" 2 "Less than 15 minutes" 3 "15- 60 minutes" 4 ">1 hour - 2 hours" 5 ">2 hours - 24 hours"; label define pain 0 "No box is marked" 1 "Unknown" 2 "None" 3 "Mild" 4 "Moderate" 5 "Severe"; label define rfv 10050 "Chills" 10100 "Fever" 10120 "Other symptoms of body temperature" 10121 "Feeling cold" 10122 "Feeling hot" 10123 "Feeling hot and cold" 10150 "Tiredness, exhaustion" 10200 "General weakness" 10250 "General ill feeling" 10300 "Fainting (syncope)" 10350 "Symptoms of fluid abnormalities" 10351 "Edema" 10352 "Excessive sweating, perspiration" 10353 "Excessive thirst" 10400 "Weight gain" 10450 "Weight loss" 10451 "Recent weight loss" 10452 "Underweight" 10460 "Symptoms of face, not elsewhere class...'" 10500 "Chest pain and related symptoms" 10501 "Chest pain" 10502 "Chest discomfort, pressure, tightness" 10503 "Burning sensation in the chest" 10550 "Pain, specified site not referable to..." 10551 "Rib pain" 10552 "Side pain, flank pain" 10553 "Groin pain" 10554 "Facial pain" 10600 "Pain and related symptoms, generalize..." 10601 "Pain, unspecified" 10602 "Cramps, spasms, site unspecified" 10603 "Stiffness, site unspecified" 10650 "Tumor or mass, site unspecified" 10651 "Internal mass, NOS" 10700 "Bleeding, multiple or unspecified sites" 10750 "Symptoms of growth and developmental ..." 10751 "Lack of growth" 10752 "Excessive growth" 10800 "General symptoms of infants, NEC" 10801 "Infant crying too much, fussy, fidget..." 10802 "Infant regurgitation, spitting up" 10803 "Infant feeding problem" 10850 "General or unspecified nonviral infec..." 10900 "Allergy, NOS" 10950 "Disorders of motor functions" 11000 "Anxiety and nervousness" 11050 "Fears and phobias" 11100 "Depression" 11150 "Anger" 11200 "Problems with identity and self-esteem" 11250 "Restlessness" 11300 "Behavioral disturbances" 11301 "Antisocial behavior" 11302 "Hostile behavior" 11303 "Hysterical behavior" 11304 "Temper problems" 11305 "Obsessions and compulsions" 11350 "Disturbances of sleep" 11351 "Insomnia" 11352 "Sleepiness (hypersomnia)" 11353 "Nightmares" 11354 "Sleepwalking" 11355 "Sleep apnea" 11400 "Smoking problems" 11450 "Alcohol-related problems" 11500 "Abnormal drug usage" 11550 "Delusions or hallucinations" 11600 "Psychosexual disorders" 11601 "Frigidity, loss of sex drive, lack of..." 11602 "Homosexuality, concerns with" 11603 "Impotence" 11604 "Premature ejaculation" 11605 "Masturbation excessive, concerns about" 11606 "Orgasm, problem with" 11650 "Oth symptoms/problems relat to psycho..." 11651 "Nailbiting" 11652 "Thumbsucking" 12000 "Abnormal involuntary movements" 12050 "Convulsions" 12070 "Symptoms of head, NEC" 12100 "Headache, pain in head" 12150 "Memory, disturbances of" 12200 "Disturbances of sensation" 12201 "Loss of feeling (anesthesia)" 12202 "Increased sensation (hyperesthesia)" 12203 "Abnormal sensation (paresthesia)" 12204 "Other disturbances of sense, includin..." 12250 "Vertigo - dizziness" 12300 "Weakness (neurologic)" 12350 "Disorders of speech, speech disturbance" 12351 "Stuttering, stammering" 12352 "Slurring" 12400 "Other symptoms referable to the nervo..." 12600 "Abnormal pulsations and palpitations" 12601 "Increased heartbeat" 12602 "Decreased heartbeat" 12603 "Irregular heartbeat" 12650 "Heart pain" 12700 "Other symptoms of the heart" 12750 "Symptoms of lymph glands (or nodes)" 12751 "Swollen or enlarged glands" 12752 "Sore glands" 12800 "Other symptoms ref to the cardiovas/l..." 12801 "Poor circulation" 12802 "Pallor, paleness" 12803 "Flushed, blushing" 13050 "Vision dysfunctions" 13051 "Blindness and half vision" 13052 "Diminished vision" 13053 "Extraneous vision" 13054 "Double vision (diplopia)" 13100 "Discharge from eye" 13101 "Discharge from eye--bleeding" 13102 "Discharge from eye--tearing, watering..." 13103 "Discharge from eye--pus, matter, whit..." 13150 "Eye infection and inflammation" 13151 "Pinkeye" 13200 "Abnormal sensations of the eye" 13201 "Eye pain" 13202 "Eye itching" 13203 "Eye burning" 13204 "Eye strain" 13250 "Abnormal eye movements" 13251 "Abnormal retraction of eye" 13252 "Cross-eyed" 13253 "Pupils unequal" 13254 "Deviation of eyes" 13300 "Abnormal appearance of eyes" 13301 "Abnormal color of eyes" 13302 "Protrusion (exophthalmos) of eyes" 13303 "Cloudy, dull, hazy appearance of eyes" 13350 "Other and unspecified symptoms refera..." 13351 "Contact lens problems" 13352 "Allergy problems referable to eye" 13353 "Swelling of eyes" 13400 "Symptoms of eyelids" 13401 "Infection, inflammation, swelling of ..." 13402 "Itching of eyelids" 13403 "Mass or growth of eyelids" 13404 "Abnormal movement of eyelids" 13450 "Hearing dysfunctions" 13451 "Diminished hearing" 13452 "Heightened or acute hearing" 13453 "Extraneous hearing" 13500 "Discharge from ear" 13501 "Bleeding of ear" 13502 "Pus (purulent drainage) from ear" 13503 "Swimmer's ear" 13550 "Earache, or ear infection" 13551 "Earache, pain" 13552 "Ear infection" 13600 "Plugged feeling in ear" 13650 "Other and unspecified symptoms refera..." 13651 "Itching of ears" 13652 "Growths or mass of ears" 13653 "Pulling at ears, picking at ears" 13654 "Abnormal size or shape of ears, ears..." 14000 "Nasal congestion" 14050 "Other symptoms of nose" 14051 "Nosebleed (epistaxis)" 14052 "Sore in nose" 14053 "Inflammation and swelling of nose" 14054 "Problem with appearance of nose" 14100 "Sinus problems" 14101 "Sinus pain and pressure" 14102 "Sinus inflammation, infection" 14103 "Sinus congestion" 14150 "Shortness of breath" 14200 "Labored or difficult breathing (dyspnea)" 14250 "Wheezing" 14300 "Breathing problems, NEC" 14301 "Disorders of respiratory sound, NEC" 14302 "Rapid breathing (hyperventilation)" 14350 "Sneezing" 14400 "Cough" 14450 "Head cold, upper respiratory infectio..." 14500 "General viral infection" 14501 "Flu" 14550 "Symptoms referable to throat" 14551 "Throat soreness" 14552 "Throat pain" 14553 "Throat infection" 14554 "Throat irritation, scratch, tickle" 14555 "Throat swelling" 14556 "Throat lump or mass" 14600 "Symptoms referable to tonsils" 14700 "Abnormalities of sputum or phlegm" 14701 "Coughing up blood" 14702 "Pus in sputum" 14703 "Excessive sputum" 14750 "Congestion in chest" 14800 "Disorders of voice" 14801 "Hoarseness, loss of voice" 14802 "Hypernasality" 14850 "Other symptoms referable to the respi..." 14851 "Lung pain" 15000 "Symptoms of teeth and gums" 15001 "Toothache" 15002 "Gum pain" 15003 "Bleeding gums" 15010 "Symptoms of the jaw, NOS" 15011 "Symptoms of the jaw, swelling" 15012 "Symptoms of the jaw, lump or mass" 15050 "Symptoms referable to lips" 15051 "Cracked, bleeding, dry lips" 15052 "Abnormal color of lips" 15053 "Cold sore" 15100 "Symptoms referable to mouth" 15101 "Mouth pain, burning, soreness" 15102 "Mouth bleeding" 15103 "Mouth dryness" 15104 "Mouth ulcer, sore" 15150 "Symptoms referable to tongue" 15151 "Tongue pain" 15152 "Tongue bleeding" 15153 "Tongue inflammation, infection, swelling" 15154 "Abnormal color, ridges, coated tongue" 15200 "Difficulty in swallowing (dysphagia)" 15250 "Nausea" 15300 "Vomiting" 15350 "Heartburn and indigestion (dyspepsia)" 15400 "Gastrointestinal infection" 15450 "Stomach and abdominal pain, cramps an..." 15451 "Abdominal pain, cramps, spasms, NOS" 15452 "Lower abdominal pain, cramps, spasms," 15453 "Upper abdominal pain, cramps, spasms" 15650 "Change in abdominal size" 15651 "Abdominal distention, fullness, NOS" 15652 "Abdominal mass or tumor" 15653 "Abdominal swelling, NOS" 15700 "Appetite, abnormal" 15701 "Excessive appetite" 15702 "Decreased appetite" 15750 "Difficulty eating" 15800 "Gastrointestinal bleeding" 15801 "Blood in stool (melena)" 15802 "Vomiting blood (hematemesis)" 15850 "Flatulence" 15900 "Constipation" 15950 "Diarrhea" 16000 "Other symptoms or changes in bowel fu..." 16001 "Discharge in stools" 16002 "Worms" 16003 "Changes in size, color, shape, or odo..." 16004 "Incontinence of stool" 16050 "Symptoms referable to anus-rectum" 16051 "Anal-rectal pain" 16052 "Anal-rectal bleeding" 16053 "Anal-rectal swelling or mass" 16054 "Anal-rectal itching" 16100 "Symptoms of liver, gallbladder, and b..." 16101 "Pain of liver, gallbladder, and bilia..." 16102 "Jaundice" 16150 "Other and unspecified symptoms refera..." 16400 "Abnormalities of urine" 16401 "Blood in urine (hematuria)" 16402 "Pus in urine" 16403 "Unusual color or odor of urine" 16450 "Frequency and urgency of urination" 16451 "Excessive urination, night (nocturia)" 16500 "Painful urination" 16550 "Incontinence of urine (enuresis)" 16551 "Involuntary urination, can't hold uri..." 16552 "Bedwetting" 16600 "Other urinary dysfunctions" 16601 "Retention of urine" 16602 "Urinary hesitancy" 16603 "Large volume of urine" 16604 "Small volume of urine" 16650 "Symptoms of bladder" 16651 "Bladder pain" 16652 "Bladder infection" 16700 "Symptoms of the kidneys" 16701 "Kidney pain" 16702 "Kidney infection" 16750 "Urinary tract infection, NOS" 16800 "Other symptoms referable to urinary t..." 17000 "Symptoms of penis" 17001 "Pain, aching, soreness, tenderness, p..." 17002 "Infection, inflammation, swelling of ..." 17003 "Lumps, bumps, growths, warts of penis" 17050 "Penile discharge" 17100 "Symptoms of prostate" 17101 "Swelling of prostate" 17102 "Infection of prostate" 17150 "Symptoms of the scrotum and testes" 17151 "Pain, aching, tenderness of the scrot..." 17152 "Swelling, inflammation of the scrotum..." 17153 "Growths, warts, lumps, bumps of the s..." 17154 "Itching, jock itch of the scrotum and..." 17200 "Other symptoms of male reproductive s..." 17300 "Absence of menstruation (amenorrhea)" 17350 "Irregularity of menstrual interval" 17351 "Frequent menstrual interval" 17352 "Infrequent menstrual interval" 17353 "Unpredictable menstrual interval" 17400 "Irregularity of menstrual flow" 17401 "Excessively heavy (menorrhagia) menst..." 17402 "Scanty flow (oligomenorrhea) menstrua..." 17403 "Abnormal material in menstrual flow, ..." 17450 "Menstrual symptoms, other and unspeci..." 17451 "Premenstrual symptoms" 17452 "Painful menstruation (dysmenorrhea)" 17500 "Menopausal symptoms" 17501 "Early or late onset of menopause" 17502 "Vasomotor symptoms-hot flashes" 17503 "Emotional symptoms, change of life pr..." 17550 "Uterine and vaginal bleeding" 17551 "Intermenstrual bleeding (metrorrhagia)" 17552 "Postmenopausal bleeding" 17553 "Postcoital bleeding, female" 17600 "Vaginal discharge" 17650 "Other vaginal symptoms" 17651 "Vaginal pain" 17652 "Vaginal infection" 17653 "Vaginal itching, burning" 17700 "Vulvar disorders" 17701 "Vulvar itching and irritation, swelling" 17702 "Vulvar mass, lump" 17703 "Vulvar growth, wart, cyst, ulcer, sore" 17750 "Pelvic symptoms" 17751 "Pelvic pain" 17752 "Pelvic pressure or dropping sensation" 17753 "Pelvic infection, inflammation" 17900 "Problems of pregnancy" 17901 "Pain during pregnancy" 17902 "Spotting, bleeding during pregnancy" 17903 "Symptoms of onset of labor" 17910 "Postpartum problems" 17950 "Other symptoms referable to the femal..." 18000 "Pain or soreness of breast" 18050 "Lump or mass of breast" 18100 "Other symptoms referable to breast" 18101 "Bleeding or discharge from nipple of ..." 18102 "Postpartum problems of breast" 18103 "Problems with shape or size of breast" 18150 "Symptoms of infertility" 18200 "Hormone deficiency or problem" 18250 "Symptoms of sexual dysfunction" 18300 "Acne or pimples" 18350 "Discoloration or abnormal pigmentation" 18400 "Infections of skin, NOS" 18401 "Infection of skin of head or neck area" 18402 "Infection of skin of arm, hand, or fi..." 18403 "Infection of skin of leg, foot, or toe" 18450 "Symptoms of skin moles" 18451 "Change in size or color of skin moles" 18452 "Bleeding mole" 18500 "Warts, NOS" 18550 "Other growths of skin" 18600 "Skin rash" 18601 "Diaper rash" 18650 "Skin lesion" 18700 "Skin irritations, NEC" 18701 "Skin pain" 18702 "Skin itching" 18750 "Swelling of skin" 18800 "Other symptoms referable to skin" 18801 "Oiliness of skin" 18802 "Dryness, peeling, scaliness, roughnes..." 18803 "Wrinkles of skin" 18850 "Symptoms referable to nails" 18851 "Infected nails" 18852 "Ingrown nails" 18853 "Brittle, breaking, splitting, cracked..." 18900 "Symptoms referable to hair and scalp" 18901 "Too little hair" 18902 "Unwanted hair" 18903 "Dryness, flaky scalp" 18904 "Itching of scalp" 18950 "Navel problems" 19000 "Neck symptoms" 19001 "Neck pain, ache, soreness, discomfort" 19002 "Neck cramps, contractures, spasms" 19003 "Limitation of movement, stiffness of ..." 19004 "Weakness of neck" 19005 "Swelling of neck" 19006 "Lump, mass, tumor of neck" 19050 "Back symptoms" 19051 "Back pain, ache, soreness, discomfort" 19052 "Back cramps, contractures, spasms" 19053 "Limitation of movement, stiffness of ..." 19054 "Weakness of back" 19055 "Swelling of back" 19056 "Lump, mass, tumor of back" 19100 "Low back symptoms" 19101 "Low back pain, ache, soreness, discom..." 19102 "Low back cramps, contractures, spasms" 19103 "Limitation of movement, stiffness of ..." 19104 "Weakness of lower back" 19105 "Swelling of lower back" 19106 "Lump, mass, tumor of lower back" 19150 "Hip symptoms" 19151 "Hip pain, ache, soreness, discomfort" 19152 "Hip cramps, contractures, spasms" 19153 "Limitation of movement, stiffness of hip" 19154 "Weakness of hip" 19155 "Swelling of hip" 19156 "Lump, mass, tumor of hip" 19200 "Leg symptoms" 19201 "Leg pain, ache, soreness, discomfort" 19202 "Leg cramps, contractures, spasms" 19203 "Limitation of movement, stiffness of leg" 19204 "Weakness of leg" 19205 "Swelling of leg" 19206 "Lump, mass, tumor of leg" 19250 "Knee symptoms" 19251 "Knee pain, ache, soreness, discomfort" 19252 "Knee cramps, contractures, spasms" 19253 "Limitation of movement, stiffness of ..." 19254 "Weakness of knee" 19255 "Swelling of knee" 19256 "Lump, mass, tumor of knee" 19300 "Ankle symptoms" 19301 "Ankle pain, ache, soreness, discomfort" 19302 "Ankle cramps, contractures, spasms" 19303 "Limitation of movement, stiffness of ..." 19304 "Weakness of ankle" 19305 "Swelling of ankle" 19306 "Lump, mass, tumor of ankle" 19350 "Foot and toe symptoms" 19351 "Foot and toe pain, ache, soreness, di..." 19352 "Foot and toe cramps, contractures, sp..." 19353 "Limitation of movement, stiffness of ..." 19354 "Weakness of foot and toe" 19355 "Swelling of foot and toe" 19356 "Lump, mass, tumor of foot and toe" 19400 "Shoulder symptoms" 19401 "Shoulder pain, ache, soreness, discom..." 19402 "Shoulder cramps, contractures, spasms" 19403 "Limitation of movement, stiffness of ..." 19404 "Weakness of shoulder" 19405 "Swelling of shoulder" 19406 "Lump, mass, tumor of shoulder" 19450 "Arm symptoms" 19451 "Arm pain, ache, soreness, discomfort" 19452 "Arm cramps, contractures, spasms" 19453 "Limitation of movement, stiffness of arm" 19454 "Weakness of arm" 19455 "Swelling of arm" 19456 "Lump, mass, tumor of arm" 19500 "Elbow symptoms" 19501 "Elbow pain, ache, soreness, discomfort" 19502 "Elbow cramps, contractures, spasms" 19503 "Limitation of movement, stiffness of ..." 19504 "Weakness of elbow" 19505 "Swelling of elbow" 19506 "Lump, mass, tumor of elbow" 19550 "Wrist symptoms" 19551 "Wrist pain, ache, soreness, discomfort" 19552 "Wrist cramps, contractures, spasms" 19553 "Limitation of movement, stiffness of ..." 19554 "Weakness of wrist" 19555 "Swelling of wrist" 19556 "Lump, mass, tumor of wrist" 19600 "Hand and finger symptoms" 19601 "Hand and finger pain, ache, soreness,..." 19602 "Hand and finger cramps, contractures,..." 19603 "Limitation of movement, stiffness of ..." 19604 "Weakness of hand and finger" 19605 "Swelling of hand and finger" 19606 "Lump, mass, tumor of hand and finger" 19650 "Symptoms of unspecified muscles" 19651 "Unspecified muscle pain, ache, sorene..." 19652 "Unspecified muscle cramps, contractur..." 19653 "Limitation of movement, stiffness of ..." 19654 "Weakness of unspecified muscles" 19655 "Swelling of unspecified muscles" 19656 "Lump, mass, tumor of unspecified muscles" 19700 "Symptoms of unspecified joints" 19701 "Unspecified joint pain, ache, sorenes..." 19702 "Unspecified joint cramps, contracture..." 19703 "Limitation of movement, stiffness of ..." 19704 "Weakness of unspecified joints" 19705 "Swelling of unspecified joints" 19706 "Lump, mass, tumor of unspecified joints" 19750 "Musculoskeletal deformities" 19751 "Bowlegged, knock-kneed" 19752 "Posture problems" 19753 "Pigeon-toed, feet turn in" 19800 "Other musculoskeletal symptoms" 20050 "Intestinal infectious diseases" 20100 "Streptococcal infection" 20150 "Viral diseases" 20151 "HIV with or without associated conditions" 20200 "Venereal diseases" 20250 "Fungus infections (mycoses)" 20300 "Parasitic diseases" 20310 "Sepsis, septicemia" 20350 "Other and unspecified infectious and ..." 21000 "Cancer, gastrointestinal tract" 21050 "Cancer, respiratory tract" 21100 "Cancer, skin and subcutaneous tissues" 21150 "Cancer, breast" 21200 "Cancer, female genital tract" 21250 "Cancer, male genital tract" 21260 "Cancer of urinary tract" 21300 "Other malignant neoplasms" 21350 "Hodgkin's disease, lymphomata, leukemias" 21400 "Fibroids and other uterine neoplasms" 21450 "Other benign neoplasms" 21500 "Neoplasm of uncertain nature" 22000 "Diseases of the thyroid gland" 22050 "Diabetes mellitus" 22100 "Gout, hyperuricemia" 22150 "Other endocrine, nutritional, and met..." 22500 "Anemia" 22550 "Other diseases of blood and blood-for..." 23000 "Organic psychoses" 23050 "Functional psychoses" 23100 "Neuroses" 23150 "Personality and character disorders" 23200 "Alcoholism" 23210 "Drug dependence" 23250 "Mental retardation" 23300 "Other and unspecified mental disorders" 23301 "Attention deficit hyperactivity disorder" 23500 "Multiple sclerosis" 23550 "Parkinson's disease (paralysis agitans)" 23600 "Epilepsy" 23650 "Migraine headache" 23700 "Other and unspecified diseases of the..." 24000 "Inflammatory diseases of the eye" 24050 "Refractive error" 24100 "Cataract" 24150 "Glaucoma" 24200 "Other diseases of the eye" 24500 "Otitis media" 24550 "Other diseases of the ear" 25000 "Rheumatic fever and chronic rheumatic..." 25050 "Hypertension with involvement of targ..." 25100 "Hypertension" 25150 "Ischemic heart disease" 25200 "Other heart disease" 25250 "Cerebrovascular disease" 25300 "Atherosclerosis" 25350 "Phlebitis, thrombophlebitis" 25400 "Varicose veins" 25450 "Hemorrhoids" 25500 "Other disease of circulatory system" 26000 "Upper respiratory infections except t..." 26050 "Tonsillitis" 26100 "Bronchitis" 26200 "Emphysema" 26250 "Asthma" 26300 "Pneumonia" 26350 "Hay fever" 26400 "Other respiratory diseases" 26500 "Diseases of the esophagus, stomach, a..." 26550 "Appendicitis, all types" 26600 "Hernia of abdominal cavity" 26650 "Diseases of the intestine and peritoneum" 26700 "Diseases of the liver, gallbladder, a..." 26751 "Dental abscess" 26752 "Dental cavities" 26750 "Other diseases of digestive system" 26753 "Canker sore" 26755 "Temperomandibular joint (TMJ) pain" 27000 "Cystitis" 27050 "Urinary tract disease except cystitis" 27100 "Diseases of the male genital organs" 27150 "Fibrocystic and other diseases of breast" 27200 "Pelvic inflammatory disease (PID)" 27250 "Cervicitis, vaginitis" 27300 "Other diseases of female reproductive..." 27350 "Diagnosed complications of pregnancy ..." 28000 "Carbuncle, furuncle, boil, cellulitis..." 28050 "Impetigo" 28100 "Seborrheic dermatitis" 28150 "Eczema and dermatitis, NOS" 28200 "Psoriasis" 28250 "Other diseases of the skin" 29000 "Arthritis" 29050 "Nonarticular rheumatism" 29100 "Other musculoskeletal or connective t..." 29500 "Congenital anomalies of heart and cir..." 29550 "Undescended testicles" 29600 "Other and unspecified congenital anom..." 29800 "Prematurity" 29900 "All other perinatal conditions" 31000 "General medical examination" 31050 "Well baby examination" 31300 "General psychiatric or psychological ..." 32000 "Pregnancy, unconfirmed" 32050 "Prenatal examination, routine" 32150 "Postpartum examination, routine" 32200 "Breast examination" 32250 "Gynecological examination" 32300 "Eye examination" 32350 "Heart examination" 32400 "Other special examination" 33000 "Sensitization test" 33050 "Skin immunity test" 33100 "Glucose level determination" 33140 "Human immunodeficiency virus (HIV) test" 33150 "Other blood test" 33151 "Blood test for venereal disease" 33200 "Blood pressure test" 33250 "Urine test" 33300 "Diagnostic endoscopies" 33350 "Biopsies" 33400 "Mammography, xerography, breast therm..." 33450 "Diagnostic radiology" 33500 "EKG, ECG, electrocardiogram, treadmil..." 33550 "EEG, electroencephalogram" 33600 "Hearing test" 33650 "Pap smear" 33700 "Other and unspecified diagnostic tests" 33701 "Glaucoma test" 33702 "Throat culture" 33703 "Heart catheterization" 33704 "Other cultures" 34000 "Prophylactic inoculations" 34050 "Exposure to venereal disease" 34080 "Possible HIV" 34090 "Exposure to human immunodeficiency vi..." 34100 "Exposure to other infectious diseases" 34150 "Exposure to bodily fluids of another ..." 35000 "Family planning, NOS" 35050 "Contraceptive medication" 35100 "Contraceptive device" 35150 "Counseling and examinations for pregn..." 35200 "Abortion to be performed (at this visit)" 35250 "Sterilization to be performed (at thi..." 35300 "Artificial insemination" 41000 "Allergy medication" 41100 "Injections" 41110 "Noncompliance with medication therapy" 41150 "Medication, other and unspecified kinds" 42000 "Preoperative visit for specified/unsp..." 42050 "Postoperative visit" 44000 "Physical medicine and rehabilitation" 44010 "Cardiopulmonary resuscitation" 44050 "Respiratory therapy" 44100 "Psychotherapy" 44101 "Group counseling" 44150 "Radiation therapy" 44200 "Acupuncture" 44250 "Chemotherapy" 45000 "Tube insertion" 45050 "Cauterization, all sites" 45070 "IV therapy, infusion" 45100 "Urinary tract instrumentation and cat..." 45150 "Fitting glasses and contact lenses" 45180 "Detoxification" 45181 "Alcohol detoxification" 45182 "Drug detoxification" 45200 "Minor surgery" 45201 "Wart removed" 45210 "Major surgery" 45290 "Internal prosthetic device" 45250 "Kidney dialysis" 45300 "External prosthetic devices, artifici..." 45350 "Corrective appliances" 45400 "Cast, splint - application, removal" 45450 "Dressing, bandage - application, change" 45500 "Irrigation, lavage" 45550 "Suture - insertion, removal" 45560 "Cosmetic injection, NOS" 45600 "Other specific therapeutic procedures..." 45650 "Transplant, NOS'" 45651 "Transplant, failure" 46000 "Diet and nutritional counseling" 46040 "Human immunodeficiency virus (HIV) co..." 46050 "Medical counseling, NOS" 46051 "Family history of cardiovascular disease" 46052 "Family history of cancer" 46053 "Family history of diabetes" 46054 "Family history of other disease or co..." 47000 "Economic problem" 47020 "Problem with access to medical care" 47050 "Marital problems" 47100 "Parent-child problems" 47150 "Other problems of family relationship" 47200 "Educational problems" 47250 "Occupational problems" 47300 "Social adjustment problems" 47350 "Legal problems" 47351 "Police involvement in outpatient visi..." 47400 "Other social problems" 48000 "Progress visit, NOS" 50050 "Fracture/dislocation of head and face" 50100 "Fracture/dislocation of spinal column" 50150 "Fracture/dislocation of trunk area, e..." 50200 "Fracture/dislocation of leg" 50250 "Fracture/dislocation of ankle" 50300 "Fracture/dislocation of foot and toes" 50350 "Fracture/dislocation of arm" 50400 "Fracture/dislocation of wrist" 50450 "Fracture/dislocation of hand and fingers" 50500 "Fracture, other and unspecified" 51050 "Sprain and strain of cervical spine, ..." 51100 "Sprain and strain of back" 51150 "Sprain and strain of knee" 51200 "Sprain and strain of ankle" 51250 "Sprain and strain of wrist" 51300 "Sprain or strain, other and unspecified" 52050 "Laceration/cut of head and neck area" 52100 "Laceration/cut of facial area" 52150 "Laceration/cut of trunk area" 52200 "Laceration/cut of lower extremity" 52250 "Laceration/cut of upper extremity" 52300 "Laceration/cut, site unspecified" 53050 "Puncture wound of head, neck and faci..." 53100 "Puncture wound of trunk area" 53150 "Puncture wound of lower extremity" 53200 "Puncture wound of upper extremity" 53250 "Puncture wound, site unspecified" 54050 "Contusions/abrasions/bruises of head,..." 54100 "Contusions/abrasions/bruises of eye" 54150 "Contusions/abrasions/bruises of trunk..." 54200 "Contusions/abrasions/bruises of lower..." 54250 "Contusions/abrasions/bruises of upper..." 54300 "Contusion/abrasion/bruise, site unspe..." 55050 "Injury, other and unspecified of head..." 55100 "Injury, other and unspecified, of eye" 55150 "Injury, other and unspecified, of back" 55200 "Injury, other and unspecified, of che..." 55250 "Injury, other and unspecified, of hip" 55300 "Injury, other and unspecified, of leg" 55350 "Injury, other and unspecified, of knee" 55400 "Injury, other and unspecified, of ankle" 55450 "Injury, other and unspecified, of foo..." 55500 "Injury, other and unspecified, of sho..." 55550 "Injury, other and unspecified, of arm" 55600 "Injury, other and unspecified, of elbow" 55650 "Injury, other and unspecified, of wrist" 55700 "Injury, other and unspecified, of han..." 55750 "Injury, multiple or unspecified" 56000 "Foreign body in eye" 56050 "Foreign body in nose" 56100 "Foreign body in skin" 56150 "Foreign body in digestive tract" 56160 "Foreign body in respiratory tract" 56200 "Foreign body in other and unspecified..." 57050 "Burn, all degrees, to head, neck, and..." 57100 "Burn, all degrees, to trunk area" 57150 "Burn, all degrees, to extremities" 57200 "Burn, all degrees, to site unspecified" 57500 "Sunburn, windburn" 57550 "Insect bite" 57600 "Animal, human bite" 58000 "Late effects of an old injury" 58050 "Motor vehicle accident, type of injur..." 58100 "Accident, NOS" 58150 "Violence, NOS" 58151 "Child abuse or neglect" 58152 "Battered spouse" 58153 "Elder abuse" 58154 "Gunshot wound" 58180 "Intentional self-mutilation" 58200 "Suicide attempt" 58201 "Overdose, intentional" 58300 "Rape" 58301 "Sexual abuse" 58350 "Dead on arrival (DOA)" 58360 "Respiratory arrest" 58370 "Cardiac arrest" 58380 "Drowning" 58390 "Cardiopulmonary arrest" 58400 "Unconscious on arrival" 58410 "State of consciousness not specified" 58420 "Altered level of consciousness" 59000 "Accidental poisoning" 59001 "Food poisoning" 59002 "Ingestion, inhalation, or exposure to..." 59050 "Adverse effect of medication" 59100 "Adverse effect of drug abuse" 59150 "Adverse effect of alcohol" 59200 "Adverse effects of environment" 59220 "Adverse effects of terrorism and biot..." 59250 "Adverse effects, other and unspecified" 59300 "Surgical Complications due to any imp..." 59301 "Post-operative Medical Complications" 61000 "For results of blood glucose tests" 61050 "For results of cholesterol and trigly..." 61060 "For results of test for human immunod..." 61100 "For other findings of blood tests" 62000 "For results of urine tests" 63000 "For cytology findings" 64000 "For radiological findings" 65000 "For results of EKG" 66000 "For results of skin tests" 67000 "For other and unspecified test results" 71000 "Physical examination required for sch..." 71001 "Physical examination required for emp..." 71002 "Executive physical examination" 71003 "Physical examination required for school" 71004 "Physical examination for extracurricu..." 71200 "Driver's license examination" 71250 "Insurance examination" 71300 "Disability examination" 71310 "Worker's Compensation examination" 71350 "Premarital examination" 71351 "Premarital blood test" 71370 "Direct admission to hospital" 71400 "Other reason for visit required by party" 89900 "Problems, complaints, NEC" 89910 "Patient unable to speak English" 89930 "Patient (or spokesperson) refused care" 89970 "Entry of 'none' or 'no complaint'" 89980 "Inadequate data base" 89990 "Illegible entry" 90000 "Blank"; /* The following format is provided in case you wish to use only the first four columns of the Reason for Visit fields for broader groupings of this item. */ label define rfv3 1005 "Chills" 1010 "Fever" 1012 "Other symptoms of body temperature" 1015 "Tiredness, exhaustion" 1020 "General weakness" 1025 "General ill feeling" 1030 "Fainting (syncope)" 1035 "Symptoms of fluid abnormalities" 1040 "Weight gain" 1045 "Weight loss" 1046 "Symptoms of face, not elsewhere class..." 1050 "Chest pain and related symptoms (not ..." 1055 "Pain, site not referable to a specifi..." 1060 "Pain and related symptoms, general, s..." 1065 "Tumor or mass, site unspecified" 1070 "Bleeding, site unspecified" 1075 "Symptoms of growth and developmental ..." 1080 "General symptoms of infants, NEC" 1085 "General or unspecified nonviral infec..." 1090 "Allergy, NOS" 1095 "Disorders of motor functions" 1100 "Anxiety and nervousness" 1105 "Fears and phobias" 1110 "Depression" 1115 "Anger" 1120 "Problems with identity and self-esteem" 1125 "Restlessness" 1130 "Behavioral disturbances" 1135 "Disturbances of sleep" 1140 "Smoking problems" 1145 "Alcohol-related problems" 1150 "Abnormal drug usage" 1155 "Delusions or hallucinations" 1160 "Psychosexual disorders" 1165 "Oth sympt/prob relat psychological an..." 1200 "Abnormal involuntary movements" 1205 "Convulsions" 1207 "Symptoms of head, NEC" 1210 "Headache, pain in head" 1215 "Memory, disturbances of" 1220 "Disturbances of sensation" 1225 "Vertigo - dizziness" 1230 "Weakness (neurologic)" 1235 "Disorders of speech, speech disturbance" 1240 "Other symptoms referable to the nervo..." 1260 "Abnormal pulsations and palpitations" 1265 "Heart pain" 1270 "Other symptoms of the heart" 1275 "Symptoms of lymph glands (or nodes)" 1280 "Oth sympt referable to the cardiovasc..." 1305 "Vision dysfunctions" 1310 "Discharge from eye" 1315 "Eye infection and inflammation" 1320 "Abnormal sensations of the eye" 1325 "Abnormal eye movements" 1330 "Abnormal appearance of eyes" 1335 "Other symptoms referable to eye, NEC" 1340 "Symptoms of eyelids" 1345 "Hearing dysfunctions" 1350 "Discharge from ear" 1355 "Earache, or ear infection" 1360 "Plugged feeling in ear" 1365 "Other symptoms referable to the ears,..." 1400 "Nasal congestion" 1405 "Other symptoms of nose" 1410 "Sinus problems" 1415 "Shortness of breath" 1420 "Labored or difficult breathing" 1425 "Wheezing" 1430 "Breathing problems, NEC" 1435 "Sneezing" 1440 "Cough" 1445 "Head cold, upper respiratory infectio..." 1450 "General viral infection" 1455 "Symptoms referable to throat" 1460 "Symptoms referable to tonsils" 1470 "Abnormalities of sputum or phlegm" 1475 "Congestion in chest" 1480 "Disorders of voice" 1485 "Other symptoms referable to the respi..." 1500 "Symptoms of teeth and gums" 1501 "Symptoms of the jaw, NOS" 1505 "Symptoms referable to lips" 1510 "Symptoms referable to mouth" 1515 "Symptoms referable to tongue" 1520 "Difficulty in swallowing (dysphagia)" 1525 "Nausea" 1530 "Vomiting" 1535 "Heartburn and indigestion (dyspepsia)" 1540 "Gastrointestinal infection" 1545 "Stomach and abdominal pain, cramps an..." 1565 "Change in abdominal size" 1570 "Appetite, abnormal" 1575 "Difficulty eating" 1580 "Gastrointestinal bleeding" 1585 "Flatulence" 1590 "Constipation" 1595 "Diarrhea" 1600 "Other symptoms or changes in bowel fu..." 1605 "Symptoms referable to anus-rectum" 1610 "Symptoms of liver, gallbladder, and b..." 1615 "Other symptoms referable to digestive..." 1640 "Abnormalities of urine" 1645 "Frequency and urgency of urination" 1650 "Painful urination" 1655 "Incontinence of urine (enuresis)" 1660 "Other urinary dysfunctions" 1665 "Symptoms of bladder" 1670 "Symptoms of the kidneys" 1675 "Urinary tract infection, NOS" 1680 "Other symptoms referable to urinary t..." 1700 "Symptoms of penis" 1705 "Penile discharge" 1710 "Symptoms of prostate" 1715 "Symptoms of the scrotum and testes" 1720 "Other symptoms of male reproductive s..." 1730 "Absence of menstruation (amenorrhea)" 1735 "Irregularity of menstrual interval" 1740 "Irregularity of menstrual flow" 1745 "Menstrual symptoms, other and unspeci..." 1750 "Menopausal symptoms" 1755 "Uterine and vaginal bleeding" 1760 "Vaginal discharge" 1765 "Other vaginal symptoms" 1770 "Vulvar disorders" 1775 "Pelvic symptoms" 1790 "Problems of pregnancy" 1791 "Postpartum problems" 1795 "Other symptoms referable to the femal..." 1800 "Pain or soreness of breast" 1805 "Lump or mass of breast" 1810 "Other symptoms referable to breast" 1815 "Symptoms of infertility" 1820 "Hormone deficiency or problem" 1825 "Symptoms of sexual dysfunction" 1830 "Acne or pimples" 1835 "Discoloration or pigmentation" 1840 "Infections of skin, NOS" 1845 "Symptoms of skin moles" 1850 "Warts, NOS" 1855 "Other growths of skin" 1860 "Skin rash" 1865 "Skin lesion" 1870 "Skin irritations, NEC" 1875 "Swelling of skin" 1880 "Other symptoms referable to skin" 1885 "Symptoms referable to nails" 1890 "Symptoms referable to hair and scalp" 1895 "Other symptoms of nails and hair" 1900 "Neck symptoms" 1905 "Back symptoms" 1910 "Low back symptoms" 1915 "Hip symptoms" 1920 "Leg symptoms" 1925 "Knee symptoms" 1930 "Ankle symptoms" 1935 "Foot and toe symptoms" 1940 "Shoulder symptoms" 1945 "Arm symptoms" 1950 "Elbow symptoms" 1955 "Wrist symptoms" 1960 "Hand and finger symptoms" 1965 "Symptoms of unspecified muscles" 1970 "Symptoms of unspecified joints" 1975 "Musculoskeletal deformities" 1980 "Other musculoskeletal symptoms; inclu..." 2005 "Intestinal infectious diseases" 2010 "Streptococcal infection" 2015 "Viral diseases" 2020 "Venereal diseases" 2025 "Fungus infections (mycoses)" 2030 "Parasitic diseases" 2031 "Sepsis, septicemia" 2035 "Other and unspecified infectious and ..." 2100 "Cancer, gastrointestinal tract" 2105 "Cancer, respiratory tract" 2110 "Cancer, skin and subcutaneous tissues" 2115 "Cancer, breast" 2120 "Cancer, female genital tract" 2125 "Cancer, male genital tract" 2126 "Cancer of urinary tract" 2130 "Other malignant and unspecified neopl..." 2135 "Hodgkin's disease, lymphomata, leukemias" 2140 "Fibroids and other uterine neoplasms" 2145 "Other benign neoplasms" 2150 "Neoplasm of uncertain nature" 2200 "Diseases of the thyroid gland" 2205 "Diabetes mellitus" 2210 "Gout, hyperuricemia" 2215 "Other endocrine, nutritional, and met..." 2250 "Anemia" 2255 "Other diseases of blood and blood-for..." 2300 "Organic psychoses" 2305 "Functional psychoses" 2310 "Neuroses" 2315 "Personality and character disorders" 2320 "Alcoholism" 2321 "Drug dependence" 2325 "Mental retardation" 2330 "Other mental disease" 2350 "Multiple sclerosis" 2355 "Parkinson's disease (paralysis agitans)" 2360 "Epilepsy" 2365 "Migraine headache" 2370 "Other diseases of central nervous system" 2400 "Inflammatory diseases of the eye" 2405 "Refractive error" 2410 "Cataract" 2415 "Glaucoma" 2420 "Other diseases of the eye" 2450 "Otitis media" 2455 "Other diseases of the ear" 2500 "Rheumatic fever and chronic rheumatic..." 2505 "Hypertension with involvement of targ..." 2510 "Hypertension" 2515 "Ischemic heart disease" 2520 "Other heart disease" 2525 "Cerebrovascular disease" 2530 "Atherosclerosis" 2535 "Phlebitis, thrombophlebitis" 2540 "Varicose veins" 2545 "Hemorrhoids" 2550 "Other disease of circulatory system" 2600 "Upper respiratory infections except t..." 2605 "Tonsillitis" 2610 "Bronchitis" 2620 "Emphysema" 2625 "Asthma" 2630 "Pneumonia" 2635 "Hay fever" 2640 "Other respiratory diseases" 2650 "Diseases of the esophagus, stomach, a..." 2655 "Appendicitis, all types" 2660 "Hernia of abdominal cavity" 2665 "Diseases of the intestine and peritoneum" 2670 "Diseases of the liver, gallbladder, p..." 2675 "Other diseases of digestive system" 2700 "Cystitis" 2705 "Urinary tract disease except cystitis" 2710 "Diseases of the male genital organs" 2715 "Fibrocystic and other diseases of breast" 2720 "Pelvic inflammatory disease (PID)" 2725 "Cervicitis, vaginitis" 2730 "Other diseases of female reproductive..." 2735 "Diagnosed complications of pregnancy ..." 2800 "Carbuncle, furuncle, boil, cellulitis..." 2805 "Impetigo" 2810 "Seborrheic dermatitis" 2815 "Eczema and dermatitis, NOS" 2820 "Psoriasis" 2825 "Other diseases of the skin" 2900 "Arthritis" 2905 "Nonarticular rheumatism" 2910 "Other musculoskeletal or connective t..." 2950 "Congenital anomalies of heart and cir..." 2955 "Undescended testicles" 2960 "Other congenital anomalies" 2980 "Prematurity" 2990 "All perinatal conditions" 3100 "General medical examination" 3105 "Well baby examination" 3130 "General psychiatric or psychological ..." 3200 "Pregnancy, unconfirmed" 3205 "Prenatal examination, routine" 3215 "Postpartum examination, routine" 3220 "Breast examination" 3225 "Gynecological examination" 3230 "Eye examination" 3235 "Heart examination" 3240 "Other special examination" 3300 "Sensitization test" 3305 "Skin immunity test" 3310 "Glucose level determination" 3314 "Human immunodeficiency virus (HIV) test" 3315 "Other blood test" 3320 "Blood pressure test" 3325 "Urine test" 3330 "Diagnostic endoscopies" 3335 "Biopsies" 3340 "Mammography, xerography, breast therm..." 3345 "Diagnostic radiology" 3350 "EKG, ECG, electrocardiogram, treadmil..." 3355 "EEG, electroencephalogram" 3360 "Hearing test" 3365 "Pap smear" 3370 "Other and unspecified diagnostic tests" 3400 "Prophylactic inoculations" 3405 "Exposure to venereal disease" 3408 "Possible HIV" 3409 "Exposure to human immunodeficiency vi..." 3410 "Exposure to other infectious diseases" 3415 "Exposure to bodily fluids of another person" 3500 "Family planning, NOS" 3505 "Contraceptive medication" 3510 "Contraceptive device" 3515 "Counseling and examinations for pregn..." 3520 "Abortion to be performed (at this visit)" 3525 "Sterilization to be performed (at thi..." 3530 "Artificial insemination" 4100 "Allergy medication" 4110 "Injections" 4111 "Noncompliance with medication therapy" 4115 "Medication, other and unspecified kinds" 4200 "Preoperative visit for spec/unspec ty..." 4205 "Postoperative visit" 4400 "Physical medicine and rehabilitation" 4401 "Cardiopulmonary resuscitation" 4405 "Respiratory therapy" 4410 "Psychotherapy" 4415 "Radiation therapy" 4420 "Acupuncture" 4425 "Chemotherapy" 4500 "Tube insertion" 4505 "Cauterization, all sites" 4507 "IV therapy, infusion" 4510 "Urinary tract instrumentation and cat..." 4515 "Fitting glasses and contact lenses" 4518 "Detoxification" 4520 "Minor surgery" 4521 "Major surgery" 4525 "Kidney dialysis" 4529 "Internal prosthetic device" 4530 "Extern prosthet dev, art body parts (..." 4535 "Corrective appliances" 4540 "Cast, splint - application, removal" 4545 "Dressing, bandage - application, change" 4550 "Irrigation, lavage" 4555 "Suture - insertion, removal" 4565 "Transplants" 4560 "Other specific therapeutic procedures..." 4600 "Diet and nutritional counseling" 4604 "Human immunodeficiency virus (HIV) co..." 4605 "Counseling, NOS" 4700 "Economic problem" 4702 "Problem with access to medical care" 4705 "Marital problems" 4710 "Parent-child problems" 4715 "Other problems of family relationship" 4720 "Educational problems" 4725 "Occupational problems" 4730 "Social adjustment problems" 4735 "Legal problems" 4740 "Other social problems" 4800 "Progress visit, NOS" 5005 "Head and face fractures and dislocations" 5010 "Spinal column fractures and dislocations" 5015 "Trunk area, except spinal column, fra..." 5020 "Leg fractures and dislocations" 5025 "Ankle fractures and dislocations" 5030 "Foot and toe(s) fractures and disloca..." 5035 "Arm fractures and dislocations" 5040 "Wrist fractures and dislocations" 5045 "Hand and finger(s) fractures and disl..." 5050 "Fractures and dislocations, other and..." 5105 "Cervical spine, neck strains and sprains" 5110 "Back strains and sprains" 5115 "Knee strains and sprains" 5120 "Ankle strains and sprains" 5125 "Wrist strains and sprains" 5130 "Sprain or strain, other and unspecified" 5205 "Head and neck area lacerations and cuts" 5210 "Facial area lacerations and cuts" 5215 "Trunk area lacerations and cuts" 5220 "Lower extremity lacerations and cuts" 5225 "Upper extremity lacerations and cuts" 5230 "Laceration and cuts, site unspecified" 5305 "Head, neck and facial area puncture w..." 5310 "Trunk area puncture wounds" 5315 "Lower extremity puncture wounds" 5320 "Upper extremity puncture wounds" 5325 "Puncture wound, site unspecified" 5405 "Head, neck, and face contusion, abras..." 5410 "Eye contusion, abrasion, bruise" 5415 "Trunk area contusion, abrasion, bruise" 5420 "Lower extremity contusion, abrasion, ..." 5425 "Upper extremity contusion, abrasion, ..." 5430 "Contusion, abrasion, bruise, site uns..." 5505 "Head, neck, and face injury, type uns..." 5510 "Eye injury, type unpsecified" 5515 "Back injury, type unspecified" 5520 "Chest and abdomen injury, type unspec..." 5525 "Hip injury, type unspecified" 5530 "Leg injury, type unspecified" 5535 "Knee injury, type unspecified" 5540 "Ankle injury, type unspecified" 5545 "Foot and toe(s) injury, type unspecified" 5550 "Shoulder injury, type unspecified" 5555 "Arm injury, type unspecified" 5560 "Elbow injury, type unspecified" 5565 "Wrist injury, type unspecified" 5570 "Hand and finger(s) injury, type unspe..." 5575 "Injury, multiple or unspecified" 5600 "Eye, foreign body" 5605 "Nose, foreign body" 5610 "Skin, foreign body" 5615 "Digestive tract, foreign body" 5616 "Respiratory tract, foreign body" 5620 "Other and unspecified sites, foreign ..." 5705 "Head, neck, and face burns, all degrees" 5710 "Trunk area burns" 5715 "Extremities burns" 5720 "Burn, site unspecified" 5750 "Sunburn, windburn" 5755 "Insect bites" 5760 "Animal, human bite" 5800 "Late effects of an old injury" 5805 "Motor vehicle accident, type of injur..." 5810 "Accident, NOS" 5815 "Violence, NOS" 5818 "Intentional self-mutilation" 5820 "Suicide attempt" 5830 "Rape" 5835 "Dead on arrival (DOA)" 5836 "Respiratory arrest" 5837 "Cardiac arrest" 5838 "Drowning" 5839 "Cardiopulmonary arrest" 5840 "Unconscious on arrival" 5841 "State of consciousness not specified" 5842 "Altered level of consciousness" 5900 "Accidental poisoning" 5905 "Adverse effect of medication" 5910 "Adverse effect of drug abuse" 5915 "Adverse effect of alcohol" 5920 "Adverse effects of environment" 5922 "Adverse effects of terrorism and bio.." 5925 "Adverse effects, other and unspecified" 5930 "Surgical Complications due to any imp..." 6100 "For results of blood glucose tests" 6105 "For results of cholesterol and trigly..." 6106 "For results of test for human immunod..." 6110 "For other findings of blood tests" 6200 "For results of urine tests" 6300 "For cytology findings" 6400 "For radiological findings" 6500 "For results of EKG" 6600 "For results of skin tests" 6700 "For other and unspecified test results" 7100 "Physical examination required for sch..." 7120 "Driver's license examination" 7125 "Insurance examination" 7130 "Disability examination" 7131 "Worker's Compensation examination" 7135 "Premarital examination" 7137 "Direct admission to hospital" 7140 "Oth reas for visit requir by party ot..." 8990 "Problems, complaints, NEC" 8991 "Patient unable to speak English" 8993 "Patient (or spokesperson) refused care" 8997 "Entry of 'none' or 'no complaint'" 8998 "Inadequate data base" 8999 "Illegible entry" 9000 "Blank"; label define alcohol 0 "Blank" 1 "Yes, patient's use" 2 "Yes, other person's use" 3 "No" 4 "Unknown" 5 "Both patient's and other person's use"; label define vworkrel 0 "Blank" 1 "Yes" 2 "No" 3 "Unknown"; label define seen72 0 "Blank" 1 "Yes" 2 "No" 3 "Unknown"; label define episode 0 "Blank" 1 "Initial visit" 2 "Follow-up visit" 3 "Unknown"; label define injury 0 "No" 1 "Yes"; label define intent 0 "Blank" 1 "Yes (self-inflicted)" 2 "Yes (assault)" 3 "No, unintentional" 4 "Unknown" 8 "Not applicable (not an injury visit)"; destring cause1 cause2 cause3, replace ignore("-"); label define cause 700 "Drug use/abuse" 710 "Alcohol use/abuse" 8000 "Railway employee in railway accid inv..." 8001 "Passengr on railway in accident invol..." 8002 "Pedestrian in railway accident involv..." 8003 "Pedal cyclist in railway accidnt invo..." 8008 "Oth spec person in railway accidnt in..." 8009 "Unspec person in railway accidnt inv ..." 8010 "Railway employee in railway accidnt i..." 8011 "Passenger on railway in accident invo..." 8012 "Pedestrian in railway accident involv..." 8013 "Pedal cyclist in railway accident inv..." 8018 "Oth spec person in railway accidnt in..." 8019 "Unspec person in railway accidnt invo..." 8020 "Railway employee in railway acc inv d..." 8021 "Passengr on railway in acc inv derail..." 8022 "Pedestrian in railway acc inv derailm..." 8023 "Pedal cyclist in railway acc inv dera..." 8028 "Oth spec persn in railway acc inv der..." 8029 "Unspec persn in railway acc inv derai..." 8030 "Railway employee in railway accident ..." 8031 "Passenger on railway in accident inv ..." 8032 "Pedestrian in railway accident inv ex..." 8033 "Pedal cyclist in railway accident inv..." 8038 "Other specifd person in railway acc i..." 8039 "Unspecifd person in railway accident ..." 8040 "Railway employee in fall in, on, or f..." 8041 "Passenger on railway in fall in, on, ..." 8042 "Pedestrian in fall in, on, or from ra..." 8043 "Pedal cyclist in fall in, on, or from..." 8048 "Other specified person in fall in, on..." 8049 "Unspecified person in fall in, on, or..." 8050 "Railway employee hit by rolling stock" 8051 "Passenger on railway hit by rolling s..." 8052 "Pedestrian hit by rolling stock" 8053 "Pedal cyclist hit by rolling stock" 8058 "Other specified person hit by rolling..." 8059 "Unspecified person hit by rolling stock" 8060 "Railway employee in other specified r..." 8061 "Passenger on railway in other specifi..." 8062 "Pedestrian in other specified railway..." 8063 "Pedal cyclist in other specified rail..." 8068 "Other specified person in other speci..." 8069 "Unspecified person in other specified..." 8070 "Railway employee in railway accident ..." 8071 "Passenger on railway in accident of u..." 8072 "Pedestrian in railway accident of uns..." 8073 "Pedal cyclist in railway accident of ..." 8078 "Other specified person in railway acc..." 8079 "Unspecified person in railway acciden..." 8100 "Driv of motr veh oth thn motrcycl in ..." 8101 "Passngr in motr veh oth thn motrcy in..." 8102 "Motorcyclist in traffic accident invo..." 8103 "Passenger on motorcycle in traffic ac..." 8104 "Occupant of streetcar in traffic acc ..." 8105 "Ridr of animl/occ of anm-drawn veh in..." 8106 "Pedal cyclist in motor vehicle traffi..." 8107 "Pedestrian in motor vehicle traffic a..." 8108 "Other specif person in motor veh traf..." 8109 "Unspec person in traffic accident inv..." 8110 "Driv of motr veh in traf acc inv re-e..." 8111 "Passngr in motr veh in traf acc inv r..." 8112 "Motorcyc in traf acc involv re-entran..." 8113 "Passngr on motorcyc in traf acc inv r..." 8114 "Occ of streetcar in traf acc inv re-e..." 8115 "Ridr of animl/occ anm-drwn veh in acc..." 8116 "Pedal cyclist in traffic accident inv..." 8117 "Pedestrn in traffic accident involv r..." 8118 "Oth spec person in traf acc inv re-en..." 8119 "Unspec persn in traf acc inv re-entra..." 8120 "Drivr of motr veh in oth motr veh trf..." 8121 "Pssngr in motr veh in oth motr veh tr..." 8122 "Motorcyclist in other motor veh trffc..." 8123 "Pssngr on motrcyc in oth motr veh trf..." 8124 "Occ of streetcar in oth motr veh trff..." 8125 "Ridr of animl,occ of animl-drwn veh i..." 8126 "Pedal cyclist in oth motr veh trffc a..." 8127 "Pedestrian in other motor vehicle trf..." 8128 "Oth spec persn in oth motr veh trffc ..." 8129 "Unspec persn in oth motr veh trffc ac..." 8130 "Driver of motor vehicle in traffic ac..." 8131 "Passenger in motor vehicle in traffic..." 8132 "Motorcyclist in traffic accident invo..." 8133 "Passenger on motorcycle in traffic ac..." 8134 "Occupant of streetcar in traffic acc ..." 8135 "Ridr of animl;occ of animl-drwn veh i..." 8136 "Pedal cyclist in trffc acc involv col..." 8137 "Pedestrian in traffic accident involv..." 8138 "Other specified person in traffic acc..." 8139 "Unspecified person in traffic acc inv..." 8140 "Driver of motr veh in traffic acc inv..." 8141 "Passenger in motr veh in traffic acc ..." 8142 "Motorcyclist in traffic accident invo..." 8143 "Pssngr on motorcycl in trffc acc invo..." 8144 "Occupant of streetcar in traffc acc i..." 8145 "Ridr of animl;occ of animl-drwn veh t..." 8146 "Pedal cyclist in traffic accident inv..." 8147 "Pedestrian in traffic accident involv..." 8148 "Other specified person in traffic acc..." 8149 "Unspecified person in traffic acc inv..." 8150 "Drivr of motr veh in oth motr veh trf..." 8151 "Passngr in motr veh in oth traffc acc..." 8152 "Motorcyclist in oth motr veh traffic ..." 8153 "Pssngr on mtrcycl in oth motr veh trf..." 8154 "Occ of streetcar in oth motr veh trff..." 8155 "Ridr of animl;occ of animl-drwn veh t..." 8156 "Pedal cyclst in oth motr veh trffc ac..." 8157 "Pedestrn in oth motr veh trffc acc in..." 8158 "Oth spec persn in oth motr veh trffc ..." 8159 "Unspec persn in oth motr veh trffc ac..." 8160 "Drv of motr veh in trffc acc-los of c..." 8161 "Pssngr in motr veh in trffc acc-los o..." 8162 "Motrcyclst in trffc acc du to los of ..." 8163 "Pssngr on motorcyc in trffc acc-los o..." 8164 "Occ of streetcar in trffc acc-loss of..." 8165 "Ridr of anim;occ of anim-drwn veh acc..." 8166 "Pedal cyclist in traffic acc-loss of ..." 8167 "Pedestrn in trffc acc-loss of control..." 8168 "Oth spec persn in trffc acc-los of cn..." 8169 "Unspec persn in trffc acc-los of cntr..." 8170 "Drvr of motr veh in noncoll motr veh ..." 8171 "Pssngr in motr veh in noncol motr veh..." 8172 "Motrcyclst in noncollisn motr veh trf..." 8173 "Pssngr on motrcy in noncol motr veh t..." 8174 "Occ of streetcar in noncol motr veh t..." 8175 "Ridr of animl;occ of animl-drwn veh n..." 8176 "Pedal cyclist in noncoll motr veh trf..." 8177 "Pedestrn in noncoll motr veh trffc ac..." 8178 "Oth spec persn in noncoll motr veh tr..." 8179 "Unspec persn in noncollis motr veh tr..." 8180 "Drivr of motor vehicle in other nonco..." 8181 "Pssngr in motor vehicle in oth noncol..." 8182 "Motrcyclst in oth noncollisn motor ve..." 8183 "Passenger on motorcycle in oth noncol..." 8184 "Occupant of streetcar in oth noncolli..." 8185 "Ridr of animl;occ of animl-drwn veh i..." 8186 "Pedal cyclist in other noncollision m..." 8187 "Pedestrian in other noncollision moto..." 8188 "Other specified person in oth noncoll..." 8189 "Unspecified person in other noncollis..." 8190 "Driver of motr veh in traffic acciden..." 8191 "Passenger in motor vehicle in traffic..." 8192 "Motorcyclist in traffic accident of u..." 8193 "Passenger on motorcycle in traffic ac..." 8194 "Occupant of streetcar in traffic acci..." 8195 "Ridr of animl;occ of animl-drwn veh i..." 8196 "Pedal cyclist in traffic accident of ..." 8197 "Pedestrian in traffic accident of uns..." 8198 "Other specified person in traffic acc..." 8199 "Unspecified person in traffic acciden..." 8200 "Drivr of motr veh in nontrffc acc inv..." 8201 "Passngr in motr veh in nontrffc acc i..." 8202 "Motorcyclist in nontraffic acc involv..." 8203 "Passenger on motorcycle in nontrffc a..." 8204 "Occupant of streetcar in nontraffic a..." 8205 "Ridr anim;occ anim-drwn veh nontrf ac..." 8206 "Pedal cyclist in nontraffic accident ..." 8207 "Pedestrian in nontraffic accident inv..." 8208 "Other specified person in nontraffic ..." 8209 "Unspecified person in nontraffic acc ..." 8210 "Drvr of motr veh in nontrffc acc inv ..." 8211 "Passngr in motr veh in nontrffc acc i..." 8212 "Motorcyclist in nontraffic acc involv..." 8213 "Passngr on motorcyc in nontrffc acc i..." 8214 "Occ of streetcar in nontrffc acc inv ..." 8215 "Ridr animl;occ animl-drwn veh nontrf ..." 8216 "Pedal cyclist in nontraffic accident ..." 8217 "Pedestrian in nontraffic accident inv..." 8218 "Oth spec persn in nontrffc acc involv..." 8219 "Unspec persn in nontrffc acc involv o..." 8220 "Drivr of motr veh in motr veh nontrf ..." 8221 "Pssngr in motr veh in motr veh nontrf..." 8222 "Motrcyclst oth motr veh nontrf acc in..." 8223 "Pssngr on motrcycl in motr veh nontrf..." 8224 "Occ of streetcar in motr veh nontrffc..." 8225 "Rid of anim;occ anim-drwn veh in nont..." 8226 "Pedal cyclist in other motr veh nontr..." 8227 "Pedestrian in other motor veh nontrf ..." 8228 "Oth spec persn in oth motr veh nontrf..." 8229 "Unspec persn in oth motr veh nontrf a..." 8230 "Drivr of motr veh motr veh nontrffc a..." 8231 "Pssngr in motr veh in motr veh nontrf..." 8232 "Motorcyclist in motr veh nontrffc acc..." 8233 "Pssngr on motrcycl in motr veh nontrf..." 8234 "Occ of streetcar in motr veh nontrffc..." 8235 "Rdr of anim;occ of anim-drwn veh nont..." 8236 "Pedal cyclst in motr veh nontrffc acc..." 8237 "Pedestrian in motor veh nontraffic ac..." 8238 "Oth spec persn in motr veh nontrffc a..." 8239 "Unspecified person in motr veh nontrf..." 8240 "Drivr of motr veh in motr veh nontrff..." 8241 "Pssngr in motr veh in motr veh nontra..." 8242 "Motrcyclst in motr veh nontrffc accid..." 8243 "Pssngr on motrcycl in motr veh nontrf..." 8244 "Occ of streetcar in motr veh nontrffc..." 8245 "Rd anim;occ of anim-drwn veh in motr ..." 8246 "Pedal cyclst in motr veh nontrffc acc..." 8247 "Pedestrn in motr veh nontraffic accid..." 8248 "Oth spec persn in motr veh nontrffc a..." 8249 "Unspec persn in motr veh nontraffc ac..." 8250 "Drvr of motr veh in motr veh nontrffc..." 8251 "Pssngr in motr veh in motr veh nontra..." 8252 "Motorcyclist in oth motr veh nontrffc..." 8253 "Pssngr on motrcyc in motor veh nontrf..." 8254 "Occ of streetcar oth motr veh nontrff..." 8255 "Ridr of animl;occ of animl-drwn veh n..." 8256 "Pedal cyclst in oth motr veh nontrffc..." 8257 "Pedestrian in other motor veh nontrff..." 8258 "Oth spec persn in oth motr veh nontrf..." 8259 "Unspec persn in oth motr veh nontrffc..." 8260 "Pedestrian in pedal cycle accident" 8261 "Pedal cyclist in pedal cycle accident" 8262 "Rider of animal in pedal cycle accident " 8263 "Occupant of animal drawn vehicle in p..." 8264 "Occupant of streetcar in pedal cycle ..." 8268 "Other specified person in pedal cycle..." 8269 "Unspecified person in pedal cycle acc..." 8270 "Pedestrian in animal-drawn vehicle ac..." 8272 "Rider of animal in animal-drawn vehic..." 8273 "Occupant of animal-drawn vehicle in a..." 8274 "Occupant of streetcar in animal-drawn..." 8278 "Other specified person in animal-draw..." 8279 "Unspecified person in animal-drawn ve..." 8280 "Pedestrian in accident involving anim..." 8282 "Rider of animal in accident involving..." 8284 "Occupant of streetcar in accident inv..." 8288 "Other specified person in accident in..." 8289 "Unspecified person in accident involv..." 8290 "Pedestrian in other road vehicle acci..." 8294 "Occupant of streetcar in other road v..." 8298 "Other specified person in other road ..." 8299 "Unspecified person in other road vehi..." 8300 "Occ of small boat, unpowerd in acc to..." 8301 "Occ of small boat, powerd in acc to w..." 8302 "Occ of other watercraft crew in acc t..." 8303 "Occ of oth watrcrft--oth thn crew in ..." 8304 "Water skier in accident to watercraft..." 8305 "Swimmer in accident to watercraft cau..." 8306 "Dockers, stevedores in accident to wa..." 8308 "Oth specified person in accident to w..." 8309 "Unspecified person in accident to wat..." 8310 "Occ of small boat, unpowered in acc t..." 8311 "Occ of small boat, powered in acc to ..." 8312 "Occ of oth watrcrft crew in acc to wa..." 8313 "Occ of oth watrcrft--oth thn crew in ..." 8314 "Water skier in accident to watercraft..." 8315 "Swimmer in accident to watercraft cau..." 8316 "Dockers/stevedores in acc to watercra..." 8318 "Other spec person in accident to wate..." 8319 "Unspecified person in accident to wat..." 8320 "Occ small boat unpowrd in oth acc sub..." 8321 "Occ small boat powrd in oth acc subme..." 8322 "Occ oth watrcrft crew in oth submersn..." 8323 "Occ of oth watrcrft-oth thn crew in a..." 8324 "Water skier in oth acc submer/drownin..." 8325 "Swimmer in other acc submersn/drown i..." 8326 "Docker/stevedore in oth acc submers/d..." 8328 "Oth spec persn in oth acc submersn/dr..." 8329 "Unspec persn in oth acc submersn/drow..." 8330 "Occ small boat unpowrd in fall on sta..." 8331 "Occ small boat, powrd in fall on stai..." 8332 "Occ oth watrcrft crew in fall on stai..." 8333 "Occ oth watrcrft-oth than crew fall s..." 8334 "Water skier in fall on stairs or ladd..." 8335 "Swimmer in fall on stairs or ladders ..." 8336 "Dockers, stevedores in fall on stairs..." 8338 "Other spec person in fall on stairs/l..." 8339 "Unspecified person in fall on stairs/..." 8340 "Occ small boat, unpowered in other fa..." 8341 "Occ small boat, powered in other fall..." 8342 "Occ other watercraft crew in other fa..." 8343 "Occ oth watrcrft-oth thn crew in oth ..." 8344 "Watr skier in oth fall from 1 level t..." 8345 "Swimmer in other fall from 1 level to..." 8346 "Docker/stevedore in oth fall frm 1 le..." 8348 "Oth spec persn in oth fall frm 1 leve..." 8349 "Unspec persn in oth fall frm 1 level ..." 8350 "Occ small boat, unpowrd in oth/unspec..." 8351 "Occ small boat, powered in oth/unspec..." 8352 "Occ other watercraft crew in oth/unsp..." 8353 "Occ oth watrcrft-oth than crew in oth..." 8354 "Water skier in other and unspecified ..." 8355 "Swimmer in other and unspecified fall..." 8356 "Dockers, stevedores in other/unspec f..." 8358 "Other specified person in oth/unspec ..." 8359 "Unspecified person in other/unspecifi..." 8360 "Occupant of small boat, unpowerd in m..." 8361 "Occupant of small boat, powered in ma..." 8362 "Occupant of other watercraft crew in ..." 8363 "Occ of oth watrcrft--oth than crew in..." 8364 "Water skier in machinery accident in ..." 8365 "Swimmer in machinery accident in wate..." 8366 "Dockers, stevedores in machinery acci..." 8368 "Other specified person in machinery a..." 8369 "Unspecified person in machinery accid..." 8370 "Occ small boat, unpowerd in explosion..." 8371 "Occ small boat, powered in explosion/..." 8372 "Occ other watercrft crew in explosion..." 8373 "Occ of oth watrcrft-oth thn crew in e..." 8374 "Water skier in explosion/fire/burning..." 8375 "Swimmer in explosion, fire, or burnin..." 8376 "Dockers/stevedores in explosion, fire..." 8378 "Other specified person in explosion/f..." 8379 "Unspecified person in explosion, fire..." 8380 "Occ small boat, unpowered in oth/unsp..." 8381 "Occ small boat, powered in oth/unspec..." 8382 "Occ oth watercraft crew in oth/unspec..." 8383 "Occ oth watrcrft-oth than crew in oth..." 8384 "Water skier in other and unspecified ..." 8385 "Swimmer in other and unspecified wate..." 8386 "Dockers, stevedores in oth/unspecifie..." 8388 "Other specified person in oth/unspec ..." 8389 "Unspecified person in other/unspec wa..." 8400 "Occ spacecraft accident to powered ai..." 8401 "Occ mil aircrft, any acc to powrd air..." 8402 "Crew of aircrft in surf-to-surf trnsp..." 8403 "Oth occ of aircrft in surf-to-surf tr..." 8404 "Occ aircraft in surf-to-air trnsprt a..." 8405 "Occ other powered aircraft accident a..." 8406 "Occ unpowered aircraft, exc parachuti..." 8407 "Parachutist accident to powered aircr..." 8408 "Ground crew, airline employee acc at ..." 8409 "Other person accident to powered airc..." 8410 "Occ of spacecraft in accident to powe..." 8411 "Occ of mil aircrft, any in acc to pow..." 8412 "Crew of aircrft in surf-to-surf trnsp..." 8413 "Oth occ of aircrft surf-to-surf trnsp..." 8414 "Occ of aircrft in surf-to-air trnsprt..." 8415 "Occ of oth powrd aircrft in acc to po..." 8416 "Occ of unpowr aircrft, ex parachutist..." 8417 "Parachutist in accident to powered ai..." 8418 "Ground crew, airlne employ in acc to ..." 8419 "Other person in accident to powered a..." 8426 "Occ of unpowrd aircrft ex parachutist..." 8427 "Parachutist (military) (other) in acc..." 8428 "Ground crew, airline employee in acci..." 8429 "Other person in accident to unpowered..." 8430 "Occupant of spacecraft in fall in, on..." 8431 "Occupant of military aircraft, any in..." 8432 "Crew of aircrft in surf-to-surf trnsp..." 8433 "Oth occ of aircrft in surf-to-surf tr..." 8434 "Occ of aircrft in surf-to-air trnsprt..." 8435 "Occ of other powered aircraft in fall..." 8436 "Occ of unpwrd aircrft, ex parachutist..." 8437 "Parachutist (military) (other) in fal..." 8438 "Ground crew, airline employee in fall..." 8439 "Other person in fall in/on/from aircraft" 8440 "Occupant of spacecraft in oth specifi..." 8441 "Occ of mil aircrft, any in oth spec a..." 8442 "Crew of aircrft in surf-to-surf trnsp..." 8443 "Oth occ of aircrft in surf-to-surf tr..." 8444 "Occ of com aircrft in surf-to-air trn..." 8445 "Occ of oth powrd aircrft in oth spec ..." 8446 "Occ of unpwrd aircrft, ex parachutst ..." 8447 "Parachutist in other specified air tr..." 8448 "Ground crew, airline employee in othe..." 8449 "Other person in other specified air t..." 8450 "Occupant of spacecraft in accident in..." 8458 "Ground crew, airline employee in acci..." 8459 "Other person in accident involving sp..." 846 "Acc inv powrd veh usd solely w/in the..." 847 "Accidents involving cable cars not ru..." 848 "Accidents involving other vehicles, n..." 8490 "Place of occurrence--home" 8491 "Place of occurrence--farm" 8492 "Place of occurrence--mine and quarry" 8493 "Place of occurrence--industrial place..." 8494 "Place of occurrence--place for recrea..." 8495 "Place of occurrence--street and highway" 8496 "Place of occurrence--public building" 8497 "Place of occurrence--residential inst..." 8498 "Place of occurrence--other specified ..." 8499 "Place of occurrence--unspecified place" 8500 "Accidental poisoning by heroin" 8501 "Accidental poisoning by methadone" 8502 "Accidental poisoning by other opiates..." 8503 "Accidental poisoning by salicylates" 8504 "Accidental poisoning by aromatic anal..." 8505 "Accidental poisoning by pyrazole deri..." 8506 "Accidental poisoning by antirheumatic..." 8507 "Accidental poisoning by other non-nar..." 8508 "Accidental poisoning by other specifi..." 8509 "Accidental poisoning by unspecified a..." 851 "Accidental poisoning by barbiturates" 8520 "Accidental poisoning by chloral hydra..." 8521 "Accidental poisoning by paraldehyde" 8522 "Accidental poisoning by bromine compo..." 8523 "Accidental poisoning by methaqualone ..." 8524 "Accidental poisoning by glutethimide ..." 8525 "Accidental poisoning by mixed sedativ..." 8528 "Accidental poisoning by other specifi..." 8529 "Accidental poisoning by unspecified s..." 8530 "Accidental poisoning by phenothiazine..." 8531 "Accidental poisoning by butyrophenone..." 8532 "Accidental poisoning by benzodiazepin..." 8538 "Accidental poisoning by other specifi..." 8539 "Accidental poisoning by unspecified t..." 8540 "Accidental poisoning by antidepressants" 8541 "Accidental poisoning by psychodyslept..." 8542 "Accidental poisoning by psychostimulants" 8543 "Accidental poisoning by central nervo..." 8548 "Accidental poisoning by other psychot..." 8550 "Accidental poisoning by anticonvulsan..." 8551 "Accidental poisoning by other central..." 8552 "Accidental poisoning by local anesthe..." 8553 "Accidental poisoning by parasympathom..." 8554 "Accidental poisoning by parasympathol..." 8555 "Accidental poisoning by sympathomimet..." 8556 "Accidental poisoning by sympatholytic..." 8558 "Acc pois by oth spec drug act on cent..." 8559 "Acc pois by unspec drug act on centra..." 856 "Accidental poisoning by antibiotics" 857 "Accidental poisoning by other anti-in..." 8580 "Accidental poisoning by hormones and ..." 8581 "Accidental poisoning by primarily sys..." 8582 "Acc poisoning by agents primarily aff..." 8583 "Acc pois by agents primarily affectin..." 8584 "Acc pois by agents primarily affectin..." 8585 "Acc pois by water, mineral, and uric ..." 8586 "Acc pois by agent prim act on smooth/..." 8587 "Acc pois by agnt pri affc skn/mucous ..." 8588 "Accidental poisoning by other specifi..." 8589 "Accidental poisoning by unspecified drug" 8600 "Accidental poisoning by alcoholic bev..." 8601 "Accidental poisoning by oth/unspec et..." 8602 "Accidental poisoning by methyl alcohol" 8603 "Accidental poisoning by isopropyl alc..." 8604 "Accidental poisoning by fuel oil" 8608 "Accidental poisoning by other specifi..." 8609 "Accidental poisoning by unspecified a..." 8610 "Accidental poisoning by synthetic det..." 8611 "Accidental poisoning by soap products" 8612 "Accidental poisoning by polishes" 8613 "Accidental poisoning by other cleansi..." 8614 "Accidental poisoning by disinfectants" 8615 "Accidental poisoning by lead paints" 8616 "Accidental poisoning by other paints ..." 8619 "Accidental poisoning by unspecified..." 8620 "Accidental poisoning by petroleum solvnt" 8621 "Accidental poisoning by petroleum fue..." 8622 "Accidental poisoning by lubricating oils" 8623 "Accidental poisoning by petroleum solids" 8624 "Accidental poisoning by other specifi..." 8629 "Accidental poisoning by unspecified s..." 8630 "Accidental poisoning by insecticides ..." 8631 "Acc poisoning by insecticides of orga..." 8632 "Accidental poisoning by carbamates" 8633 "Accidental poisoning by mixtures of i..." 8634 "Accidental poisoning by other and uns..." 8635 "Accidental poisoning by herbicides" 8636 "Accidental poisoning by fungicides" 8637 "Accidental poisoning by rodenticides" 8638 "Accidental poisoning by fumigants" 8639 "Accidental poisoning by other and uns..." 8640 "Accidental poisoning by corrosive aro..." 8641 "Accidental poisoning by acids" 8642 "Accidental poisoning by caustic alkalis" 8643 "Accidental poisoning by other specifi..." 8644 "Accidental poisoning by unspecified c..." 8650 "Accidental poisoning by meat" 8651 "Accidental poisoning by shellfish" 8652 "Accidental poisoning by other fish" 8653 "Accidental poisoning by berries and s..." 8654 "Accidental poisoning by other specifi..." 8655 "Accidental poisoning by mushrooms and..." 8658 "Accidental poisoning by other specifi..." 8659 "Accidental poisoning by unspecified f..." 8660 "Accidental poisoning by lead and its ..." 8661 "Accidental poisoning by mercury and i..." 8662 "Accidental poisoning by antimony and ..." 8663 "Accidental poisoning by arsenic and i..." 8664 "Accidental poisoning by other metals ..." 8665 "Accidental poisoning by plant foods a..." 8666 "Accidental poisoning by glues and adh..." 8667 "Accidental poisoning by cosmetics" 8668 "Accidental poisoning by other specifi..." 8669 "Accidental poisoning by unspecified s..." 867 "Accidental poisoning by gas distribut..." 8680 "Acc pois by liquef petroleum gas dist..." 8681 "Accidental poisoning by other and uns..." 8682 "Accidental poisoning by motor vehicle..." 8683 "Acc pois by carbon monoxid frm inc co..." 8688 "Accidental poisoning by carbon monoxi..." 8689 "Accidental poisoning by unspecified c..." 8690 "Accidental poisoning by nitrogen oxides" 8691 "Accidental poisoning by sulfur dioxide" 8692 "Accidental poisoning by freon" 8693 "Accidental poisoning by lacrimogenic ..." 8694 "Accidental poisoning by second-hand t..." 8698 "Accidental poisoning by other specifi..." 8699 "Accidental poisoning by unspecified g..." 8700 "Acc cut/puncture/perforation/hemorr d..." 8701 "Acc cut/puncture/perforation/hemorr d..." 8702 "Acc cut/puncture/perforation/hemorr d..." 8703 "Acc cut/puncture/perforation/hemorr d..." 8704 "Acc cut/puncture/perforation/hemorr d..." 8705 "Acc cut/puncture/perforation/hemorr d..." 8706 "Acc cut/puncture/perforation/hemorr d..." 8707 "Acc cut/puncture/perforation/hemorr d..." 8708 "Acc cut/puncture/perforation/hemorr d..." 8709 "Acc cut/puncture/perforation/hemorr d..." 8710 "Foreign object left in body during su..." 8711 "Foreign object left in body during in..." 8712 "Foreign object left in body dur kidne..." 8713 "Foreign object left in body during in..." 8714 "Foreign object left in body during en..." 8715 "Foreign objct left in body dur aspira..." 8716 "Foreign object left in body during he..." 8717 "Foreign object left in body during re..." 8718 "Foreign object left in body during ot..." 8719 "Foreign object left in body during un..." 8720 "Failure of sterile precautions during..." 8721 "Failure of sterile precautions during..." 8722 "Failure of sterile precautns dur kidn..." 8723 "Failure of sterile precautns dur inje..." 8724 "Failure of sterile precautns dur endo..." 8725 "Fail of steril precautns dur aspiratn..." 8726 "Failure of sterile precautions during..." 8728 "Failure of sterile precautions during..." 8729 "Failure of sterile precautions during..." 8730 "Excessive amount of blood or other fl..." 8731 "Incorrect dilution of fluid during in..." 8732 "Overdose of radiation in therapy" 8733 "Inadvertent exposure of patient to ra..." 8734 "Failure in dosage in electroshock or ..." 8735 "Inappropriate [too hot/too cold] temp..." 8736 "Nonadministration of necessary drug o..." 8738 "Other specified failure in dosage" 8739 "Unspecified failure in dosage" 8740 "Mechanical failure during surgical op..." 8741 "Mechanical failure during infusion an..." 8742 "Mechanical failure during kidney dial..." 8743 "Mechanical failure during endoscopic ..." 8744 "Mechan failure dur aspiratn of fluid/..." 8745 "Mechanical failure during heart cathe..." 8748 "Mechanical failure during other speci..." 8749 "Mechanical failure during unspecified..." 8750 "Contaminated substance transfused or ..." 8751 "Contaminated substance injected or us..." 8752 "Contaminated drug/biological substanc..." 8758 "Other contaminated substance transfus..." 8759 "Unspecified" 8760 "Mismatched blood in transfusion" 8761 "Wrong fluid in infusion" 8762 "Failure in suture and ligature during..." 8763 "Endotracheal tube wrongly placed duri..." 8764 "Failure to introduce or to remove oth..." 8765 "Performance of inappropriate operation" 8768 "Other specified misadventures during ..." 8769 "Unspecified misadventure during medic..." 878 "Surgical oper/proc as cause of abnorm..." 8780 "Surgical operation with transplant of..." 8781 "Surgical operation with implant of ar..." 8782 "Surg operatn w/anastomos/bypas/graft,..." 8783 "Surgical operation with formation of ..." 8784 "Other restorative surgery" 8785 "Amputation of limb(s)" 8786 "Removal of other organ (partial) (total)" 8788 "Other specified surgical operations a..." 8789 "Unspecified surgical operations and p..." 8790 "Cardiac catheterization" 8791 "Kidney dialysis" 8792 "Radiological procedure and radiotherapy" 8793 "Shock therapy" 8794 "Aspiration of fluid" 8795 "Insertion of gastric or duodenal sound" 8796 "Urinary catheterization" 8797 "Blood sampling" 8798 "Other specified procedures" 8799 "Unspecified procedure" 8800 "Fall on or from escalator" 8801 "Fall on or from sidewalk curb" 8809 "Fall on or from other stairs or steps" 8810 "Fall from ladder" 8811 "Fall from scaffolding" 882 "Fall from or out of building or other..." 8830 "Accident from diving or jumping into ..." 8831 "Accidental fall into well" 8832 "Accidental fall into storm drain or m..." 8839 "Fall into other hole or other opening..." 8840 "Fall from playground equipment" 8841 "Fall from cliff" 8842 "Fall from chair" 8843 "Fall from wheelchair" 8844 "Fall from bed" 8845 "Fall from other furniture" 8846 "Fall from commode" 8849 "Other fall from one level to another" 8850 "Fall from (nonmotorized) scooter" 8851 "Fall from roller skates" 8852 "Fall from skateboard" 8853 "Fall from skis" 8854 "Fall from snowboard" 8859 "Fall from other slipping, tripping, or stumbling" 8860 "Fall on same level from collision, in..." 8869 "Fall on same level from collision, ot..." 887 "Fracture, cause unspecified" 888 "Other and unspecified fall" 8880 "Fall resulting in striking against sharp object" 8881 "Fall resulting in striking against another object" 8888 "Other fall" 8889 "Unspecified fall" 8900 "Explosion caused by conflagration" 8901 "Fumes frm combust of polyvinylchlorid..." 8902 "Other smoke and fumes from conflagration" 8903 "Burning caused by conflagration" 8908 "Other accident resulting from conflag..." 8909 "Unspec accident resulting from confla..." 8910 "Explosion caused by conflagration" 8911 "Fume frm combust of polyvinylchlorid ..." 8912 "Other smoke and fumes from conflagration" 8913 "Burning caused by conflagration" 8918 "Other accident resulting from conflag..." 8919 "Unspec acc result frm conflagratn of ..." 892 "Conflagration not in building or stru..." 8930 "Acc caus by ignitn of clothg frm cont..." 8931 "Acc caus by ignitn of clothg frm cont..." 8932 "Acc caus by ignitn of clothg frm cont..." 8938 "Accident caused by ignition of clothi..." 8939 "Accident caused by ignition of clothi..." 894 "Ignition of highly inflammable material" 895 "Accident caused by controlled fire in..." 896 "Accident caused by controlled fire in..." 897 "Accident caused by controlled fire no..." 8980 "Burning bedclothes" 8981 "Other accident caused by other specif..." 899 "Accident caused by unspecified fire" 9000 "Excessive heat due to weather conditions" 9001 "Excessive heat of man-made origin" 9009 "Excessive heat of unspecified origin" 9010 "Excessive cold due to weather conditions" 9011 "Excessive cold of man-made origin" 9018 "Excessive cold other specified origin" 9019 "Excessive cold of unspecified origin" 9020 "Changes in air press frm residnce/pro..." 9021 "Changes in air pressure in aircraft" 9022 "Changes in air pressure due to diving" 9028 "Changes in air pressure due to other ..." 9029 "Changes in air pressure from unspecif..." 903 "Travel and motion" 9040 "Abandonment or neglect of infants and..." 9041 "Lack of food" 9042 "Lack of water" 9043 "Exposure (to weather conditions), not..." 9049 "Privation, unqualified" 9050 "Poisoning and toxic reactions from ve..." 9051 "Poisoning and toxic reactions from ve..." 9052 "Poisoning and toxic reactions from sc..." 9053 "Poisoning and toxic reactions from ho..." 9054 "Poisoning/toxic reaction from centipe..." 9055 "Poisoning and toxic reactions from ot..." 9056 "Poisoning and toxic reactions from ve..." 9057 "Poisoning and toxic reactions from ca..." 9058 "Poisoning and toxic reactions, other ..." 9059 "Poisoning and toxic reactions, unspec..." 9060 "Dog bite" 9061 "Rat bite" 9062 "Bite of nonvenomous snakes and lizards" 9063 "Bite of other animal except arthropod" 9064 "Bite of nonvenomous arthropod" 9065 "Bite by unspecified animal" 9068 "Other specified injury caused by animal" 9069 "Unspecified injury caused by animal" 907 "Lightning" 9080 "Hurricane" 9081 "Tornado" 9082 "Floods" 9083 "Blizzard (snow) (ice)" 9084 "Dust storm" 9088 "Other cataclysmic storms" 9089 "Unspecified cataclysmic storms and fl..." 9090 "Earthquakes" 9093 "Collapse of dam or man-made structure" 9100 "Accidental drowning and submersion wh..." 9101 "Acc drowning/submersion while engagd ..." 9102 "Acc drowng/submersion while engagd sp..." 9103 "Acc drowng/submersn while swimming/di..." 9104 "Accidental drowning and submersion in..." 9108 "Other accidental drowning or submersion" 9109 "Unspecified accidental drowning or su..." 911 "Inhalatn/ingestn of food causing obst..." 912 "Inhala/ingest of oth object caus obst..." 9130 "Accidental mechanical suffocation in ..." 9131 "Accidental mechanical suffocation by ..." 9132 "Accidental mechanical suffocation due..." 9133 "Accidental mechan suffocation by fall..." 9138 "Accidental mechanical suffocation by ..." 9139 "Accidental mechanical suffocation by ..." 914 "Foreign body accidentally entering ey..." 915 "Foreign body accidentally entering ot..." 916 "Struck accidentally by falling object" 9170 "Striking agnst/strck acc by objects o..." 9171 "Strik agnst/strck acc by objct/persn ..." 9172 "Striking agnst/strck acc by objects o..." 9173 "Strik/strck acc by furniture wo sub fall" 9174 "Strik/strck acc by oth stat obj wo fall" 9175 "Strik/strck acc by obj in sports w fall" 9176 "Strik/strck acc by crowd w subseq fall" 9177 "Strik/strck acc by furniture w sub fall" 9178 "Strik/strck acc by oth stat obj w fall" 9179 "Oth strikng against w or wo subseq fall" 918 "Caught accidentally in or between obj..." 9190 "Accident caused by agricultural machines" 9191 "Accident caused by mining and earth-d..." 9192 "Accident caused by lifting machines a..." 9193 "Accident caused by metalworking machines" 9194 "Accident caused by woodworking and fo..." 9195 "Accident caused by prime movers, exce..." 9196 "Accident caused by transmission machi..." 9197 "Accident caus by earth moving/scrapin..." 9198 "Accident caused by other specified ma..." 9199 "Accident caused by unspecified machinery" 9200 "Accident caused by powered lawn mower" 9201 "Accident caused by other powered hand..." 9202 "Accident caused by powered household ..." 9203 "Accident caused by knives, swords, an..." 9204 "Accident caused by other hand tools a..." 9205 "Accident caused by hypodermic needle" 9208 "Accident caused by oth spec cutting/p..." 9209 "Accident caused by unspec cutting/pie..." 9210 "Accident caused by boilers" 9211 "Accident caused by gas cylinders" 9218 "Accident caused by other specified pr..." 9219 "Accident caused by unspecified pressu..." 9220 "Accident caused by handgun" 9221 "Accident caused by shotgun (automatic)" 9222 "Accident caused by hunting rifle" 9223 "Accident caused by military firearms" 9224 "Accident caused by air gun" 9225 "Accident caused by paintball gun" 9228 "Accident caused by other specified fi..." 9229 "Accident caused by unspecified firear..." 9230 "Accident caused by fireworks" 9231 "Accident caused by blasting materials" 9232 "Accident caused by explosive gases" 9238 "Accident caused by other explosive ma..." 9239 "Accident caused by unspecified explos..." 9240 "Accident caused by hot liquids and va..." 9241 "Accident caused by caustic and corros..." 9242 "Accident caused by hot (boiling) tap ..." 9248 "Accident caused by oth hot/caustic/co..." 9249 "Accident caused by unspec hot/caustic..." 9250 "Accident caused by domestic wiring an..." 9251 "Acc caus by electrc powr genera plant..." 9252 "Acc caus by industrial wiring/applian..." 9258 "Accident caused by other electric cur..." 9259 "Accident caused by unspecified electr..." 9260 "Exposure to radiofrequency radiation" 9261 "Exposure to infra-red heaters and lamps" 9262 "Exposure to visible and ultraviolet l..." 9263 "Exposure to x-rays and other electrom..." 9264 "Exposure to lasers" 9265 "Exposure to radioactive isotopes" 9268 "Exposure to other specified radiation" 9269 "Exposure to unspecified radiation" 927 "Overexertion and strenuous movements" 9280 "Prolonged stay in weightless environment" 9281 "Exposure to noise" 9282 "Vibration" 9283 "Human bite" 9285 "External constriction caused by hair" 9288 "Other environmental and accidental ca..." 9289 "Unspecified accident environmental an..." 9290 "Late effects of motor vehicle accident" 9291 "Late effects of other transport accident" 9292 "Late effects of accidental poisoning" 9293 "Late effects of accidental fall" 9294 "Late effects of accident caused by fire" 9295 "Late effects of accident due to natur..." 9298 "Late effects of other accidents" 9299 "Late effects of unspecified accident" 9300 "Penicillins" 9301 "Antifungal antibiotics" 9302 "Chloramphenicol group" 9303 "Erythromycin and other macrolides" 9304 "Tetracycline group" 9305 "Cephalosporin group" 9306 "Antimycobacterial antibiotics" 9307 "Antineoplastic antibiotics" 9308 "Other specified antibiotics" 9309 "Unspecified antibiotic" 9310 "Sulfonamides" 9311 "Arsenical anti-infectives" 9312 "Heavy metal anti-infectives" 9313 "Quinoline and hydroxyquinoline deriva..." 9314 "Antimalarials and drugs acting on oth..." 9315 "Other antiprotozoal drugs" 9316 "Anthelmintics" 9317 "Antiviral drugs" 9318 "Other antimycobacterial drugs" 9319 "Other and unspecified anti-infectives" 9320 "Adrenal cortical steroids" 9321 "Androgens and anabolic congeners" 9322 "Ovarian hormones and synthetic substi..." 9323 "Insulins and antidiabetic agents" 9324 "Anterior pituitary hormones" 9325 "Posterior pituitary hormones" 9326 "Parathyroid and parathyroid derivatives" 9327 "Thyroid and thyroid derivatives" 9328 "Antithyroid agents" 9329 "Other and unspecified hormones and sy..." 9330 "Antiallergic and antiemetic drugs" 9331 "Antineoplastic and immunosuppressive ..." 9332 "Acidifying agents" 9333 "Alkalizing agents" 9334 "Enzymes, not elsewhere classified" 9335 "Vitamins, not elsewhere classified" 9338 "Other systemic agents, not elsewhere ..." 9339 "Unspecified systemic agent" 9340 "Iron and its compounds" 9341 "Liver preparations and other antianem..." 9342 "Anticoagulants" 9343 "Vitamin K [phytonadione]" 9344 "Fibrinolysis-affecting drugs" 9345 "Anticoagulant antagonists and other c..." 9346 "Gamma globulin" 9347 "Natural blood and blood products" 9348 "Other agents affecting blood constitu..." 9349 "Unspecified agent affecting blood con..." 9350 "Heroin" 9351 "Methadone" 9352 "Other opiates and related narcotics" 9353 "Salicylates" 9354 "Aromatic analgesics, not elsewhere cl..." 9355 "Pyrazole derivatives" 9356 "Antirheumatics [antiphlogistics]" 9357 "Other non-narcotic analgesics" 9358 "Other specified analgesics and antipy..." 9359 "Unspecified analgesic and antipyretic" 9360 "Oxazolidine derivatives" 9361 "Hydantoin derivatives" 9362 "Succinimides" 9363 "Other and unspecified anticonvulsants" 9364 "Anti-Parkinsonism drugs" 9370 "Barbiturates" 9371 "Chloral hydrate group" 9372 "Paraldehyde" 9373 "Bromine compounds" 9374 "Methaqualone compounds" 9375 "Glutethimide group" 9376 "Mixed sedatives, not elsewhere classi..." 9378 "Other sedatives and hypnotics" 9379 "Unspecified sedatives and hypnotics" 9380 "Central nervous system muscle-tone de..." 9381 "Halothane" 9382 "Other gaseous anesthetics" 9383 "Intravenous anesthetics" 9384 "Other and unspecified general anesthe..." 9385 "Surface and infiltration anesthetics" 9386 "Peripheral nerve- and plexus-blocking..." 9387 "Spinal anesthetics" 9389 "Other and unspecified local anesthetics" 9390 "Antidepressants" 9391 "Phenothiazine-based tranquilizers" 9392 "Butyrophenone-based tranquilizers" 9393 "Other antipsychotics, neuroleptics, a..." 9394 "Benzodiazepine-based tranquilizers" 9395 "Other tranquilizers" 9396 "Psychodysleptics [hallucinogens]" 9397 "Psychostimulants" 9398 "Other psychotropic agents" 9399 "Unspecified psychotropic agent" 9400 "Analeptics" 9401 "Opiate antagonists" 9408 "Other specified central nervous syste..." 9409 "Unspecified central nervous system st..." 9410 "Parasympathomimetics [cholinergics]" 9411 "Parasympatholytics and spasmolytics" 9412 "Sympathomimetics [adrenergics]" 9413 "Sympatholytics [antiadrenergics]" 9419 "Unspecified drug primarily affecting ..." 9420 "Cardiac rhythm regulators" 9421 "Cardiotonic glycosides and drugs of s..." 9422 "Antilipemic and antiarteriosclerotic ..." 9423 "Ganglion-blocking agents" 9424 "Coronary vasodilators" 9425 "Other vasodilators" 9426 "Other antihypertensive agents" 9427 "Antivaricose drugs, including scleros..." 9428 "Capillary-active drugs" 9429 "Other/unspecified agents primarily af..." 9430 "Antacids and antigastric secretion drugs" 9431 "Irritant cathartics" 9432 "Emollient cathartics" 9433 "Other cathartics, including intestina..." 9434 "Digestants" 9435 "Antidiarrheal drugs" 9436 "Emetics" 9438 "Other spec agents primarily affecting..." 9439 "Unspecified agent primarily affecting..." 9440 "Mercurial diuretics" 9441 "Purine derivative diuretics" 9442 "Carbonic acid anhydrase inhibitors" 9443 "Saluretics" 9444 "Other diuretics" 9445 "Electrolytic, caloric, and water-bala..." 9446 "Other mineral salts, not elsewhere cl..." 9447 "Uric acid metabolism drugs" 9450 "Oxytocic agents" 9451 "Smooth muscle relaxants" 9452 "Skeletal muscle relaxants" 9453 "Other and unspecified drugs acting on..." 9454 "Antitussives" 9455 "Expectorants" 9456 "Anti-common cold drugs" 9457 "Antiasthmatics" 9458 "Other and unspecified respiratory drugs" 9460 "Local anti-infectives and anti-inflam..." 9461 "Antipruritics" 9462 "Local astringents and local detergents" 9463 "Emollients, demulcents, and protectants" 9464 "Keratolytics, keratoplastics, other h..." 9465 "Eye anti-infectives and other eye drugs" 9466 "Anti-infectives and oth drugs and pre..." 9467 "Dental drugs topically applied" 9468 "Other agents primarily affecting skin..." 9469 "Unspecified agent primarily affecting..." 9470 "Dietetics" 9471 "Lipotropic drugs" 9472 "Antidotes and chelating agents, not e..." 9473 "Alcohol deterrents" 9474 "Pharmaceutical excipients" 9478 "Other drugs and medicinal substances" 9479 "Unspecified drug or medicinal substance" 9480 "BCG vaccine" 9481 "Typhoid and paratyphoid vaccine" 9482 "Cholera vaccine" 9483 "Plague vaccine" 9484 "Tetanus vaccine" 9485 "Diphtheria vaccine" 9486 "Pertussis vaccine, including combinat..." 9488 "Other and unspecified bacterial vaccines" 9489 "Mixed bacterial vaccines, ex combinat..." 9490 "Smallpox vaccine" 9491 "Rabies vaccine" 9492 "Typhus vaccine" 9493 "Yellow fever vaccine" 9494 "Measles vaccine" 9495 "Poliomyelitis vaccine" 9496 "Other and unspecified viral and ricke..." 9497 "Mix viral-rickettsial/bacterial vacci..." 9499 "Other and unspecified vaccines and bi..." 9500 "Suicid/self-inflic poison by analgesi..." 9501 "Suicide and self-inflicted poisoning ..." 9502 "Suicide/self-inflicted poisoning by o..." 9503 "Suicide/self-inflic pois by tranquili..." 9504 "Suicide/self-inflic poison by oth spe..." 9505 "Suicide/self-inflic pois by unspec dr..." 9506 "Suicid/self-infl pois by agri/hrti ch..." 9507 "Suicide/self-inflic poisoning by corr..." 9508 "Suicide and self-inflicted poisoning ..." 9509 "Suicide/self-inflic pois by oth/unspe..." 9510 "Suicide and self-inflicted poisoning ..." 9511 "Suicid/self-inflic pois by lique petr..." 9518 "Suicide and self-inflicted poisoning ..." 9520 "Suicide and self-inflicted poisoning ..." 9521 "Suicide and self-inflicted poisoning ..." 9528 "Suicide and self-inflicted poisoning ..." 9529 "Suicide and self-inflicted poisoning ..." 9530 "Suicide and self-inflicted injury by ..." 9531 "Suicide and self-inflicted injury by ..." 9538 "Suicide/self-inflicted injury by othe..." 9539 "Suicide/self-inflicted injury by unsp..." 954 "Suicide and self-inflicted injury by ..." 9550 "Suicide and self-inflicted injury by ..." 9551 "Suicide and self-inflicted injury by ..." 9552 "Suicide and self-inflicted injury by ..." 9553 "Suicide and self-inflicted injury by ..." 9554 "Suicide and self-inflicted injury by ..." 9555 "Suicide and self-inflicted injury by ..." 9559 "Suicide and self-inflicted injury by ..." 956 "Suicide and self-inflicted injury by ..." 9570 "Suicide and self-inflicted injury by ..." 9571 "Suicide and self-inflicted injury by ..." 9572 "Suicide and self-inflicted injury by ..." 9579 "Suicide and self-inflicted injury by ..." 9580 "Suicide/self-inflicted injury by jump..." 9581 "Suicide and self-inflicted injury by ..." 9582 "Suicide and self-inflicted injury by ..." 9583 "Suicide and self-inflicted injury by ..." 9584 "Suicide and self-inflicted injury by ..." 9585 "Suicide and self-inflicted injury by ..." 9586 "Suicide and self-inflicted injury by ..." 9587 "Suicide/self-inflicted injury by caus..." 9588 "Suicide and self-inflicted injury by ..." 9589 "Suicide and self-inflicted injury by ..." 959 "Late effects of self-inflicted injury" 9600 "Unarmed fight or brawl" 9601 "Rape" 961 "Assault by corrosive or caustic subst..." 9620 "Assault by drugs and medicinal substa..." 9621 "Assault by other solid and liquid sub..." 9622 "Assault by other gases and vapors" 9629 "Assault by unspecified poisoning" 963 "Assault by hanging and strangulation" 9640 "Assault by submersion [drowning]" 9650 "Assault by handgun" 9651 "Assault by shotgun" 9652 "Assault by hunting rifle" 9653 "Assault by military firearms" 9654 "Assault by other and unspecified firearm" 9655 "Assault by antipersonnel bomb" 9656 "Assault by gasoline bomb" 9657 "Assault by letter bomb" 9658 "Assault by other specified explosive" 9659 "Assault by unspecified explosive" 966 "Assault by cutting and piercing instr..." 9670 "Child battering and other maltreatmen..." 9671 "Child battering and other maltreatmen..." 9672 "Child battering and other maltreatmen..." 9673 "Battering and other maltreatment by s..." 9674 "Battering and other maltreatment by c..." 9675 "Battering and other maltreatment by s..." 9676 "Battering and other maltreatment by g..." 9677 "Battering and other maltreatment by o..." 9678 "Battering and other maltreatment by n..." 9679 "Child and adult battering and other m..." 9680 "Assault by fire" 9681 "Assault by pushing from a high place" 9682 "Assault by striking by blunt or throw..." 9683 "Assault by hot liquid" 9684 "Assault by criminal neglect" 9685 "Assault by transport vehicle" 9687 "Assault by human bite" 9688 "Assault by other specified means" 9689 "Assault by unspecified means" 969 "Late effects of injury purposely infl..." 970 "Injury due to legal intervention by f..." 971 "Injury due to legal intervention by e..." 972 "Injury due to legal intervention by gas" 973 "Injury due to legal intervention by b..." 974 "Injury due to legal intervention by c..." 975 "Injury due to legal intervention by o..." 976 "Injury due to legal intervention by u..." 977 "Late effects of injuries due to legal..." 978 "Legal execution" 9794 "Terrorism involving firearms" 9800 "Poisoning by analgesics, antipyretics..." 9801 "Poisoning by barbiturates" 9802 "Poisoning by other sedatives and hypn..." 9803 "Poisoning by tranquilizers and other ..." 9804 "Poisoning by other specified drugs an..." 9805 "Poisoning by unspecified drug or medi..." 9806 "Poisoning by corrosive and caustic su..." 9807 "Poisoning by agricul/horticul chem/ph..." 9808 "Poisoning by arsenic and its compounds" 9809 "Poisoning by other and unspecified so..." 9810 "Poisoning by gas distributed by pipeline" 9811 "Poisoning by liquefied petroleum gas ..." 9818 "Poisoning by other utility gas" 9820 "Poisoning by motor vehicle exhaust gas" 9821 "Poisoning by other carbon monoxide" 9828 "Poisoning by other specified gases an..." 9829 "Poisoning by unspecified gases and va..." 9830 "Hanging" 9831 "Suffocation by plastic bag" 9838 "Other specified means of hanging, str..." 9839 "Unspecified means of hanging, strangu..." 984 "Submersion [drowning]" 9850 "Injury by handgun" 9851 "Injury by shotgun" 9852 "Injury by hunting rifle" 9853 "Injury by military firearms" 9854 "Injury by other and unspecified firearm" 9855 "Injury by explosives" 9856 "Injury by air gun" 986 "Injury by cutting and piercing instru..." 9870 "Falling from high residential premises" 9871 "Falling from high other man-made stru..." 9872 "Falling from high natural sites" 9879 "Falling from high unspecified site" 9880 "Injury by other jumping or lying befo..." 9881 "Injury by other burns, fire" 9882 "Injury by other scald" 9883 "Injury by other extremes of cold" 9884 "Injury by other electrocution" 9885 "Injury by other crashing of motor veh..." 9886 "Injury by other crashing of aircraft" 9887 "Injury by other caustic substances, e..." 9888 "Injury by other other specified means" 9889 "Injury by other unspecified means" 989 "Late effects of injury, undetermined ..." 9900 "Injury due to war operations from gas..." 9909 "Injury due to war operations from oth..." 9910 "Injury due to war operations by rubbe..." 9911 "Injury due to war operations by pelle..." 9912 "Injury due to war operations by other..." 9913 "Injury due to war operations by antip..." 9919 "Injury due to war operations by other..." 992 "Injury due to war operations by explo..." 993 "Injury due to war operations by other..." 994 "Injury due to war operations by destr..." 995 "Injury due to war operatns by oth/uns..." 996 "Injury due to war operations by nucle..." 9970 "Lasers of unconventional warfare" 9971 "Biological warfare" 9972 "Gases, fumes, and chemicals of unconv..." 9978 "Other specified forms of unconvention..." 9979 "Unspecified form of unconventional wa..." 998 "Injury due to war operations/occur af..." 999 "Late effect of injury due to war oper..." 0000 "Not applicable/blank"; /* The following format is provided in case you wish to use only the first three columns of the Cause of Injury fields for broader groupings of this item. */ destring cause13d cause23d cause33d, replace ignore("-"); label define cause3 700 "Drug use/abuse" 710 "Alcohol use/abuse" 800 "Railway accident involving collision ..." 801 "Railway accident involving collision ..." 802 "Railway accident involving derailment..." 803 "Railway accident involving explosion,..." 804 "Fall in, on, or from railway train" 805 "Hit by rolling stock" 806 "Other specified railway accident" 807 "Railway accident of unspecified nature" 810 "Motor vehicle traffic accident involv..." 811 "Motr veh traffic accid inv re-entrant..." 812 "Other motor veh traffic accident inv ..." 813 "Motor vehicle traffic accident involv..." 814 "Motor vehicle traffic accident involv..." 815 "Other motor veh traffic accident inv ..." 816 "Motr veh trffc acc due to loss of con..." 817 "Noncollisn motr veh trffc accident wh..." 818 "Other noncollision motor vehicle traf..." 819 "Motor vehicle traffic accident of uns..." 820 "Nontraffic accident involving motor-d..." 821 "Nontraffic accident involving other o..." 822 "Oth motr veh nontrffc acc inv collisi..." 823 "Oth motr veh nontrffc acc inv collisi..." 824 "Other motor vehicle nontraffic accide..." 825 "Other motor veh nontraffic accident o..." 826 "Pedal cycle accident" 827 "Animal-drawn vehicle accident" 828 "Accident involving animal being ridden" 829 "Other road vehicle accidents" 830 "Accident to watercraft causing submer..." 831 "Accident to watercraft causing other ..." 832 "Other accidental submersn or drowning..." 833 "Fall on stairs or ladders in water tr..." 834 "Other fall from one level to another ..." 835 "Other and unspecified fall in water t..." 836 "Machinery accident in water transport" 837 "Explosion, fire, or burning in waterc..." 838 "Other and unspecified water transport..." 840 "Accident to powered aircraft at takeo..." 841 "Accident to powered aircraft, other a..." 842 "Accident to unpowered aircraft" 843 "Fall in, on, or from aircraft" 844 "Other specified air transport accidents" 845 "Accident involving spacecraft" 846 "Acc inv power veh usd solely w/in bui..." 847 "Accidents involving cable cars not ru..." 848 "Accidents involving other vehicles, n..." 849 "Place of occurrence" 850 "Accidental poisoning by analgesics/an..." 851 "Accidental-poisoning by barbiturates" 852 "Accidental poisoning by other sedativ..." 853 "Accidental poisoning by tranquilizers" 854 "Accidental poisoning by other psychot..." 855 "Acc poisoning by other drugs acting o..." 856 "Accidental poisoning by antibiotics" 857 "Accidental poisoning by anti-infectives" 858 "Accidental poisoning by other drugs" 860 "Accidental poisoning by alcohol, not ..." 861 "Acc poison by cleansg & polishg agnts..." 862 "Accidental poisoning by petrol prodct..." 863 "Acc poison by agricul/horticul chem/p..." 864 "Accidental poisoning by corrosives an..." 865 "Accidental poisoning from foodstuffs ..." 866 "Accidental poisoning by oth/unspec so..." 867 "Accidental poisoning by gas distribut..." 868 "Accidental poisoning by other utility..." 869 "Accidental poisoning by other gases a..." 870 "Accidental cut/puncture/perforation/h..." 871 "Foreign object left in body during pr..." 872 "Failure of sterile precautions during..." 873 "Failure in dosage" 874 "Mechanical failure of instrument or a..." 875 "Contam or infectd blood, oth fluid/dr..." 876 "Other and unspecified misadventures d..." 878 "Surg operatn/oth surg procs as caus o..." 879 "Other procs, w/o misadventure at time..." 880 "Fall on or from stairs or steps" 881 "Fall on or from ladders or scaffolding" 882 "Fall from or out of building or other..." 883 "Fall into hole or other opening in su..." 884 "Other fall from one level to another" 885 "Fall on same level from slipping, tri..." 886 "Fall on same level frm collisn/pushg ..." 887 "Fracture, cause unspecified" 888 "Other and unspecified fall" 890 "Conflagration in private dwelling" 891 "Conflagration in other and unspecifie..." 892 "Conflagration not in building or stru..." 893 "Accident caused by ignition of clothing" 894 "Ignition of highly inflammable material" 895 "Accident caused by controlled fire in..." 896 "Accident causd by controlld fire in o..." 897 "Accident caused by controlled fire no..." 898 "Accident caused by other specified fi..." 899 "Accident caused by unspecified fire" 900 "Excessive heat" 901 "Excessive cold" 902 "High and low air pressure and changes..." 903 "Travel and motion" 904 "Hunger, thirst, exposure, and neglect" 905 "Venomous animals and plants as cause ..." 906 "Other injury caused by animals" 907 "Lightning" 908 "Cataclysmic storms, and floods result..." 909 "Cataclysmic earth surface movements a..." 910 "Accidental drowning and submersion" 911 "Inhala/ingest of food causing obstruc..." 912 "Inhala/ingest of oth object caus obst..." 913 "Accidental mechanical suffocation" 914 "Foreign body accidentally entering ey..." 915 "Foreign body accidentally entering ot..." 916 "Struck accidentally by falling object" 917 "Striking against or struck accidental..." 918 "Caught accidentally in or between obj..." 919 "Accidents caused by machinery" 920 "Accidents caused by cutting and pierc..." 921 "Accident caused by explosion of press..." 922 "Accident caused by firearm missile" 923 "Accident caused by explosive material" 924 "Accident caus by hot substnce/objct, ..." 925 "Accident caused by electric current" 926 "Exposure to radiation" 927 "Overexertion and strenuous movements" 928 "Other and unspecified environmental a..." 929 "Late effects of accidental injury" 930 "Antibiotics" 931 "Other anti-infectives" 932 "Hormones and synthetic substitutes" 933 "Primarily systemic agents" 934 "Agents primarily affecting blood cons..." 935 "Analgesics, antipyretics, and antirhe..." 936 "Anticonvulsants and anti-Parkinsonism..." 937 "Sedatives and hypnotics" 938 "Other central nervous system depressa..." 939 "Psychotropic agents" 940 "Central nervous system stimulants" 941 "Drugs primarily affecting the autonom..." 942 "Agents primarily affecting the cardio..." 943 "Agents primarily affecting gastrointe..." 944 "Water, mineral, and uric acid metabol..." 945 "Agents prim actg on smooth/skeletal m..." 946 "Agent prim affec skin/mucous mem/opht..." 947 "Other and unspecified drugs and medic..." 948 "Bacterial vaccines" 949 "Other vaccines and biological substances" 950 "Suicide and self-inflicted poisoning ..." 951 "Suicide and self-inflicted poisoning ..." 952 "Suicide and self-inflicted poisoning ..." 953 "Suicide/self-inflicted injury by hang..." 954 "Suicide and self-inflicted injury by ..." 955 "Suicide and self-inflicted injury by ..." 956 "Suicide and self-inflicted injury by ..." 957 "Suicide and self-inflicted injuries b..." 958 "Suicide and self-inflicted injury by ..." 959 "Late effects of self-inflicted injury" 960 "Fight, brawl, and rape" 961 "Assault by corrosive or caustic subst..." 962 "Assault by poisoning" 963 "Assault by hanging and strangulation" 964 "Assault by submersion [drowning]" 965 "Assault by firearms and explosives" 966 "Assault by cutting and piercing instr..." 967 "Child battering and other maltreatment" 968 "Assault by other and unspecified means" 969 "Late effects of injury purposely infl..." 970 "Injury due to legal intervention by f..." 971 "Injury due to legal intervention by e..." 972 "Injury due to legal intervention by gas" 973 "Injury due to legal intervention by b..." 974 "Injury due to legal intervention by c..." 975 "Injury due to legal intervention by o..." 976 "Injury due to legal intervention by u..." 977 "Late effects of injuries due to legal..." 978 "Legal execution" 979 "Terrorism" 980 "Poisoning by solid/liquid substances,..." 981 "Poisoning by gases in domestic use, u..." 982 "Poisoning by other gases, undetermine..." 983 "Hanging, strangulation, or suffocatio..." 984 "Submersion [drowning], undetrm accidn..." 985 "Injury by firearms and explosives, un..." 986 "Injury by cutting/piercing instrument..." 987 "Falling from high place, undetermnd a..." 988 "Injury by other and unspecified means..." 989 "Late effects of injury, undetrm wheth..." 990 "Injury due to war operations by fires..." 991 "Injury due to war operations by bulle..." 992 "Injury due to war operations by explo..." 993 "Injury due to war operations by other..." 994 "Injury due to war operations by destr..." 995 "Injury due to war operatn by oth/unsp..." 996 "Injury due to war operations by nucle..." 997 "Injury due to war operatns by oth for..." 998 "Injury due to war operatn but occurrg..." 999 "Late effects of injury due to war ope..." 000 "Not applicable/blank"; label define prdiag1 0 "No" 1 "Yes" 8 "Not applicable"; label define prdiag2 0 "No" 1 "Yes" 8 "Not applicable"; label define prdiag3 0 "No" 1 "Yes" 8 "Not applicable"; label define diagscrn 0 "No" 1 "Yes" 2 "No answer"; label define medscrnx 0 "No" 1 "Yes"; label define menstat 0 "No" 1 "Yes"; label define ekg 0 "No" 1 "Yes"; label define cardmon 0 "No" 1 "Yes"; label define eeg 0 "No" 1 "Yes"; label define pulsoxim 0 "No" 1 "Yes"; label define pregtest 0 "No" 1 "Yes"; label define urine 0 "No" 1 "Yes"; label define chestxry 0 "No" 1 "Yes"; label define extrxray 0 "No" 1 "Yes"; label define otherxry 0 "No" 1 "Yes"; label define ultrasnd 0 "No" 1 "Yes"; label define mricat 0 "No" 1 "Yes"; label define othimage 0 "No" 1 "Yes"; label define cbc 0 "No" 1 "Yes"; label define bun 0 "No" 1 "Yes"; label define creatin 0 "No" 1 "Yes"; label define cholest 0 "No" 1 "Yes"; label define glucose 0 "No" 1 "Yes"; label define hgba 0 "No" 1 "Yes"; label define electrol 0 "No" 1 "Yes"; label define bac 0 "No" 1 "Yes"; label define hivser 0 "No" 1 "Yes"; label define otherbld 0 "No" 1 "Yes"; label define bloodcx 0 "No" 1 "Yes"; label define cervcx 0 "No" 1 "Yes"; label define stoolcx 0 "No" 1 "Yes"; label define throatcx 0 "No" 1 "Yes"; label define urinecx 0 "No" 1 "Yes"; label define othrtest 0 "No" 1 "Yes"; label define totdiag 99 "'None' box and all item fields are blank"; label define proc 0 "No" 1 "Yes" 2 "No answer"; label define bladcath 0 "No" 1 "Yes"; label define cpr 0 "No" 1 "Yes"; label define endoint 0 "No" 1 "Yes"; label define eyeent 0 "No" 1 "Yes"; label define ivfluids 0 "No" 1 "Yes"; label define ngtube 0 "No" 1 "Yes"; label define obgyn 0 "No" 1 "Yes"; label define ortho 0 "No" 1 "Yes"; label define thrombo 0 "No" 1 "Yes"; label define wound 0 "No" 1 "Yes"; label define othproc 0 "No" 1 "Yes"; label define totproc 99 "'None' box and all item fields are blank"; label define med 0 "No" 1 "Yes"; destring med1 med2 med3 med4 med5 med6 med7 med8, replace; label define meds 00002 "TAMIFLU" 00003 "DITROPAN XL" 00004 "LIDODERM PATCH" 00006 "NEPHRON" 00007 "TMP-SMZ DS" 00008 "VIACTIV" 00009 "BICILLIN L-A" 00010 "A AND D" 00012 "IPOL" 00013 "MYCOPHENOLATE MOFETIL" 00017 "SIROLIMUS" 00020 "A.C.A." 00022 "PREVNAR" 00023 "A.C.N." 00024 "PROLEX DM" 00026 "NOXZEMA MEDICATED SKIN CREAM" 00027 "SYNAGIS" 00028 "TEQUIN" 00029 "DOSTINEX" 00032 "EXCEDRIN MIGRAINE" 00036 "MAALOX PLUS" 00037 "ACEON" 00038 "GLYSET" 00039 "SONATA" 00040 "SOY" 00042 "PROTONIX" 00043 "D-50-W" 00044 "PANLOR DC" 00047 "DONNATAL ELIXIR" 00048 "MOBIC" 00049 "ORTHO-PREFEST" 00052 "SILDENAFIL CITRATE" 00053 "TAMSULOSIN HYDROCHLORIDE" 00054 "COMTAN" 00056 "ENTEX PSE" 00058 "MINERAL SUPPLEMENT" 00061 "BISMUTH" 00066 "EPIRUBICIN HCL" 00067 "INTEGRILIN" 00069 "AURODEX" 00070 "TAVIST D" 00072 "IONIL T" 00073 "LUXIQ" 00075 "SAL-TROPINE" 00076 "TRILEPTAL" 00078 "AGGRENOX" 00080 "CARBIDOPA-LEVODOPA" 00081 "EXELON" 00085 "ORAMORPH" 00089 "PANMIST-DM" 00090 "PROMAX" 00091 "ACT" 00092 "ESTROSTEP FE" 00094 "NESTABS CBF" 00096 "OSTEO-BIFLEX" 00099 "ALOCRIL" 00100 "A.S.A." 00101 "ISOSORBIDE DINITRATE" 00102 "ISOSORBIDE MONONITRATE" 00104 "HAART" 00107 "ROSIGLITAZONE MALEATE" 00109 "URSODIOL" 00112 "MEDERMA" 00113 "ANDROGEL" 00114 "DILTIA XT" 00117 "CRANBERRY" 00122 "GATORADE" 00123 "NICOTINE" 00124 "POLY-TUSSIN" 00125 "AVELOX" 00127 "MONISTAT 3" 00129 "PROFEN II DM" 00130 "A-CAINE" 00131 "URISTAT" 00135 "A-CILLIN" 00137 "M.D. FORTE SKIN REJUVEN LOTION" 00143 "AQUATAB DM" 00144 "ESKALITH CR" 00146 "GUAIFED-PD" 00148 "PROLIXIN D" 00149 "D51/2 NS" 00150 "NICODERM CQ PATCH" 00151 "TUSSIN" 00153 "AGGRASTAT" 00154 "CHILDREN`S IBUPROFEN" 00159 "KALETRA" 00161 "BISOPROLOL" 00163 "A/T/S" 00167 "NOVOLIN N" 00168 "TRIMO-SAN" 00169 "KETOROLAC TROMETHAMINE" 00171 "METABOLIFE 356" 00172 "OPHTHALMIC OINTMENT" 00173 "ELA-MAX" 00174 "NEUROTROPHIN-1" 00175 "PEDIA-POP" 00176 "PREDNISOLONE ACETATE" 00177 "SALT WATER" 00181 "ATUSS MS" 00184 "KEPPRA" 00187 "OPHTHALMIC DROPS" 00192 "SPECTRAVITE" 00195 "TEMOZOLOMIDE" 00198 "ENOXAPARIN SODIUM" 00200 "MEPERIDINE HCL" 00202 "PENCICLOVIR" 00203 "SALINEX" 00205 "VAPONEPHRINE" 00206 "ACTONEL" 00208 "CELECOXIB" 00209 "GLUCOVANCE" 00211 "LEVALL 5.0" 00213 "PANTOPRAZOLE SODIUM" 00217 "TEMODAR" 00218 "CARBAMIDE PEROXIDE" 00219 "DYCLONINE HCL" 00221 "CHINESE HERBAL MEDS" 00223 "ACCUTANE" 00224 "MILK AND MOLASSES ENEMA" 00226 "PEDIACARE INFANTS DECONGESTA" 00230 "DYNEX" 00233 "CONCERTA" 00236 "SBE PROPHALAXIS" 00237 "VANIQA" 00238 "ZOLMITRIPTAN" 00239 "FEMHRT" 00240 "ACEPHEN" 00241 "PROVOCHOLINE" 00244 "GLUTAMINE" 00245 "ACETA" 00246 "LEUKINE" 00247 "PEGINTERFERON ALFA-2B" 00251 "VICODIN ES" 00253 "LISPRO" 00254 "CARTIA XT" 00257 "DECONSAL II" 00258 "ETHYOL" 00259 "FML" 00260 "ACETAMINOPHEN" 00263 "CMF" 00267 "LIQUID TEARS" 00268 "MOMETASONE FUROATE" 00269 "SUCCINYLCHOLINE CHLORIDE" 00272 "PREMESISRX" 00273 "PROVIGIL" 00274 "QVAR" 00278 "RHINARIS LUBRICATING NASAL GEL" 00280 "ACETAMINOPHEN W/CODEINE" 00281 "VERTEPORFIN" 00282 "VISUDYNE" 00287 "CENESTIN" 00289 "AH-CHEW" 00290 "ACETATED RINGER`S" 00292 "TEVETEN" 00293 "AMLACTIN" 00294 "CANTHACUR-PS" 00295 "ACETAZOLAMIDE" 00296 "PENLAC" 00297 "PLEXION" 00301 "HISTEX HC" 00303 "ZICAM" 00304 "ZYDERM" 00305 "ACETIC ACID" 00306 "MEDENT LD" 00307 "METADATE ER" 00311 "BUPAP" 00312 "COMBIPATCH" 00313 "DIGITEK" 00314 "DILATING DROPS" 00315 "ACETOHIST" 00317 "NICOTROL INHALER" 00318 "SARAFEM" 00320 "ACETONE" 00321 "JUICE PLUS+" 00322 "LEVLITE" 00323 "PRENATE ADVANCE" 00335 "ACETYLCHOLINE" 00338 "ACETYLCYSTEINE" 00340 "ACHROMYCIN" 00353 "ACIDIFYING AGENT" 00360 "ACID MANTLE" 00395 "ACNE" 00455 "ACTH" 00460 "ACTHAR" 00465 "ACTICORT" 00475 "ACTIFED" 00485 "ACTOL" 00486 "ACTIVASE" 00510 "ADAPIN" 00535 "ADENOSINE" 00540 "ADIPEX" 00560 "ADRENALIN" 00570 "ADRIAMYCIN" 00580 "ADRUCIL" 00595 "ADSORBOTEAR" 00597 "ADVIL" 00598 "AEROBID" 00645 "AFRIN" 00780 "ALBUTEIN" 00785 "ALCAINE" 00790 "ALCOHOL" 00810 "ALCON" 00825 "ALDACTAZIDE" 00830 "ALDACTONE" 00835 "ALDOCLOR" 00845 "ALDOMET" 00850 "ALDORIL" 00866 "ALFENTA" 00900 "ALKALINE AROMATIC" 00915 "ALKERAN" 00976 "ALLERGAN" 00979 "ALLERGINE" 00980 "ALLERGY RELIEF OR SHOTS" 01000 "ALLERPHED C EXPECTORANT" 01001 "CLARITIN D" 01002 "NEXIUM" 01003 "ANAPROX DS" 01004 "ATUSS EX" 01006 "FERRIMIN" 01007 "TIKOSYN" 01008 "ZONEGRAN" 01011 "PANCOF HC" 01012 "BUDESONIDE" 01016 "ADVIL MIGRAINE" 01017 "BACTRIM DS" 01018 "MONSEL`S SOLUTION" 01019 "NIFEDICAL XL" 01020 "OPTIVAR" 01021 "BUTORPHANOL TARTRATE" 01022 "METOPROLOL TARTRATE" 01023 "PHOSPHENYTOIN" 01024 "RABAVERT" 01026 "HUMIBID LA" 01027 "STROMECTOL" 01028 "CODEINE COUGH SYRUP" 01029 "EFFEXOR XR" 01030 "ALLOPURINOL" 01031 "REPAN" 01032 "TPA" 01034 "ADVAIR DISKUS" 01036 "GEODON" 01037 "GLUCOTROL XL" 01038 "HALDOL DECANOATE" 01041 "RABEPRAZOLE SODIUM" 01042 "REPAGLINIDE" 01044 "Z-PAK" 01046 "QUINOLONES" 01047 "IRBESARTAN" 01048 "ROFECOXIB" 01053 "AMPICILLIN AND SULBACTAM" 01055 "ORAPRED" 01056 "ACTIVELLA" 01057 "DETROL LA" 01059 "DIMETANE DX" 01062 "RHINOCORT AQUA" 01063 "TEGRETOL XR" 01064 "WELLBUTRIN SR" 01067 "ALLERX" 01068 "CENOGEN OB" 01070 "ALMORA" 01072 "TRIPTANS" 01073 "MAXALT-MLT" 01074 "THERASEAL" 01076 "STARLIX" 01077 "PROLEX" 01082 "BENZACLIN" 01083 "BIESTROGEN" 01084 "LUMIGAN" 01086 "MSM" 01087 "PROTOPIC" 01090 "ALPHA-KERI" 01092 "ATUSS G" 01093 "BOTOX" 01094 "CARDIZEM CD" 01096 "CLINDAGEL" 01098 "DEMEROL/PHEN" 01101 "ESTRIOL CREAM" 01102 "GYNAZOLE I" 01104 "LOESTRIN FE" 01106 "LUTEIN" 01108 "QUIXIN" 01110 "ALPHALIN" 01111 "TRAVATAN" 01113 "TUSSIBID" 01114 "UROQUID" 01116 "ZYVOX" 01117 "AXERT" 01119 "INDERAL LA" 01121 "LESCOL XL" 01123 "RESCULA" 01124 "ULTRACET" 01127 "CARAC" 01131 "NICOMIDE" 01141 "REMINYL" 01142 "BUCKLEY`S MIXTURE" 01144 "OLUX" 01147 "LUSTRA AF" 01148 "ALTOCO" 01153 "VAGIFEM" 01156 "MARCAINE/KENALOG" 01157 "CHROMAGEN FORTE" 01160 "D5NS" 01161 "ACCURETIC" 01166 "WELCHOL" 01167 "KRISTALOSE" 01168 "COSAMIN DS" 01169 "AGRYLIN" 01171 "AROMASIN" 01172 "CIPRIL" 01173 "D5 LR" 01174 "PROACTIVE" 01176 "GENGRAF" 01177 "MAG TAB SR" 01178 "PODOFILOX" 01182 "DERMAZINC W/ CLOBETASOL" 01189 "BIAXIN XL" 01192 "CHROMAGEN OB" 01196 "MOXIFLOXACIN" 01199 "NEOSURE" 01201 "STROVITE FORTE" 01206 "COENZYME Q10" 01207 "LITHIUM CARBONATE" 01210 "NYSTATIN W/HYDROCORTISONE" 01211 "PULMICORT RESPULES" 01212 "ESTROVAN" 01214 "LANTUS" 01216 "OXCARBAZEPINE" 01217 "BIDEX DM" 01219 "FARESTON" 01222 "NORDITROPIN" 01225 "ALUMINUM HYDROXIDE" 01228 "BECLOMETHASONE DIPROPIONATE" 01229 "PEG-INTRON" 01231 "ZEPHREX LA" 01233 "RAPAMUNE" 01234 "RITALIN-SR" 01236 "VERAPAMIL SR" 01237 "5-FLUOROURACIL" 01238 "AMIFOSTINE" 01242 "CEFAZOLIN SODIUM" 01243 "BENEDRYL ITCH RELIEF CHILDREN" 01244 "NATACHEW" 01247 "PROGESTERONE/ESTROGEN PATCH" 01248 "METERED DOSE INHALER" 01249 "METADATE CD" 01251 "PROFEN FORTE" 01255 "ALUPENT" 01256 "BENEFIX" 01259 "MILK THISTLE" 01262 "CORICIDIN HBP COUGH & COLD" 01263 "VIDEX EC" 01264 "DEPACON" 01265 "D.O.S." 01266 "INSULIN GLARGINE" 01267 "HUMALOG MIX 75/25" 01268 "LORCET PLUS" 01274 "TRIZIVIR" 01275 "ZONISAMIDE" 01278 "METROLOTION" 01281 "ADDERALL XR" 01282 "LATANOPROST" 01284 "NOREL DM" 01285 "ZOMETA" 01287 "ASP" 01288 "OXYFAST" 01290 "AMANTADINE" 01295 "AMARIL D" 01365 "AMESEC" 01375 "AMICAR" 01378 "AMIDATE" 01395 "AMIDOXINE" 01405 "AMIKACIN" 01410 "AMIKIN" 01450 "AMINOPHYLLINE" 01485 "AMINOSALICYLIC ACID ENSEAL" 01525 "AMITRIL" 01530 "AMITRIPTYLINE" 01535 "AMITRIPTYLINE HCL W/PERPHENAZINE" 01555 "AMMONIA AROMATIC ASPIROL" 01628 "AMOXAPINE" 01630 "AMOXICILLIN" 01635 "AMOXICILLIN TRIHYDRATE" 01640 "AMOXIL" 01670 "AMPHOJEL" 01678 "AMPHOTERICIN" 01685 "AMPICILLIN" 01725 "AMYTAL" 01755 "ANACIN" 01775 "ANALGESIC" 01780 "ANALGESIC BALM" 01835 "ANAPHYLATIC SHOCK DRUG KIT" 01838 "ANAPROX" 01860 "ANBESOL" 01865 "ANCEF" 01975 "ANECTINE" 01983 "ANESTHETIC" 02011 "RONDEC-DM ORAL DROPS" 02013 "BENICAR" 02014 "BEXTRA" 02016 "CLARINEX" 02018 "FOCALIN" 02019 "FORADIL AEROLIZER" 02020 "ANISE OIL" 02022 "PEDIACARE COUGH-COLD LIQUID" 02023 "SUPARTZ" 02024 "VITAMIN B & E" 02026 "YASMIN" 02027 "GLUCAGEN" 02029 "ADVICOR" 02031 "ELIDEL CREAM" 02032 "GLUCONASE" 02033 "GYNODIOL" 02034 "RESPERIN" 02036 "EXTRA STRENGTH TYLENOL" 02037 "LEVETIRACETAM" 02039 "DTAP-HIB" 02042 "DUONEB" 02044 "NATRECOR" 02046 "LAT" 02047 "AUGMENTIN ES" 02049 "PEDIATEX-D" 02054 "TRIMETHOPRIM SULFATE/POLYMYXIN B SULFAT" 02056 "XAP" 02059 "AZMACORT" 02061 "GUAIFENESIN/PSEUDOEPHEDRINE" 02062 "TRILUMA" 02063 "SCHWARTZ COCKTAIL" 02064 "INVANZ" 02065 "TNKASE" 02066 "NOTUSS" 02067 "ACTIQ" 02069 "D5 1/4 NS" 02074 "LUPRON" 02075 "ANTABUSE" 02076 "MAPAP" 02077 "MEROPENEM" 02078 "MERREM IV" 02079 "NITROGLYCERIN SUBLINGUAL" 02080 "ANTACID" 02081 "PONARIS" 02082 "MAXIDONE" 02083 "UNITHROID" 02085 "ANTACID #6" 02086 "Z-COF DM SYRUP" 02087 "SOAPSUDS ENEMA" 02091 "STAFLEX" 02092 "MUPIROCIN CALCIUM OINTMENT" 02093 "OATMEAL BATH" 02096 "GREEN COCKTAIL" 02098 "LEUSTATIN" 02099 "DEPAKOTE ER" 02102 "GATIFLOXACIN" 02104 "MAGNESIUM HYDROXIDE" 02106 "TRIAMINIC VAPOR PATCH" 02107 "ZALEPLON" 02108 "COLAZAL" 02109 "MIOCHOL-E" 02112 "DIAPER RASH" 02113 "ANTHELMINTIC AGENT" 02114 "DOUBLE ANTIBIOTIC" 02116 "ERYCIN" 02117 "PLAN B" 02119 "LEXAPRO" 02127 "BANANA BAG" 02128 "BENZONATATE" 02131 "ESOMEPRAZOLE MAGNESIUM" 02132 "LORCET-HD" 02133 "NITROGLYCERIN TRANSLINGUAL" 02136 "VISTIDE" 02137 "ZYPREXA ZYDIS" 02138 "MAALOX W/ VISCOUS LIDOCAINE" 02139 "CARBOFED DM SYRUP" 02140 "THIAMINE HCL" 02141 "HRT" 02143 "FOLTX" 02144 "ORTHO-EVRA" 02145 "REBIF" 02146 "ADOXA" 02147 "METHYLIN" 02148 "SOLARAZE" 02150 "ANTI-TUSS" 02152 "KENALOG/LIDOCAINE" 02153 "VITAMIN B12/FOLIC ACID" 02154 "ENTOCORT EC" 02156 "GLEEVEC" 02158 "ANTIBIOTIC AGENT" 02163 "K+ CARE" 02165 "ANTICOAGULANT" 02166 "ACCUHIST DM PEDIATRIC" 02167 "ACCUHIST LA" 02168 "BLACK COHOSH" 02169 "ICAR" 02173 "BORAGE OIL" 02175 "ANTILIRIUM" 02176 "ALPHA LIPOIC ACID" 02177 "CAPZASIN P" 02184 "OGESTREL 0.5/50" 02186 "ORTHO EVRA" 02187 "ALPHAGAN P" 02188 "DEXEDRINE SPANSULES" 02189 "GLUCOPHAGE XR" 02190 "ANTIPRESS" 02191 "ZYRTEC-D 12 HOUR TABLETS" 02192 "ADULAX" 02193 "HIB/HEP B" 02194 "IODOSORB" 02195 "ANTIPYRINE" 02197 "NOVASAL" 02199 "PREPARATION H OINTMENT" 02202 "PREPARATION H COOLING GEL" 02203 "ABILIFY" 02204 "BILBERRY EXTRACT" 02205 "ANTISEPTIC MOUTHWASH" 02209 "NOVOLOG" 02211 "PEDIOX" 02213 "ELIDEL" 02214 "NULEV" 02215 "ANTISEPTIC SOLUTION" 02217 "ARANESP" 02218 "TUSSI-12D S" 02222 "Z-COF LA" 02223 "ZETIA" 02225 "ANTISPASMODIC" 02226 "FROVA" 02228 "MALARONE" 02231 "ADALAT CC" 02232 "BENEFIBER" 02233 "EMERGEN-C" 02234 "TAZTIA XT" 02236 "TRIEST" 02237 "CLORPRES" 02239 "DOVE SOAP" 02242 "HISTEX SR" 02244 "CALAN SR" 02246 "CUTEMOL" 02247 "FLOXIN OTIC" 02248 "MYOBLOC" 02249 "PEPCID AC" 02250 "ANTIVERT" 02254 "ANAGRELIDE" 02256 "ESCITALOPRAM OXALATE" 02259 "NEULASTA" 02261 "VORICONAZOLE" 02262 "ALTOCOR" 02268 "RETIN-A MICRO GEL" 02271 "RITALIN LA" 02273 "LIDEX-E" 02279 "PULMICORT" 02280 "APRI" 02281 "CHICKEN POX VACCINE" 02287 "PHOSPHATE" 02292 "VENOFER" 02293 "VALCYTE" 02297 "CHEWABLE VITAMINS" 02298 "CYCLESSA" 02299 "SENNA-GEN" 02303 "REMIFEMIN" 02304 "TWINRIX" 02307 "ESTEROL ESTER-C" 02310 "ANUSOL" 02311 "PIOGLITAZONE HCL" 02314 "LORTAB ELIXIR" 02315 "ANUSOL-HC" 02316 "PAXIL CR" 02320 "APAC" 02321 "TENOFOVIR DISOPROXIL FUMARATE" 02322 "THALOMID" 02326 "CALCIUM GLUBIONATE" 02333 "ROXICODONE" 02334 "LIPRAM-CR5" 02335 "APAP" 02336 "FIBER-LAX" 02339 "SOLUMET" 02340 "APAP W/CODEINE" 02349 "LIDOCAINE W/MARCAINE" 02351 "FEMARA" 02352 "TRIHIBIT" 02353 "CALCIUM AND VITAMIN C" 02358 "PROCTOSOL" 02359 "VIREAD" 02361 "PLATELET PHERESIS" 02363 "BELPH 10" 02366 "PURALUBE" 02367 "NUVARING" 02369 "KENALOG/XYLOCAINE" 02373 "ZELNORM" 02374 "REBETOL" 02382 "PERIOSTAT" 02384 "DOC-Q-LACE" 02388 "ANDROSTENEDIONE" 02394 "NESIRITIDE" 02396 "VARICELLA VIRUS VACCINE" 02397 "PLATELET INHIBITOR" 02405 "APRESOLINE" 02470 "AQUAPHOR" 02490 "AQUASOL BODY LOTION" 02510 "AQUATENSEN" 02520 "ARALEN" 02555 "ARGININE" 02575 "ARISTOCORT" 02615 "ARISTOSPAN" 02620 "ARITHMIN" 02627 "ARMOUR THYROID" 02645 "ARTANE" 02705 "ASCORBIC ACID" 02725 "ASCRIPTIN" 02740 "ASCRIPTIN W/CODEINE" 02748 "ASENDIN" 02765 "ASMACOL" 02803 "ASPIRIN W/CODEINE" 02805 "ASPIRIN" 02850 "ASTHMACON" 02875 "ATARAX" 02900 "ATIVAN" 02910 "ATRIDINE" 02930 "ATROPHYSINE" 02940 "ATROPINE" 02980 "ATROPISOL" 02982 "ATROVENT" 02987 "AUGMENTIN 125" 02995 "AURALGAN" 03002 "AVODART" 03003 "CORTISPORIN OINTMENT" 03005 "AUREOMYCIN" 03006 "GI COCKTAIL W/DONNATAL" 03007 "HEPSERA" 03011 "GREEN LIZARD" 03012 "DEPAKOTE SPRINKLE" 03019 "REYATAZ" 03020 "AUROTO DROPS" 03021 "MOTRIN CHILDREN`S COLD SUSP" 03025 "AVALGESIC LOTION" 03026 "ZANFEL" 03028 "NITROSPRAY" 03029 "ORACIT" 03033 "PROLEX DH" 03036 "FLOLAN" 03037 "IRESSA" 03038 "PANTIDINE" 03039 "IMODIUM A-D" 03041 "OVIDE" 03042 "AMEVIVE" 03043 "CERTAGEN SENIOR TABLET" 03044 "RENAL CAPS" 03046 "NEPRO" 03048 "RELPAX" 03050 "AVEENO" 03051 "LITTLE NOSES GENTLE FORMULA" 03052 "XIRAL" 03054 "RYNATAN PEDIATRIC SUSPENSION" 03055 "AVEENO LOTION" 03056 "CITROMA" 03057 "MEGESTROL ACETATE" 03064 "DEODORIZED OPIUM TINCTURE" 03065 "AVEENO-BAR" 03067 "COX-2 INHIBITOR" 03068 "LEXAPRIL" 03070 "AVENTYL HCL" 03071 "OXYTROL" 03072 "A & D OINTMENT" 03075 "AVITENE" 03078 "PANLOR SS" 03080 "STRATTERA" 03081 "AMOXICILLIN AND CLAVULANATE POTASSIUM" 03083 "FLEET PEDIATRIC ENEMA" 03084 "SYSTANE" 03088 "TUSSI-12 D" 03089 "ATACAND HCT" 03091 "AZELASTINE HCL" 03093 "MSM W/GLUCOSAMINE" 03095 "AVP-NATAL-FA" 03099 "CILOSTAZOL" 03101 "AXID" 03102 "FOLGARD" 03104 "METROCREAM" 03105 "AVANDAMET" 03106 "ONE A DAY VITAMIN" 03107 "PROLEX D" 03108 "ZYMAR" 03109 "AUGMENTIN XR" 03113 "AYGESTIN" 03115 "AYR SALINE MIST" 03116 "URSO" 03119 "ZOLEDRONATE" 03122 "GINGER" 03123 "AZATHIOPRINE" 03127 "CARDIZEM LA" 03129 "DIPROLENE AF" 03131 "DUAC" 03132 "FINACEA" 03134 "RESTASIS" 03137 "BROVEX" 03138 "CIPRO XR" 03139 "HECTOROL" 03141 "LISINOPRIL/HCTZ" 03142 "NIFEDIPINE ER" 03148 "AVIANE" 03156 "BUPROPION SR" 03158 "MAXIFED DM" 03161 "MICROGESTIN FE" 03162 "PEGASYS" 03163 "ROSULA" 03167 "DERMAZENE" 03169 "FEVERFEW" 03172 "NEVACOR" 03176 "RECOMBINANT INTERFERON ALFA-2A" 03177 "CALCARB 600" 03178 "HYLAGEN" 03179 "PEDIARIX" 03180 "LEVITRA" 03181 "METAGLIP" 03182 "NEOPOLYDEX" 03183 "TUMS E-X" 03184 "WELLBUTRIN XL" 03185 "XANAX XR" 03187 "CRESTOR" 03188 "MUCINEX" 03189 "ORTHO-TRICYCLEN LO" 03191 "PRENATE GT" 03192 "VIGAMOX" 03194 "AVAR" 03197 "CIPRODEX" 03198 "CLENIA" 03201 "MEMANTINE" 03202 "PSEUDOVENT" 03203 "RYNA-12" 03207 "PHENYTEK" 03208 "ALAVERT" 03209 "ATAZANAVIR SULFATE" 03211 "CIALIS" 03213 "ROSANIL" 03214 "STALEVO" 03217 "DURAHIST" 03218 "DYTAN-D" 03219 "ELIGARD" 03222 "MICARDIS HCT" 03224 "TANAFED DMX" 03225 "AZULFIDINE" 03226 "ENALAPRIL MALEATE" 03227 "EVOXAC" 03228 "AVINZA" 03229 "RED YEAST RICE" 03231 "MYTUSSIN" 03234 "TERAZOL 3" 03236 "TERAZOL 7" 03239 "CLOBEX LOTION" 03241 "TESTIM" 03243 "VERELAN PM" 03245 "B & O SUPPRETTE" 03250 "B COMPLEX" 03251 "RANITIDINE HCI" 03252 "AMNESTEEM" 03253 "GREEN TEA EXTRACT" 03255 "B COMPLEX #100" 03257 "PRIMACARE" 03258 "QDALL" 03259 "R A LOTION" 03267 "INDOCIN SR" 03268 "PANMIST LA" 03269 "SEASONALE" 03271 "EPIQUIN MICRO" 03272 "METOPROLOL SUCCINATE" 03273 "NOVOLIN R" 03276 "SUBOXONE" 03277 "XYREM" 03278 "ALAMAST" 03280 "B COMPLEX W/ASCORBIC ACID & B-12-200" 03281 "ANESTACON" 03282 "CANASA" 03286 "KARIVA" 03287 "OVACE" 03288 "PANMIST JR" 03296 "IVERMECTIN" 03301 "SOLAGE" 03302 "VANAMIDE" 03303 "RESCON" 03305 "B VITAMINS W/C" 03306 "NOVALOG" 03308 "PALGIC-D" 03309 "PROVENTIL HFA" 03312 "CORAL CALCIUM DAILY" 03313 "EPIDURAL ANESTHESIA TRAY" 03318 "HEPARIN SODIUM" 03319 "TRAMADOL HCL" 03321 "TRIMETHOPRIM SULFATE" 03327 "BIMATOPROST" 03328 "ENALAPRIL/HCTZ" 03329 "FERRLECIT" 03332 "BENADRYL ALLERGY" 03352 "PROLEX PD" 03355 "B-12" 03358 "ZINC LOZENGES" 03359 "MODAFINIL" 03366 "VALDECOXIB" 03368 "LINEZOLID" 03371 "ALTEPLASE" 03374 "ISOVUE-M 300" 03385 "BAC-NEO-POLY" 03392 "TYLENOL ELIXIR" 03400 "BACIGUENT" 03403 "CREON 20" 03404 "PROLINE" 03405 "SYPRINE" 03408 "CHLORAZENE" 03409 "ELOXATIN" 03410 "BACITRACIN" 03411 "FLAX SEED" 03414 "METOMIDATE" 03419 "VIRAVAN S" 03421 "DARBEPOETIN ALFA" 03423 "BACLOFEN" 03426 "DIATX" 03427 "HUMIRA" 03430 "BACTRIM" 03432 "SULFAMETIN" 03433 "CORTANE-B" 03434 "HYOSCYAMINE" 03435 "FUZEON" 03438 "BACTROBAN" 03439 "EMEND" 03441 "AVLIMIL" 03443 "AQUACEL AG" 03485 "BALNETAR" 03518 "BANCAP HC" 03575 "BARBITAL" 03590 "BARIUM" 03675 "BC" 03685 "BCG VACCINE" 03688 "BCO" 03700 "BECLOMETHASONE" 03705 "BECLOVENT" 03709 "BECONASE" 03800 "BELLADONNA" 03805 "BELLADONNA ALKALOIDS W/PHENOBARBITAL" 03825 "BELLADONNA W/PHENOBARBITAL" 03843 "BELLASPAZ" 03845 "BELLERGAL" 03850 "BELLERGAL-S" 03900 "BEN-GAY" 03903 "BENA-D" 03905 "BENADRYL" 03950 "BENEGYN" 03970 "BENOQUIN" 03975 "BENOXINATE" 04000 "BENTYL" 04002 "CALCIUM-MAGNESIUM-ZINC SUPPLEMENT" 04011 "NAMENDA" 04014 "ARIPIPRAZOLE" 04016 "AZO CRANBERRY" 04020 "BENZAC" 04021 "BENICAR HCT" 04023 "BISOPROLOL/HCTZ" 04030 "BENZAGEL" 04031 "CERTAGEN" 04036 "MITODRINE" 04037 "LODOXAMIDE" 04038 "SNURON" 04041 "ALBUTEROL/ATROVENT" 04042 "SPIRIVA" 04043 "SYMBYAX" 04048 "RONDEC ORAL DROPS" 04051 "CYMBALTA" 04055 "DESLORATADINE" 04056 "DEVROM" 04058 "DIALYVITE" 04062 "ED-FLEX" 04063 "FERREX" 04064 "CONSTIPATION MEDICATION" 04066 "FIBER SOURCE" 04068 "XOLAIR" 04069 "FLAVOXATE HCL" 04070 "BENZOIN" 04071 "FORTEO" 04072 "NASAL SALINE" 04079 "GLYCOLAX" 04085 "BENZOYL" 04087 "ICAR-C" 04088 "BENZOYL PEROXIDE" 04095 "BENZYL" 04096 "LEMON DROPS" 04097 "LEXIVA" 04100 "BEROCCA" 04109 "KETEK" 04112 "DURAPHEN II" 04113 "FORTAMET" 04114 "VYTORIN" 04116 "ALATONE" 04117 "MULTREL" 04120 "BETADINE" 04121 "NOVAREL" 04122 "AFEDITAB CR" 04124 "CENTANY" 04131 "MEGA VM-80" 04133 "PROBIOTICA" 04138 "UROXATRAL" 04141 "ANTICHOLINERGIC" 04143 "CATAPRES-TTS-1" 04146 "EZETIMIBE" 04149 "MARTEN-TAB" 04154 "SILVER NITRATE STICK" 04156 "SPECTRACEF" 04157 "ZOXAN" 04159 "ESTRA-L" 04162 "FLUMIST" 04170 "BETAMETHASONE" 04171 "EMTRIVA" 04172 "GABA" 04173 "DURAPHEN DM" 04175 "METFORMIN HYDROCHLORIDE ER" 04189 "XIRATUSS" 04190 "BETHANECHOL" 04196 "CADUET" 04213 "COLON CLENZ" 04221 "CEREFOLIN" 04225 "BICARBONATE OF SODA" 04226 "DECONAMINE" 04235 "BICILLIN" 04238 "ELESTAT" 04240 "BICILLIN C-R" 04249 "ALOXI" 04250 "BICITRA" 04251 "EAR-GESIC" 04252 "H-C TUSSIVE" 04253 "HEMOCYTE-F" 04254 "CO-TUSS V" 04256 "HYDROCODONE GF" 04264 "ZAGAM" 04266 "GARLIC OIL" 04271 "VAZOL-D" 04273 "VOSPIRE ER" 04279 "ROSAC CREAM" 04281 "ANOREX" 04282 "ZEMPLAR" 04308 "EPIDRIN" 04311 "Q-TUSSIN" 04313 "GLIBENDAMIDE" 04314 "L-HOMOCYSTEINE THIOLACTONE" 04316 "ARIXTRA" 04331 "ST. JOSEPH ASPIRIN" 04332 "TEBOKAN" 04339 "HERBAL DRUG (UNSPECIFIED)" 04345 "BIOTIN" 04368 "CONTRACEPTIVE AGENT" 04370 "BISACODYL" 04393 "TRUVADA" 04400 "ANGIOMAX" 04401 "UTOX" 04402 "CLIOQUINOL" 04403 "NATALCARE GLOSSTABS" 04404 "PRELIEF" 04406 "ABREVA" 04407 "CAPTOPRIL/HCTZ" 04408 "CATRIX CORRECTION" 04409 "GERO VITA" 04410 "GLYTONE WASH" 04411 "HYDRANORME FACIAL SKIN CARE" 04412 "MEGA MSM" 04413 "SOTRET" 04414 "VITAMIN/FLUORIDE" 04416 "AMIBID LA" 04417 "TINEACIDE" 04418 "VITE E CREAM" 04421 "ERTAPENEM" 04422 "BABY SHAMPOO" 04423 "LETROZOLE" 04424 "TRIFLURIDINE" 04425 "BISMUTH SUBGALLATE" 04426 "KINDERCAL" 04427 "SCANDICAL" 04428 "SUDODRIN" 04429 "ZOCAL" 04432 "B-TUSS" 04436 "LEVICON" 04438 "CAYENNE" 04439 "DHS CONDITIONER" 04441 "HERBAL ADRENAL" 04442 "MIGRELIEF" 04443 "ALENOL" 04444 "GENASAL" 04446 "LYCOPENE" 04447 "TRITUSSIN COUGH" 04448 "AMMONIUM LACTATE" 04449 "BETADEX" 04451 "CANDIDA ALBICANS SKIN TEST ANTIGEN" 04452 "HYDRO-TUSSIN HC" 04454 "NASAL STEROID" 04455 "OREGANO OIL" 04456 "CLINDAMAX" 04457 "LOKARA" 04458 "TANAFED DM" 04459 "U-CORT CREAM" 04461 "KERALAC LOTION" 04462 "KERALAC NAIL GEL" 04463 "LORTUSS DM" 04464 "CHAMOMILE" 04465 "ICAR-C PLUS" 04466 "ACTIFOLATE" 04468 "CELAPRO" 04469 "CHILDREN`S BENADRYL ALLERGY FASTMELT" 04471 "FASLODEX" 04472 "GLUCOMAX" 04473 "IOPAMIDOL" 04474 "LEVALL-12" 04475 "LUSONEX" 04476 "MODIFIED CITRUS PECTIN" 04477 "N-ACETYLCYSTEINE" 04478 "BLEOMYCIN" 04479 "NORMASOL R" 04480 "BLEPH" 04481 "OPTIMAX" 04482 "OXYMAX" 04483 "ULTRA INFLAMEX" 04484 "ONE-A-DAY WITH FOLIC ACID" 04485 "BLEPHAMIDE" 04486 "VELCADE" 04487 "DUKE`S MAGIC MOUTHWASH FORMULA" 04488 "ELETRIPTAN HYDROBROMIDE" 04489 "METADATE" 04491 "SYMBICORT" 04492 "CHOP" 04493 "MAXOLON" 04494 "IMIQUIMOD" 04496 "TRIMETREXATE GLUCURONATE" 04497 "VIBRAN-C" 04498 "ALZARE" 04499 "FOLBEE" 04501 "MESNEX" 04502 "MEDENT-DM" 04503 "PEDIATEX" 04504 "ADVANCED NATALCARE" 04506 "DEXRAZOXANE" 04507 "HORSETAIL" 04508 "MIRAPHEN PSE" 04509 "MYLOTARG" 04511 "BLOCADREN" 04512 "TRINESSA" 04514 "TRISPRINTEC" 04516 "FEOGEN" 04517 "ANAMANTLE HC" 04518 "JOINT LUBE" 04519 "MAXIPHEN DM" 04521 "SUPER VITA-WOMAN" 04522 "ABSORBINE ARTHRITIS" 04523 "CALNA" 04524 "FLAVIX-XR" 04526 "NUGEL" 04527 "RENOPLEX" 04528 "TAZOBACTAM" 04529 "METHYLPREDNISOLONE SODIUM SUCCINATE" 04531 "SULBACTAM SODIUM STERILE" 04532 "SILADRYL" 04533 "IMIPENEM" 04534 "MEPROZINE" 04535 "BARIUM SULFATE" 04536 "ABX OINTMENT" 04537 "DEXFERRUM" 04538 "TALWIN NX" 04539 "THERA-PLUS" 04541 "TYLENOL INFANT`S" 04543 "HYDRO EYE" 04544 "HYDROCORTISONE VALERATE" 04546 "MYERS COCKTAIL" 04547 "VESSEL CARE" 04548 "BETAPACE AF" 04549 "ACECOL" 04551 "GEREF" 04552 "LOPERAMIDE-SIMETHICONE" 04553 "ROBITUSSIN DM INFANT" 04554 "PRESOLOL" 04556 "SEVELAMER HYDROCHLORIDE" 04557 "SOMNOTE" 04558 "CALCIUM CHANNEL BLOCKER" 04559 "APO-LEVOCARB" 04561 "RAZADYNE" 04562 "CALCIPOTRIENE" 04563 "VITA-LEA OCEAN WONDERS" 04564 "DIABETES MEDICATION" 04566 "MULTIFOL" 04567 "HELIXATE" 04568 "CHEETAH" 04569 "INNOPRAN XL" 04571 "ISTALOL" 04572 "NAPROGESIC" 04573 "PEXEVA" 04574 "BORON" 04576 "DULOXETINE" 04577 "HORSE CHESTNUT" 04578 "L-ARGININE" 04579 "OPCXTRA" 04580 "BONINE" 04581 "POLICOSANOL" 04582 "PROKARIN" 04583 "PARATHYROID HORMONE" 04584 "RESCUE REMEDY" 04585 "BONTRIL PDM" 04586 "TELITHROMYCIN" 04587 "VANA TRACE PLUS" 04588 "SAVENTARO" 04589 "TIOTROPIUM BROMIDE" 04591 "BRONCOMAR" 04592 "VIMAR" 04593 "VITEYES" 04594 "COPEGUS" 04595 "BORIC ACID" 04596 "BODY SMART" 04597 "CIMEOSIL" 04598 "GLYCONUTRIENTS" 04599 "PEDITUSS COUGH" 04601 "ELAQUIL" 04602 "MIGRATINE" 04603 "APEXICON" 04604 "JESSNERS SOLUTION" 04606 "RESTYLANE" 04607 "ERTACZO" 04608 "SODIUM HYALURONATE" 04609 "OCUWEL" 04611 "DOCETAXEL" 04612 "IRON SUCROSE" 04613 "PHENEX-1" 04614 "CRYSELLE" 04615 "FLETCHER`S CASTORIA" 04616 "SILVERAX" 04617 "ACCUNEB" 04618 "ACCUPEP HPF" 04619 "PARAFFIN" 04621 "ASTRAGALUS" 04622 "EXEMESTANE" 04623 "NICOTINE NASAL SPRAY" 04624 "PRAZIQUANTEL" 04626 "SILICONE OIL" 04627 "TRAVOPROST" 04629 "EPOTHILONE D ANALOG" 04631 "EPZICOM" 04632 "FOSAMPRENAVIR CALCIUM" 04633 "B6-PYRIDOXINE" 04634 "HEMIN" 04635 "BRASIVOL" 04636 "FEMGLIDE" 04637 "PROSHIELD" 04639 "BREEZEE MIST" 04640 "ACTISORB SILVER 220" 04641 "LIQUI-E" 04642 "OYST-CAL" 04643 "PANTHENOL" 04644 "AVACOR" 04646 "ATRA" 04647 "FTY720" 04649 "MYFORTIC" 04650 "BRETHINE" 04651 "TOURO CC" 04652 "RISEDRONATE SODIUM" 04653 "PHLEXY-10 SYSTEM" 04654 "TRACLEER" 04656 "BOSENTAN" 04658 "DOLOTIC" 04659 "GALANTAMINE" 04661 "SILACE" 04662 "ROSAVASTATIN CALCIUM" 04663 "TOCAINIDE" 04664 "MIRENA" 04666 "ANEFRIN NASAL SPRAY" 04667 "BUTENAFINE HYDROCHLORIDE" 04671 "BOVINE WHEY PROTEIN CONCENTRATE" 04672 "ETHEZYME" 04673 "LOPINAVIR" 04674 "NATEGLINIDE" 04675 "AMINOGLYCOSIDES" 04678 "RENAPHRO" 04679 "STATINS" 04680 "MAGNOX" 04681 "PANNAZ S" 04682 "UTIRA" 04683 "NARATRIPTAN HYDROCHLORIDE" 04684 "S-ADENOSYL-L-METHIONINE" 04685 "SANCURA" 04686 "RESPI-TANN" 04803 "BROMFED" 04808 "BROMOCRIPTINE" 04845 "BROMPHENIRAMINE" 04873 "BRONCHODILATOR" 04950 "BSS" 05010 "BUFFERIN" 05024 "BUMEX" 05035 "BUPIVACAINE" 05043 "BURN OINTMENT" 05055 "BUROW`S SOLUTION" 05070 "BUTABARBITAL" 05085 "BUTAL" 05095 "BUTALBITAL" 05155 "BUTYN" 05175 "C.V.P." 05200 "C-RON" 05250 "CAFERGOT" 05265 "CAFFEINE" 05310 "CALADRYL" 05320 "CALAMINE" 05335 "CALAMINE LOTION" 05347 "CALAN" 05393 "CALCITONIN" 05394 "CALCITREL" 05395 "CALCIUM ACETATE" 05405 "CALCIUM CARBONATE" 05415 "CALCIUM" 05418 "CALCIUM CHLORIDE" 05430 "CALCIUM GLUCONATE" 05435 "CALCIUM GLUCONATE W/VITAMIN D" 05465 "CALCIUM-D" 05505 "CALINATE-FA" 05541 "CALTRATE W/VITAMIN D" 05550 "CAMA" 05595 "CANTHARIDIN" 05598 "CANTHARONE" 05630 "CAPEX" 05645 "CAPITROL" 05648 "CAPOTEN" 05663 "CARAFATE" 05675 "CARBACHOL" 05680 "CARBAMAZEPINE" 05710 "CARBON DIOXIDE" 05750 "CARDEC-DM" 05755 "CARDEC-S SYRUP" 05788 "CARDIOVASCULAR AGENT" 05789 "CARDIZEM" 05810 "CARISOPRODOL" 05820 "CARMOL" 05825 "CARMOL-HC" 05860 "CASCARA" 05870 "CASCARA SAGRADA" 05885 "CASTOR OIL" 05895 "CATAPRES" 05955 "CECLOR" 05983 "CEFADROXIL" 05993 "CEFTIN" 05995 "CEFAZOLIN" 06005 "CELESTONE" 06015 "CELESTONE SOLUSPAN" 06100 "CENTRUM" 06110 "CEPACOL" 06125 "CEPHALEXIN" 06128 "CEPHALOSPORINS" 06130 "CEPHALOTHIN" 06160 "CEROSE" 06170 "CERUMENEX" 06180 "CETACAINE" 06210 "CETAPHIL" 06260 "CHARCOAL" 06270 "CHARCODATE" 06294 "CHEMOTHERAPY" 06374 "CHILDREN`S TYLENOL" 06400 "CHLOR-TRIMETON" 06440 "CHLORAL HYDRATE" 06470 "CHLORASEPTIC" 06475 "CHLORASEPTIC CHILDREN`S" 06495 "CHLORDIAZEPOXIDE" 06505 "CHLORESIUM" 06510 "CHLOROBUTANOL" 06525 "CHLOROFORM" 06590 "CHLOROTHIAZIDE" 06605 "CHLORPHENIRAMINE" 06620 "CHLORPROMAZINE" 06625 "CHLORPROPAMIDE" 06645 "CHLORTHALIDONE" 06705 "CHOLESTEROL" 06780 "CHROMAGEN" 06798 "CHROMIUM" 06800 "CHRONULAC SYRUP" 06815 "CIMETIDINE" 06838 "CINOBAC PULVULE" 06839 "CIPRO" 06860 "CITRATE OF MAGNESIA" 06883 "CLAFORAN" 06900 "CLEARASIL" 06905 "CLEOCIN" 06913 "CLEOCIN T" 06920 "CLINDAMYCIN" 06925 "CLINDAMYCIN (PHOSPHATE)" 06935 "CLINORIL" 06968 "CLODERM" 06975 "CLOMID" 06980 "CLONAZEPAM" 06985 "CLONIDINE" 06990 "CLONOPIN" 06993 "CLORAZEPATE" 07003 "CLOTRIMAZOLE" 07005 "CLOVE OIL" 07020 "CLUSIVOL" 07067 "CO-TRIMOXAZOLE" 07075 "COAL TAR" 07110 "COCAINE" 07140 "COCOA BUTTER" 07145 "COCONUT OIL" 07150 "COD LIVER OIL" 07180 "CODEINE" 07190 "CODEINE SULFATE" 07195 "CODIMAL" 07200 "CODIMAL DH SYRUP" 07245 "CODYLAX" 07250 "COGENTIN" 07265 "COLACE" 07275 "COLCHICINE" 07285 "COLD CAPSULE" 07293 "COLD RELIEF" 07305 "COLD TABLETS" 07313 "COLDRINE" 07315 "COLESTID" 07320 "COLLAGENASE ABC" 07345 "COLOGEL" 07430 "COMBID" 07470 "COMPAZINE" 07478 "COMPOUND W" 07500 "CONCEPTROL" 07543 "CONJUGATED ESTROGENS" 07660 "CORDRAN" 07670 "CORGARD" 07680 "CORICIDIN" 07740 "CORRECTOL" 07755 "CORTAID" 07760 "CORTEF" 07770 "CORTENEMA" 07778 "CORTICOTROPIN" 07793 "CORTISOL" 07795 "CORTISONE" 07800 "CORTISPORIN OPHTHALMIC SOLUTION" 07815 "CORTROPHIN" 07820 "CORTROSYN" 07875 "COTAZYM" 07913 "COUGH FORMULA" 07915 "COUGH SILENCERS" 07920 "COUGH SYRUP" 07930 "COUMADIN" 07997 "CREON" 08015 "CROMOLYN" 08020 "CRUEX" 08080 "CYANO" 08090 "CYANOCOBALAMIN" 08135 "CYCLOCORT" 08140 "CYCLOGYL" 08145 "CYCLOMYDRIL" 08150 "CYCLOPAR" 08153 "CYCLOPHOSPHAMIDE" 08175 "CYLERT" 08180 "CYPROHEPTADINE" 08205 "CYSTOSPAZ" 08218 "CYTARABINE" 08230 "CYTOMEL" 08245 "CYTOXAN" 08270 "D.H.E. 45" 08280 "D.S.S." 08300 "D-S-S PLUS" 08335 "D-5" 08340 "D-50" 08342 "DACARBAZINE" 08345 "DACRIOSE" 08350 "DAILY MULTIPLE VITAMIN" 08385 "DALLERGY" 08390 "DALMANE" 08400 "DANAZOL" 08405 "DANEX SHAMPOO" 08410 "DANOCRINE" 08420 "DANTRIUM" 08425 "DANTROLENE" 08440 "DAPSONE" 08450 "DARAPRIM" 08470 "DARVOCET-N" 08475 "DARVON" 08490 "DARVON-N" 08535 "DDAVP" 08565 "DEBROX" 08570 "DECA-DURABOLIN" 08580 "DECADROL" 08585 "DECADRON" 08590 "DECADRON ELIXIR" 08605 "DECADRON-LA" 08640 "DECLOMYCIN" 08660 "DECONAMINE CX LIQUID" 08668 "DECONGEST DH" 08670 "DECONGESTANT" 08685 "DECONGESTANT EXPECTORANT" 08730 "DELATESTRYL" 08745 "DELESTROGEN" 08753 "DELSYM" 08770 "DELTASONE" 08800 "DEMSER" 08805 "DEMULEN" 08823 "DENOREX" 08835 "DEPAKENE" 08836 "DEPAKOTE" 08855 "DEPO PRED" 08860 "DEPO-ESTRADIOL" 08865 "DEPO-MEDROL" 08870 "DEPO-PROVERA" 08880 "DEPO-TESTOSTERONE" 08905 "DEPROL" 08965 "DERMAREX" 08985 "DERMOLATE" 09015 "DESFERAL" 09020 "DESIPRAMINE" 09025 "DESITIN" 09030 "DESO-CREME" 09033 "DESOWEN" 09040 "DESOXYN" 09070 "DEXACEN" 09075 "DEXAMETHASONE" 09120 "DEXEDRINE" 09145 "DEXSONE" 09170 "DEXTROAMPHETAMINE" 09173 "DEXTROMETHORPHAN COUGH" 09175 "DEXTROSE" 09193 "DHS SHAMPOO" 09194 "DHT" 09305 "DIAMOX" 09310 "DIAMULSIN IMPROVED" 09335 "DIAPID" 09350 "DIASONE SODIUM ENTERAB" 09365 "DIATRIZOATE" 09370 "DIAZEPAM" 09373 "DIAZOXIDE" 09380 "DIBENT PB" 09390 "DIBUCAINE" 09400 "DICAL-D W/IRON" 09433 "DICLOXACILLIN" 09455 "DICYCLOMINE" 09470 "DIDRONEL" 09495 "DIETHYLPROPION" 09500 "DIETHYLSTILBESTROL" 09520 "DIGESTOZYME" 09535 "DIGITALIS" 09545 "DIGOXIN" 09550 "DIHISTINE" 09585 "DILANTIN" 09593 "DILATRATE" 09595 "DILAUDID COUGH SYRUP" 09600 "DILAUDID" 09605 "DILAX" 09610 "DILIN" 09620 "DILOCOL" 09660 "DIMETANE" 09690 "DIMETAPP" 09697 "DIMOTAL" 09730 "DIOCTYL SODIUM SULFOSUCC W/CASANTHRANOL" 09765 "DIONEX" 09800 "DIOTHRON" 09815 "DIPH TET TOXIODS" 09820 "DIPH TET TOXOIDS PERTUSSIS" 09850 "DIPHENHYDRAMINE" 09855 "DIPHENHYDRAMINE HCL COUGH SYRUP" 09860 "DIPHENHYDRAMINE HCL ELIXIR" 09870 "DIPHENHYDRAMINE HCL SYRUP" 09875 "DIPHENHYDRAMINE HCL 22 GA" 09880 "DIPHENOXYLATE HCL & ATROPINE SULFATE" 09900 "DIPHTHERIA TETANUS TOXOIDS" 09905 "DIPHTHERIA TOXOID ADULT" 09915 "DIPROSONE" 09920 "DIPYRIDAMOLE" 09925 "DISALCID" 09943 "DISODAN" 09990 "DIPHTHERIA TETNUS TOXOIDS PERTUSSIS" 09993 "DIPHTHERIA TOXOID" 09995 "DITROPAN", add; label define meds 10020 "DIURETIC" 10025 "DIURIL" 10055 "DOBUTREX" 10087 "DOCUSATE" 10089 "DOCUSATE CALCIUM" 10100 "DOKTORS NOSE DROPS" 10126 "DOLOBID" 10130 "DOLOPHINE" 10145 "DOMEBORO" 10150 "DOMEBORO OTIC" 10180 "DONATUSSIN" 10183 "DONATUSSIN DC" 10200 "DONNAGEL" 10210 "DONNATAL" 10225 "DOPAMINE" 10275 "DOSS 300" 10325 "DOXEPIN" 10330 "DOXIDAN" 10343 "DOXY-CAPS" 10355 "DOXYCYCLINE" 10358 "DOXYLAMINE B-6" 10380 "DRAMAMINE" 10475 "DRISTAN ROOM VAPORIZER" 10485 "DRIXORAL" 10500 "DROPERIDOL" 10518 "DRYSOL" 10525 "DSS" 10535 "DTIC" 10575 "DULCOLAX" 10630 "DUOFILM" 10690 "DUPHRENE" 10705 "DURACILLIN" 10743 "DURAMORPH" 10758 "DURASIL" 10800 "DURICEF" 10805 "DUVOID" 10815 "DYAZIDE" 10845 "DYNAPEN" 10860 "DYPHYLLINE" 10865 "DYRENIUM" 10875 "E.E.S." 10905 "E-MYCIN" 10918 "E-VISTA" 10925 "EAR DROPS" 10948 "EASPRIN" 10970 "ECONOPRED" 10975 "ECOTRIN" 10995 "EFEDRON" 11025 "EFUDEX" 11065 "ELAVIL" 11120 "ELDOQUIN" 11130 "ELECTROLYTE" 11152 "ELOCON" 11190 "EMETROL" 11340 "ENDURON" 11355 "ENFAMIL" 11360 "ENFAMIL W/IRON" 11375 "ENO" 11390 "ENSURE" 11395 "ENTEX" 11405 "ENTUSS" 11433 "ENZYME" 11450 "EPHEDRINE" 11480 "EPHEDRINE SULFATE" 11507 "EPI-C" 11540 "EPINEPHRINE" 11548 "EPIPEN" 11575 "EPSOM SALT" 11580 "EQUAGESIC" 11615 "ERGOCALCIFEROL" 11616 "ERGOLOID MESYLATES" 11645 "ERGOTRATE" 11651 "ERYC" 11657 "ERYPED" 11658 "ERY-TAB" 11660 "ERYTHROCIN" 11665 "ERYTHROMYCIN" 11667 "ERYTHRO-RX" 11668 "ERYTHROMYCIN OPHTHALMIC" 11669 "ERYTHROMYCIN W/SULFISOXAZOLE" 11675 "ESEMGESIC" 11688 "ESGIC" 11690 "ESIDRIX" 11700 "ESKALITH" 11715 "ESTAR" 11725 "ESTINYL" 11740 "ESTRACE" 11745 "ESTRADIOL" 11760 "ESTRATAB" 11765 "ESTRATEST" 11775 "ESTRO CYP" 11800 "ESTROGEN" 11850 "ETHAMBUTOL" 11915 "ETHYL CHLORIDE" 11920 "ETRAFON" 11945 "EUCERIN" 12025 "EX-LAX" 12035 "EXCEDRIN" 12055 "EXTENDRYL" 12078 "EYE PREPARATION" 12085 "EYE-STREAM" 12140 "FASTIN" 12193 "FELDENE" 12205 "FEMGUARD" 12225 "FEMIRON" 12255 "FEOSOL" 12285 "FER-IN-SOL" 12300 "FERGON" 12365 "FERRALET" 12400 "FERRITRINSIC" 12415 "FERRO-SEQUEL" 12450 "FERRONEX" 12465 "FERROUS FUMARATE" 12480 "FERROUS GLUCONATE" 12490 "FERROUS SULFATE" 12495 "FERROUS SULFATE W/BREWER`S YEAST" 12510 "FESTAL" 12521 "FIBERCON" 12550 "FIORINAL" 12555 "FIORINAL NO. 1" 12565 "FIORINAL NO. 3" 12570 "FIORINAL W/CODEINE" 12585 "FLAGYL" 12600 "FLEET BAGENEMA" 12615 "FLEET BISACODYL" 12620 "FLEET ENEMA" 12635 "FLEXERIL" 12650 "FLEXON" 12663 "FLORICAL" 12665 "FLORINEF ACETATE" 12670 "FLORONE" 12675 "FLOROPRYL" 12690 "FLUOCINOLONE" 12710 "FLUOR-I-STRIP" 12715 "FLUORESCEIN" 12735 "FLUORIDE" 12763 "FLUOROMETHOLONE" 12770 "FLUOROURACIL" 12780 "FLUPHENAZINE" 12795 "FLURA-PREN" 12810 "FLURAZEPAM" 12815 "FLURESS" 12820 "FLURO-ETHYL SPRAY" 12830 "FLUZONE" 12847 "FML FORTE OPHTHALMIC" 12865 "FOLIC ACID" 12878 "FOLTRIN" 12880 "FOLVITE" 12893 "FORANE ANESTHETIC" 12920 "FORMALIN" 12967 "FORTAZ" 13030 "FUDR" 13045 "FULVICIN" 13100 "FURACIN" 13105 "FURADANTIN" 13118 "FUROSEMIDE" 13120 "FUROXONE" 13200 "GANTRISIN" 13205 "GARAMYCIN" 13208 "GARGLE" 13209 "GASTRIC AGENT" 13215 "GASTROGRAFIN" 13220 "GAVISCON" 13275 "GELFOAM" 13310 "GENOPTIC" 13320 "GENTAMICIN" 13325 "GENTIAN VIOLET" 13330 "GENTLAX" 13350 "GEOCILLIN" 13355 "GEOPEN" 13455 "GERITOL" 13530 "GLAUCON" 13535 "GLUCAGON" 13540 "GLUCOLA" 13550 "GLUCOSE" 13553 "GLUCOTROL" 13555 "GLUCOVITE" 13585 "GLUTOL" 13595 "GLY-OXIDE" 13605 "GLYCATE" 13610 "GLYCERIN (FLAVORED)" 13615 "GLYCEROL" 13655 "GLYCOPYRROLATE" 13735 "GLYROL" 13775 "GRANULEX" 13785 "GRIFULVIN" 13790 "GRIS-PEG" 13800 "GRISEOFULVIN" 13818 "GUAIFED" 13830 "GUAIFENESIN & DEXTROMETHORPHAN HBR" 13835 "GUAIFENESIN" 13838 "GUAIFENESIN W/CODEINE" 13885 "GUIATUSSIN" 13930 "GYNE-LOTRIMIN" 13980 "H-H" 13999 "HALCION" 14000 "HALDOL" 14035 "HALOG" 14040 "HALOPERIDOL" 14045 "HALOTESTIN" 14055 "HALOTHANE" 14080 "HC" 14085 "HCV" 14090 "HEAD & SHOULDERS" 14091 "HEALON" 14195 "HEMORRHOIDAL SUPPOSITORY" 14217 "HEP-FLUSH" 14225 "HEP-LOCK" 14240 "HEPARIN" 14245 "HEPARIN LOCK FLUSH SOLUTION" 14275 "HEPRON" 14293 "HESPAN" 14305 "HETRAZAN" 14320 "HEXACHLOROPHENE" 14345 "HEXADROL ELIXIR" 14415 "HIBICLENS" 14440 "HIPREX" 14475 "HISTA-VADRIN" 14540 "HISTAMINE PHOSPHATE" 14580 "HISTEX" 14645 "HOMATROPINE" 14675 "HORMOGEN R-A" 14683 "HORMONE" 14700 "HOUSE DUST CONCENTRATE BULK TREATMENT" 14713 "HUMAN CHORIONIC GONADOTROPIN" 14714 "HUMATE-P" 14717 "HUMATROPE" 14727 "HUMULIN" 14730 "HURRICAINE" 14770 "HYCODAN" 14805 "HYCOTUSS" 14820 "HYDERGINE" 14840 "HYDRALAZINE" 14850 "HYDRALAZINE THIAZIDE" 14860 "HYDRAMINE" 14875 "HYDREA" 14895 "HYDRO-CHLOR" 14903 "HYDROCORT" 14920 "HYDROCHLORIC ACID" 14930 "HYDROCHLOROTHIAZIDE" 14935 "HYDROCHLOROTHIAZIDE W/RESERPINE" 14945 "HYDROCIL" 14953 "HYDROCO" 14955 "HYDROCODONE" 14960 "HYDROCODONE PA SYRUP" 14965 "HYDROCORTISONE" 14970 "HYDROCORTISONE IODOCHLORHYDROXYQUIN" 14980 "HYDROCORTONE" 14985 "HYDRODIURIL" 14990 "HYDROGEN PEROXIDE" 15005 "HYDROMORPHONE" 15040 "HYDROQUINONE" 15055 "HYDROTENSIN" 15058 "HYDROXACEN" 15065 "HYDROXY-PROGESTERONE" 15070 "HYDROXYCHLOROQUINE" 15090 "HYDROXYUREA" 15100 "HYDROXYZINE" 15105 "HYDROXYZINE PAMOATE" 15115 "HYGROTON" 15138 "HYLOREL" 15165 "HYPAQUE" 15190 "HYPER-TET" 15240 "HYPOTEARS" 15243 "HYPOTENSIVE AGENT" 15305 "HYTONE" 15307 "HYTRIN" 15320 "HYZINE" 15345 "I-RON" 15360 "I-10-W" 15375 "IBERET-FOLIC-500" 15390 "IBEROL-F" 15395 "IBUPROFEN" 15495 "ILOTYCIN" 15508 "IMOGAM RABIES" 15510 "IMAVATE" 15520 "IMIPRAMINE" 15535 "IMMUGLOBIN" 15540 "IMMUNE SERUM GLOBULIN" 15545 "IMODIUM" 15548 "IMOVAX RABIES" 15555 "IMURAN" 15560 "INAPSINE" 15575 "INDERAL" 15580 "INDERIDE" 15585 "INDIGO CARMINE" 15590 "INDOCIN" 15600 "INDOMETHACIN" 15615 "INFLAMASE" 15630 "INH" 15653 "INOCOR" 15655 "INOSITOL" 15665 "INPERSOL" 15678 "INSULATARD NPH" 15680 "INSULIN" 15685 "INTAL" 15710 "INULIN" 15730 "IODINE" 15780 "IONAMIN" 15805 "IOPIDINE" 15810 "IPECAC" 15870 "IRON PREPARATION" 15873 "IRON PEDIATRIC" 15875 "IRON DEXTRAN" 15930 "ISO-BID" 15960 "ISODINE" 15990 "ISONIAZID" 15995 "ISONICOTINIC ACID" 16003 "ISOPHANE INSULIN SUSPENSION" 16005 "ISOPHRIN" 16025 "ISOPROTERENOL" 16045 "ISOPTO CARPINE" 16095 "ISORDIL" 16105 "ISOSORBIDE" 16110 "ISOTRATE" 16120 "ISTRIAN NUTGALLS, BENZOCINE, ZINC OXIDE" 16195 "K-C" 16210 "K-LOR" 16245 "K-PHOS" 16255 "K-PHOS NEUTRAL" 16268 "K-TAB" 16270 "K-Y STERILE LUBRICATING JELLY" 16340 "KAOLIN & PECTIN" 16365 "KAOPECTATE" 16440 "KAY CIEL" 16455 "KAYEXALATE" 16472 "KEFLET" 16475 "KEFLEX" 16480 "KEFLIN" 16485 "KEFZOL" 16490 "KELEX" 16505 "KENALOG" 16520 "KERALYT" 16590 "KETAMINE" 16605 "KETOSTIX" 16635 "KIE" 16650 "KLARON" 16710 "KLOR-CON" 16728 "KLOTRIX" 16745 "KOLDEZE" 16785 "KONDREMUL" 16800 "KONSYL" 16825 "KOROSTATIN" 16870 "KWELL" 16895 "L-THYROXINE" 16915 "LACRI-LUBE" 16920 "LACRIL" 16925 "LACT-AID" 16935 "LACTATED RINGER`S (HARTMANN`S)" 16940 "LACTIC ACID" 16950 "LACTINEX" 16970 "LACTOSE" 16975 "LACTULOSE" 17020 "LANATOSIDE" 17070 "LANOLIN" 17105 "LANORINAL" 17113 "LANOXICAPS" 17115 "LANOXIN" 17165 "LASIX" 17220 "LAX-HERB" 17243 "LAXATIVE" 17255 "LEAD & OPIUM WASH LOTION" 17265 "LECITHIN" 17304 "LENTE INSULIN SUSPENSION" 17320 "LEUCOVORIN" 17322 "LEUKOVORIN CALCIUM" 17325 "LEUKERAN" 17345 "LEVODOPA" 17355 "LEVOPHED" 17365 "LEVOTHROID" 17370 "LEVOTHYROXINE" 17375 "LEVSIN" 17390 "LEVSINEX" 17410 "LEXOR" 17440 "LIBRAX" 17450 "LIBRIUM" 17465 "LIDA-MANTLE" 17470 "LIDA-MANTLE-HC" 17475 "LIDEX" 17485 "LIDOCAINE" 17490 "LIDOCAINE HCL" 17495 "LIDOCAINE HCL W/EPINEPHRINE" 17500 "LIDOJECT" 17530 "LIMBITROL" 17540 "LINCOCIN" 17545 "LINCOMYCIN" 17548 "LINDANE" 17560 "LIORESAL" 17563 "LIOTHYRONINE SODIUM" 17633 "LIPOTROL" 17705 "LISTERINE" 17715 "LITHIUM" 17725 "LITHOBID" 17750 "LIVER EXTRACT" 17825 "LO/OVRAL" 17833 "LOCAL ANESTHETIC" 17834 "LOCOID" 17838 "LODRANE" 17840 "LOESTRIN" 17855 "LOFLO" 17865 "LOMOTIL" 17875 "LONITEN" 17878 "LONOX" 17880 "LOPERAMIDE" 17883 "LOPID" 17885 "LOPRESSOR" 17888 "LORAZEPAM" 17889 "LOPURIN" 17905 "LOROXIDE" 17925 "LOTRIMIN" 17940 "LOXAPINE" 17945 "LOXITANE" 17970 "LUBRICATING JELLY" 17975 "LUBRIDERM" 18000 "LUFYLLIN-GG" 18010 "LUGOL`S SOLUTION" 18020 "LURIDE DROPS" 18050 "LYSINE" 18080 "M.V.I." 18100 "M-M-R" 18125 "MAALOX" 18130 "MACRODANTIN" 18195 "MAGNESIUM CITRATE" 18200 "MAGNESIUM GLUCONATE" 18205 "MAGNESIUM OXIDE" 18215 "MAGNESIUM SULFATE" 18295 "MALTSUPEX" 18315 "MANDELAMINE" 18338 "MANGATRACE" 18345 "MANNITOL" 18395 "MARCAINE" 18400 "MARCAINE HCL W/EPINEPHRN" 18410 "MARFLEX" 18455 "MASSE" 18480 "MATERNA" 18498 "MAXAIR" 18515 "MAXIDEX" 18520 "MAXITROL" 18523 "MAXZIDE" 18540 "MEASLES VIRUS VACCINE" 18552 "MEBENDAZOLE" 18555 "MECLIZINE" 18556 "MECLOFENAMATE SODIUM" 18558 "MECLOMEN" 18640 "MEDROL" 18643 "MEDROXYPROGESTERONE" 18645 "MEFOXIN" 18655 "MEGACE" 18663 "MEGESTROL" 18664 "MELANEX" 18665 "MELFIAT" 18670 "MELLARIL" 18685 "MELPHALAN" 18690 "MENADIONE" 18695 "MENEST" 18720 "MENOMUNE" 18745 "MENTHOL" 18755 "MEPERGAN" 18760 "MEPERIDINE" 18775 "MEPHYTON" 18818 "MERCAPTOMERIN" 18820 "MERCAPTOPURINE" 18920 "MESTINON" 18930 "METAMUCIL" 18940 "METAPREL" 18945 "METAPROTERENOL" 18965 "METH" 18980 "METHACHOLINE" 18985 "METHADONE" 19025 "METHAZOLAMIDE" 19035 "METHENAMINE" 19045 "METHERGINE" 19070 "METHOCARBAMOL" 19075 "METHOCARBAMOL W/ASA" 19080 "METHOCARBAMOL W/ASPIRIN" 19090 "METHOTREXATE" 19118 "METHYCLOTHIAZIDE" 19120 "METHYL ALCOHOL" 19155 "METHYLDOPA" 19165 "METHYLONE" 19175 "METHYLPHENIDATE" 19178 "METHYLPRED-40" 19180 "METHYLPREDNISOLONE" 19208 "METOCLOPRAMIDE" 19210 "METOLAZONE" 19218 "METOPROLOL" 19231 "METRO" 19233 "METRONIDAZOLE" 19242 "MEVACOR" 19255 "MEXATE" 19280 "MICATIN" 19290 "MICONAZOLE" 19320 "MICRONOR" 19343 "MIDAMOR" 19350 "MIDOL" 19355 "MIDRAN DECONGESTANT" 19360 "MIDRIN" 19375 "MILK OF MAGNESIA" 19395 "MILKINOL" 19445 "MINERAL OIL" 19455 "MINIPRESS" 19460 "MINOCIN" 19465 "MINOCYCLINE" 19478 "MINOXIDIL" 19510 "MIRADON" 19575 "MOBAN" 19590 "MOBISYL" 19595 "MODANE" 19618 "MODURETIC" 19635 "MICONAZOLE NITRATE" 19640 "MONISTAT 7" 19650 "MORPHINE" 19655 "MORPHINE & ATROPINE" 19670 "MOTIC SOLUTION" 19675 "MOTRIN" 19680 "MOUTHWASH" 19699 "MS CONTIN" 19705 "MUCI LAX" 19715 "MUCOMYST" 19755 "MULTI-B-PLEX" 19765 "MULTI-HEMA" 19780 "MULTI-VI-FLOR DROPS" 19785 "MULTI-VITAMIN" 19790 "MULTI-VITES" 19815 "MULTIPLE VITAMIN" 19825 "MULTIPLE VITAMINS" 19830 "MULTIPLE VITAMINS W/IRON" 19835 "MULTIPLE VITAMINS W/MINERALS" 19840 "MULTIVITAMIN" 19850 "MULTIVITAMIN FORMULA" 19853 "MULTIVITAMIN/FLUORIDE" 19855 "MULTIVITAMIN THERAPEUTIC" 19865 "MULTIVITAMIN/MULTIMINERAL" 19870 "MULTIVITAMINS & MINERALS" 19905 "MUMPS VIRUS VACCINE LIVE" 19925 "MURINE" 19948 "MUSCLE RELAXANT" 19985 "MY-CORT #2" 20000 "MYAMBUTOL" 20010 "MYCELEX" 20035 "MYCITRACIN" 20055 "MYCOLOG" 20060 "MYCOSTATIN" 20065 "MYDFRIN" 20075 "MYDRIACYL" 20078 "MYDRIATIC AGENT" 20080 "MYLANTA" 20090 "MYLERAN" 20095 "MYLICON" 20135 "MYSOLINE" 20153 "MYTREX" 20175 "NAFCILLIN" 20185 "NAFTIN" 20220 "NAMIDE" 20255 "NAPHAZOLINE" 20260 "NAPHCON" 20270 "NAPHCON-A" 20285 "NAPROSYN" 20290 "NAPROXEN" 20310 "NARCAN" 20313 "NARCOTIC ANTAGONIST" 20315 "NARDIL" 20338 "NASALIDE" 20380 "NATACYN" 20390 "NATALINS" 20435 "NAVANE" 20455 "NEBCIN" 20505 "NEMBUTAL" 20580 "NEO-POLYCIN" 20583 "NEO-RX" 20595 "NEO-SYNEPHRINE" 20655 "NEODECADRON" 20690 "NEOMYCIN" 20693 "NEOMYCIN-POLYMYXIN B" 20730 "NEOSPORIN" 20735 "NEOSTIGMINE" 20798 "NEPHROCAPS" 20805 "NEPTAZANE" 20815 "NESACAINE" 20818 "NETROMYCIN" 20820 "NEUROSIN" 20835 "NEUTRA-PHOS" 20855 "NEUTROGENA" 20870 "NI-SPAN" 20885 "NIACIN" 20890 "NIACINAMIDE" 20980 "NICOTINIC ACID" 21010 "NIFEREX" 21035 "NIGROIDS" 21090 "NIPRIDE" 21110 "NITREX" 21125 "NITRO T.D." 21130 "NITRO-BID" 21143 "NITRO-DUR" 21144 "NITRODISC" 21145 "NITROFURANTOIN" 21150 "NITROFURAZONE" 21160 "NITROGLYCERIN" 21165 "NITROGLYN" 21170 "NITROL" 21176 "NITROLINGUAL" 21180 "NITROSPAN" 21185 "NITROSTAT" 21195 "NITROUS OXIDE" 21203 "NIZORAL" 21225 "NOLVADEX" 21228 "NORDETTE" 21245 "NOR-Q.D." 21280 "NORFLEX" 21290 "NORGESIC" 21373 "NORMODYNE" 21380 "NORMOSOL" 21385 "NOROXIN" 21390 "NORPACE" 21400 "NORPRAMIN" 21403 "NORTRIPTYLINE" 21405 "NOSE DROPS" 21440 "NOVAHISTINE" 21494 "NOVANTRONE" 21500 "NOVOCAIN" 21513 "NTG" 21515 "NTZ" 21530 "NU-IRON" 21550 "NUBAIN" 21585 "NUPERCAINAL" 21605 "NUTRACORT" 21620 "NUTRAMIGEN" 21670 "NYQUIL LIQUI-CAPS" 21695 "NYSTATIN" 21701 "NYSTATIN W/TRIAMCINOLONE" 21750 "OCEAN MIST" 21754 "OCUFEN" 21765 "OGEN" 21785 "OLIVE OIL" 21845 "OPHTHETIC" 21860 "OPIUM" 21925 "ORABASE" 21958 "ORAP" 21995 "ORETIC" 22015 "ORGANIDIN" 22065 "ORPHENADRINE" 22090 "ORTHO-NOVUM" 22110 "OS-CAL" 22120 "OS-CAL 500" 22125 "OS-CAL-FORTE" 22150 "OSTEOLATE" 22160 "OTIC DROPS" 22210 "OVCON" 22215 "OVRAL" 22220 "OVRETTE" 22230 "OX BILE EXTRACT" 22233 "OXACILLIN" 22242 "OXAZEPAM" 22270 "OXSORALEN" 22287 "OXYBUTYNIN CHLORIDE" 22303 "OXYCODONE HCL" 22305 "OXYCODONE HCL & ACETAMINOPHEN" 22306 "OXYCODONE W/APAP" 22315 "OXYGEN" 22323 "OXYMETAZOLINE HCL" 22345 "OXYTOCIN" 22348 "OYSCO 500" 22405 "P&S" 22435 "P-V TUSSIN SYRUP" 22520 "PAMELOR" 22530 "PAMPRIM" 22578 "PANADOL" 22585 "PANAFIL" 22630 "PANCREASE" 22640 "PANCREATIN" 22643 "PANCRELIPASE" 22644 "PANCURONIUM BROMIDE" 22645 "PANEX" 22650 "PANGYN" 22675 "PANOXYL" 22715 "PANTOPAQUE" 22770 "PAPAVERINE" 22810 "PARAFON FORTE" 22833 "PARAZONE" 22845 "PAREGORIC" 22875 "PARLODEL" 22885 "PARNATE" 22945 "PAVABID" 23005 "PAVULON" 23030 "PBZ W/CODEINE & EPHEDRINE EXPECTORANT" 23115 "PEDIAFLOR DROPS" 23120 "PEDIALYTE" 23135 "PEDIATRIC COUGH SYRUP" 23140 "PEDIATROL" 23150 "PEDIAZOLE" 23155 "PEDICRAN W/IRON" 23159 "PEDIOTIC" 23185 "PEN-VEE K" 23200 "PENAPAR VK" 23215 "PENICILLIN" 23220 "PENICILLIN G" 23223 "PENICILLIN PROCAINE" 23225 "PENICILLIN V" 23228 "PENICILLIN V POTASSIUM" 23230 "PENICILLIN VK" 23305 "PENTIDS" 23315 "PENTOTHAL" 23340 "PEPPERMINT OIL" 23350 "PEPPERMINT WATER" 23355 "PEPSIN" 23370 "PEPTO-BISMOL" 23385 "PERCOCET-5" 23390 "PERCODAN" 23400 "PERCOGESIC" 23415 "PERDIEM GRANULE" 23430 "PERI-COLACE" 23440 "PERIACTIN" 23455 "PERIES" 23490 "PERITRATE" 23520 "PERNOX" 23523 "PERPHENAZINE" 23535 "PERSANTINE" 23560 "PERTUSSIN" 23585 "PETROLATUM" 23610 "PHAZYME" 23645 "PHEN-DIMETRAZINE" 23650 "PHENACETIN" 23680 "PHENAPHEN W/CODEINE" 23705 "PHENAZINE" 23715 "PHENAZOPYRIDINE" 23755 "PHENERGAN" 23760 "PHENERGAN COMPOUND" 23770 "PHENERGAN EXPECTORANT W/CODEINE" 23780 "PHENERGAN SYRUP" 23785 "PHENERGAN VC EXPECTORANT PLAIN" 23792 "PHENERGEN W/DEXTROMETHORPHAN" 23795 "PHENERGAN-D" 23798 "PHENERGAN W/CODEINE" 23845 "PHENOBARBITAL" 23850 "PHENOBARBITAL & ATROPINE" 23870 "PHENOBARBITAL ELIXIR" 23905 "PHENOBARBITAL SODIUM" 23935 "PHENOL" 23945 "PHENOLPHTHALEIN" 23970 "PHENTERMINE" 24015 "PHENYLEPHRINE" 24045 "PHENYTOIN" 24080 "PHISOHEX" 24120 "PHOSPHATE ENEMA" 24125 "PHOSPHO-SODA" 24185 "PILO" 24190 "PILOCAR" 24195 "PILOCARPINE" 24220 "PIMA SYRUP" 24228 "PIPRACIL" 24255 "PITOCIN" 24260 "PITRESSIN" 24300 "PLAQUENIL" 24310 "PLASMA-LYTE" 24355 "PNEUMOVAX" 24360 "PNU IMUNE" 24365 "PODOPHYLLIN" 24370 "PODOPHYLLUM" 24380 "POISON ANTIDOTE KIT" 24400 "POLARAMINE" 24405 "POLIOMYELITIS VACCINE" 24410 "POLLEN ANTIGEN" 24411 "POLOCAINE" 24415 "POLY-VI-FLOR" 24418 "POLY-VI-FLOR W/IRON" 24420 "POLY-VI-SOL" 24435 "POLYCILLIN" 24445 "POLYCITRA" 24470 "POLYMYXIN" 24510 "POLYSPORIN" 24525 "POLYVITAMIN" 24543 "POLYVITAMIN W/IRON" 24550 "PONSTEL" 24555 "PONTOCAINE" 24590 "POT CHLOR" 24595 "POTABA" 24650 "POTASSIUM" 24653 "POTASSIUM CHLORIDE" 24670 "POTASSIUM CHLORIDE 20 MEQ D5-W" 24685 "POTASSIUM CITRATE" 24705 "POTASSIUM HYDROXIDE" 24730 "POTASSIUM PHOSPHATE" 24755 "POVAN" 24765 "POVIDONE" 24795 "PRAMOSONE" 24798 "PRAMOXINE HC" 24803 "PRAX LOTION" 24805 "PRAZOSIN" 24830 "PRE-NATAL VITAMINS" 24850 "PRED FORTE" 24855 "PRED MILD" 24885 "PREDNISOLONE" 24890 "PREDNISONE" 24895 "PREDOXINE" 24930 "PRELAN" 24945 "PRELUDIN" 24950 "PREMARIN" 24960 "PREMARIN VAGINAL" 24975 "PRENATAL FORMULA (VITAMINS)" 24980 "PRENATAL STUART" 24985 "PRENATAL W/FOLIC ACID" 24989 "PRENATAL 1+1" 24995 "PREPARATION H CREAM" 25040 "PRIMATENE MIST" 25055 "PRIMIDONE" 25078 "PRINIVIL" 25150 "PROBENECID" 25180 "PROCAINAMIDE" 25185 "PROCAINE" 25210 "PROCARBAZINE" 25213 "PROCARDIA" 25220 "PROCHLORPERAZINE" 25240 "PROCTOCORT" 25243 "PROCTOCREAM-HC" 25250 "PROCTOFOAM" 25255 "PROCTOFOAM-HC" 25270 "PROFASI HP" 25300 "PROGESTASERT" 25305 "PROGESTERONE" 25320 "PROKETAZINE" 25328 "PROLASTIN" 25330 "PROLIXIN" 25355 "PROMAZINE" 25360 "PROMETHAMEAD" 25365 "PROMETHAZINE" 25375 "PROMETHAZINE COMPOUND W/CODEINE" 25395 "PROMETHAZINE HCL EXPECTORANT" 25405 "PROMETHAZINE HCL SYRUP" 25432 "PROMETHAZINE W/CODEINE" 25459 "PROPAC" 25485 "PROPARACAINE" 25510 "PROPOXYPHENE" 25525 "PROPOXYPHENE HCL W/A.P.C." 25530 "PROPOXYPHENE HCL W/ACETAMINOPHEN" 25545 "PROPOXYPHENE W/APAP" 25560 "PROPYLTHIOURACIL" 25565 "PROREX" 25570 "PROSOBEE" 25580 "PROSTIGMIN" 25608 "PROTEXIN" 25635 "PROVAL" 25638 "PROVENTIL" 25640 "PROVERA" 25660 "PROXENE" 25674 "PROZAC" 25695 "PSEUDOEPHEDRINE" 25750 "PURINETHOL" 25760 "PURPOSE" 25775 "PYOCIDIN" 25800 "PYRAZINAMIDE" 25805 "PYRIDIATE" 25810 "PYRIDIUM" 25815 "PYRIDIUM PLUS" 25820 "PYRIDOSTIGMINE" 25825 "PYRIDOXINE HCL" 25830 "PYRILAMINE" 25845 "PYRINYL" 25865 "PYROXINE" 25930 "QUADRINAL" 25945 "QUARZAN" 25950 "QUELICIN" 25965 "QUESTRAN" 26020 "QUINAMM" 26025 "QUINE" 26030 "QUINIDEX EXTENTAB" 26035 "QUINIDINE" 26040 "QUINIDINE SULFATE" 26045 "QUININE SULFATE" 26090 "RABIES VACCINE" 26095 "RACEPHEDRINE" 26100 "RACET" 26105 "RAGWEED & RELATED POLLENS ALLERGENIC" 26115 "RANTEX CLOTH WIPE" 26196 "RCF" 26250 "REGITINE" 26255 "REGLAN" 26320 "RENACIDIN" 26368 "RENU" 26425 "RESERPINE" 26435 "RESORCINOL" 26445 "RESPIROL" 26453 "RESTORIL" 26475 "RETIN-A" 26477 "RETROVIR" 26695 "RID" 26710 "RIFAMATE" 26715 "RIFAMPIN" 26730 "RIMSO-50" 26740 "RIOPAN" 26755 "RIOPAN SWALLOW" 26760 "RITALIN" 26785 "ROBAXIN" 26805 "ROBINUL" 26810 "ROBINUL FORTE" 26830 "ROBITUSSIN" 26835 "ROBITUSSIN A-C SYRUP" 26840 "ROBITUSSIN-CF" 26845 "ROBITUSSIN-CF SYRUP" 26850 "ROBITUSSIN-DAC SYRUP" 26860 "ROBITUSSIN-DM SYRUP" 26865 "ROBITUSSIN-PE SYRUP" 26870 "ROCALTROL" 26883 "ROGAINE" 26930 "RONDEC SYRUP" 26935 "RONDEC-DM SYRUP" 26958 "ROXICET" 27075 "RUBELLA VIRUS VACCINE LIVE" 27080 "RUBESOL" 27170 "RYNA" 27190 "RYNATAN" 27195 "RYNATUSS" 27225 "S.T. 37" 27300 "SALAGEN" 27305 "SALATAR" 27345 "SALICYLIC ACID" 27355 "SALICYLIC ACID SOAP" 27368 "SALINE" 27375 "SALOCOL" 27405 "SALSALATE" 27445 "SANTYL" 27459 "SARNA" 27520 "SCARLET RED" 27545 "SCOPOLAMINE" 27725 "SELENIUM" 27730 "SELSUN" 27735 "SELSUN BLUE" 27770 "SENNA" 27785 "SENOKOT" 27795 "SENOKOT S" 27800 "SENOKOT SYRUP" 27816 "SENSORCAINE" 27817 "SENSORCAINE S-D W/EPINEPHRINE" 27835 "SEPTRA" 27840 "SEPTRA DS" 27855 "SERAX" 27865 "SERENTIL" 27875 "SEROMYCIN" 27905 "SERPASIL-ESIDRIX" 27985 "SILVADENE" 27995 "SILVER NITRATE" 28000 "SILVER NITRATE TOUGHENED STICKS" 28015 "SILVER SULFADIAZINE" 28030 "SIMETHICONE" 28035 "SIMILAC" 28055 "SINAREST" 28080 "SINEMET" 28085 "SINEQUAN" 28143 "SINULIEF" 28155 "SINUS RELIEF" 28255 "SK-DIPHENOXYLATE" 28345 "SK-65 COMPOUND" 28350 "SKELAXIN" 28358 "SKIN PREPARATION" 28366 "SLO-NIACIN" 28390 "SLOW-K" 28391 "SLOW-MAG" 28430 "SODESTRIN" 28455 "SODIUM BICARBONATE" 28495 "SODIUM CHLORIDE" 28595 "SODIUM FLUORIDE" 28625 "SODIUM LACTATE" 28665 "SODIUM PHOSPHATE" 28683 "SODIUM SULFACETAMIDE OPHTH" 28710 "SOFLENS CLEANER" 28775 "SOLU-B MIX-O-VIAL" 28790 "SOLU-CORTEF" 28800 "SOLU-MEDROL" 28825 "SOMA" 28910 "SORBITOL" 29070 "SPEC-T ANESTHETIC" 29250 "SPIRONOLACTONE" 29275 "SSKI" 29285 "STADOL" 29290 "STANBACK ANALGESIC" 29310 "STAPHAGE LYSATE BACTERIAL ANTIGEN" 29328 "STATICIN" 29365 "STELAZINE" 29435 "STERAPRED" 29498 "STEROID(S)" 29533 "STOOL SOFTENER" 29565 "STREPTOMYCIN" 29581 "STRESS TABLETS" 29595 "STRI-DEX PADS" 29645 "SUBLIMAZE" 29660 "SUCCINYLCHOLINE" 29695 "SUCROSE" 29705 "SUDAFED" 29725 "SUDAFED SYRUP" 29750 "SUDRIN" 29780 "SULADYNE" 29785 "SULAMYD SODIUM" 29795 "SULF-10" 29815 "SULFACETAMID" 29825 "SULFADIAZINE" 29840 "SULFAMETHOXAZOLE" 29843 "SULFAMETHOX W/TRIMETHOPRIM" 29845 "SULFAMYLON" 29850 "SULFANILAMIDE" 29865 "SULFASALAZINE" 29880 "SULFATHALIDINE" 29888 "SULFATRIM" 29905 "SULFISOXAZOLE W/PHENAZOPYRIDINE HCL" 29955 "SULFUR" 29985 "SULFUR SUBLIMED" 29998 "SULINDAC", add; label define meds 30015 "SULTRIN" 30030 "SUNSCREEN" 30035 "SUMYCIN" 30080 "SUPEN" 30103 "SUPER C-500" 30195 "SURFAK" 30215 "SURGICEL" 30295 "SYLLACT" 30305 "SYMMETREL" 30328 "SYMPTROL" 30330 "SYNALAR" 30370 "SYNKAYVITE" 30390 "SYNTHETAR" 30395 "SYNTHROID" 30398 "SYNTHROX" 30410 "SYRACOL" 30468 "T-STAT" 30478 "TAC-3" 30495 "TAGAMET" 30513 "TALACEN" 30515 "TALC" 30535 "TALWIN" 30553 "TAMOXIFEN" 30580 "TAPAR" 30585 "TAPAZOLE" 30590 "TAR" 30630 "TAVIST" 30635 "TAXOL" 30650 "TEARISOL" 30655 "TEARS NATURALE" 30660 "TEARS PLUS" 30730 "TEGRETOL" 30735 "TEGRIN" 30755 "TEMARIL" 30756 "TEMAZEPAM" 30775 "TENAX" 30777 "TENEX" 30780 "TENOL" 30781 "TENORETIC" 30782 "TENORMIN" 30785 "TENSILON" 30790 "TENUATE" 30800 "TERAZOL" 30805 "TERBUTALINE" 30830 "TERPIN HYDRATE & DEXTROMETHORPHAN" 30880 "TESSALON PERLE" 30915 "TESTOSTERONE" 30920 "TESTOSTERONE CYPIONATE W/ESTRADIOL" 30930 "TESTOSTERONE ENANTHATE" 31000 "TETANUS ANTITOXIN" 31005 "TETANUS DIPHTHERIA TOXOID" 31010 "TETANUS IMMUNE GLOBULIN" 31015 "TETANUS TOXOID" 31020 "TETRA" 31025 "TETRACAINE" 31030 "TETRACAINE HCL" 31045 "TETRACYCLINE" 31055 "TETRACYN" 31068 "TETRASINE" 31095 "THAM" 31100 "THAM-E" 31105 "THANTIS" 31120 "THEO-DUR" 31200 "THEOLAIR" 31219 "THEOPHENYLLINE" 31220 "THEOPHOZINE" 31230 "THEOPHYLLIN ELIXIR" 31235 "THEOPHYLLINE" 31325 "THERAGRAN" 31335 "THERAGRAN-M" 31455 "THIAMINE" 31542 "THIOTHIXENE" 31543 "THIORIDAZINE" 31550 "THORAZINE" 31580 "THROAT DISC" 31585 "THROAT LOZENGE NEO-VADRIN" 31593 "THROMBINAR" 31598 "THROMBOLYTIC AGENT" 31600 "THYMOL" 31630 "THYROID" 31635 "THYROLAR" 31645 "TICAR" 31655 "TIGAN" 31658 "TIMOLOL" 31660 "TIMOPTIC" 31670 "TINACTIN" 31720 "TITRALAC" 31723 "TOBRADEX" 31725 "TOBRAMYCIN" 31728 "TOBREX OPHTHALMIC" 31735 "TOCOPHERYL" 31740 "TOFRANIL" 31755 "TOLBUTAMIDE" 31760 "TOLECTIN" 31775 "TOLINASE" 31825 "TOPIC" 31845 "TORA" 31850 "TORECAN" 31895 "TPN ELECTROLYTES" 31927 "TRANDATE" 31939 "TRANSDERM-SCOP" 31945 "TRANXENE" 31955 "TRAV-AREX" 31997 "TRAZODONE" 32013 "TRENTAL" 32030 "TRI HIST" 32045 "TRI KORT" 32050 "TRI TINIC" 32055 "TRI-CONE" 32095 "TRI-MINE EXPECTORANT" 32135 "TRI-VERT" 32140 "TRI-VI-FLOR" 32145 "TRI-VI-SOL" 32190 "TRIAM" 32195 "TRIAMCINOLONE" 32200 "TRIAMCINOLONE ACETONIDE" 32205 "TRIAMCINOLONE DIACETATE" 32245 "TRIAMINIC" 32255 "TRIAMINICIN" 32273 "TRIAMTERENE" 32290 "TRIAVIL" 32310 "TRICHLOROACETIC ACID" 32330 "TRICLOS" 32345 "TRIDESILON" 32353 "TRIDIL" 32363 "TRIFLUOPERAZINE" 32390 "TRIHEXYPHENIDYL" 32395 "TRILAFON" 32405 "TRILISATE" 32424 "TRIMIPRAMINE" 32430 "TRIMOX" 32433 "TRIMPEX" 32438 "TRIMETHOPRIM" 32460 "TRINSICON" 32478 "TRIOVAL" 32505 "TRIPHENYL" 32515 "TRIPLE ANTIBIOTIC" 32530 "TRIPLE SULFA" 32550 "TRIPROLIDINE" 32615 "TROBICIN" 32620 "TROCAINE" 32658 "TROPICAMIDE" 32710 "TUCKS" 32720 "TUINAL" 32735 "TUMS" 32775 "TUSSADON T.D." 32790 "TUSSANIL EXPECTORANT" 32825 "TUSSEND" 32845 "TUSSI-ORGANIDIN" 32855 "TUSSIONEX" 32905 "TYLENOL" 32910 "TYLENOL NO. 1" 32915 "TYLENOL NO. 2" 32920 "TYLENOL NO. 3" 32925 "TYLENOL NO. 4" 32930 "TYLENOL W/CODEINE" 32935 "TYLENOL W/CODEINE ELIXIR" 32945 "TYLOX" 32950 "TYMATRO" 32960 "TYPHOID VACCINE" 32985 "TYROSUM CLEANSER" 33040 "ULTAR" 33045 "ULTRA DERM BATH" 33060 "ULTRACAINE" 33073 "ULTRALENTE INSULIN" 33092 "UNASYN" 33110 "UNGUENTINE" 33155 "UNIPEN" 33170 "UNISOM" 33180 "UNNA`S GELATIN PASTE" 33215 "UREA" 33218 "UREACIN" 33225 "URECHOLINE" 33280 "URISED" 33300 "URISPAS" 33365 "UROGESIC" 33430 "V-CILLIN K" 33443 "V-M" 33448 "VACCINATION" 33500 "VALADOL" 33535 "VALERTEST" 33550 "VALISONE" 33555 "VALIUM" 33568 "VALOPHEN" 33573 "VALPROIC ACID" 33575 "VANCERIL" 33580 "VANCOCIN" 33588 "VANCOMYCIN" 33590 "VANCOR" 33610 "VANQUISH" 33620 "VAPO-ISO" 33625 "VAPONEFRIN" 33670 "VASELINE" 33677 "VASERETIC" 33685 "VASOCIDIN" 33700 "VASOCON" 33705 "VASOCON-A" 33710 "VASODILAN" 33725 "VASOMIDE" 33735 "VASOPRESSIN" 33740 "VASOPRINE" 33800 "VELBAN" 33805 "VELOSEF" 33829 "VENTAB" 33843 "VENTOLIN" 33855 "VERACOLATE" 33858 "VERAPAMIL" 33895 "VERMOX" 33905 "VERSAL" 34090 "VIBRAMYCIN" 34092 "VICALTEIN" 34100 "VICAM" 34103 "VICKS VAPORUB" 34110 "VICODIN" 34115 "VICON" 34120 "VICON FORTE" 34138 "VIDARABINE" 34155 "VIMAH" 34158 "VINBLASTINE" 34160 "VINCRISTINE" 34220 "VIOKASE" 34248 "VIROPTIC" 34260 "VISINE" 34263 "VISKEN" 34268 "VISTAJECT" 34270 "VISTARIL" 34293 "VITA-FLOR" 34300 "VITA-KAPS" 34360 "VITAMIN A" 34370 "VITAMIN A & D" 34410 "VITAMIN A SOLUBLE NEO-VADRIN" 34425 "VITAMIN B COMPLEX" 34430 "VITAMIN B COMPLEX B-12 W/C" 34455 "VITAMIN B-1" 34495 "VITAMIN B-12" 34505 "VITAMIN B-2" 34510 "VITAMIN B-6" 34515 "VITAMIN B-6 NEO-VADRIN" 34520 "VITAMIN C" 34525 "VITAMIN C & E" 34560 "VITAMIN CHEWABLE CHILDREN`S" 34565 "VITAMIN D" 34575 "VITAMIN E" 34580 "VITAMIN E & C" 34605 "VITAMIN E SKIN OIL" 34623 "VITAMIN K" 34625 "VITAMIN(S)" 34628 "VITAMINS AND MINERALS" 34675 "VITRON-C" 34685 "VIVACTIL" 34690 "VIVARIN" 34720 "VOLEX IN SODIUM CHLORIDE" 34725 "VOLTAREN" 34740 "VOSOL OTIC" 34745 "VOSOL HC" 34755 "VYTONE" 34775 "WARFARIN" 34780 "WART OFF" 34790 "WATER DISTILLED" 34855 "WESTCORT" 34890 "WIGRAINE" 34985 "WYGESIC" 35015 "X-PREP" 35023 "XANAX" 35050 "XEROFOAM DRESSING" 35060 "XYLOCAINE" 35070 "XYLOCAINE HCL" 35080 "XYLOCAINE HCL W/EPINEPHRINE" 35085 "XYLOCAINE VISCOUS" 35110 "YELLOW FEVER VACCINE" 35138 "Z-TEC" 35150 "ZARONTIN" 35155 "ZAROXOLYN" 35165 "ZEASORB MEDICATED" 35224 "ZESTRIL" 35230 "ZETRAN" 35240 "ZINC" 35250 "ZINC OXIDE" 35260 "ZINC SULFATE" 35293 "ZINCA-PAK" 35338 "ZOMAX" 35341 "ZOVIRAX" 35350 "ZYLOPRIM" 35355 "ZYMACAP" 35390 "2/G" 35410 "ANTICONVULSANT AGENT" 35415 "ANTIDEPRESSANT AGENT" 35420 "ANTIDIABETIC AGENT" 35425 "ANTIDIARRHEAL AGENT" 35430 "ANTIEMETIC AGENT" 35445 "ANTIFUNGAL AGENT" 35450 "ANTIHISTAMINE" 35460 "ANTIINFLAMMATORY AGENT" 35495 "ANTIPYRETIC AGENT" 35510 "ANTIVIRAL AGENT" 35530 "BACTINE" 35580 "SLO-BID" 35590 "TRIMETHOBENZAMIDE HCL" 35595 "TRIMETHOPRIM/SULFAMETHOXAZOLE" 35600 "VANCENASE" 40110 "ANDRO L.A. 200" 40150 "ASPIR-10" 40185 "BAYER ASPIRIN" 40285 "CALTRATE" 40445 "CORZIDE" 40455 "CYCLOPENTOLATE" 40460 "CYTOTEC" 40520 "DESYREL" 40540 "DEXTROSE SODIUM CHLORIDE" 40580 "DIABETA" 40610 "DIPHENOXYLATE" 40615 "DIPROLENE" 40755 "FOLEX" 40765 "G-3" 40775 "GENTACIDIN" 40790 "HEP-PAK" 40825 "HYDRA MAG" 40860 "HYDROGESIC" 40905 "ISOPTIN" 40908 "L-TRYPTOPHANE" 40950 "LOPROX" 40955 "LOZOL" 40965 "MANGANESE SULFATE" 40995 "MICROCULT GC TEST" 41005 "MOLYPEN" 41115 "MULTI VIT" 41150 "NASALCROM" 41185 "NORCURON" 41310 "POLY-VI-SOL W/IRON" 41330 "PRAMASONE" 41335 "PRECISION DIET ISOTONIC" 41360 "PRO-2" 41405 "RESPAIRE" 41420 "ROXANOL" 41470 "SLOW FE" 41495 "SODIUM POLYSTYRENE SULFON" 41505 "SPECTAZOLE" 41510 "SPIRON W/HCTZ" 41545 "STRESSAIDS W/ZINC" 41580 "SUPER STRESS 600 W/ZINC" 41610 "THEO-24" 41670 "TRI-NORINYL" 41745 "UNIPHYL" 41755 "VEPESID" 41780 "ZANTAC" 41785 "ZINACEF" 41800 "HCTZ" 41820 "GLYCERIN SUPPOSITORIES" 41825 "AKARPINE" 41830 "PSYLLIUM" 41845 "PTU" 41850 "KCL" 41855 "NPH INSULIN" 41860 "FOLATE" 41865 "MOM" 41875 "CAPTOPRIL" 41880 "ZORPRIN" 41895 "HUMULIN INSULIN" 41905 "THYROXINE" 41915 "K-LYTE" 41928 "PSEUDOEPHED/DM" 42005 "AURAFAIR OTIC" 42178 "TRIPLE ANTIBIOTIC OPHTH" 42425 "GOLYTELY" 42715 "MONISTAT VAGINAL" 42720 "MONISTAT-DERM" 42780 "NEOSPORIN OPHTHALMIC" 42800 "NORMAL SALINE" 42815 "NS W/KCL" 42985 "PROPRANOLOL" 50000 "BRETHAIRE" 50035 "MICRONASE" 50040 "SUFENTA" 60015 "ABEROKE" 60035 "ACLOVATE" 60040 "ADALAT" 60100 "AQUATAR THERAPEUTIC" 60115 "AUGMENTIN" 60125 "AUGMENTIN 500" 60150 "BACITRACIN OPHTHALMIC" 60175 "BENZAMYCIN" 60180 "BENZTROPINE MESYLATE" 60185 "BETAGAN LIQUIFILM" 60190 "BETALIN S" 60205 "BETOPTIC" 60220 "BLENOXANE" 60240 "BRETYLIUM TOSYLATE" 60250 "BSS OPHTHALMIC" 60265 "BUPRENEX" 60270 "BUSPAR" 60290 "CAPOZIDE" 60295 "CEFOTAN" 60325 "CITRUCEL" 60340 "CO-GESIC" 60345 "COACTIN" 60355 "COLYTE" 60370 "CORDARONE" 60385 "CORTISPORIN OPHTHALMIC" 60415 "DEXAMETHASONE/NEOMYCIN/POLYMIX" 60450 "DIGIBIND" 60470 "DISOPYRAMIDE PHOSPHATE" 60485 "DORYX" 60545 "ESTRADERM" 60550 "EYE DROPS" 60555 "EYE WASH" 60560 "FEMSTAT" 60565 "FENTANYL CITRATE" 60590 "FERROUS-DS" 60595 "FIORICET" 60615 "GAMMAGARD" 60640 "GENTAMICIN OPHTHALMIC" 60665 "GLYCERIN" 60695 "HIB-IMUNE" 60700 "HIB-VAX" 60715 "HYPAQUE SODIUM" 60725 "ILETIN & PROTAMINE ZINC" 60735 "INFLUENZA VIRUS VACC" 60740 "INTRON-A" 60765 "ISOVUE" 60775 "K-DUR" 60790 "KLONOPIN" 60795 "LACHYDRIN" 60800 "LACTATED RINGER`S" 60815 "LEVLEN" 60835 "LOTRISONE" 60850 "MAGALDRATE" 60870 "MARINOL" 60875 "MAXIVATE" 60890 "MEDIPREN" 60905 "METHYLDOPA W/HCTZ" 60920 "MEXITIL" 60940 "MSIR" 60955 "MURO TEARS" 60975 "N D CLEAR" 60985 "NA SAL" 60990 "NALBUPHINE HCL" 61025 "NICORETTE" 61035 "NIX" 61045 "NOVOLIN" 61055 "NU`LEVEN" 61080 "OMNIPAQUE" 61095 "OPHTHAINE" 61100 "ORUDIS" 61125 "P-A-C" 61130 "PAIN RELIEVER" 61135 "PEDIACARE" 61140 "PEDIAPRED" 61160 "PEPCID" 61185 "PIPERACILLIN" 61205 "POVIDONE-IODINE" 61215 "PRIMAXIN" 61260 "PSORCON" 61275 "R & C" 61295 "ROCEPHIN" 61300 "ROFERON-A" 61330 "SECTRAL" 61385 "SULFACETAMIDE SODIUM" 61405 "TAMBOCOR" 61440 "TEMOVATE" 61470 "TIMENTIN" 61475 "TOLAZAMIDE" 61480 "TOLNAFTATE" 61490 "TONOCARD" 61495 "TOPICORT" 61515 "TRI-LEVLEN" 61520 "TRIAMCIN/NEO/GRAMICID/NYSTATIN" 61565 "VASOTEC" 61570 "VERSED" 61595 "VITEC" 61605 "WELLBUTRIN" 61610 "ZYDONE" 61625 "TRIAMTERENE W/HCTZ" 89004 "AMILORIDE HCL W/HCTZ" 89010 "BETAMETHASONE DIPROPIONATE" 89014 "BUPIVACAINE W/EPINEPHRINE" 89016 "CHARCOAL, ACTIVATED W/ SORBITOL" 89017 "CHILDREN`S ADVIL" 89018 "CLINDAMYCIN HCL" 89019 "CLONIDINE HCL" 89020 "CYCLOBENZAPRINE HCL" 89022 "CYTOVENE" 89025 "DOXEPIN HCL" 89032 "EULEXIN" 89035 "FLUOCINONIDE" 89037 "HUMULIN 70/30" 89038 "HYDROCODONE BITARTRATE W/APAP" 89039 "HYDROCODONE W/ACETAMINOPHEN" 89040 "HYDROCORTISONE ACETATE" 89042 "HYDROXYPROGESTERONE CAPROATE" 89045 "LIDOCAINE HCL VISCOUS" 89047 "LOSEC" 89056 "OS-CAL 500+D" 89058 "PERMAX" 89061 "POLYTRIM" 89066 "PRELONE" 89067 "PROCARDIA XL" 89069 "PROCHLORPERAZINE MALEATE" 89070 "PROFENAL" 89071 "PROPOXYPHENE HCL W/APAP" 89072 "PROPOXYPHENE NAPSYLATE W/APAP" 89074 "ROWASA" 89076 "SUPRAX" 89080 "TIMOLOL MALEATE" 89081 "TOBRAMYCIN SULFATE" 90000 "NO ENTRY MADE" 91000 "ALBUTEROL SULFATE" 91002 "AMILORIDE HCL" 91003 "ANTIPYRINE W/BENZOCAINE" 91009 "BUTALBITAL/APAP/CAFFAINE" 91013 "DIPENTUM" 91014 "DOXORUBICIN HCL" 91015 "DOXYCYCLINE HYCLATE" 91020 "EXOSURF" 91024 "GENACOTE" 91026 "GENASYME" 91029 "HYDROXYZINE HCL" 91030 "IFEX/MESNEX COMBO PACK" 91031 "ISOPTIN S.R." 91034 "LOTRIMIN AF" 91035 "LUPRON DEPOT" 91039 "NIFEDIPINE" 91040 "ONE TOUCH TEST STRIPS" 91043 "PRILOSEC" 91045 "RETIN-A REGIMEN" 91052 "SSD" 91058 "VERELAN" 91061 "ACYCLOVIR" 91062 "ALPRAZOLAM" 91063 "ATENOLOL" 91064 "AZTREONAM" 91066 "BUSPIRONE HCL" 91068 "CEFTAZIDIME" 91069 "CEFTRIAXONE" 91070 "CEFUROXIME SODIUM" 91072 "DILTIAZEM HCL" 91073 "DIMETHYL SULFOXIDE" 91074 "ENALAPRIL" 91077 "ETHANOLAMINE" 91078 "FLECAINIDE ACETATE" 91079 "FLUOXETINE" 91080 "FLUTAMIDE" 91081 "GLIPIZIDE" 91082 "GONADORELIN ACETATE" 91084 "IPRATROPIUM BROMIDE" 91085 "KETOCONAZOLE" 91086 "LEUPROLIDE ACETATE" 91088 "LOVASTATIN" 91089 "METHIMAZOLE" 91090 "MEXILITENE" 91091 "MISOPROSTOL" 91093 "MORICIZINE HCL" 91096 "OMEPRAZOLE" 91097 "PERGOLIDE" 91099 "RANITIDINE" 91102 "TRETINOIN" 92000 "ACCUPRIL" 92001 "ACETIC ACID W/HC" 92003 "ALTACE" 92004 "AMPICILLIN SODIUM" 92005 "BENYLIN" 92006 "BIAXIN" 92007 "BREVOXYL" 92008 "BROMADINE" 92011 "CALCIUM ANTACID" 92012 "CARDURA" 92013 "CEPTAZ" 92015 "CILOXAN" 92016 "CLOZARIL" 92017 "CUTIVATE" 92018 "DESOXIMETASONE" 92019 "DEXTRAN" 92020 "DEXTROSE 5%-LACTATED RINGERS" 92022 "DORAL" 92024 "DURAGESIC" 92025 "DYNACIRC" 92026 "EDTA" 92027 "EMGEL" 92029 "ERYTHROMYCIN ESTOLATE" 92030 "FLAREX" 92031 "FLOXIN" 92032 "FLUONEX" 92033 "FLUPHENAZINE DECANOATE" 92037 "GENATUSS DM" 92038 "GENTAMICIN SULFATE" 92043 "HYOSCYAMINE SULFATE" 92045 "INSULATARD HUMAN N" 92051 "LODINE" 92052 "LOTENSIN" 92054 "METAMUCIL WAFER" 92055 "MIACALCIN" 92057 "MONOPRIL" 92058 "MOTION SICKNESS" 92059 "MURO 128" 92061 "NASACORT" 92062 "NATURAL FIBER" 92064 "NITROGLYCERIN IN D5W" 92066 "NORPLANT" 92069 "OPTIPRANOLOL" 92071 "PEDIA-PROFEN" 92073 "PLENDIL" 92076 "PRAVACHOL" 92078 "PROCRIT" 92079 "PROSED/DS" 92080 "PROSOM" 92083 "RINGERS" 92085 "ROBITUSSIN PEDIATRIC" 92087 "STERILE WATER" 92088 "SULFACETAMIDE W/PREDNISOLONE" 92096 "TUMS PLUS" 92100 "ULTRAVATE" 92103 "VIDEX" 92104 "ZEASORB-AF" 92105 "ZOFRAN" 92106 "AZT" 92107 "BENAZEPRIL" 92108 "BERACTANT" 92109 "CEFACLOR" 92110 "CEFIXIME" 92111 "CIPROFLOXACIN" 92112 "CLARITHROMYCIN" 92115 "CLOZAPINE" 92116 "DICLOFENAC" 92117 "DIDANOSINE" 92118 "DIDEOXYINOSINE" 92119 "DOXACURIUM" 92120 "DOXAZOSIN MESYLATE" 92122 "EPOETIN ALFA" 92123 "ESTAZOLAM" 92124 "ETODOLAC" 92125 "FELODIPINE" 92126 "FLUTICASONE" 92128 "FOSINOPRIL" 92129 "GANCICLOVIR" 92131 "HEPATITIS B VACCINE" 92132 "ISRADIPINE" 92134 "LEVONORGESTREL" 92135 "MESALAMINE" 92136 "METIPRANOLOL" 92137 "METROGEL" 92138 "NADOLOL" 92140 "OFLOXACIN" 92141 "ONDANSETRON" 92142 "PENTAMIDINE ISETHIONATE" 92143 "PENTOXIFYLLINE" 92144 "PIMOZIDE" 92145 "PIROXICAM" 92146 "PRAVASTAN" 92149 "QUINAPRIL" 92150 "RAMIPRIL" 92151 "SUPROFEN" 92152 "TERCONAZOLE" 92154 "ANAFRANIL" 92155 "ANSAID" 92156 "DIFLUCAN" 92157 "ELIMITE" 92159 "MINITRAN" 92160 "PRINZIDE" 92161 "TORADOL" 92162 "TRIPHASIL" 92163 "ZESTORETIC" 92164 "LISINOPRIL" 92165 "CODICLEAR-DH" 92167 "DECONSAL SPRINKLE" 92172 "ENDAFED" 92174 "ENDAL-HD" 92175 "ENDAL" 92176 "EXELDERM" 92178 "HUMIBID" 92179 "HUMIBID DM" 92180 "LORTAB" 92181 "LORTAB-ASA" 92182 "OCCLUSAL" 92187 "PRENATE" 92190 "ZEPHREX" 93001 "ACUTRIM" 93006 "AK-TAINE" 93008 "AKNE-MYCIN" 93009 "ALBUMIN" 93010 "ALIMENTUM" 93014 "ALLERGY MEDICATION" 93015 "AMI-TEX" 93016 "ANALPRAM HC" 93017 "ANDROGYN" 93020 "AQUA GLYCOLIC" 93022 "ARTIFICIAL TEAR SOLUTION" 93023 "ASACOL" 93029 "BETA CAROTENE" 93030 "BLEPH-10" 93035 "CARBIDOPA" 93036 "CARDENE" 93037 "CARNITINE" 93038 "CEFZIL" 93040 "CELLUVISC" 93041 "CITRACAL" 93042 "CONDYLOX" 93044 "CRESYLATE" 93045 "DEPO PREDATE" 93046 "DERMA-SMOOTHE" 93047 "DEXATRIM" 93048 "DILACOR-XR" 93050 "DML" 93053 "E-LOR" 93054 "ELDEPRYL" 93057 "ENULOSE" 93059 "EPOGEN" 93062 "FISH OIL" 93064 "FLEXALL" 93065 "GAS-X" 93067 "GENTAK" 93068 "GLYCOLIC ACID" 93069 "GLYNASE" 93070 "GROWTH HORMONE" 93073 "HEMORRHOID PREPARATION" 93074 "HEMOCYTE" 93076 "HISTUSSIN D" 93077 "HY-PHEN" 93078 "INFED" 93080 "ISMO" 93082 "ISOMIL" 93086 "LEGATRIN" 93088 "LORABID" 93089 "LORCET" 93090 "MACROBID" 93091 "MAGSAL" 93094 "ROMAZICON (MAZICON)" 93095 "METED" 93096 "MIVACRON" 93101 "NASAL SPRAY" 93102 "NESTAB" 93104 "NEUPOGEN" 93105 "NICODERM" 93106 "NICOTINE TRANDERMAL SYSTEM" 93107 "NICOTROL" 93108 "NOVA-DEC" 93109 "NUTRITIONAL SUPPLEMENT" 93112 "OCUPRESS" 93113 "OCUVITE" 93114 "OMINIFLOX" 93115 "OPTIVITE" 93116 "ORAGEL" 93117 "ORTH-CYCLEN" 93119 "OXY-10" 93120 "PEDIASURE" 93121 "PERIDEX" 93124 "PINDOLOL" 93127 "PROSCAR" 93130 "QUINALAN" 93131 "REFRESH" 93132 "RELAFEN" 93136 "RHOGAM" 93137 "SALAC" 93138 "SALACID" 93141 "SEROPHENE" 93143 "SHUR-CLENS" 93147 "STAHIST" 93150 "SULFONYLUREAS" 93151 "SUPPOSITORY" 93152 "TAC" 93154 "THEREMS" 93156 "TOPROL XL" 93161 "TUSSAFED" 93164 "VAGISIL" 93165 "VAGISTAT" 93166 "VANTIN" 93167 "VARICELLA-ZOSTER IMMUNE GLOBULIN" 93171 "VISCOAT" 93173 "WART TREATMENT" 93174 "YOCON" 93176 "ZANTRYL" 93177 "ZEROXIN" 93178 "ZILACTIN" 93179 "ZITHROMAX" 93180 "ZNP" 93181 "ZOCOR" 93182 "ZOLADEX" 93183 "ZOLOFT" 93185 "ZOSTRIX" 93186 "ANTIHYPERTENSIVE AGENT" 93187 "NORVASC" 93188 "NALTREXONE" 93190 "FLUOROCAINE" 93192 "TICILID" 93193 "SERTRALINE" 93195 "HISTAMINE H-2 BLOCKER/ANTAGONIST" 93197 "RYTHMOL" 93198 "OCULINUM" 93199 "ASTHMA MEDICATION" 93200 "ACTIGALL" 93202 "CYCLOSPORINE" 93203 "LABETALOL" 93204 "SELEGILINE" 93207 "NALSPAN" 93209 "ANTIPSYCHOTIC MEDICATION" 93210 "FIBER SUPPLEMENT" 93211 "AMIODARONE" 93212 "PAXIL" 93213 "GEMFIBROZIL" 93214 "AZITHROMYCIN" 93215 "FLUCONAZOLE" 93216 "DRITHO-SCALP" 93217 "DAIRY EASE" 93218 "ORTHO-CEPT" 93219 "FLUORESOFT" 93220 "KETOROLAC" 93221 "FELBAMATE" 93222 "SPORANOX" 93223 "CISPLATIN" 93224 "CLARITIN" 93225 "ETOPOSIDE" 93226 "ERYTHROPOIETIN" 93230 "DYNACIN" 93231 "IMITREX" 93232 "BOTULISM TOXIN" 93233 "ACULAR" 93234 "KERLONE" 93236 "DRY EYE THERAPY" 93237 "SIMVASTATIN" 93238 "BETAPACE" 93239 "FLURBIPROFEN" 93241 "PSEUDOGEST" 93243 "LAMISIL" 93245 "HALFPRIN" 93247 "HIVID" 93248 "SUMATRIPTAN" 93249 "VALPROATE" 93252 "PHENTOLAMINE" 93253 "TETRAMUNE" 93256 "PNEUMOCOCCAL VACCINE" 93257 "LORATADINE" 93258 "CARBOPLATIN" 93262 "MIDAZOLAM HCL" 93303 "CEFOTAXIME" 93304 "NEPHRO-VITE" 93305 "GLYBURIDE" 93306 "ADENOCARD" 93307 "ENGERIX-B" 93308 "DAKIN`S SOLUTION" 93309 "BENZODIAZEPINES" 93311 "PEDVAX HIB" 93312 "KETOPROFEN" 93313 "DOBUTAMINE" 93315 "PROPAFENONE" 93316 "MEFLOQUINE" 93317 "PILOPINE" 93325 "EMLA" 93326 "INJECTION" 93327 "ITRACONAZOLE" 93328 "NUTREN" 93330 "ASPARAGINASE" 93334 "CLEMASTINE" 93335 "APRACLONIDINE" 93337 "PROPOFOL" 93341 "FELBATOL" 93344 "SOAP" 93345 "DIPRIVAN" 93347 "AMBIEN" 93348 "PHOSLO" 93352 "FAMOTIDINE" 93353 "PROGESTIN" 93355 "BUPROPION" 93356 "ANTIGEN" 93358 "SCLEROSING AGENT" 93359 "LIQUIBID" 93361 "TACRINE" 93362 "TICLOPIDINE" 93363 "DESOGEN" 93365 "MITOXANTRONE" 93366 "PROPULSID" 93368 "DUODERM" 93372 "BETASERON" 93373 "UROCIT K" 93383 "IMMUNIZATION" 93386 "GI COCKTAIL" 93387 "CEFOXITIN" 93390 "ABH" 93391 "SARGRAMOSTIN" 93392 "TAXOTERE" 93393 "PINK LADY" 93394 "AEROSOL THERAPY" 93395 "INHALER" 93396 "AMLODIPINE" 93397 "BALMEX" 93399 "OXAPROZIN" 93400 "NEBULIZER" 93404 "SUCRALFATE" 93405 "SANDOSTATIN" 93408 "THALIDOMIDE" 93411 "PROPOXYPHENE/ACETAMINOPHEN" 93417 "CEFPROZIL" 93418 "FILGRASTIM" 93419 "TRIAZOLAM" 93420 "NEVIRAPINE" 93421 "SELENIUM SULFIDE SHAMPOO" 93422 "FLUNISOLIDE" 93424 "FLUDROCORTISONE ACETATE" 93425 "TAR DERIVATIVE SHAMPOO" 93428 "MYCOBUTIN" 93429 "INJECTION (EPIDURAL)" 93430 "INJECTION (GANGLION/NERVE BLOCK)" 93432 "ORUVAIL" 93433 "ALPROSTADIL" 93437 "THIAZIDE" 93438 "GREEN GRASSHOPPER" 93440 "CONDOMS" 93441 "PEG" 93442 "HAEMOPHILUS B CONJUGATE VACCINE" 93447 "EMOLLIENT / LOTION / CREAM /MOISTURIZER" 93448 "VECURONIUM" 93449 "RABIES IMMUNE GLOBULIN" 93451 "CLOMIPRAMINE" 93453 "RH IMMUNE GLOBUIN" 93454 "BOTULISM ANTITOXIN" 93980 "MEDICATION(S) - CONTINUE/MONITOR/REVIEW" 93981 "MEDICATION(S) -PRESCRIBED/PROVIDED/OTC" 93982 "MEDICATION(S) - IV" 94001 "SOTALOL" 94002 "BENZONATE" 94003 "FLUMADINE" 94004 "PAROXETINE" 94006 "ULCER MEDICATION" 94007 "ENEMA" 94008 "DURATUSS" 94009 "VOLMAX" 94010 "PENTASA" 94011 "CATAFLAM" 94012 "ORTHO-EST" 94014 "VENLAFAXINE" 94015 "NYTOL" 94016 "ZIAC" 94017 "ENCONOPRED PLUS" 94018 "BABY OIL" 94020 "ALOMIDE" 94025 "DERMATOP" 94027 "SHAMPOO" 94029 "NULYTELY" 94031 "IMDUR" 94034 "ORTHO-TRICYCLEN" 94035 "ZOLPIDEM TARTRATE" 94036 "AQUANIL" 94038 "FACTOR VIII" 94039 "MAG-TAB" 94041 "PINK COCKTAIL" 94043 "TYLENOL ALLERGY SINUS" 94045 "BEANO" 94046 "LACTOSE-FREE FORMULA" 94047 "MESNA" 94048 "METROGEL VAGINAL" 94049 "OYSTER SHELL CALCIUM" 94052 "TRIAMETERNE" 94053 "BETA BLOCKER" 94054 "ACE INHIBITOR" 94055 "ACEI-IMUNE" 94056 "AK DILATE" 94057 "CLINOXIDE" 94058 "COLLAGEN" 94059 "DOVONEX" 94060 "EPILYT" 94066 "PROSTAGLANDIN E1" 94070 "EFFEXOR" 94071 "INDAPAMIDE" 94072 "NSAID" 94073 "OCUFLOX" 94075 "SEREVENT" 94079 "CORTICOSTEROID(S)" 94081 "DIVALPROEX SODIUM" 94082 "GLAUCOMA MEDICATION" 94086 "ATUSS HD" 94089 "ICAPS" 94094 "GLIBENCLAMIDE" 94097 "MEPRON" 94098 "NEDOCROMIL" 94099 "NEURONTIN" 94100 "NIZATIDINE" 94101 "OXISTAT" 94102 "PYRIMETHAMINE" 94103 "QUININE" 94104 "RISPERIDONE" 94108 "TECHNETIUM" 94110 "LOZENGES" 94113 "DIFLUNISAL" 94114 "GABAPENTIN" 94116 "HUMULIN R" 94117 "LOVENOX" 94118 "NAPHAZOLINE/PHENIRAMINE" 94119 "NORETHINDRONE ACETATE" 94122 "BEE STING KIT" 94123 "BECONASE AQ" 94124 "CHOLESTYRAMINE" 94125 "ALEVE" 94126 "DEMADEX" 94127 "DAYPRO" 94128 "DAYQUIL" 94129 "DOXY" 94130 "DURASCREEN" 94131 "GARLIC PILL" 94133 "TERAZOSIN" 94134 "DESONIDE" 94136 "LAMIVUDINE" 94137 "SULFA" 94139 "CEFPODOXIME" 94143 "DEPO INJECTION" 94144 "VICKS 44D" 94145 "OINTMENT" 94146 "PENICILLIN G BENZATHINE" 94149 "ESGIC PLUS" 94150 "FLUDARA" 94151 "FLUDARABINE" 94153 "ZONALON" 94154 "LESCOL" 94158 "RISPERDAL" 94160 "KYTRIL" 94161 "DACTINOMYCIN" 94162 "AZACITIDINE" 94163 "ALOE VERA" 94164 "HISTUSSIN HC" 94166 "PSORALENS" 94171 "METHYLDOPA/CHLOROTHIAZIDE" 94172 "IMMUNOSUPPRESIVE DRUG" 94173 "ACEBUTOLOL" 94174 "RHINOCORT" 94175 "ANTIBACTERIAL AGENT" 94176 "ASTROGLIDE" 94177 "AREDIA" 94179 "NABUMETONE" 94182 "FLU-SHIELD" 94188 "FENTANYL" 94189 "FLUMAZENIL" 94190 "MG" 94191 "MONISTAT" 94192 "HIV MEDICATION" 94194 "ESTRAMUSTINE" 94195 "RECEPTIN" 94196 "OCTREOTIDE" 94197 "PROGESTIMIL" 95002 "BETAGEN" 95003 "ECONAZOLE" 95005 "FLONASE" 95007 "LUBRIN" 95009 "DECONAMINE SR" 95015 "TESTODERM" 95016 "ADDERALL" 95017 "FAMVIR" 95018 "NASAL WASH" 95020 "NICARDIPINE" 95021 "ARTHRITIS MEDICATION" 95022 "FEVERALL" 95023 "CHILDRENS MOTRIN" 95024 "FLUVOXAMINE" 95025 "LUVOX" 95027 "ALTRACIN" 95030 "DEXTROSE/SODIUM CHLORIDE/0.9 NS" 95032 "NITRATES" 95035 "ATRACURIUM" 95036 "BUPRENORPHINE" 95038 "FACTOR IX COMPLEX" 95041 "NITROPRUSSIDE" 95044 "ROBITUSSIN W/ CODEINE" 95045 "TYLENOL PM" 95046 "AMYLASE" 95047 "ATOVAQUONE" 95048 "DUOFILM PATCH" 95050 "ULTRAM" 95051 "VASCOR" 95053 "REGULAR" 95054 "ACTHIB" 95056 "DIPIVEFRIN" 95057 "DTAP" 95059 "ISOTOPE" 95062 "STROVITE" 95063 "SUPRANE" 95064 "ZIDOVUDINE" 95065 "ZEMURON" 95066 "GASTROINTESTINAL AGENT" 95067 "INTERFERON" 95068 "PENICILLIN ALUMINUM MONOSTEARATE" 95069 "PROTEGRA" 95071 "ZERIT" 95072 "BENZTROPINE" 95073 "BION TEARS" 95074 "DIMETAPP DM" 95075 "HUMULIN L" 95076 "AURANOFIN" 95078 "PANCREASE MT" 95079 "PHENOXYBENZAMINE" 95080 "SERZONE" 95082 "PAMIDRONATE" 95083 "RECOMBINATE" 95084 "STAVUDINE" 95085 "DEMEROL W/ VISTARIL" 95086 "LIQUID NITROGEN" 95087 "PROPHYLAXIS" 95088 "ESTROPIPATE" 95089 "METAXALONE" 95090 "TAR PREPARATION SHAMPOO" 95092 "PRAVASTATIN" 95095 "LARIAM" 95096 "ZETAR" 95097 "CARDIOLITE" 95098 "ADENOSINE PHOSPHATE" 95099 "AXOCET", add; label define meds 95100 "PROTEIN SUPPLEMENT" 95101 "T-GEL SHAMPOO" 95108 "CETAPHIL MOISTURIZER" 95111 "GLUCOPHAGE" 95112 "HYPERTONIC SALINE" 95114 "TRUSOPT" 95115 "NUTROPIN" 95116 "CAPSAICIN" 95118 "HEPATITIS A VACCINE" 95119 "MULTIVITAMIN W/ IRON" 95122 "PREVACID" 95127 "SALICYLIC W/ AQUAPHOR" 95133 "METFORMIN" 95135 "PRECARE" 95136 "THEO" 95139 "APPETITE DEPRESSANT" 95140 "FLUVASTATIN" 95141 "NEFAZODONE" 95142 "PREMPRO" 95144 "LOTREL" 95145 "MENINGOCOCCAL VACCINE" 95147 "VAGINAL CREAM" 95148 "HEPATITIS C VACCINE" 95149 "ZOSYN" 95150 "ADVERA" 95152 "COZAAR" 95155 "FLAX SEED OIL" 95156 "MYCOCIDE" 95157 "COLESTIPOL" 95159 "CALCIUM BLOCKER" 95160 "CLIMARA" 95164 "DORZOLAMIDE" 95165 "MONONINE" 95168 "HISTINEX HC" 95169 "BRONTEX" 95171 "HYZAAR" 95173 "LEVBID" 95174 "PROGRAF" 95177 "FINASTERIDE" 95178 "FIORICET/ CODEINE" 95180 "GLUCERNA" 95181 "LAMICTAL" 95182 "VARIVAX" 95183 "FOSAMAX" 95184 "CLIDINIUM BROMIDE" 95187 "DYNABAC" 95188 "PREMPHASE" 95189 "UNIVASC" 95191 "EPIVIR" 95192 "CASODEX" 96002 "DEFEN-LA" 96003 "PERMETHRIN" 96005 "ALENDRONATE SODIUM" 96006 "AZELEX" 96007 "CETIRIZINE" 96008 "HUMULIN N" 96009 "BENZOCAINE" 96010 "VAPORIZER" 96012 "MEPERGAN FORTIS" 96013 "PALGIC" 96016 "PROXACOL" 96019 "TOURO EX" 96020 "LEVOXYL" 96021 "TSH" 96022 "ZYRTEC" 96024 "CLOBETASOL" 96027 "DOCUSATE SODIUM" 96028 "ACETAMINOPHEN-HYDROCODONE" 96031 "DRONABINOL" 96032 "INVIRASE" 96033 "LEVOBUNOLOL" 96035 "SAQUINAVIR" 96038 "MUPIROCIN" 96041 "TRAMADOL" 96042 "NEORAL" 96043 "VALTREX" 96044 "NASAREL" 96045 "DEMEROL" 96047 "STAGESIC" 96049 "HEPATITIS VACCINE" 96051 "OCUCAPS" 96054 "NAVELBINE" 96055 "LEVOTHYROID" 96057 "LANACORT" 96058 "PRECOSE" 96059 "PRENAVITE" 96060 "SEVOFLURANE" 96061 "SOMATOSTATIN" 96062 "ULTANE" 96065 "GEMCITABINE" 96066 "NORVIR" 96067 "ANTIOXIDANTS" 96068 "TRIAZ" 96070 "CEDAX" 96072 "TIAZAC" 96073 "TOLEREX" 96074 "BARIUM ENEMA" 96075 "HYDROGEL" 96078 "AMRINONE" 96080 "CRIXIVAN" 96083 "NAPRELAN" 96084 "OPCON-A" 96086 "SULAR" 96087 "VIBRA-TABS" 96091 "FLOVENT" 96093 "RITONAVIR" 96094 "ACARBOSE" 96095 "ETOMIDATE" 96099 "MOLINDONE" 96102 "EC-NAPROSYN" 96105 "TEGADERM" 96106 "ADRENALINE CHLORIDE" 96107 "BUMETANIDE" 96108 "PNEUMOTUSSIN" 96109 "OXYCONTIN" 96110 "CARNITOR" 96111 "AYR NASAL GEL" 96112 "VEXOL" 96115 "SALMETEROL" 96119 "CAVERJECT" 96121 "DIMETAPP COLD/ALLERGY" 96122 "REMERON" 96123 "ZEBETA" 96125 "MELATONIN" 96128 "AVONEX" 96130 "LANSOPRAZOLE" 96131 "COVERA HS" 96132 "DNCB" 96133 "ADAPALENE" 96135 "PHENERGAN DM" 96136 "CORMAX" 96137 "DHEA" 96138 "AMARYL" 96139 "OTOCAIN" 96140 "TANAFED" 96141 "VIVELLE" 96144 "ACCOLATE" 96147 "CELLCEPT" 96149 "IMIPENEM-CILASTATIN SODIUM" 96151 "PEPTAMEN" 96152 "RILUTEK" 96153 "RILUZOLE" 96156 "VITAFOL" 96157 "AEROCHAMBER" 96159 "BARLEY GRASS" 96161 "DIFLORASONE DIACETATE" 96162 "PROVISC" 96164 "BETIMOL" 96165 "ELMIRON" 96166 "RENOVA" 96167 "XALATAN" 96168 "MAVIK" 96169 "ACIDOPHILUS" 96171 "MENTAX" 96173 "ZYPREXA" 96174 "ALLEGRA" 96175 "TRITEC" 96176 "DIFFERIN" 96177 "IMMUNO THERAPY" 97002 "OLANZAPINE" 97004 "CEFOTETAN" 97005 "CEREBYX" 97007 "GUAIPAX" 97010 "GAMMA GLOBULIN" 97011 "MIGRAINE AGENT" 97012 "PACLITAXEL" 97015 "TOPOTECAN" 97016 "ARICEPT" 97017 "HUMALOG" 97018 "MOEXIPRIL" 97019 "SAW PALMETTO" 97020 "LIPITOR" 97021 "MUSE" 97022 "PROTUSS" 97026 "BENADRYL W LIDOCAINE" 97027 "FLINTSTONES VITAMINS" 97028 "ALPHAGAN" 97029 "ATUSS DM" 97030 "NEOCATE" 97033 "REZULIN" 97034 "ZYBAN" 97035 "ASTELIN" 97036 "DIOVAN" 97037 "PATANOL" 97038 "GEMZAR" 97041 "ANTITUSSIVE" 97043 "BROMFED PD" 97045 "LEVAQUIN" 97046 "OMNIHIST" 97047 "MAGNESIUM" 97049 "TOPAMAX" 97051 "VIRACEPT" 97052 "VIRAMUNE" 97055 "ESTROSTEP" 97056 "MIRTAZAPINE" 97057 "NELFINAVIR" 97060 "FAMCICLOVIR" 97062 "ULTIVA" 97063 "CLAVULANIC ACID" 97066 "PANCREATIC ENZYME" 97068 "DEXTROSTAT" 97073 "LOSARTAN" 97074 "PRENATAL ULTRA" 97075 "GENTEAL" 97076 "MICONAL" 97078 "ANDRODERM PATCHES" 97079 "CAMPTOSAR" 97081 "FRAGMIN" 97084 "ROCURONIUM" 97085 "TORSEMIDE" 97086 "ALESSE" 97087 "CORTANE B OTIC DROPS" 97089 "GUANFACINE" 97090 "MESCOLOR" 97091 "THIABENDAZOLE" 97092 "TRANDOLAPRIL" 97094 "ZOTO" 97097 "LIQUIBID-D" 97098 "PRAMIPEXOLE" 97099 "GENERAL ANESTHESIC" 97101 "NIFEREX FORTE" 97105 "COMBIVENT" 97107 "DURACT" 97108 "HELIDAC" 97109 "REVIA" 97111 "TARKA" 97112 "SUDAL" 97113 "ZANAFLEX" 97115 "PANMIST" 97116 "LANEX" 97118 "FLEET PHOSPHO-SODA" 97120 "NISOLDIPINE" 97126 "FLOMAX" 97127 "PANDEL" 97129 "ST JOHNS WORT" 97130 "TACROLIMUS" 97131 "RESPIGAM" 97132 "MAXIPIME" 97133 "NIMBEX" 97134 "PLASMA" 97135 "VALACYCLOVIR" 97136 "LAMOTRIGINE" 97139 "TYLENOL COLD & FLU" 97141 "COMBIVIR" 97142 "COREG" 97144 "GUAIFENEX" 97145 "AVAPRO" 97146 "ESTRING" 97148 "MITOMYCIN" 97150 "REQUIP" 97151 "CHONDROITIN SULFATE" 97152 "MIRAPEX" 97153 "COMVAX" 97154 "VINEGAR" 97155 "TIMOPTIC XE" 97156 "NOREL PLUS" 97157 "ATORVASTATIN" 97158 "BEPERDIL" 97159 "CALCITRIOL" 97160 "CRINONE" 97161 "PROMOD" 97162 "FOSPHENYTOIN" 97163 "LEVOFLOXACIN" 97164 "WATER PILL" 97166 "DURATUSS HD" 97168 "SEROQUEL" 97170 "CENTRUM SILVER" 97174 "BABY ASPIRIN" 97176 "IMMUNEX" 97177 "DURATUSS G" 97178 "PULMICORT TURBUHALER" 97179 "DENAVIR" 97181 "OXY IR" 98001 "MAG-OX" 98005 "ANAPLEX HD" 98006 "ARTHROTEC" 98008 "CARVEDILOL" 98009 "MUCO-FEN" 98010 "NASONEX" 98011 "CONSTULOSE" 98016 "NEUTROGENA T/GEL" 98017 "PROPECIA" 98018 "VANICREAM" 98022 "ZOMIG" 98023 "MERIDIA" 98026 "ACNE MEDICATION" 98027 "RETAVASE" 98028 "PANCOF" 98030 "ECHINACEA" 98031 "FEMPATCH" 98033 "ALDARA" 98034 "FORTOVASE" 98036 "NORCO" 98038 "SINGULAIR" 98039 "SINUVENT" 98041 "VIAGRA" 98043 "VICOPROFEN" 98045 "PROTUSS DM" 98046 "MICROZIDE" 98047 "NORITATE" 98049 "DONEPEZIL HCL" 98050 "LODOSYN" 98051 "OS-CAL +D" 98053 "PREVPAC" 98054 "TAZORAC" 98056 "GONAL-F" 98057 "HYALAGAN" 98058 "OXANDRIN" 98062 "REPRONEX" 98065 "DETROL" 98069 "EAR WASH" 98071 "THERAFLU" 98073 "DOMPERIDONE" 98075 "CALCIUM CITRATE" 98076 "TUBERCULOSIS VACCINE" 98078 "ADVIL COLD AND SINUS" 98080 "RESINOL" 98081 "REVEX" 98083 "AZOPT" 98085 "NIASPAN" 98086 "PLAVIX" 98088 "TASMAR" 98089 "TERBINAFINE" 98090 "ARIMIDEX" 98092 "DOXIL" 98093 "MONTELUKAST" 98094 "REGRANEX" 98095 "SUSTIVA" 98096 "TOBI" 98097 "AMERGE" 98098 "COSOPT" 98099 "GINKGO" 98100 "MIGRANAL" 98101 "PRANDIN" 98103 "XELODA" 98104 "VICODIN TUSS" 98106 "ANZEMET" 98107 "IRINOTECAN" 98109 "CHLORHEXIDINE GLUCONATE" 98111 "SORIATANE" 98112 "AVITA" 98114 "CARBATROL" 98115 "CELEXA" 98116 "GABITRIL" 98122 "ACTIDOSE WITH SORBITOL" 98130 "BOOST" 98131 "TOPIRAMATE" 98132 "OXALIPLATIN" 98136 "PROMETRIUM" 98137 "TRIMAZIDE" 98138 "PANNAZ" 98139 "TIZANIDINE" 98141 "VALSARTAN" 98142 "ALREX" 98143 "COPAXONE" 98144 "KADIAN" 98146 "EFAVIRENZ" 98151 "GENOTROPIN" 98152 "METHOXYPSORALEN" 98153 "PERIOGARD" 98155 "SEROSTIM" 98156 "MAXALT" 98158 "TRICOR" 98160 "ARAVA" 98161 "CAPECITABINE" 98164 "LOTEMAX" 98166 "RONDEC TR" 98167 "GRAPESEED EXTRACT" 99001 "CEFEPIME" 99002 "CELEBREX" 99003 "LUSTRA CREAM" 99004 "SEBA GEL 10" 99005 "REMICADE" 99006 "RENAGEL" 99007 "ROPIVACAINE HCL" 99008 "ALLEGRA D" 99009 "BIOHIST-LA" 99010 "MIRCETTE" 99011 "NALEX" 99012 "NALEX-A" 99013 "NASACORT AQ" 99014 "OMNICEF" 99015 "ORTHO-NOVUM 7/7/7" 99016 "PRIMROSE OIL" 99017 "RIBAVIRIN" 99019 "SYNVISC" 99020 "SEROTONIN" 99021 "TYCOLENE P.M." 99022 "CECLOR CD" 99023 "CORTISPORIN OTIC" 99026 "GLUCOSAMINE" 99028 "TYLENOL ARTHRITIS" 99029 "PREDNISOLONE ACETATE OPHTHALMIC" 99030 "AVANDIA" 99031 "ATACAND" 99032 "BROMFENEX" 99033 "CLOPIDOGREL" 99034 "DEFED" 99036 "GLUCOSAMINE CHONDROITIN" 99038 "VANEX-HD" 99039 "LOTENSIN HCT" 99041 "MAXIFED" 99042 "PACERONE" 99043 "PROAMATINE" 99046 "RITUXAN" 99047 "SARNOL HC" 99049 "XENICAL" 99050 "AGENERASE" 99051 "AVALIDE" 99052 "ACTIVATED CHARCOAL" 99055 "FLUROX" 99057 "HEMOCYTE PLUS" 99058 "KINERASE" 99059 "MICARDIS" 99060 "MICRO-K 10" 99061 "PRENATE ULTRA" 99066 "SINEMET CR" 99067 "VIOXX" 99068 "ZOVIA 1/35E" 99069 "AQUATAB C" 99070 "AQUATAB D" 99073 "CIPRO HC" 99074 "CITALOPRAM" 99075 "ENBREL" 99076 "GLUCOSAMINE SULFATE" 99080 "MIRALAX" 99081 "MULTIVITAMINS W/ FOLIC ACID" 99084 "RELAXIN" 99085 "RELENZA" 99086 "T/SCALP" 99088 "ZIAGEN" 99089 "ACIPHEX" 99090 "ACTOS" 99095 "HERCEPTIN" 99098 "NITROQUICK" 99099 "PLETAL" 99100 "PREDNICARBATE" 99101 "QUETIAPINE FUMARATE" 99103 "TUBEX" 99104 "TUSSI-12" 99106 "XOPENEX" 99107 "ZADITOR" 99109 "BUFFERED LIDOCAINE" 99110 "CARBOFED DM ORAL DROPS" 99111 "CONTRIN" 99112 "D-5-W" 99113 "DOAN`S PILLS" 99114 "ENDOCET" 99118 "NECON" 99119 "NITROPASTE" 99121 "TRI-CHLOR" 99123 "MORPHINE SULFATE" 99124 "NASAL DROPS" 99125 "NITRODRIP" 99127 "LIDOCAINE/EPINEPHRINE/TETRACAINE" 99128 "LIPASE" 99130 "SINEX" 99131 "TRIBIOTIC" 99132 "EVISTA" 99133 "ALBUTEROL" 99134 "ALLFEN-DM" 99136 "HELIOX" 99137 "HERBS" 99139 "MAGIC MOUTHWASH" 99140 "MORNING-AFTER PILL" 99141 "PIN-X" 99142 "PRENATAL VITAMINS W/ IRON" 99144 "RACEMIC EPINEPHRINE" 99146 "VITAPLEX" 99147 "ACCUZYME" 99148 "ARMIDEX" 99152 "EVENING PRIMROSE OIL" 99153 "FLEXTRA-DS" 99155 "L-CARNITINE" 99156 "LIPID LOWERING AGENT" 99157 "LOPIDINE" 99159 "PROCUREN" 99163 "ANAPLEX DM" 99167 "COQ-10" 99169 "DEPO-MEDROXYPROGESTERONE" 99172 "NOVOLIN 70/30" 99174 "PHOSPHORUS" 99179 "PREVEN" 99180 "PROBALANCE" 99184 "TRIVORA" 99185 "UNIRECTIC" 99189 "CALCIUM W/ VITAMIN D" 99190 "CORTIC" 99192 "NORGESIC FORTE" 99193 "SAM-E" 99194 "ABACAVIR SULFATE" 99197 "DOLASETRON MESYLATE" 99199 "FENRETINIDE" 99201 "ORTHO-CYCLEN" 99204 "REOPRO" 99206 "ACETYLSALICYLIC ACID" 99207 "BRIMONIDINE" 99210 "CARTIA" 99211 "CITRACAL + D" 99213 "DIASTAT" 99214 "DIOVAN HCT" 99215 "ENTEX LA" 99216 "FEXOFENADINE" 99218 "FORMULA SUPPLEMENT" 99219 "GINKGO BILOBA" 99220 "GLYDERM PEEL" 99222 "IV SEDATION" 99223 "LEVORA" 99224 "OMEGA-3" 99225 "RALOXIFENE" 99227 "UNIRETIC" 99980 "OTHER" 99999 "ILLEGIBLE", add; label define nodisp 0 "No" 1 "Yes"; label define nofu 0 "No" 1 "Yes"; label define retprn 0 "No" 1 "Yes"; label define retref 0 "No" 1 "Yes"; label define refothmd 0 "No" 1 "Yes"; label define outtriag 0 "No" 1 "Yes"; label define refalcdr 0 "No" 1 "Yes"; label define rettxsup 0 "No" 1 "Yes"; label define left 0 "No" 1 "Yes"; label define leftama 0 "No" 1 "Yes"; label define admitobs 0 "No" 1 "Yes"; label define admithos 0 "No" 1 "Yes"; label define admiticu 0 "No" 1 "Yes"; label define transfer 0 "No" 1 "Yes"; label define doa 0 "No" 1 "Yes"; label define othdisp 0 "No" 1 "Yes"; label define noprovid 0 "No" 1 "Yes"; label define staffmd 0 "No" 1 "Yes"; label define resint 0 "No" 1 "Yes"; label define othphys 0 "No" 1 "Yes"; label define rn 0 "No" 1 "Yes"; label define lpn 0 "No" 1 "Yes"; label define nursepr 0 "No" 1 "Yes"; label define physasst 0 "No" 1 "Yes"; label define emt 0 "No" 1 "Yes"; label define othtech 0 "No" 1 "Yes"; label define othprov 0 "No" 1 "Yes"; label define region 1 "Northeast" 2 "Midwest" 3 "South" 4 "West"; label define msa 1 "MSA (Metropolitan Statistical Area)" 2 "Non-MSA"; label define owner 1 "Voluntary non-profit" 2 "Government, non-Federal" 3 "Proprietary"; label define impute 0 "Not imputed" 1 "Imputed"; destring gen1 gen2 gen3 gen4 gen5 gen6 gen7 gen8, replace; destring drg1ing1-drg1ing5, replace; destring drg2ing1-drg2ing5, replace; destring drg3ing1-drg3ing5, replace; destring drg4ing1-drg4ing5, replace; destring drg5ing1-drg5ing5, replace; destring drg6ing1-drg6ing5, replace; destring drg7ing1-drg7ing5, replace; destring drg8ing1-drg8ing5, replace; label define gen 50000 "UNDETERMINED" 50002 "LEVONORGESTREL" 50004 "ACACIA GUM" 50005 "ACETAMINOPHEN" 50008 "ACEBUTOLOL HYDROCHLORIDE" 50015 "ACETANILID" 50018 "ACETATE ION" 50020 "ACETAZOLAMIDE" 50025 "ACETIC ACID" 50030 "ACETOHEXAMIDE" 50032 "ACETOHYDROXAMIC ACID" 50035 "ACETONE" 50040 "ACETOPHENAZINE" 50060 "ACETYLCYSTEINE" 50078 "ACYCLOVIR" 50080 "ADENOSINE" 50085 "ALBUMIN HUMAN" 50088 "ALBUTEROL" 50090 "ALCOHOL" 50093 "ALFENTANIL HYDROCHLORIDE" 50096 "ALGINIC ACID" 50097 "ALKYL ARYL POLYETHER ALCOHOL" 50103 "ALLANTOIN" 50104 "ALLOBARBITAL" 50105 "ALLOPURINOL" 50107 "ALMOND OIL" 50109 "ALOIN" 50110 "ALPHAPRODINE" 50113 "ALPRAZOLAM" 50116 "ALPROSTADIL" 50120 "ALSEROXYLON" 50125 "ALUMINUM" 50130 "ALUMINUM ACETATE" 50135 "ALUMINUM AMMONIUM SULFATE" 50138 "ALUMINUM CHLORHYDROXYALLANTOINATE" 50140 "ALUMINUM CHLORIDE" 50145 "ALUMINUM HYDROXIDE" 50155 "ALUMINUM PHOSPHATE" 50157 "ALUMINUM POTASSIUM SULFATE" 50160 "ALUMINUM SUBACETATE" 50163 "ALUMINUM SULFATE" 50165 "AMANTADINE" 50170 "AMBENONIUM" 50175 "AMCINONIDE" 50178 "AMDINOCILLIN" 50180 "AMIKACIN" 50182 "AMILORIDE" 50183 "AMINACRINE" 50185 "AMINO ACIDS" 50190 "AMINOACETIC ACID" 50195 "AMINOBENZOIC ACID" 50200 "AMINOCAPROIC ACID" 50203 "AMINOGLUTETHIMIDE" 50205 "AMINOHIPPURATE SODIUM" 50210 "AMINOPHYLLINE" 50220 "AMINOSALICYLIC ACID" 50223 "AMIODARONE HCL" 50230 "AMITRIPTYLINE" 50235 "AMMONIA SPIRIT AROMATIC" 50238 "AMMONIA STRONG" 50240 "AMMONIATED MERCURY" 50243 "AMMONIUM BROMIDE" 50244 "AMMONIUM CARBONATE" 50245 "AMMONIUM CHLORIDE" 50249 "AMMONIUM PHOSPHATE" 50250 "AMOBARBITAL SODIUM" 50258 "AMOXAPINE" 50260 "AMOXICILLIN" 50265 "AMPHETAMINE" 50270 "AMPHOTERICIN" 50275 "AMPICILLIN" 50278 "AMRINONE LACTATE" 50280 "AMYL NITRITE" 50281 "AMYL PHENYL PHENOL" 50283 "AMYLASE" 50284 "ANETHOLE" 50290 "ANISE OIL" 50295 "ANISINDIONE" 50300 "ANISOTROPINE" 50305 "ANTAZOLINE" 50310 "ANTHRALIN" 50320 "ANTIHEMOPHILIC FACTOR HUMAN" 50323 "ANTIMONY POTASSIUM TARTRATE" 50325 "ANTIPYRINE" 50330 "ANTIRABIES SERUM" 50338 "ANTIVENIN BEE STING" 50365 "APROBARBITAL" 50367 "ARALIA" 50370 "ARGININE" 50375 "ARNICA TINCTURE" 50380 "ASAFETIDA TINCTURE" 50400 "ASPARAGINASE" 50410 "ASPIRIN" 50418 "ATENOLOL" 50419 "ATRACURIUM BESYLATE" 50420 "ATROPINE" 50430 "ATTAPULGITE" 50433 "AURANOFIN" 50435 "AUROTHIOGLUCOSE" 50440 "AZATADINE" 50444 "AZTREONAM" 50445 "AZATHIOPRINE" 50446 "AZLOCILLIN SODIUM" 50447 "BACAMPICILLIN" 50450 "BACITRACIN" 50455 "BACLOFEN" 50460 "BALSAM" 50465 "BANDAGE" 50475 "BARBITAL" 50480 "BARIUM SULFATE" 50485 "BCG VACCINE" 50490 "BECLOMETHASONE" 50492 "BEEF EXTRACT" 50495 "BELLADONNA" 50498 "BENAZEPRIL HYDROCHLORIDE" 50499 "BENACTYZINE" 50500 "BENDROFLUMETHIAZIDE" 50505 "BENOXINATE" 50507 "BENTIROMIDE" 50508 "BENTONITE" 50515 "BENZALKONIUM CHLORIDE" 50516 "BENZENE" 50520 "BENZETHONIUM CHLORIDE" 50525 "BENZIN" 50530 "BENZOCAINE" 50538 "BENZOIC ACID" 50540 "BENZOIN" 50545 "BENZONATATE" 50548 "BENZOPHENONE" 50550 "BENZOYL PEROXIDE" 50555 "BENZPHETAMINE" 50558 "BENZQUINAMIDE" 50560 "BENZTHIAZIDE" 50565 "BENZTROPINE" 50570 "BENZYL ALCOHOL" 50575 "BENZYL BENZOATE" 50576 "BENZYL CINNAMATE" 50577 "BERACTANT" 50580 "BETA CAROTENE" 50583 "BETAINE" 50585 "BETAMETHASONE" 50588 "BETAXOLOL HCL" 50590 "BETAZOLE" 50595 "BETHANECHOL" 50605 "BILAZO REAGENT" 50610 "BILE ACIDS" 50613 "BILE SALTS" 50615 "BIOFLAVONOIDS" 50620 "BIOTIN" 50625 "BIPERIDEN" 50630 "BISACODYL" 50631 "BISMUTH ALUMINATE" 50632 "BISMUTH OXIDE" 50634 "BISMUTH SULFONATE" 50635 "BISMUTH ANTI-DIARRHEA AGENTS" 50637 "BISMUTH, EXTERNAL" 50638 "BISMUTH IODIDE" 50640 "BISMUTH SALICYLATE" 50650 "BISMUTH TRIBROMOPHENATE" 50653 "BITOLTEROL MESYLATE" 50655 "BLEOMYCIN" 50660 "BORIC ACID" 50663 "BRAN" 50665 "BRETYLIUM" 50668 "BRILLIANT BLUE" 50670 "BRILLIANT GREEN" 50675 "BROMELAINS" 50679 "BROMINE" 50680 "BROMOCRIPTINE" 50685 "BROMODIPHENHYDRAMINE" 50687 "BROMOPHENOL" 50690 "BROMPHENIRAMINE" 50698 "BUCHU" 50705 "BUCLIZINE" 50706 "BUFFERS" 50708 "BUMETANIDE" 50710 "BUPIVACAINE" 50711 "BUPRENORPHINE HCL" 50713 "BUSPIRONE HCL" 50714 "BUPROPION" 50715 "BUSULFAN" 50720 "BUTABARBITAL" 50728 "BUTALBITAL" 50730 "BUTAMBEN" 50733 "BUTOCONAZOLE NITRATE" 50740 "BUTORPHANOL TARTRATE" 50742 "BUTYLPARABEN" 50745 "CAFFEINE" 50755 "CALAMINE" 50758 "CALCIFEDIOL" 50760 "CALCITONIN" 50770 "CALCIUM REPLACEMENT AGENTS" 50773 "CALCIUM GLYCEROPHOSPHATE" 50775 "CALCIUM ACETATE" 50776 "CALCIUM" 50780 "CALCIUM BROMIDE" 50785 "CALCIUM CARBONATE" 50800 "CALCIUM HYDROXIDE" 50802 "CALCIUM IODIDE" 50803 "CALCIUM POLYSULFIDE" 50805 "CALCIUM SILICATE" 50806 "CALCIUM ION" 50810 "CALCIUM SUCCINATE" 50811 "CALCIUM PANTOTHENATE" 50818 "CALCIUM THIOGLYCOLLATE" 50821 "CALCIUM THIOSULFATE" 50823 "CALCIUM UNDECYLENATE" 50840 "CALUSTERONE" 50845 "CAMPHOR" 50848 "CANDELILLA WAX" 50860 "CANTHARIDIN" 50865 "CAPREOMYCIN" 50866 "CAPRYLIC ACID" 50867 "CAPSAICIN" 50868 "CAPSICUM" 50869 "CAPTOPRIL" 50870 "CARAMEL" 50873 "CARAMIPHEN" 50875 "CARBACHOL" 50880 "CARBAMAZEPINE" 50885 "CARBARSONE" 50887 "CALCIUM CARBASPIRIN" 50890 "CARBAZOCHROME" 50895 "CARBENICILLIN" 50898 "CARBETAPENTANE" 50899 "CARBIDOPA" 50900 "CARBINOXAMINE" 50905 "CARBOL-FUCHSIN" 50908 "CARBON DIOXIDE" 50910 "CARBON TETRACHLORIDE" 50912 "CARBOXYMETHYLCELLULOSE" 50920 "CARISOPRODOL" 50923 "CARMELLOSE" 50925 "CARMUSTINE" 50929 "CARNITINE" 50930 "CARPHENAZINE" 50933 "CASANTHRANOL" 50935 "CASCARA" 50938 "CASEIN" 50940 "CASTOR OIL" 50943 "CEDAR LEAF OIL" 50945 "CEFACLOR" 50950 "CEFADROXIL" 50955 "CEFAMANDOLE" 50960 "CEFAZOLIN" 50961 "CEFTRIAXONE" 50962 "CEFOPERAZONE" 50963 "CEFORANIDE" 50964 "CEFOTAXIME SODIUM" 50965 "CEFOXITIN SODIUM" 50966 "CEFTAZIDIME" 50967 "CEFUROXIME SODIUM" 50968 "CELLULASE" 50969 "CEFOTETAN DISODIUM" 50975 "CELLULOSE" 50980 "CEPHALEXIN" 50990 "CEPHALORIDINE" 50995 "CEPHALOTHIN" 51000 "CEPHAPIRIN" 51005 "CEPHRADINE" 51008 "CERESIN WAX" 51010 "CERIUM OXALATE" 51012 "CERULETIDE DIETHYLAMINE" 51015 "CETALKONIUM CHLORIDE" 51016 "CETEARETH" 51017 "CETEARYL OCTANOATE" 51018 "CETRIMONIUM BROMIDE" 51020 "CETYL ALCOHOL" 51023 "CETYLPYRIDINIUM" 51025 "CHARCOAL" 51030 "CHERRY SYRUP" 51040 "CHLORAL HYDRATE" 51045 "CHLORAMBUCIL" 51050 "CHLORAMPHENICOL" 51053 "CHLORCYCLIZINE" 51055 "CHLORDIAZEPOXIDE" 51060 "CHLORHEXIDINE" 51064 "CHLORIDE ION" 51066 "CHLORMEZANONE" 51068 "CHLOROACETIC ACID" 51070 "CHLOROALLYLHEXAMINIUM CHLORIDE" 51075 "CHLOROBUTANOL" 51080 "CHLOROFORM" 51085 "CHLOROPHYLL" 51090 "CHLOROPROCAINE" 51095 "CHLOROQUINE" 51100 "CHLOROTHIAZIDE" 51105 "CHLOROTHYMOL" 51110 "CHLOROTRIANISENE" 51115 "CHLOROXINE" 51120 "CHLOROXYLENOL" 51125 "CHLORPHENESIN" 51130 "CHLORPHENIRAMINE" 51150 "CHLORPROMAZINE" 51155 "CHLORPROPAMIDE" 51160 "CHLORPROTHIXENE" 51165 "CHLORTETRACYCLINE" 51170 "CHLORTHALIDONE" 51175 "CHLORZOXAZONE" 51177 "CHOLECALCIFEROL" 51180 "CHOLERA VACCINE" 51185 "CHOLESTEROL" 51190 "CHOLESTYRAMINE" 51193 "CHOLIC ACID" 51195 "CHOLINE" 51200 "CHOLINE SALICYLATE" 51203 "CHONDRUS" 51205 "CHORIONIC GONADOTROPIN" 51208 "CHROMIC CHLORIDE" 51209 "CHROMIUN" 51211 "CHYMOPAPAIN" 51215 "CHYMOTRYPSIN" 51218 "CICLOPIROX" 51219 "CILASTATIN SODIUM" 51220 "CIMETIDINE" 51223 "CINNAMEDRINE" 51225 "CINNAMON OIL" 51227 "CINOXACIN" 51228 "CINOXATE" 51229 "CIPROFLOXACIN HCL" 51230 "CISPLATIN" 51235 "CITRIC ACID" 51240 "CITRONELLA OIL" 51242 "CLARITHROMYCIN" 51243 "CLOBETASOL PROPIONATE" 51245 "CLEMASTINE" 51250 "CLIDINIUM BROMIDE" 51255 "CLINDAMYCIN" 51257 "CLOCORTOLONE" 51260 "CLOFIBRATE" 51265 "CLOMIPHENE" 51270 "CLONAZEPAM" 51275 "CLONIDINE" 51280 "CLORAZEPATE" 51290 "CLOTRIMAZOLE" 51295 "CLOVE OIL" 51300 "CLOXACILLIN" 51303 "CLOZAPINE" 51305 "COAL TAR" 51308 "COBALAMIN" 51310 "COCAINE HCL" 51313 "COCAMIDOPROPYL BETAINE" 51315 "COCCIDIOIDIN" 51320 "COCILLANA" 51325 "COCOA BUTTER" 51330 "COCONUT OIL" 51335 "COD & HALIBUT LIVER OIL" 51340 "CODEINE" 51345 "COLCHICINE" 51355 "COLESTIPOL" 51358 "COLIFORM VACCINE" 51360 "COLISTIN" 51365 "COLLAGEN DERIVATIVE" 51375 "COLLODION" 51380 "COMBINATION PRODUCT" 51382 "MULTIVITAMIN COMBINATION" 51385 "CONGO RED" 51390 "CONTACT LENS SOLUTION" 51393 "COPPER" 51395 "CORN OIL" 51400 "CORTICOTROPIN" 51405 "CORTISONE" 51410 "COSYNTROPIN" 51415 "COTTONSEED OIL" 51425 "CRESOL" 51430 "CROMOLYN SODIUM" 51435 "CROTAMITON" 51440 "CRYPTENAMINE" 51445 "CUPRIC SULFATE" 51450 "OXYTETRACYCLINE" 51460 "CYCLACILLIN" 51465 "CYCLANDELATE" 51470 "CYCLOBENZAPRINE" 51475 "CYCLOMETHYCAINE" 51478 "CYCLOPENTAMINE" 51480 "CYCLOPENTOLATE" 51485 "CYCLOPHOSPHAMIDE" 51490 "CYCLOSERINE" 51493 "CYCLOSPORINE" 51495 "CYCLOTHIAZIDE" 51500 "CYCLIZINE" 51505 "CYCRIMINE" 51510 "CYPROHEPTADINE" 51515 "CYSTEINE" 51518 "CYSTINE" 51520 "CYTARABINE" 51523 "D-ALPHA TOCOPHERYL" 51530 "DACARBAZINE" 51535 "DACTINOMYCIN" 51540 "DANAZOL" 51545 "DANTHRON" 51550 "DANTROLENE" 51555 "DAPSONE" 51560 "DAUNORUBICIN" 51575 "DEFEROXAMINE" 51585 "DEHYDROCHOLIC ACID" 51590 "DEMECARIUM" 51595 "DEMECLOCYCLINE" 51597 "DEOXYCHOLIC ACID" 51598 "DESOXYRIBONUCLEASE" 51600 "DESERPIDINE" 51605 "DESIPRAMINE" 51610 "DESLANOSIDE" 51615 "DESMOPRESSIN" 51620 "DESONIDE" 51625 "DESOXIMETASONE" 51627 "DESOXYCHOLIC ACID" 51630 "DESOXYCORTICOSTERONE" 51633 "DETERGENT" 51635 "DEXAMETHASONE" 51638 "DEXBROMPHENIRAMINE" 51640 "DEXCHLORPHENIRAMINE" 51645 "DEXPANTHENOL" 51647 "DEXTRAN" 51660 "DEXTRANOMER" 51665 "DEXTROAMPHETAMINE" 51670 "DEXTROMETHORPHAN" 51675 "DEXTROSE" 51685 "DEXTROTHYROXINE" 51686 "DIABETIC SUPPLIES, MISCELL" 51688 "DIASTASE" 51689 "DIATRIZOATE SODIUM" 51695 "DIAZEPAM" 51700 "DIAZOXIDE" 51705 "DIBUCAINE" 51708 "DICHLORALPHENAZONE" 51709 "DICHLORODIFLUOROMETHANE" 51710 "DICHLOROTETRAFLUOROETHANE" 51712 "DICHLOROPHENE" 51715 "DICHLORPHENAMIDE" 51720 "DICLOXACILLIN" 51725 "DICUMAROL" 51730 "DICYCLOMINE" 51732 "DIDANOSINE" 51735 "DIENESTROL" 51740 "DIETARY SUPPLEMENT" 51750 "DIETHYLPROPION" 51755 "DIETHYLSTILBESTROL" 51760 "DIFLORASONE DIACETATE" 51763 "DIFLUNISAL" 51765 "DIGALLOYL TRIOLEATE" 51770 "DIGITALIS" 51775 "DIGITOXIN" 51780 "DIGOXIN" 51785 "DIHYDROERGOTAMINE" 51790 "DIHYDROTACHYSTEROL" 51792 "DIHYDROXYACETONE" 51795 "DIHYDROXYALUMINUM AMINOACETATE" 51803 "DILTIAZEM" 51805 "DIISOBUTYLPHENOXYPOLYETHOXYETHAN" 51810 "DIMENHYDRINATE" 51815 "DIMERCAPROL" 51817 "DIMETHICONE" 51825 "DIMETHISOQUIN" 51830 "DIMETHYL SULFOXIDE" 51835 "DIMETHYLAMINOBENZALDEHYDE" 51840 "DINOPROSTONE" 51848 "DIPERODON" 51860 "DIPHENHYDRAMINE" 51865 "DIPHENIDOL" 51868 "DIPHENOXYLATE" 51885 "DIPHENYLPYRALINE" 51900 "DIPHTHERIA ANTITOXIN" 51903 "DIPH PERTUSSIS TETANUS VACCINE" 51910 "DIPHTHERIA TOXOID" 51913 "DIPIVEFRIN" 51914 "DIPROPYLENE GLYCOL SALICYLATE" 51915 "DIPYRIDAMOLE" 51920 "DISOPYRAMIDE" 51925 "DISULFIRAM" 51927 "DIVALPROEX SODIUM" 51930 "DOBUTAMINE" 51935 "DOCUSATE" 51945 "DOPAMINE" 51947 "DOXACURIUM CHLORIDE" 51950 "DOXAPRAM" 51953 "DOXAZOSIN MESYLATE" 51955 "DOXEPIN" 51960 "DOXORUBICIN" 51965 "DOXYCYCLINE" 51970 "DOXYLAMINE" 51978 "DRONABINOL" 51980 "DROMOSTANOLONE" 51985 "DROPERIDOL" 51990 "DYCLONINE" 52000 "DYPHYLLINE" 52005 "ECHOTHIOPHATE" 52008 "ECONAZOLE" 52010 "EDETATE CALCIUM DISODIUM" 52015 "EDETATE DISODIUM" 52020 "EDROPHONIUM" 52023 "ELECTROLYTES" 52024 "ENCAINIDE HCL" 52025 "EMETINE" 52028 "ENALAPRIL" 52030 "ENFLURANE" 52035 "EPHEDRINE" 52040 "EPINEPHRINE" 52042 "EPOETIN ALFA" 52045 "ERGOCALCIFEROL" 52048 "ERGOLOID MESYLATES" 52050 "ERGONOVINE" 52053 "ERGOT" 52055 "ERGOTAMINE" 52060 "ERYTHRITYL TETRANITRATE" 52065 "ERYTHROMYCIN" 52067 "ESMOLOL HCL" 52068 "ESTAZOLAM" 52070 "ESTRADIOL" 52072 "ESTRAMUSTINE" 52075 "ESTROGENS" 52080 "ESTRONE" 52082 "ESTROPIPATE" 52085 "ETHACRYNIC ACID" 52090 "ETHAMBUTOL" 52095 "ETHAVERINE" 52100 "ETHCHLORVYNOL" 52105 "ETHER" 52115 "ETHIONAMIDE" 52125 "ETHOPROPAZINE" 52130 "ETHOSUXIMIDE" 52135 "ETHOTOIN" 52150 "ETHYL ACETATE" 52155 "ETHYL CHLORIDE" 52160 "ETHYLESTRENOL" 52165 "ETHYLMORPHINE" 52168 "ETHNODIOL DIACETATE" 52169 "ETRETINATE" 52170 "ETHYLNOREPINEPHRINE" 52175 "ETIDOCAINE" 52185 "ETIDRONATE DISODIUM" 52186 "ETODOLAC" 52188 "ETOMIDATE" 52189 "ETOPOSIDE" 52190 "EUCALYPTUS OIL" 52194 "EUPHORBIA" 52195 "EUGENOL" 52198 "FAMOTIDINE" 52203 "FACTOR IX COMPLEX HUMAN" 52210 "FAST GREEN FCF" 52213 "FAT EMULSION" 52215 "FENFLURAMINE" 52218 "FENNEL OIL" 52219 "FELODIPINE" 52220 "FENOPROFEN" 52225 "FENTANYL" 52270 "FIBRINOLYSIN" 52275 "FLAVOXATE" 52278 "FLECAINIDE ACETATE" 52280 "FLOXURIDINE" 52290 "FLUCYTOSINE" 52295 "FLUDROCORTISONE ACETATE" 52300 "FLUMETHASONE" 52303 "FLUMETHIAZIDE" 52304 "FLUNISOLIDE" 52305 "FLUOCINOLONE" 52310 "FLUOCINONIDE" 52315 "FLUORESCEIN" 52318 "FLUORIDE" 52320 "FLUOROMETHOLONE" 52325 "FLUOROURACIL" 52330 "FLUOXYMESTERONE" 52335 "FLUPHENAZINE" 52340 "FLUPREDNISOLONE" 52345 "FLURANDRENOLIDE" 52350 "FLURAZEPAM" 52353 "FLURBIPROFEN SODIUM" 52354 "FLUTICASONE PROPIONATE" 52355 "FOLIC ACID" 52358 "FOOD SUPPLEMENT" 52360 "FORMALDEHYDE" 52361 "FOSCARNET SODIUM" 52363 "FRANGULA" 52365 "FORMIC ACID" 52367 "FOSINOPRIL SODIUM" 52370 "FRUCTOSE" 52373 "FUCHSIN" 52375 "FULLER`S EARTH" 52380 "FURAZOLIDONE" 52385 "FUROSEMIDE" 52390 "GALLAMINE" 52395 "GELATIN" 52397 "GELSEMIUM" 52398 "GEMFIBROZIL" 52400 "GENTAMICIN" 52405 "GENTIAN VIOLET" 52408 "GINGER" 52410 "GINSENG" 52415 "GITALIN" 52417 "GLIPIZIDE" 52420 "GLUCAGON" 52422 "GLUCONIC ACID" 52425 "GLUCOSE" 52435 "GLUTAMIC ACID" 52440 "GLUTARALDEHYDE" 52445 "GLUTETHIMIDE" 52447 "GLYBURIDE" 52450 "GLYCERIN" 52452 "GLYCERYL" 52455 "GLYCOPYRROLATE" 52465 "GLYCYRRHIZA" 52470 "GOLD SODIUM THIOMALATE" 52472 "GONADORELIN" 52475 "GOLD SODIUM THIOSULFATE" 52478 "GRAMICIDIN" 52480 "GRISEOFULVIN" 52485 "GUAIACOL" 52490 "GUAIFENESIN" 52492 "GUANABENZ ACETATE" 52493 "GUANADREL" 52495 "GUANETHIDINE" 52498 "GUANFACINE HCL" 52500 "GUANIDINE" 52502 "GUAR GUM" 52503 "HALAZEPAM" 52504 "HALOBETASOL PROPIONATE" 52505 "HALAZONE" 52510 "HALCINONIDE" 52520 "HALOPERIDOL" 52525 "HALOPROGIN" 52530 "HALOTHANE" 52533 "HEMICELLULASE" 52535 "HAMAMELIS WATER" 52537 "HEMIN" 52540 "HEPARIN" 52545 "HEPATITIS B IMMUNE GLOBULIN" 52548 "HEPATITIS B VACCINE" 52550 "HESPERIDIN" 52555 "HETASTARCH" 52560 "HEXACHLOROPHENE" 52565 "HEXAFLUORENIUM" 52575 "HEXESTROL" 52580 "HEXOBARBITAL" 52585 "HEXOCYCLIUM" 52590 "HEXYLCAINE" 52595 "HEXYLRESORCINOL" 52598 "HISTIDINE MONOHYDROCHLORIDE" 52600 "HISTAMINE" 52610 "HISTOPLASMIN" 52615 "HOMATROPINE" 52617 "HOMOSALATE" 52620 "HOUSE DUST ALLERGENIC EXTRACT" 52625 "HYALURONIDASE" 52630 "HYDRALAZINE" 52634 "HYDRASTIS" 52635 "HYDRIODIC ACID" 52640 "HYDROCHLORIC ACID" 52645 "HYDROCHLOROTHIAZIDE" 52647 "DIHYDROCODEINE" 52650 "HYDROCODONE" 52655 "HYDROCORTISONE" 52660 "HYDROFLUMETHIAZIDE" 52665 "HYDROGEN PEROXIDE" 52670 "HYDROMORPHONE" 52675 "HYDROQUINONE" 52680 "HYDROXOCOBALAMIN" 52685 "HYDROXYAMPHETAMINE" 52690 "HYDROXYCHLOROQUINE" 52691 "HYDROXYETHYL CELLULOSE" 52693 "HYDROXYPHENYLMERCURIC CHLORIDE" 52695 "HYDROXYPROGESTERONE" 52700 "HYDROXYPROPYL METHYLCELLULOSE" 52705 "HYDROXYSTILBAMIDINE" 52710 "HYDROXYUREA" 52715 "HYDROXYZINE" 52718 "HYMENOPTERA ALLERGENIC EXTRACT" 52720 "HYOSCYAMINE" 52723 "HYOSCYAMINE HYDROBROMIDE" 52730 "IBUPROFEN" 52735 "ICHTHAMMOL" 52740 "IDOXURIDINE" 52743 "IMIPENEM" 52745 "IMIPRAMINE" 52750 "IMMUNE GLOBULIN" 52752 "INHALER" 52753 "INDAPAMIDE" 52755 "INDIGOINDISULFONATE" 52765 "INDOCYANINE GREEN" 52770 "INDOMETHACIN" 52775 "INFANT FORMULA" 52780 "INFLUENZA VIRUS VACCINE" 52785 "INOSITOL" 52790 "INSULIN" 52791 "INTERFERON ALFA-2A" 52792 "INTERFERON ALFA-2B" 52793 "INTRINSIC FACTOR CONCENTRATE" 52794 "INTERFERON ALFA" 52795 "INULIN" 52796 "INTERFERON ALFA-N3" 52800 "INVERT SUGAR" 52810 "IOCETAMIC ACID" 52815 "IODAMIDE MEGLUMINE" 52820 "IODINE TOPICAL PREPARATIONS" 52825 "IODINATED GLYCEROL" 52830 "IODINE SOLUTIONS" 52835 "IODIPAMIDE MEGLUMINE" 52845 "IODOCHLORHYDROXYQUIN" 52850 "IODOQUINOL" 52853 "IOHEXOL" 52854 "IOPAMIDOL" 52855 "IOPANOIC ACID" 52860 "IOPHENDYLATE" 52865 "IOTHALAMATE" 52870 "IPECAC" 52880 "IPODATE CALCIUM" 52881 "IPODATE SODIUM" 52883 "IPRATROPIUM BROMIDE" 52885 "IRON PREPARATIONS" 52890 "IRON BILE SALTS" 52895 "ISOCARBOXAZID" 52900 "ISOETHARINE" 52904 "ISOFLURANE" 52905 "ISOFLUROPHATE" 52908 "ISOMETHEPTENE MUCATE" 52910 "ISOLEUCINE" 52915 "ISONIAZID" 52920 "ISOPROPAMIDE" 52925 "ISOPROPYL ALCOHOL" 52927 "ISOPROPYL PALMITATE" 52928 "ISOPROPYL MYRISTATE" 52930 "ISOPROTERENOL" 52933 "ISOQUINOLINIUM BROMIDE" 52935 "ISOSORBIDE" 52936 "ISOSTEARIC ACID" 52943 "ISOTRETINOIN" 52945 "ISOXSUPRINE" 52946 "ISRADIPINE" 52948 "JUNIPER" 52950 "KANAMYCIN" 52955 "KAOLIN" 52965 "KARAYA GUM" 52968 "KELP" 52970 "KETAMINE" 52972 "KETOCONAZOLE" 52973 "L-TRYPTOPHANE" 52975 "LACTASE" 52978 "KETOPROFEN" 52979 "LABETALOL HCL" 52980 "LACTIC ACID" 52985 "LACTOBACILLUS ACIDOPHILUS" 52986 "LACTOBACILLUS BULGARICUS" 52990 "LACTOSE" 52992 "LACTUCA" 52995 "LACTULOSE" 53000 "LANATOSIDE C" 53003 "LANOLIN" 53004 "LAURETH" 53005 "LAURYL SULFOACETATE" 53010 "LAVENDER OIL" 53015 "LEAD ACETATE" 53020 "LECITHIN" 53025 "LEMON OIL" 53030 "LEUCINE" 53035 "LEUCOVORIN" 53040 "LEVALLORPHAN" 53043 "LEVOBUNOLOL HCL" 53045 "LEVODESOXYEPHEDRINE" 53050 "LEVODOPA" 53055 "LEVORPHANOL" 53065 "LEVOTHYROXINE" 53070 "LIDOCAINE" 53090 "LINCOMYCIN" 53095 "LINDANE" 53100 "LINOLENIC ACID" 53105 "LINSEED OIL" 53110 "LIOTHYRONINE" 53115 "LIOTRIX" 53118 "LIPASE" 53120 "LITHIUM" 53125 "LIVER DERIVATIVE" 53135 "LOMUSTINE" 53140 "LOPERAMIDE" 53145 "LORAZEPAM" 53148 "LOVASTATIN" 53150 "LOXAPINE" 53154 "LYMPHOCYTE IMMUNE GLOBULIN" 53155 "LYPRESSIN" 53160 "LYSINE" 53165 "MAFENIDE" 53170 "MAGALDRATE" 53173 "MAGNESIUM ACETATE" 53175 "MAGNESIUM ANTACIDS" 53180 "MAGNESIUM GLUCONATE" 53190 "MAGNESIUM CHLORIDE" 53195 "MAGNESIUM CATHARTICS" 53220 "MAGNESIUM SALICYLATE" 53222 "MAGNESIUM STEARATE" 53224 "MALATHION" 53235 "MALT SOUP EXTRACT" 53240 "MANGANESE GLUCONATE" 53241 "MANGANESE (PROTEIN COMPLEX)" 53242 "MANGANESE SULFATE" 53245 "MANNITOL" 53248 "MAPROTILINE" 53250 "MAZINDOL" 53255 "MEASLES VIRUS VACCINE" 53260 "MEBENDAZOLE" 53265 "MECAMYLAMINE" 53270 "MECHLORETHAMINE" 53275 "MECLIZINE" 53277 "MECLOFENAMATE" 53278 "MECLOFENAMIC ACID" 53280 "MEDROXYPROGESTERONE" 53285 "MEDRYSONE" 53290 "MEFENAMIC ACID" 53295 "MEGESTROL" 53298 "MEGLUMINE" 53300 "MELPHALAN" 53315 "MENINGOCOCCAL VACCINE" 53320 "MENOTROPINS" 53325 "MENTHOL" 53328 "METHYL ANTHRANILATE" 53330 "MEPENZOLATE" 53335 "MEPERIDINE" 53340 "MEPHENESIN" 53345 "MEPHENTERMINE" 53350 "MEPHENYTOIN" 53355 "MEPHOBARBITAL" 53360 "MEPIVACAINE" 53370 "MEPROBAMATE" 53373 "MERALEIN SODIUM" 53375 "MERBROMIN" 53380 "MERCAPTOMERIN" 53385 "MERCAPTOPURINE" 53395 "MERCURIC CHLORIDE" 53405 "MERCURIC IODIDE" 53407 "MERCURIC OLEATE" 53410 "MERCURIC OXIDE" 53415 "MERCURIC SULFIDE" 53420 "MERCUROPHYLLINE" 53425 "MERCUR0US CHLORIDE" 53431 "MERSALYL" 53435 "MESORIDAZINE" 53438 "MESTRANOL" 53445 "METOPROLOL" 53450 "METAPROTERENOL" 53455 "METARAMINOL" 53460 "METAXALONE" 53465 "METHACHOLINE" 53470 "METHACYCLINE HCL" 53475 "METHADONE" 53485 "METHAMPHETAMINE" 53490 "METHANDRIOL" 53495 "METHANDROSTENOLONE" 53500 "METHANTHELINE" 53505 "METHAPYRILENE" 53510 "METHAQUALONE" 53515 "METHARBITAL" 53520 "METHAZOLAMIDE" 53525 "METHDILAZINE" 53530 "METHENAMINE" 53535 "METHICILLIN" 53540 "METHIMAZOLE" 53550 "METHIONINE" 53560 "METHOCARBAMOL" 53565 "METHOHEXITAL" 53570 "METHOTREXATE" 53575 "METHOTRIMEPRAZINE" 53580 "METHOXAMINE" 53585 "METHOXSALEN" 53590 "METHOXYFLURANE" 53600 "METHSCOPOLAMINE" 53605 "METHSUXIMIDE" 53610 "METHYCLOTHIAZIDE" 53615 "METHYL ALCOHOL" 53620 "METHYL SALICYLATE" 53625 "METHYLBENZETHONIUM CHLORIDE" 53630 "METHYLCELLULOSE" 53635 "METHYLDOPA" 53638 "METHYLDOPATE" 53640 "METHYLENE BLUE" 53645 "METHYLERGONOVINE" 53647 "METHYL NICOTINATE" 53650 "METHYLPARABEN" 53655 "METHYLPHENIDATE" 53660 "METHYLPREDNISOLONE" 53670 "METHYLTESTOSTERONE" 53675 "METHYPRYLON" 53680 "METHYSERGIDE" 53683 "METIPRANOLOL" 53685 "METOCURINE" 53688 "METOCLOPRAMIDE" 53690 "METOLAZONE" 53695 "METRIZAMIDE" 53700 "METRONIDAZOLE" 53705 "METYRAPONE" 53710 "METYROSINE" 53712 "MEXILETINE HCL" 53713 "MEZLOCILLIN" 53715 "MICONAZOLE" 53716 "MIDAZOLAM HCL" 53718 "MILK SOLIDS NONFAT" 53720 "MINERAL OIL" 53723 "MINERALS" 53725 "MINOCYCLINE" 53730 "MINOXIDIL" 53735 "MITHRAMYCIN" 53740 "MITOMYCIN" 53745 "MITOTANE" 53750 "MOLINDONE" 53753 "MOLYBDENUM" 53754 "MOMETASONE FUROATE MONOHYDRATE" 53755 "MONOBENZONE" 53758 "MONOETHANOLAMINE" 53760 "MORPHINE" 53770 "MORRHUATE SODIUM" 53775 "MOUTHWASH" 53778 "MOXALACTAM" 53780 "MULTIVITAMINS GENERAL" 53785 "MULTIVITAMINS THERAPEUTIC" 53805 "MULTIVITAMINS" 53820 "MUMPS VIRUS VACCINE" 53825 "MUSTARD OIL" 53835 "MYRRH" 53838 "NABILONE" 53840 "NADOLOL" 53845 "NAFCILLIN" 53855 "NALBUPHINE" 53860 "NALIDIXIC ACID" 53865 "NALOXONE" 53868 "NALTREXONE HYDROCHLORIDE" 53870 "NANDROLONE" 53875 "NAPHAZOLINE" 53880 "NAPROXEN" 53885 "NATAMYCIN" 53890 "NEGATOL" 53891 "NEISSERIA" 53895 "NEOMYCIN" 53900 "NEOSTIGMINE" 53903 "NETILMICIN" 53905 "NIACIN" 53915 "NIACINAMIDE" 53919 "NICOTINE POLACRILEX" 53920 "NICOTINYL ALCOHOL" 53922 "NIFEDIPINE" 53925 "NIKETHAMIDE" 53930 "NITROFURANTOIN" 53935 "NITROFURAZONE" 53940 "NITROGEN" 53945 "NITROGLYCERIN" 53950 "NITROUS OXIDE" 53955 "NONOXYNOL 9" 53960 "NOREPINEPHRINE" 53965 "NORETHINDRONE" 53968 "NORETHYNODREL" 53969 "NORFLOXACIN" 53970 "NORGESTREL" 53975 "NORTRIPTYLINE" 53980 "NOSCAPINE" 53985 "NOVOBIOCIN" 53988 "NUTMEG OIL" 53989 "NUX VOMICA" 53990 "NYLIDRIN" 53991 "NUTGALL" 53995 "NYSTATIN" 54000 "OATMEAL" 54003 "OCTOXYNOL" 54005 "OCTYL DIMETHYL PABA" 54009 "OFLOXACIN" 54015 "OINTMENT HYDROPHILIC" 54020 "OLEANDOMYCIN" 54025 "OLEIC ACID" 54030 "OLIVE OIL" 54032 "ONDANSETRON HYDROCHLORIDE" 54035 "OPIUM" 54045 "ORANGE OIL" 54050 "ORPHENADRINE" 54055 "ORTHOTOLIDINE REAGENT" 54060 "OUABAIN" 54063 "OVULATION TEST KIT" 54065 "OX BILE EXTRACT" 54070 "OXACILLIN" 54075 "OXALIC ACID" 54080 "OXANDROLONE" 54085 "OXAZEPAM" 54093 "OXYBENZONE" 54094 "OXYCODONE" 54095 "OXYPHENCYCLIMINE" 54100 "OXTRIPHYLLINE" 54105 "OXYBUTYNIN" 54110 "OXYCHLOROSENE" 54115 "OXYGEN" 54120 "OXYMETAZOLINE" 54130 "OXYMETHOLONE" 54135 "OXYMORPHONE" 54140 "OXYPHENBUTAZONE" 54145 "OXYPHENOMIUM" 54148 "OXYQUINOLONE" 54155 "OXYTOCIN" 54157 "PADIMATE O" 54158 "PAMABRON" 54160 "PANCREATIN" 54165 "PANCRELIPASE" 54170 "PANCURONIUM" 54173 "PANTHENOL" 54175 "PANTOTHENIC ACID" 54180 "PAPAIN" 54190 "PAPAVERINE" 54191 "PARACHOLOROMETAXYLENOL" 54193 "PARAFFIN" 54195 "PARALDEHYDE" 54200 "PARAMETHADIONE" 54205 "PARAMETHASONE" 54215 "PAREGORIC" 54220 "PARGYLINE" 54225 "PAROMOMYCIN" 54227 "PASSIFLORA EXTRACT" 54228 "PEG-3 DISTERATE" 54230 "PATCHOULI OIL" 54235 "PEANUT OIL" 54237 "PEG-4 DILAURATE" 54238 "PECTIN" 54239 "PELLITORY ROOT" 54240 "PEMOLINE" 54245 "PENICILLAMINE" 54250 "PENICILLIN" 54260 "PENICILLIN G PROCAINE" 54268 "PENICILLIN V POTASSIUM" 54270 "PENICILLOYL" 54275 "PENTAERYTHRITOL" 54278 "PENTAMIDINE ISETHIONATE" 54280 "PENTAGASTRIN" 54290 "PENTAZOCINE" 54295 "PENTOBARBITAL" 54297 "PENTOXIFYLLINE" 54300 "PENTYLENETETRAZOL" 54305 "PEPPERMINT" 54310 "PEPSIN" 54315 "PERMETHRIN" 54320 "PERPHENAZINE" 54325 "PERTUSSIS IMMUNE GLOBULIN" 54328 "PERTUSSIS VACCINE" 54330 "PETROLATUM" 54332 "PETROLEUM DISTILLATE" 54345 "PHENACEMIDE" 54350 "PHENACETIN" 54360 "PHENAPHTHAZINE" 54365 "PHENAZOPYRIDINE" 54370 "PHENDIMETRAZINE" 54375 "PHENELZINE" 54378 "PHENINDAMINE" 54385 "PHENIRAMINE" 54390 "PHENMETRAZINE" 54395 "PHENOBARBITAL" 54400 "PHENOL" 54405 "PHENOLPHTHALEIN" 54410 "PHENOLSULFONPHTHALEIN" 54415 "PHENOXYBENZAMINE HCL" 54420 "PHENPROCOUMON" 54425 "PHENSUXIMIDE" 54430 "PHENTERMINE" 54435 "PHENTOLAMINE" 54440 "PHENYL SALICYLATE" 54445 "PHENYLALANINE" 54450 "PHENYLBUTAZONE" 54455 "PHENYLEPHRINE" 54460 "PHENYLMERCURIC NITRATE" 54465 "PHENYLPROPANOLAMINE" 54468 "PHENYLTOLOXAMINE" 54470 "PHENYTOIN" 54475 "PHOSPHOMOLYBDATE REAGENT" 54480 "PHOSPHORIC ACID" 54485 "PHTHALYLSULFATHIAZOLE" 54488 "PHYSIOLOGIC IRRIGATING SOLUTION" 54490 "PHYSOSTIGMINE" 54495 "PHYTONADIONE" 54500 "PILOCARPINE" 54501 "PINDOLOL" 54502 "PINE OIL" 54504 "PIMOZIDE" 54505 "PIPERACETAZINE" 54508 "PIPERACILLIN" 54510 "PIPERAZINE" 54523 "PIPERONYL" 54525 "PIPOBROMAN" 54528 "PIROXICAM" 54530 "PITUITARY POSTERIOR" 54535 "PLACEBO" 54540 "PLAGUE VACCINE" 54545 "PLANTAGO SEED" 54550 "PLASMA PROTEIN FRACTION" 54555 "PNEUMOCOCCAL VACCINE" 54560 "PODOPHYLLUM" 54565 "POISON IVY EXTRACT" 54575 "POLIO VACCINE" 54585 "POLLEN ANTIGEN" 54587 "POLYCARBOPHIL" 54590 "POLYETHYLENE GLYCOL" 54599 "POLYOXY 40 STEARATE" 54605 "POLYTHIAZIDE" 54610 "POLYVINYL ALCOHOL" 54613 "POPLAR BUD" 54615 "POTASH SULFURATED" 54620 "POTASSIUM ALKALINIZING AGENTS" 54625 "POTASSIUM AMINOBENZOATE" 54640 "POTASSIUM BITARTRATE" 54645 "POTASSIUM BROMIDE" 54650 "POTASSIUM CARBONATE" 54655 "POTASSIUM REPLACEMENT SOLUTIONS" 54700 "POTASSIUM GUAIACOLSULFONATE" 54703 "POTASSIUM GLUTAMATE" 54705 "POTASSIUM HYDROXIDE" 54710 "POTASSIUM IODIDE" 54713 "POTASSIUM ION" 54715 "POTASSIUM NITRATE" 54720 "POTASSIUM OXYQUINOLINE SULFATE" 54725 "POTASSIUM PERCHLORATE" 54730 "POTASSIUM PERMANGANATE" 54733 "POTASSIUM PHOSPHATE" 54735 "POTASSIUM ACIDIFYING AGENTS" 54737 "POTASSIUM SALICYLATE" 54740 "POTASSIUM SODIUM TARTRATE" 54743 "POTASSIUM SULFATE" 54745 "POTASSIUM THIOCYANATE" 54748 "POVIDONE" 54749 "POVIDONE-IODINE" 54750 "PRALIDOXIME" 54755 "PRAMOXINE" 54757 "PRAVASTATIN SODIUM" 54760 "PRAZEPAM" 54765 "PRAZOSIN" 54770 "PREDNISOLONE" 54775 "PREDNISONE" 54785 "PRILOCAINE" 54790 "PRIMAQUINE" 54795 "PRIMIDONE" 54800 "PROBENECID" 54805 "PROBUCOL" 54810 "PROCAINAMIDE" 54815 "PROCAINE" 54825 "PROCARBAZINE" 54830 "PROCHLORPERAZINE" 54835 "PROCYCLIDINE" 54840 "PROFLAVINE" 54845 "PROGESTERONE" 54850 "PROMAZINE" 54860 "PROMETHAZINE" 54865 "PROPRANOLOL" 54870 "PROPANTHELINE" 54875 "PROPARACAINE" 54885 "PROPIOMAZINE" 54890 "PROPOXYPHENE" 54895 "PROPYLENE GLYCOL" 54900 "PROPYLHEXEDRINE" 54905 "PROPYLPARABEN" 54910 "PROPYLTHIOURACIL" 54915 "PROTAMINE SULFATE" 54920 "PROTEIN HYDROLSATE" 54922 "PROTEIN SUPPLEMENT" 54923 "PROTEINASE" 54935 "PROTIRELIN" 54950 "PROTRIPTYLINE HCL" 54960 "PSEUDOEPHEDRINE" 54965 "PSYLLIUM" 54967 "PVP / VA COPOLYMER" 54975 "PYRANTEL" 54980 "PYRAZINAMIDE" 54983 "PYRETHRINS" 54984 "PYRETHROID" 54985 "PYRIDOSTIGMINE" 54990 "PYRIDOXINE" 54995 "PYRILAMINE", add; label define gen 55000 "PYRIMETHAMINE" 55005 "PYRITHIONE" 55015 "PYROGALLOL" 55023 "PYRROBUTAMINE" 55025 "PYRVINIUM" 55028 "QUAZEPAM" 55030 "QUINACRINE" 55032 "QUINAPRIL" 55035 "QUINESTROL" 55040 "QUINETHAZONE" 55045 "QUINIDINE" 55050 "QUININE" 55053 "QUININE & UREA HCL" 55055 "RABIES IMMUNE GLOBULIN" 55060 "RABIES VACCINE" 55061 "RACEMETHIONINE" 55063 "RACEPHEDRINE" 55064 "RANITIDINE" 55065 "RASPBERRY SYRUP" 55070 "RAUWOLFIA" 55075 "RESCINNAMINE" 55080 "RESERPINE" 55085 "RESORCINOL" 55095 "RHUBARB & SODA" 55105 "RIBOFLAVIN" 55108 "RICINOLEIC ACID" 55110 "RIFAMPIN" 55115 "RINGERS LACTATED" 55117 "RITODRINE" 55120 "ROSA GALLICA EXTRACT" 55125 "ROSE WATER" 55126 "ROSEMARY OIL" 55130 "RUBELLA VIRUS VACCINE" 55135 "RUTIN" 55140 "SACCHARIN" 55145 "SAFFLOWER OIL" 55148 "SALICYL ALCOHOL" 55150 "SALICYLAMIDE" 55160 "SALICYLIC ACID" 55165 "SALSALATE" 55168 "SARALASIN" 55169 "SASSAFRAS" 55170 "SCARLET RED" 55171 "SANGUINARIA" 55180 "SCOPOLAMINE HBR" 55185 "SECOBARBITAL" 55190 "SECRETIN" 55195 "SELENIUM SULFIDE" 55198 "SENEGA FLUID EXTRACT" 55200 "SENNA" 55210 "SESAME OIL" 55213 "SHARK LIVER OIL" 55215 "SILICIC ACID" 55218 "SILICONE" 55225 "SILVER NITRATE" 55230 "SILVER PROTEIN" 55235 "SILVER SULFADIAZINE" 55240 "SIMETHICONE" 55245 "SINCALIDE" 55253 "SKIN RESP FACTOR YEAST" 55255 "SMALLPOX VACCINE" 55260 "ANTIVENIN SNAKE BITE" 55265 "SOAP" 55270 "SODIUM ACETATE" 55273 "SODIUM ALGINATE" 55274 "SODIUM AMINOBENZOATE" 55275 "SODIUM BENZOATE" 55280 "SODIUM BICARBONATE" 55285 "SODIUM BISULFATE" 55290 "SODIUM BISULFITE" 55295 "SODIUM BORATE" 55300 "SODIUM BROMIDE" 55305 "SODIUM CACODYLATE" 55308 "SODIUM CAPRYLATE" 55310 "SODIUM CARBONATE" 55315 "SODIUM CHLORIDE" 55320 "SODIUM CITRATE" 55325 "SODIUM DICHROMATE" 55330 "SODIUM FLUORIDE" 55331 "SODIUM GLUCONATE" 55335 "SODIUM GLUTAMATE" 55338 "SODIUM GLYCERPHOSPHATE" 55339 "SODIUM HYALURONATE" 55340 "SODIUM HYDROXIDE" 55345 "SODIUM HYPOCHLORITE" 55348 "SODIUM ION" 55355 "SODIUM LACTATE" 55360 "SODIUM LAURYL SULFATE" 55365 "SODIUM NITRATE" 55370 "SODIUM NITROPRUSSIDE" 55378 "SODIUM PANTOTHENATE" 55380 "SODIUM PERBORATE" 55383 "SODIUM PHENOXIDE" 55385 "SODIUM PHOSPHATE" 55390 "SODIUM POLYSTYRENE SULFONATE" 55393 "SODIUM PROPIONATE" 55395 "SODIUM PYROPHOSPHATE" 55400 "SODIUM SUCCINATE" 55405 "SODIUM SULFATE" 55407 "SODIUM TARTRATE" 55410 "SODIUM SULFITE" 55420 "SODIUM THIOSALICYLATE" 55425 "SODIUM THIOSULFATE" 55430 "SOMATROPIN" 55433 "SORBIC ACID" 55434 "PEG-40 SORBITAN" 55435 "SORBITOL" 55440 "SOYBEAN OIL" 55445 "SPEARMINT OIL" 55450 "SPECTINOMYCIN" 55455 "SPIDER-BITE ANTIVENIN" 55460 "SPIRONOLACTONE" 55461 "SQUALENE" 55463 "SQUILL" 55465 "STANNOUS FLUORIDE" 55470 "STANOZOLOL" 55475 "STAPHYLOCOCCUS TOXOID" 55480 "STARCH" 55485 "STEARIC ACID" 55490 "STEARYL ALCOHOL" 55491 "STEARYL CHLORIDE" 55494 "STORAX" 55495 "STREPTOKINASE" 55500 "STREPTOMYCIN" 55503 "STREPTOZOCIN" 55505 "STRYCHNINE" 55508 "STYRAMATE" 55510 "SUCCINYLCHOLINE" 55515 "SUCCINYLSULFATHIAZOLE" 55518 "SUCRALFATE" 55520 "SUCROSE" 55521 "SULBACTIN SODIUM" 55525 "SULFACETAMIDE" 55535 "SULFACYTINE" 55540 "SULFADIAZINE" 55543 "SULFAMERAZINE" 55548 "SULFAMETHAZINE" 55550 "SULFAMETHIZOLE" 55555 "SULFAMETHOXAZOLE" 55565 "SULFANILAMIDE" 55567 "SULFANILYLBENZAMIDE" 55570 "SULFAPYRIDINE" 55575 "SULFASALAZINE" 55580 "SULFATHIAZOLE" 55583 "SUFENTANIL CITRATE" 55585 "SULFINPYRAZONE" 55590 "SULFISOXAZOLE" 55595 "SULFOBROMOPHTHALEIN" 55600 "SULFOSALICYLIC ACID" 55605 "SULFOXONE SODIUM" 55610 "SULFUR" 55613 "SULFURATED LIME" 55615 "SULINDAC" 55618 "SUPROFEN" 55623 "SURFACTANT" 55630 "SUTILAINS" 55635 "SYRUP" 55645 "TALC" 55647 "TALLOW" 55650 "TAMOXIFEN" 55655 "TANNIC ACID" 55665 "TARTARIC ACID" 55666 "TARTRAZINE" 55668 "TEMAZEPAM" 55670 "TERBUTALINE" 55673 "TERFENADINE" 55675 "TERPIN HYDRATE" 55690 "TESTOLACTONE" 55695 "TESTOSTERONE" 55700 "TETANUS ANTITOXIN" 55705 "TETANUS IMMUNE GLOBULIN" 55710 "TETANUS TOXOID" 55715 "TETRACAINE" 55725 "TETRACYCLINE" 55730 "TETRAHYDROZOLINE" 55733 "THENYLDIAMINE" 55735 "THEOBROMINE" 55745 "THEOPHYLLINE" 55750 "THIABENDAZOLE" 55755 "THIAMINE" 55760 "THIAMYLAL" 55765 "THIETHYLPERAZINE" 55770 "THIMEROSAL" 55775 "THIOGUANINE" 55780 "THIOPENTAL" 55783 "THIOPROPAZATE" 55785 "THIORIDAZINE" 55790 "THIOTEPA" 55795 "THIOTHIXENE" 55800 "THIPHENAMIL" 55801 "THONZONIUM BROMIDE" 55810 "THROMBIN" 55815 "THYMOL" 55820 "THYROGLOBULIN" 55825 "THYROID" 55830 "THYROTROPIN" 55835 "TICARCILLIN" 55845 "TIMOLOL" 55850 "TOBRAMYCIN" 55860 "TOCAINIDE HYDROCHLORIDE" 55870 "TOLAZAMIDE" 55875 "TOLAZOLINE" 55880 "TOLBUTAMIDE" 55885 "TOLMETIN SODIUM" 55890 "TOLNAFTATE" 55893 "TOLU BALSAM" 55895 "TRAGACANTH" 55900 "TRANYLCYPROMINE" 55903 "TRAZODONE" 55905 "TRETINOIN" 55910 "TRIACETIN" 55915 "TRIAMCINOLONE" 55925 "TRIAMTERENE" 55928 "TRIAZOLAM" 55930 "TRICHLORMETHIAZIDE" 55935 "TRICHLOROACETIC ACID" 55940 "TRICHLOROETHYLENE" 55943 "TRICHLOROFLUOROMETHANE" 55945 "TRICLOFOS" 55947 "TRICLOSAN" 55950 "TRIDIHEXETHYL CHLORIDE" 55952 "TRIETHYLENE GLYCOL" 55953 "TRIENTINE HYDROCHLORIDE" 55955 "TRIETHANOLAMINE" 55960 "TRIFLUOPERAZINE" 55967 "TRIFLURIDINE" 55970 "TRIGLYCERIDES" 55975 "TRIHEXYPHENIDYL" 55978 "TRILOSTANE" 55985 "TRIMEPRAZINE" 55990 "TRIMETHADIONE" 55995 "TRIMETHAPHAN" 55997 "TRIMETHOPRIM" 56000 "TRIMETHOBENZAMIDE" 56005 "TRIMIPRAMINE" 56010 "TRIOXSALEN" 56015 "TRIPELENNAMINE" 56020 "TRIPROLIDINE" 56030 "TROLAMINE" 56040 "TROMETHAMINE" 56045 "TROPICAMIDE" 56048 "TRYPSIN" 56050 "TRYPTOPHAN" 56065 "TUBERCULIN" 56075 "TUBOCURARINE" 56080 "TURPENTINE" 56085 "TYBAMATE" 56090 "TYLOXAPOL" 56095 "TYPHOID VACCINE" 56100 "TYPHUS VACCINE" 56105 "TYROPANOATE SODIUM" 56110 "UNDECYLENIC ACID" 56115 "URACIL" 56120 "UREA" 56123 "UROFOLLITROPIN" 56130 "UROKINASE" 56134 "UVA URSI" 56135 "VALERIAN" 56145 "VALPROIC ACID" 56150 "VANCOMYCIN" 56161 "VEGETABLE OIL" 56162 "VECURONIUM BROMIDE" 56163 "VERAPAMIL" 56165 "VERATRUM VIRIDE" 56170 "VIDARABINE" 56175 "VINBLASTINE" 56180 "VINCRISTINE" 56185 "VITAMIN A" 56192 "VITAMIN B-12" 56193 "VITAMIN C" 56194 "VITAMIN D" 56195 "VITAMIN E" 56198 "VITAMIN K" 56205 "WARFARIN SODIUM" 56210 "WATER STERILE" 56211 "WATER FOR INHALATION" 56213 "WAX" 56214 "WHEAT GERM" 56220 "WHITE LOTION" 56225 "WHITE PINE SYRUP" 56230 "WILD CHERRY SYRUP" 56235 "WINE" 56238 "WOOL ALCOHOLS" 56240 "XYLOMETAZOLINE" 56245 "XYLOSE" 56250 "YEAST" 56255 "YELLOW FEVER VACCINE" 56260 "YOHIMBINE" 56261 "ZIDOVUDINE" 56262 "ZEA" 56265 "ZINC TOPICAL AGENTS, EXTERNAL USE" 56271 "ZINC ( PROTEIN COMPEX)" 56275 "ZOMEPIRAC" 56285 "ZINC SULFATE" 56288 "ZIRCONIUM" 56290 "TERAZOSIN HCL" 56300 "ALOE" 56310 "AMYLTRICRESOLS" 56320 "SODIUM ASCORBATE" 56325 "SODIUM SALICYLATE" 56333 "STAPHAGE LYSATE" 56340 "VITAMIN B" 56345 "VITAMIN B COMPLEX" 56350 "ALGLUCERASE" 56355 "AMLODIPINE" 56360 "ANISTREPLASE" 56365 "BOTULISM TOXIN" 56370 "CALCIUM CITRATE" 56375 "CARBOPLATIN" 56380 "CARTEOLOL" 56390 "CEFPROZIL" 56395 "CISAPRIDE" 56415 "FELBAMATE" 56420 "FILGRASTIM" 56435 "FLUMAZENIL" 56440 "FLUOREXON" 56445 "HAEMOPHILUS B CONJUGATE VACCINE" 56455 "IFOSFAMIDE" 56465 "ITRACONAZOLE" 56470 "LACTASE ENZYME" 56480 "LOMEFLOXACIN" 56485 "LORACARBEF" 56490 "LORATADINE" 56495 "MAGNESIUM OXIDE" 56500 "MASOPROCOL" 56505 "MEFLOQUINE" 56510 "MIDODRINE" 56515 "MIVACURIUM" 56525 "NABUMETONE" 56530 "NEDOCROMIL" 56535 "NICARDIPINE" 56540 "NICOTINE TRANSDERMAL" 56545 "NITRAZEPAM" 56570 "PIPECURONIUM" 56575 "PODOFILOX" 56580 "POLOXAMER 188" 56585 "POTASSIUM CHLORIDE" 56590 "POTASSIUM CITRATE" 56600 "PROPAFENONE" 56605 "PROPOFOL" 56615 "RETINOIC ACID" 56620 "RHO (D) IMMUNE GLOBULIN" 56625 "RIFABUTIN" 56630 "SELEGILINE" 56635 "SERTRALINE" 56640 "SIMVASTATIN" 56655 "SOMATREM" 56660 "SOTALOL" 56665 "SUCCIMER" 56670 "SUMATRIPTAN" 56675 "TACRINE" 56685 "THYPOID VACCINE" 56690 "TICLOPIDINE" 56695 "URSODIOL" 56710 "AZITHROMYCIN" 56715 "CALCIUM POLYCARBOPHIL" 56720 "ENOXACIN" 56730 "FLUCONAZOLE" 56735 "GOSERELIN ACETATE" 56740 "INTERFERON BETA" 56750 "OCTREOTIDE ACETATE" 56760 "SARGRAMOSTIN" 56765 "TIOCONAZOLE" 56770 "VARICELLA-ZOSTER IMMUNE GLOBULIN" 56780 "NIMODIPINE" 56790 "STAVUDINE" 56795 "PACLITAXEL" 56800 "SODIUM TETRABORATE DECAHYDRATE" 56845 "BOTULISM ANTITOXIN" 56914 "RIFAPENTINE" 57001 "BLOOD SUGAR DIAGNOSTIC" 57003 "FLUTAMIDE" 57004 "GANCICLOVIR SODIUM" 57005 "MESALAMINE" 57006 "OMEPRAZOLE" 57008 "PERGOLIDE MESYLATE" 57009 "TRANEXAMIC ACID" 57012 "LEUPROLIDE" 57014 "ERYTHROPOIETIN" 57016 "RAMIPRIL" 57018 "CARBAMIDE PEROXIDE" 57024 "MAGNESIUM ION" 57026 "SELENIUM" 57028 "SULFABENZAMIDE" 57032 "CEFTIZOXIME" 57034 "PHOSPHORUS" 57036 "CLOFAZIMINE" 57038 "PIRBUTEROL ACETATE" 57040 "MECLOCYCLINE" 57042 "ACLOMETASONE" 57044 "CEFIXIME" 57046 "DEZOCINE" 57048 "ZOLPIDEM TARTRATE" 57049 "LEVOCARNITINE" 57050 "HYDROACTIVE DRESSING" 57052 "DIDEOXYCYTIDINE" 57053 "OMEGA-3 FATTY ACIDS" 57054 "TERBINAFINE" 57055 "ZALCITABINE" 57057 "M-CRESYL ACETATE" 57058 "DESOGESTREL" 57062 "FAMVIR" 57064 "FLUVOXAMINE" 57066 "MONOLAURINE" 57068 "NITROPRUSSIDE" 57070 "CEFPODOXIME" 57072 "CHONDROITIN SULFATE" 57076 "LODOXAMIDE" 57078 "PAMIDRONATE DISODIUM" 57082 "DICLOFENAC POTASSIUM" 57084 "COLLAGEN" 57086 "OXAPROZIN" 57088 "TORSEMIDE" 57090 "PREDNICARBATE" 57092 "RECOMBINANT HUMAN DEOXYRIBONUCLEASE" 57094 "CALCIPOTRIENE" 57096 "VENLAFAXINE" 57098 "FLUDARABINE PHOSPHATE" 57100 "RIMANTADINE HCL" 57102 "GABAPENTIN" 57104 "HALOFANTRINE" 57106 "GRANISETRON" 57108 "FLUVASTATIN" 57110 "LEVOCARBASTINE HCL" 57112 "ENOXAPARIN SODIUM" 57114 "MAGNESIUM LACTATE" 57116 "MESNA" 57118 "MONOCHLOREACETIC ACID" 57120 "ATOVAQUONE" 57122 "NORGESTIMATE" 57124 "BUDESONIDE" 57126 "RISPERIDONE" 57128 "ACRIVASTINE" 57130 "SALMETEROL" 57132 "SODIUM TETRADECYL" 57134 "NAFARELIN ACETATE" 57136 "BISOPROLOL FUMARATE" 57138 "AZACITIDINE" 57140 "ALPHA-D-GALACTOSIDASE" 57142 "GARLIC" 57144 "GLIBENCLAMIDE" 57146 "LAMIVUDINE" 57148 "OXICONAZOLE" 57150 "PAROXETINE HCL" 57152 "PHENOTHIAZINE" 57154 "CD4" 57156 "SICKLE CELL TEST" 57158 "TECHNETIUM" 57160 "TRAMADOL" 57162 "BEPRIDIL HCL" 57164 "DESFLURANE" 57166 "PROTEIN" 57168 "CARBOHYDRATE(S)" 57170 "FAT" 57172 "ROCURONIUM" 57174 "INTERFERON" 57176 "NEFAZODONE HCL" 57186 "DORZOLAMIDE HCL" 57188 "LOVERSOL" 57190 "CURARE" 57192 "METFORMIN" 57194 "HYPERTONIC SALINE" 57198 "TENPOSIDE" 57202 "FLAX SEED OIL" 57204 "HEPATITIS C VACCINE" 57206 "TAZOBACTAM" 57208 "LOSARTAN" 57210 "QUERCETIN" 57214 "TACROLIMUS" 57216 "DICHLOROACETIC ACID" 57218 "FINASTERIDE" 57220 "LAMOTRIGINE" 57222 "ALENDRONATE" 57224 "DIRITHROMYCIN" 57226 "MOEXIPRIL HCL" 57228 "BICALUTAMIDE" 57230 "PHOSPHOCYSTEAMINE" 57232 "SULCONAZOLE NITRATE" 57236 "SODIUM NITRITE" 57238 "AZELAIC ACID" 57240 "CETIRIZINE" 58001 "IMIQUIMOD" 58002 "MONTELUKAST SODIUM" 59600 "ALBENDAZOLE" 59601 "SAQUINAVIR MESYLATE" 59602 "HEPATITIS A VACCINE" 59603 "HEPATITIS VACCINE" 59604 "GEMCITABINE HCL" 59605 "VINORELBINE" 59606 "RITONAVIR" 59607 "PIRACETAM" 59608 "ACARBOSE" 59609 "DAPIPRAZOLE HCL" 59610 "SEVOFLURANE" 59611 "THYROID STIMULATING HORMONE" 59612 "CEFTIBUTEN" 59615 "SOMATOSTATIN" 59619 "VALACYCLOVIR" 59620 "INDINAVIR" 59621 "DEXFENFLURAMINE" 59622 "NISOLDIPINE" 59623 "ALTRETAMINE" 59624 "DIATRIZOATE MEGLUMINE" 59625 "NITROGEN MUSTARD" 59626 "RIMEXOLONE" 59627 "MELATONIN" 59628 "DINITROCHLOROBENZENE" 59629 "LANSOPRAZOLE" 59630 "ADAPALENE" 59631 "TIOPRONIN" 59632 "DEHYDROEPIANDROSTERENE" 59633 "GLIMEPRIDE" 59634 "ZAFIRLUKAST" 59635 "MYCOPHENOLATE MOFETIL" 59636 "RILUZOLE" 59637 "ALCLOMETASONE" 59638 "PENTOSAN" 59639 "LATANOPROST" 59640 "TRANDOLAPRIL" 59641 "ACIDOPHILUS" 59642 "CIDOFOVIR" 59643 "BUTENAFINE HYDROCHLORIDE" 59644 "OLANZAPINE" 59645 "FEXOFENADINE" 59701 "FOSPHENYTOIN SODIUM" 59702 "VITAMINS" 59703 "TOPOTECAN HCL" 59704 "DONEPEZIL HCL" 59705 "ATORVASTATIN CALCIUM" 59706 "ZILEUTON" 59707 "BRIMONIDINE" 59709 "AZELASTINE" 59710 "VALSARTAN" 59711 "DELAVIRDINE MESYLATE" 59712 "FAMCICLOVIR" 59714 "MIRTAZAPINE" 59715 "NEVIRAPINE" 59716 "LEVOFLOXACIN" 59717 "ANDROGENS" 59718 "ROPIVACAINE HCL" 59719 "NELFINAVIR MESYLATE" 59720 "NILUTAMIDE" 59721 "OLOPATADINE HCL" 59722 "TILUDRONATE SODIUM" 59723 "IRINOTECAN HCL" 59724 "DALTEPARIN SODIUM" 59725 "PRAMIPEXOLE" 59726 "BROMFENAC SODIUM" 59727 "TIZANIDINE HCL" 59728 "SODIUM BIPHOSPHATE" 59729 "MELARSOPROL" 59730 "MIBEFRADIL DIHYDROCHLORIDE" 59731 "TAMSULOSIN HYDROCHLORIDE" 59732 "CEFEPIME HCL" 59733 "CISATRACURIUM BESYLATE" 59734 "CARVEDILOL" 59735 "IRBESARTAN" 59736 "CALCITRIOL" 59737 "ROPINROLE HCL" 59738 "CARBOPROST TROMETHAMINE" 59739 "QUETIAPINE FUMARATE" 59740 "PENCICLOVIR" 59741 "JAPANESE ENCEPHALITIS VIRUS VACCINE" 59742 "POLOXAMER" 59743 "TROGLITAZONE" 59744 "TOPIRAMATE" 59745 "REMIFENTANIL HCL" 59800 "BEE POLLEN" 59801 "CARRISYN" 59802 "SIBUTRAMINE" 59804 "ZOLMITRIPTAN" 59805 "IMIQUIMOD" 59807 "SILDENAFIL CITRATE" 59808 "NARATRIPTAN HYDROCHLORIDE" 59809 "ANASTROZOLE" 59810 "BRINZOLAMIDE" 59811 "TOLTERODINE TARITRATE" 59812 "DOMPERIDONE" 59813 "FOLLITROPIN BETA" 59814 "FOLLITROPIN ALPHA" 59815 "FOSFOMYCIN TROMETHAMINE" 59816 "CLOPIDOGEL" 59817 "REPAGLINIDE" 59818 "BECAPLERMIN" 59821 "RETEPLASE RECOMBINANT" 59822 "NALMEFENE" 59823 "EFAVIRENZ" 59824 "TOLCAPONE" 59825 "TAZAROTENE" 59826 "DOLAESTRON MESYLATE" 59827 "ACITRETIN" 59828 "CERIVASTATIN SODIUM" 59829 "CITALOPRAM HYDROBRIMIDE" 59830 "TIAGABINE HCL" 59831 "FENOFIBRATE" 59832 "ROTAVIRUS VACCINE" 59833 "OXALIPLATIN" 59834 "DACLIZUMAB" 59835 "RECOMBINANT HUMAN INTERLEUKIN ELEVE" 59836 "LOTEPREDNOL ETABONATE" 59837 "GLATITAMER ACETATE" 59838 "RIZATRIPTAN BENZOATE" 59839 "LEFLUNOMIDE" 59840 "CAPECITABINE" 59841 "GRAPESEED" 59842 "TROVAFLOXACIN/ALTROFLOXAVIN" 60020 "DIPROPYLENE GLYCOL" 60025 "ETHYL CINNAMATE" 70001 "CEFEPIME" 70003 "INFLIXIMAB" 70004 "SEVELAMER HCL" 70005 "ETHINY ESTRADIOL" 70006 "TRIAMCINOLONE ACETON" 70007 "CEFDINIR" 70008 "RIBAVIRIN" 70009 "HYALURONIC ACID" 70010 "SEROTONIN" 70011 "POLYMYXIN B" 70012 "GLUCOSAMINE" 70013 "ROSIGLITAZONE MALEATE" 70014 "CANDESARTAN CILEXETIL" 70015 "ISOPHANE INSULIN" 70016 "LYME DISEASE VACCINE" 70017 "RITUXIMAB" 70018 "SODIUM SULFACETAMIDE" 70019 "ORLISTAT" 70020 "AMPRENAVIR" 70021 "ACTIVATED CHARCOAL" 70022 "FERROUS SULFATE EXSICCATED" 70023 "TELMISARTAN" 70024 "MILRINONE LACTATE" 70026 "ROFECOXIB" 70027 "ETHINYL ESTRADIOL" 70028 "ETHYNODIOL DIACETATE" 70029 "ETANERCEPT" 70030 "ALITRETINOIN" 70031 "ZANAMIVIR" 70032 "ABACAVIR SULFATE" 70033 "RABEPRAZOLE SODIUM" 70034 "PIOGLITAZONE HCL" 70035 "METHYLSULFONYLMETHANE" 70036 "CETYLMYRISTOLEATE" 70037 "TRASTUZUMAB" 70038 "PETROLEUM" 70039 "CILOSTAZOL" 70040 "LEVALBUTEROL HCL" 70041 "KETOTIFEN FUMARATE" 70042 "FERROUS FUMARATE" 70043 "OPRELVEKIN" 70044 "MORPHINE SULFATE" 70045 "RALOXIFENE" 70046 "PENICILLIN G BENZATHINE" 70047 "HELIUM" 70048 "OIL OF EVENING PRIMROSE" 70049 "ROPINIROLE HCL" 70050 "COENZYME Q10" 70051 "CREATINE" 70052 "ZINC OXIDE" 70053 "NETTLE EXTRACT" 70054 "PROTEASE" 70055 "ELDER" 70056 "THYME" 70057 "MALTODEXTRIN NF" 70058 "ASCORBIC ACID" 70059 "ADENOSYL-TRIPHOSPHATE" 70060 "DOLASETRON MESYLATE" 70061 "EMEDASTINE DIFUMARATE" 70062 "FENRETINIDE" 70063 "ABCIXIMAB" 70064 "TETRABENAZINE" 70065 "BRIMONIDINE TARTRATE" 70066 "CALENDULA" 70067 "PLANTAIN" 70068 "OREGON GRAPE" 70069 "GINKGO" 70070 "EICOSAPENTAENOIC ACID" 70071 "DOCOSAHEXAENOIC ACID" 70102 "OSELTAMIVIR PHOSPHATE" 70103 "SIROLIMUS" 70104 "CYSTEAMINE BITARTRATE" 70105 "HAWTHORN" 70106 "ALOSETRON HCL" 70107 "PNEUMOCOCCAL 7-VALENT CONJUGATE VAC" 70108 "PALIVIZUMAB" 70109 "GATIFLOXACIN" 70110 "CABERGOLINE" 70111 "ALDESLEUKIN" 70112 "MAGNESIUM HYDROXIDE" 70113 "PERINDOPRIL ERBUMINE" 70114 "MIGLITOL" 70115 "ZALEPLON" 70116 "SOY" 70117 "ADEFOVIR DIPIVOXIL" 70118 "PANTOPRAZOLE SODIUM" 70119 "ANTITHROMBIN III" 70120 "ATROPINE SULFATE" 70121 "MELOXICAM" 70122 "ENTACAPONE" 70123 "BISMUTH" 70124 "BEECHWOOD CREOSOTE" 70125 "EPIRUBICIN HCL" 70126 "EPTIFIBATIDE" 70127 "BETAMETHASONE VALERATE" 70128 "OXCARBAZEPINE" 70129 "RIVASTIGMINE TARTRATE" 70130 "ISOSORBIDE DINITRATE" 70131 "ISOSORBIDE MONONITRATE" 70132 "ALLIUM CEPA" 70133 "CRANBERRY" 70134 "MAGNESIUM ASPARTATE" 70135 "POTASSIUM ASPARTATE" 70136 "ASPARTIC ACID" 70137 "NICOTINE" 70138 "MOXIFLOXACIN HCL" 70139 "BOSWELLIN" 70140 "SEA CUCUMBER" 70141 "GLYCOLIC ACID" 70142 "AMMONIUM LACTATE" 70143 "SODIUM COCGLYCERYL" 70144 "ETHER SULFONATE" 70145 "CETOSTEARYL ALCOHOL" 70146 "CETETH-20" 70147 "METHYL PARABEN" 70148 "IMIGLUCERASE" 70149 "TIROFIBAN" 70150 "PROPOXYPHENE NAPSYLATE" 70151 "SODIUM PHENYLBUTYRATE" 70152 "LOPINAVIR" 70153 "MAGNESIUM CHELATE" 70154 "ZINC CHELATE" 70155 "CHROMIUM PICOLINATE" 70156 "GUARANA" 70157 "SODIUM CARBOXYMETHYLCELLULOS" 70158 "PREDNISOLONE ACETATE" 70159 "SILVER" 70160 "LEVETIRACETAM" 70161 "L-LYSINE" 70162 "BETA-GLUCAN" 70163 "CALCIUM CHLORIDE DIHYDRATE" 70164 "TEMOZOLOMIDE" 70165 "PARACETAMOL" 70166 "DEXTROPROPOXYPHENE" 70167 "CALCIUM GLUBIONATE" 70168 "RISEDRONATE SODIUM" 70169 "CELECOXIB" 70170 "NICOTINAMIDE ADENINE DINUCLEOTIDE" 70171 "DANAPAROID SODIUM" 70172 "MOLASSES" 70173 "CYTOMEGALOVIRUS IMMUNE GLOBULIN IV" 70174 "FERROUS SULFATE" 70175 "COAGULATION FACTOR VIIIA" 70176 "EFLORNITHINE HCL" 70177 "METHACHOLINE CHLORIDE" 70178 "DIMETICONE" 70179 "ACRYLATE COPOLYMER" 70180 "CARBOMER 940" 70181 "GLUTAMINE" 70182 "SARGRAMOSTIM" 70183 "PEGINTERFERON ALFA-2B" 70184 "INSULIN ANALOG" 70185 "AMIFOSTINE" 70186 "KAVA" 70187 "MODAFINIL" 70188 "VERTEPORFIN" 70189 "POLYSORBATE" 70190 "EDTA" 70191 "RETINYL PALMITATE" 70192 "DEXRAZOXANE" 70193 "SYNTHETIC CONJUGATED ESTROGENS" 70194 "GRAFT T STARCH COPOLYMER" 70195 "EPROSARTAN MESYLATE" 70196 "PODOPHYLLIN" 70197 "ALOE VERA" 70198 "ZINCUM GLUCONICUM" 70199 "MAGNESIUM GLYCINATE" 70200 "CATIONIC CELLULOSE" 70201 "POLIDOCANOL" 70202 "GREPAFLOXACIN HCL" 70203 "RACEMIC EPINEPHRINE" 70204 "ACEMANNAN" 70205 "BETAMETHASONE ACETATE" 70206 "BETAMETHASONE SODIUM PHOSPHATE" 70207 "HETASTARCH SODIUM" 70208 "TRIETHANOLAMINE POLYPEPTIDE OLEATE-" 70209 "TRIPROLIDINE HCL" 70211 "DIPHENOXYLATE HCL" 70212 "POLYMYXIN B SULFATE" 70213 "BACITRACIN ZINC" 70214 "SULFACETAMIDE SODIUM" 70215 "INSULIN RECOMBINANT HUMAN" 70216 "INSULIN SUSP ISO RECOMB HUMAN" 70217 "HYDROCODONE BITARTRATE" 70218 "HOMATROPINE METHYL BROMIDE" 70219 "IOXAGLATE MEGLUMINE" 70220 "IOXAGLATE SODIUM" 70221 "ESOMEPRAZOLE MAGNESIUM" 70222 "NAPROXEN SODIUM" 70223 "FERRIMIN" 70224 "DOFETILIDE" 70225 "ZONISAMIDE" 70226 "CHLORPHENIRAMINE MALEATE" 70227 "IBUTILIDE FUMARATE" 70228 "FERRIC SUBSULFATE" 70230 "IVERMECTIN" 70231 "CODEINE PHOSPHATE" 70232 "ZIPRASIDONE HCL" 70233 "MINERAL SPIRITS" 70234 "OCTYLPHENOXY-POLYETHOXYETHANO" 70235 "AMPICILLIN SODIUM" 70237 "PREDNISOLONE SODIUM PHOSPHATE" 70238 "NORETHINDRONE ACETATE" 70239 "BROMPHENIRAMINE MALEATE" 70241 "AMINOLEVULINIC ACID HCL" 70242 "BUPROPION HCL" 70243 "METHSCOPOLAMINE NITRATE" 70244 "OCTYL METHOXYCINNAMATE" 70245 "ESTRADIOL CYPIONATE" 70246 "NATEGLINIDE" 70247 "LONICERA JAPONICA" 70248 "ESTRIOL" 70249 "BIMATOPROST" 70250 "AMLEXANOX" 70251 "CEFPODOXIME PROXETIL" 70252 "IOTHALAMATE MEGLUMINE" 70253 "IOTHALAMATE SODIUM" 70254 "PHENYLPROPANOLAMINE HCL" 70255 "PHENYLTOLOXAMINE CITRATE" 70256 "PSEUDOEPHEDRINE HCL" 70257 "AMPHETAMINE ASPARTATE" 70258 "AMPHETAMINE SULFATE" 70259 "DEXTROAMPHETAMINE SACCHARATE" 70260 "DEXTROAMPHETAMINE SULFATE" 70261 "TITANIUM DIOXIDE" 70262 "DOCUSATE SODIUM" 70263 "ALUMINUM ANTACID" 70264 "EPHEDRINE SULFATE" 70265 "SECOBARBITAL SODIUM" 70266 "BOTULINUM TOXIN TYPE A" 70267 "MEPERIDINE HCL" 70268 "PHENERGAN" 70269 "OXYCODONE HCL" 70270 "LUTEIN" 70271 "SPIRULINA" 70272 "TRAVOPROST" 70273 "METHENAMINE MANDELATE" 70274 "SODIUM ACID PHOSPHATE MONOHYDR" 70275 "MAGNESIUM CITRATE" 70276 "MILK THISTLE EXTRACT" 70277 "LINEZOLID" 70278 "ALMOTRIPTAN MALATE" 70279 "FLUVASTATIN SODIUM" 70280 "NALTREXONE" 70281 "UNOPROSTONE ISOPROPYL" 70282 "TRAMADOL HCL" 70283 "PERUVIAN BALSAM" 70284 "NICOTINAMIDE" 70285 "CHLORELLA PYRENOIDOSA" 70286 "ARNICA MONTANA" 70287 "ACONITUM NAPELLUS" 70288 "CHAMOMILLA" 70289 "SYMPHYTUM OFFICINALE" 70290 "CALCIUM LACTATE" 70291 "BOVINE UTERUS PMG EXTRACT" 70292 "CALCIUM STEARATE" 70293 "ACETRETIN" 70294 "RED CLOVER" 70295 "PUMPKIN SEED OIL" 70296 "GALANTAMINE HYDROBROMIDE" 70297 "CANADA BALSAM" 70298 "PINE NEEDLE OIL" 70299 "TINCTURE OF CAPSICUM" 70300 "PHOSPHOLINE IODIDE" 70301 "AMMONIUM GLYCOLATE" 70302 "GLYCOLIC COMPOUND" 70303 "EUCALYPTUS GLOGULUS OIL" 70304 "ESTRADIOL HEMIHYDRATE" 70305 "XYLOCAINE" 70306 "MARCAINE" 70307 "TRIAMCINOLONE ACETONIDE" 70308 "NORMAL SALINE" 70309 "QUINAPRIL HCL" 70310 "ZINC" 70311 "TRIMETHOPRIM HCL" 70313 "COLESEVELAM" 70314 "MANGANESE ASCORBATE" 70315 "ANAGRELIDE HYDROCHLORIDE" 70316 "EXEMESTANE" 70317 "LACTATED RINGERS" 70318 "MAGNESIUM L-LACTATE DIHYDRATE" 70319 "CONDYLOX" 70320 "ZINC PYRITHIONE" 70321 "PASSION FLOWER POWER" 70322 "DIPHTHERIA TOXIN" 70323 "PERTUSSIS TOXOID" 70324 "AMPHOTERICIN B" 70325 "BORON" 70326 "BLACK COHOSH ROOT" 70327 "ISOFLAVONES" 70328 "INSULIN GLARGINE" 70329 "TOREMIFENE CITRATE" 70330 "FEXOFENADINE HCL" 70331 "LANOLIN OIL" 70332 "AMILORIDE HCL" 70333 "AMITRIPTYLINE HCL" 70334 "HYDROCORTISONE ACETATE" 70335 "PRAMOXINE HCL" 70336 "HYOSCYAMINE SULFATE" 70337 "ANISOTROPINE METHYLBROMIDE" 70338 "DEXTROMETHORPHAN HBR" 70339 "HYDRALAZINE HCL" 70340 "PRIMAQUINE PHOSPHATE" 70341 "CLAVULANATE POTASSIUM" 70342 "PHENAZOPYRIDINE HCL" 70343 "PYRIDOXINE HCL" 70344 "DIPHENHYDRAMINE HCL" 70345 "DICYCLOMINE HCL" 70346 "PRAZOSIN HCL" 70347 "ANTITHYMOCYTE GLOBULIN" 70348 "BECLOMETHASONE DIPROPIONATE" 70349 "BROMODIPHEHYDRAMINE HCL" 70350 "EPHEDRINE HCL" 70351 "BUPIVACAINE HCL" 70352 "BUTABARBITAL SODIUM" 70353 "ERGOTAMINE TARTRATE" 70354 "MEPENZOLATE BROMIDE" 70355 "ARGININE HCL" 70356 "CHLORDIAZEPOXIDE HCL" 70357 "CLONIDINE HCL" 70358 "PHENYLEPHRINE HCL" 70359 "ALBUTEROL SULFATE" 70360 "CODEINE SULFATE" 70361 "PAPAVERINE HCL" 70362 "NEOMYCIN SULFATE" 70363 "5-FLUOROURACIL" 70364 "CEFAZOLIN SODIUM" 70365 "ZINC ACETATE" 70366 "TIMOLOL MALEATE" 70367 "CYCLOPENTOLATE HCL" 70368 "OXYPHENCYCLIMINE HCL" 70369 "DEXAMETHASONE SODIUM PHOSPHAT" 70370 "LIDOCAINE HCL" 70371 "HYDROXYZINE HCL" 70372 "TESTOSTERONE CYPIONATE" 70373 "DEXBROMPHENIRAMINE MALEATE" 70374 "METHYLPHENIDATE HCL" 70375 "ESTRADIOL VALERATE" 70376 "TESTOSTERONE ENANTHATE" 70377 "PROPOXYPHENE HCL" 70378 "PSEUDOEPHEDRINE SULFATE" 70379 "ISOPROTERENOL HCL" 70380 "PHENYLEPHRINE BITARTRATE" 70381 "EPINEPHRINE BITARTRATE" 70382 "ETIDOCAINE HCL" 70383 "COAGULATION FACTOR IX" 70384 "MEADOWFOAM OIL" 70385 "SILYBUM" 70386 "PROPOXYCAINE HCL" 70387 "POSACONAZOLE" 70388 "TAPIOCA" 70389 "BISMUTH SUBGALLATE" 70390 "CALCIUM CHLORIDE" 70391 "PARABENS" 70392 "XALATAN" 70393 "ZOLEDRONIC ACID" 70394 "PYRILAMINE MALEATE" 70395 "NAPHAZOLINE HCL" 70396 "COD LIVER OIL" 70398 "MAGNESIUM SULFATE" 70399 "ATROPINE METHYLNITRATE" 70400 "CASCARA SAGRADA" 70401 "CARBINOXAMINE MALEATE" 70402 "CHLORPHENIRAMINE TANNATE" 70403 "PHENYLEPHRINE TANNATE" 70404 "PYRILAMINE TANNATE" 70405 "DIHYDROCODEINE BITARTRATE" 70406 "THEOPHYLLINE ANHYDROUS" 70407 "PHENIRAMINE MALEATE" 70408 "PIPERONYL BUTOXIDE" 70409 "COLLAGEN HEMOSTAT" 70410 "FERROUS GLUCONATE" 70411 "PROMETHAZINE HCL" 70412 "CETYLPYRIDINIUM CL" 70413 "CORN STARCH" 70414 "HYDROCOLLOID GEL" 70415 "CHROMIUM CHLORIDE" 70416 "COPPER SULFATE" 70417 "SELENIOUS ACID" 70418 "BALSAM PERU" 70419 "BISMUTH RESORCIN" 70420 "HYDROXYQUINOLINE SULFATE" 70421 "MAGNESIUM ACID CITRATE" 70422 "MAGNESIUM HYDROXYCARBONATE" 70423 "PHENYLCARBINOL" 70424 "OLMESARTAN MEDOXOMIL" 70425 "VALDECOXIB" 70426 "DESLORATADINE" 70427 "DEXMETHYLPHENIDATE HCL" 70428 "FORMOTEROL FUMARATE" 70429 "CILICA" 70430 "DECYLOLEATE" 70431 "DROSPIRENONE" 70432 "PIMECROLIMUS" 70433 "GYMNEMA SYLVESTRE" 70434 "LIPOIC ACID" 70435 "VANADIUM" 70436 "BURDOCK ROOT" 70437 "SLIPPERY ELM" 70438 "SHEEP SORREL" 70439 "INDIAN RHUBARB ROOT" 70440 "ACELLULAR PERTUSSIS VACCINE" 70441 "POTASSIUM ACETATE" 70442 "NESIRITIDE" 70443 "ADRENALINE" 70444 "CINNARIZINE" 70445 "TRIMETHOPRIM SULFATE" 70446 "PONTOCAINE" 70447 "1-TYROSINE" 70448 "ACETYL-1-TYROSINE" 70449 "GREEN TEA EXTRACT" 70450 "ERTAPENEM SODIUM" 70451 "TENECTEPLASE" 70452 "FENTANYL CITRATE" 70453 "CHLORHEXIDINE GLUCONATE" 70454 "CHLORHEXIDINE DIGLUCONATE" 70455 "LEUPROLIDE ACETATE" 70456 "MEROPENEM" 70457 "OIL OF PINE" 70458 "CAJEPUT" 70459 "LEVOTHYROXINE SODIUM" 70460 "WATER" 70461 "GUGGULSTERONES" 70462 "CLADRIBINE" 70463 "BALSALAZIDE DISODIUM" 70464 "ACETYLCHOLINE CHLORIDE" 70465 "SUPER OXIDE DISMUTASE" 70466 "ESCITALOPRAM OXALATE" 70467 "BENZYDAMINE" 70468 "SURAMIN" 70469 "FOXGLOVE" 70470 "CLORAZEPATE DIPOTASSIUM" 70471 "CITRATE" 70472 "GANIRELIX ACETATE" 70473 "NORELGESTROMIN" 70474 "INTERFERON BETA-1A" 70475 "IMATINIB MESYLATE" 70476 "VIGABATRIN" 70477 "BLACK COHOSH" 70478 "CARBONYL IRON" 70479 "BORAGE OIL" 70480 "ALPHA LIPOIC ACID" 70481 "METFORMIN HCL" 70482 "CETIRIZINE HCL" 70483 "CADEXOMER IODINE" 70484 "CARBOXYMETHYLCELLULOSE SODIUM" 70485 "WITCH HAZEL" 70486 "ARIPIPRAZOLE" 70487 "BILBERRY EXTRACT" 70488 "BROWN RICE FLOUR" 70490 "GUM GHATTI" 70491 "HYOSCYNAMINE SULFATE" 70492 "DARBEPOETIN ALFA" 70493 "CARBETAPENTANE TANNATE" 70494 "EZETIMIBE" 70495 "FROVATRIPTAN SUCCINATE" 70496 "PROGUANIL HCL" 70497 "TINIDAZOLE" 70498 "DILTIAZEM HCL" 70499 "VERAPAMIL HCL" 70500 "ACETYLATED LANOLIN" 70501 "LANOLIN ALCOHOLS EXTRACT" 70502 "BOTULINUM TOXIN TYPE B" 70503 "AMMONIUM HYDROXIDE" 70504 "POLYQUATERNIUM-10" 70505 "ACRYLATES/STEARETH-20" 70506 "ITACONATE COPOLYMER" 70507 "PEGFILGRASTIM" 70508 "VORICONAZOLE" 70509 "EDATREXATE" 70510 "COCAMIDOPROPYL HYDROXY SULTAN" 70511 "ERUCAMIDOPROPYL HYDROXY SULTA" 70512 "SILK AMINO ACID" 70513 "CYCLOMETHICONE" 70514 "ETHYLHEXYL METHOXYCINNAMATE" 70515 "ETHYLHEXYL SALICYLATE" 70516 "GLYCERYL TALLOWATE" 70517 "GLYCERYL COCOATE" 70518 "LAURETH-23" 70519 "COCOAMIDOPROPYLAMINE OXIDE" 70520 "VARICELLA VIRUS VACCINE" 70521 "GRIFFONIA SIMPLICIFOLIA" 70523 "BIFIDOBACTERIUM INFANTIS" 70524 "GLOBULIN PROTEIN CONCENTRATE" 70525 "PHOSPHATE" 70526 "IRON SUCROSE" 70527 "VALGANCICLOVIR HCL" 70528 "BAKING SODA" 70529 "MELANOMA VACCINE" 70530 "PROANTHOCYANIDINS" 70531 "ESTERIFIED ESTROGENS" 70532 "LACTOBACILLUS RHAMNOSUS" 70533 "BIFIDOBACTERIUM BIFIDUM" 70534 "LACTOBACILLUS CASEI" 70535 "TENOFOVIR DISOPROXIL FUMARATE" 70536 "POTASSIUM BICARBONATE" 70537 "TARRAGON OIL" 70538 "GINGER OIL" 70539 "PEPPERMINT OIL" 70540 "JUNIPER OIL" 70541 "LIME WATER" 70542 "METHAMINE" 70543 "DOOK OIL" 70544 "SALOL" 70545 "QXYQUINOLONE SULFATE" 70546 "CARNOSINE" 70547 "ORTHOPHOSPHORIC ACID" 70549 "TRIPELENNAMINE HCL" 70550 "SOLUMET" 70551 "POLYTAR" 70552 "EPHEDRINE TANNATE" 70554 "CLIOQUINOL" 70555 "LOSARTAN POTASSIUM" 70556 "CHOLINE BITARTRATE" 70557 "ILOPAN" 70559 "PROPRANOLOL HCL" 70560 "BATH OIL" 70561 "SODIUM ACID PHOSPHATE" 70562 "SODIUM PYRROLIDONE CARBOXYLATE" 70563 "LIVER DESSICATED" 70564 "AMLODIPINE BESYLATE" 70565 "BETAMETHASONE DIPROPIONATE" 70566 "MANNITOL HEXANITRATE" 70567 "DIFENOXIN HCL" 70568 "DEXTRAN 40" 70569 "NEOSTIGMINE METHYLSULFATE" 70570 "PREDNISOLONE PHOSPHATE" 70571 "CARAMIPHEN EDISYLATE" 70572 "ISOPROPAMIDE IODIDE" 70573 "PENTAERYTHRITOL TETRANITRATE" 70574 "PILOCARPINE HCL" 70575 "CHLOROPHYLLIN COPPER COMPLEX" 70576 "HYDROXYAMPHETAMINE HBR" 70577 "ERYTHROMYCIN ETHYLSUCCINATE" 70578 "SULFISOXAZOLE ACETYL" 70579 "CHLORPHENIRAMIN POLISTIREX" 70580 "CODEINE POLISTIREX" 70582 "OXYCODONE TEREPHTHALATE" 70583 "BUTYL METHOXYDIBEZOYL METHANE" 70584 "AMPICILLIN TRIHYDRATE" 70585 "GENTAMICIN SULFATE" 70586 "MEDROXYPROGESTERONE ACETATE" 70587 "PROPANTHELINE BROMINE" 70588 "PROCAINE HCL" 70590 "RAUWOLFIA SERPENTINA" 70591 "PENTAZOCINE HCL" 70592 "PSEUDOEPHEDRINE TANNATE" 70593 "CLEMASTINE FUMARATE" 70594 "OXYTETRACYCLINE HCL" 70595 "TICARCILLIN DISODIUM" 70596 "CHOLINE MAGNESIUM TRISALICYLATE" 70597 "AZATADINE MALEATE" 70598 "LETROZOLE" 70599 "HYDROCODONE POLISTIREX" 70600 "ENALAPRIL MALEATE" 70601 "ANTAZOLINE PHOSPHATE" 70602 "SODIUM CHONDROITIN SULFATE" 70603 "THIAMINE HCL" 70604 "PIPERACILLIN SODIUM" 70605 "TAZOBACTAM SODIUM" 70606 "GLACIAL ACETIC ACID" 70607 "OXYQUINOLONE SULFATE" 70608 "PHENYLPROPANOLAMINE BITARTRATE" 70609 "DIPERODON HCL" 70610 "CALCIUM GLUCONATE" 70611 "MAGNESIUM CARBONATE" 70612 "BELLAFOLINE" 70613 "WRINKLED GIANT HYSSOP" 70614 "ANGELICA ROOT" 70615 "ARECA PEEL" 70616 "PERILLA LEAF" 70617 "BISMUTH SUBNITRATE" 70618 "ALUMINUM CHLORHYDRATE" 70619 "BUROW`S SOLUTION" 70620 "BUTYL AMINOBENZOATE" 70621 "COLISTIN SULFATE" 70622 "PLATELET PHERESIS" 70623 "HYDROMORPHONE HCL" 70624 "DOCUSATE POTASSIUM" 70625 "ISOPROPYL SEBACATE" 70626 "TETANUS VACCINE" 70627 "DIHYDROERGOTAMINE MESYLATE" 70628 "HEPARIN SODIUM" 70629 "GLYCEROL" 70630 "ETONOGESTREL" 70631 "COLFOSCERIL PALMITATE" 70632 "GREEN SOAP" 70633 "BISMUTH SUBSALICYLATE" 70634 "TEA TREE OIL" 70635 "RICE" 70638 "HEMISULFATE" 70639 "TRIPLE SULFA" 70640 "TRISULFAPYRIMIDINES" 70641 "POLYOXYETHYLENE NONYLPHENOL" 70642 "TEGASEROD MALEATE" 70643 "ANHYDROUS LANOLIN" 70644 "BISMUTH FORMIC IODIDE" 70645 "BISMUTH VIOLET" 70646 "COLD CREAM" 70647 "HYOSCINE HBR" 70648 "DOVER`S POWDER" 70650 "PHENINDAMINE TARTRATE" 70651 "ORPHENADRINE CITRATE" 70652 "ISOPROTERENOL SULFATE" 70653 "OXYMETAZOLINE HCL" 70654 "ALUMINUM CHLORHYDROXIDE" 70655 "DOXYCYCLINE HYCLATE" 70656 "BASILIXIMAB" 70657 "IMMUNE GLOBULIN INTRAVENOUS" 70658 "ANDROSTENEDIONE" 70659 "DROTRECOGIN ALFA" 70660 "NITRIC OXIDE" 70661 "CETYLDIMETHYLETHYL AMMONIUM BR" 70662 "GUANETHIDINE MONOSULFATE" 70663 "PARGYLINE HCL" 70664 "SULFADOXINE" 70665 "TRICHLOROMONOFLUOROMETHANE" 70666 "LIVE YEAST CELL" 70667 "MINERAL WAX" 70668 "WOOLWAX ALCOHOL" 70669 "DEODORIZED KEROSENE" 70670 "POTASSIUM ESTRONE SULFATE" 70671 "SENNOSIDES A" 70672 "SENNOSIDES B" 70673 "PROPYLENE GLYCOL DIACETATE" 70674 "TOTAL UNDECYLENATE" 70675 "DUTASTERIDE" 70676 "DONNATAL" 70677 "DOXYLAMINE SUCCINATE" 70678 "ATAZANAVIR SULFATE" 70679 "EPOPROSTENOL SODIUM" 70680 "GEFITINIB" 70681 "ALEFACEPT" 70682 "ELETRIPTAN HYDROBROMIDE" 70683 "MEGESTROL ACETATE" 70684 "PSYLLIUM HYDROPHILIC MUCILLOID FIBE" 70685 "IRON SULFATE" 70686 "CROTALIDAE POLYVALENT IMMUNE FAB" 70687 "ATOMOXETINE HCL" 70688 "DIBASIC SODIUM PHOSPHATE" 70689 "MONOBASIC SODIUM PHOSPHATE" 70690 "HP GUAR" 70691 "BORATE" 70692 "MEMANTINE HCL" 70693 "AZELASTINE HCL" 70694 "RED YEAST RICE FORMULA" 70695 "METHYLSULFONYL-METHANE" 70696 "VITAMIN B-1" 70697 "VITAMIN B-6" 70699 "LYCOPENE" 70700 "GAMMALINOLENIC ACID" 70701 "ISOSULFAN BLUE" 70702 "BROMPHENIRAMINE TANNATE" 70703 "DOXERCALCIFEROL" 70704 "SODIUM CITRATE DIHYDRATE" 70705 "CITRIC ACID MONOHYDRATE" 70706 "RECOMBINANT INTERFERON ALFA-2A" 70707 "PERTUSSIS TOXIN" 70708 "FILAMENTOUS HEMAGGLUTININ" 70709 "PERTACTIN" 70710 "VARDENAFIL HCL" 70711 "ROSUVASTATIN CALCIUM" 70712 "KOJIC ACID" 70713 "TADALAFIL" 70714 "FIBER" 70715 "DIPHENHYDRAMINE TANNATE" 70716 "DEXTROMETHORPHAN TANNATE" 70717 "DEXCHLORPHENIRAMINE TANNATE" 70718 "CEVIMELINE HCL" 70719 "RANITIDINE HCL" 70721 "METOPROLOL SUCCINATE" 70722 "SODIUM OXYBATE" 70723 "PEMIROLAST POTASSIUM" 70724 "METHENAMINE SULFATE" 70725 "ASPARTAME" 70726 "CO ENZYME B-12" 70727 "ATP" 70728 "ALPHA GPC" 70729 "MEQUINOL" 70730 "ACRIFLAVINE" 70731 "FENTANYL TRANSMUCOSAL LOZENGE" 70732 "EPIDURAL" 70733 "VITAMIN K5" 70734 "ERWINIA L-ASPARAGINASE" 70735 "INSULIN LIKE GROWTH FACTOR 1" 70736 "SODIUM FERRIC GLUCONATE COMPLEX" 70737 "BEESWAX" 70738 "SUGAR" 70739 "PURIFIED WATER" 70740 "ZINC CITRATE" 70741 "ZINC GLUCONATE" 70742 "L-ALKALOIDS OF BELLADONNA" 70743 "CLODRONATE DISODIUM" 70744 "DANDELION" 70745 "ISOPROPYL PLAMITATE" 70746 "SALMETROL XINAFOATE" 70747 "PROLINE" 70748 "ALPHA-GALACTOSIDASE" 70749 "CHLORAMINE-T" 70750 "SODIUM P-TOLUENE-SULFONCHLORA" 70751 "METOMIDATE" 70752 "LEVOBUPIVACAINE HCL" 70753 "D-BIOTIN" 70754 "ADALIMUMAB" 70755 "EMTRICITABINE" 70756 "LAVOLTIDINE SUCCINATE" 70757 "ENFUVIRTIDE" 70758 "APREPITANT" 70759 "ALFALFA" 70760 "MAGNESIUM TRISILICATE" 70761 "CALCIUM CASEINATE" 70762 "MONOGLYCERIDE" 70763 "DIGLYCERIDE" 70764 "WHEY" 70765 "METHYLCOBALAMIN" 70766 "CALCIUM PHOSPHATE" 70767 "MG GLYCEROPHOSPHATE" 70768 "CARTEOLOL HCL" 70769 "MAGNESIUM AMINO ACIDS CHELATE" 70770 "CALCIUM D-GLUCARATE" 70771 "CITRUS BIOFLAVONOIDS" 70772 "MITODRINE" 70773 "SNURON" 70774 "TIOTROPIUM BROMIDE" 70775 "CIPROFLOXACIN" 70776 "LACTOBACILLUS GG" 70777 "CHICORY ROOT EXTRACT" 70778 "DULOXETINE HCL" 70779 "DESLORATADINE" 70780 "BISMUTH SUBGALLATE" 70781 "POLYSACCHARIDE IRON COMPLEX" 70782 "SOY PROTEIN" 70783 "SOY FIBER" 70784 "FLAVOXATE HCL" 70785 "TERIPARATIDE INJECTION" 70786 "OMALIZUMAB" 70787 "POLYETHYLENE GLYCOL SOLN" 70788 "L-CYSTEINE" 70789 "VITAMIN D2" 70790 "MILK" 70791 "IRON CARBONYL" 70792 "HMB" 70793 "GLYCERYL STEARATE" 70794 "FOSAMPRENAVIR CALCIUM" 70795 "L-GLUTAMINE" 70796 "DIGESTIVE ENZYMES" 70797 "ZEAXANTHIN" 70798 "SOY LECITHIN" 70799 "MAGNESIUM" 70800 "GENISTEIN" 70801 "DAIDZEIN" 70802 "INDOL-3 CARBINOL" 70803 "FRUIT (DRIED)" 70804 "FRUIT JUICE" 70805 "CREAM" 70806 "MILK PROTEIN CONCENTRATE" 70807 "TELITHROMYCIN" 70808 "JUICE" 70809 "ARABINOXYLANE COMPOUND" 70810 "SKIM MILK" 70811 "NITROGLYCERINE" 70812 "INSULIN ASPART INJECTION" 70813 "INSULIN ASPART PROTAMINE" 70814 "ALFUZOSIN HCL" 70815 "DEONIZED WATER" 70816 "PEG-150" 70817 "SODIUM TRIDECETH SULFATE" 70818 "DISTEARATE" 70819 "SODIUM LAURETH-13 CARBOX" 70821 "POLYSACCHARIDE IRON COMPLEX" 70822 "PRUNES" 70823 "PRUNE JUICE" 70824 "APPLE JUICE" 70827 "BETA SISTEROL" 70828 "SAW PALMETTO BERRY" 70829 "PYGEUM AFRICANUM" 70830 "METAPROTERENOL SULFATE" 70831 "CEFDITOREN PIVOXIL" 70832 "OAT BRAN" 70833 "OAT FIBER" 70834 "LANOLIN ALCOHOL" 70835 "CALCIUM-POTASSIUM CASEINATE" 70836 "GAMMA-AMINOBUTRYIC ACID" 70837 "SENNA CONCENTRATE" 70838 "ROSEMARY EXTRACT" 70839 "TRIMETHYLGLYCINE" 70840 "DICALCIUM PHOSPHATE" 70841 "POLOXAMER 331" 70842 "CALCIUM-SODIUM ALGINATE FIBE" 70843 "HORSETAIL" 70844 "ACEMANNAN HYDROGEL" 70845 "IMIDURA" 70846 "BOVINE HEART PMG EXTRACT" 70847 "SELENIUM YEAST" 70848 "ALUM" 70849 "PHENOL FRAGRANCE" 70850 "CASPOFUNGIN ACETATE" 70851 "BOVINE LIVER POWDER" 70852 "PORCINE STOMACH" 70853 "CALCIUM SALTS" 70854 "RHUBARB" 70855 "BLACK WALNUT" 70856 "ANTIOXIDANTS" 70857 "L-METHYLFOLATE" 70858 "CYANOCOBALAMIN" 70859 "BOVINE COLOSTRUM" 70860 "ACESULFAME K" 70861 "BIEBRICH SCARLET RED SULFONATED" 70862 "EPINASTINE HCL" 70863 "MALTODEXTRIN" 70864 "WHEY PROTEIN ISOLATE" 70865 "CIWUJIA EXTRACT" 70866 "SACCHAROMYCES BOULARDII" 70867 "VITAMIN B-2" 70868 "VITAMIN B-3" 70869 "VITAMIN B-5" 70870 "DEXTRAN 70" 70871 "PALONOSETRON HCL" 70872 "RAISINS" 70873 "DATES" 70874 "OATS" 70875 "CORN" 70876 "LEGUME" 70877 "APPLE FIBERS" 70878 "GLUCOTAMINE" 70879 "SPARFLOXACIN" 70880 "ALBUTEROL EXTENDED-RELEASE" 70881 "WHEY PROTEIN CONCENTRATE" 70882 "COLLAGEN PROTEIN" 70883 "POTASSIUM SORBATE" 70884 "RISPERDAL INJECTION" 70885 "PARICALCITOL" 70886 "IRON" 70887 "ALGINATE" 70888 "ELEUTHEROSIDE E" 70889 "SIBERIAN ELEUTHERO" 70890 "CINACALCET HCL" 70891 "HYDROGEL" 70892 "SILICONE (LIQUID)" 70893 "DROMETRIZOLE" 70894 "TURMERIC" 70895 "DIOSMIN COMPLEX" 70896 "HESPERIDIN COMPLEX" 70897 "OVINE SPLEEN" 70898 "DESICCATED BOVINE SPLEEN" 70899 "POTASSIUM" 70900 "CALCIUM SENNOSIDE" 70901 "GLIBENDAMIDE" 70902 "L-HOMOCYSTEINE THIOLACTONE" 70903 "FONDAPARINUX SODIUM" 70904 "ASTRAGALUS" 70905 "ATENOLOL/CHLORTHALIDONE" 70906 "ILEX" 70907 "SOYBEAN LECITHIN COMPLEX" 70908 "GINKGO BILOBA" 70909 "HUPERZINE" 70910 "RHODODENDRON CAUCASICUM" 70911 "ASPIRIN/DIPYRIDAMOLE" 70912 "TEBOKAN" 70913 "SENNOSIDES" 70914 "WHEAT GRASS POWDER" 70915 "ROYAL JELLY" 70916 "IRON GLYCINATE" 70917 "FOLATE" 70918 "TERMINALIA CHEBULA" 70919 "ZINGIBER OFFICINALE" 70920 "CHICORIUM INTYBUS" 70921 "IPOMOEA TURPETHUM" 70922 "GLYCYRRHIZA GLABRA" 70923 "SODIUM CASEINATE" 70924 "CHOLINE CHLORIDE" 70925 "TINZAPARIN SODIUM" 70926 "SODIUM METABISULFITE" 70927 "CHONDROITIN SULFATE" 70928 "ANAKINRA" 70929 "MAGNESIUM ASCORBATE" 70930 "SOY OIL" 70931 "CALCIUM SULFATE" 70932 "CALCIUM AMINO ACIDE CHELATE" 70933 "MICROCRYSTALLINE HYDROXYAPATITE" 70934 "POLYSACCHARIDE-IRON COMPLEX" 70935 "GRAPE SEED EXTRACT" 70936 "PINE BARK EXTRACT" 70937 "GLUCOAMYLASE" 70938 "TENOFOVIR" 70939 "LIQUID PARAFFIN" 70940 "AVOCADO OIL" 70941 "TROLAMINE/SODIUM ALGINATE" 70942 "BIVALIRUDIN" 70943 "DOCOSANOL" 70944 "CATRIX" 70945 "DIPENTAERYTHRITYL" 70946 "HEXACAPRYLATE" 70947 "BETADEX" 70948 "CANDIDA ALBICANS SKIN TEST ANTIGEN" 70949 "FULVESTRANT" 70950 "BORTEZOMIB" 70951 "TRIMETREXATE CLUCURONATE" 70952 "GEMTUZUMAB OZOGAMICIN" 70953 "DESICCATED STOMACH SUBSTANCE" 70954 "ECHINACEA" 70955 "METHYLPREDNISOLONE SODIUM SUCCINATE" 70956 "SULBACTAM SODIUM STERILE" 70957 "SORBITAN SESQUIOLEATE" 70958 "HYDROCORTISONE VALERATE" 70959 "SOTALOL HCL" 70960 "TEMOCAPRIL HYDROCHLORIDE" 70961 "SERMORELIN ACETATE" 70962 "RECOMBINANT HEMOPHILIC FACTOR" 70963 "L-ARGININE" 70964 "PARATHYROID HORMONE" 70965 "PARAGUAY TEA" 70966 "SERTACONAZOLE NITRATE" 70967 "SPINACH POWER" 70968 "DOCETAXEL" 70969 "LINOLEIC ACID" 70970 "HYDROLYZED LATALBUMIN" 70971 "MCT OIL" 70972 "PRAZIQUANTEL" 70973 "POLYDIMETHYLSILOXANE" 70975 "MYCOPHENOLIC ACID" 70976 "BOSENTAN" 70977 "ROSAVASTATIN CALCIUM" 70978 "ALEMTUZUMAB" 70979 "S-ADENOSYL-L-METHIONINE" 70980 "FENOLDOPAM MESYLATE" 70981 "DAPTOMYCIN" 80001 "ALPHA-1-PROTEINASE INHIBITOR" 80002 "ALTEPLASE" 80003 "APRACLONIDINE" 80004 "DICLOFENAC SODIUM" 80005 "OCCULT BLOOD TEST KIT" 80006 "FLUOXETINE HYDROCHLORIDE" 80007 "LISINOPRIL" 80008 "NIZATIDINE" 80009 "MITOXANTRONE" 80010 "MURONAB" 80011 "MUPIROCIN" 80012 "NAFTIFINE" 80013 "PENBUTOLOL SULFATE" 80014 "TERCONAZOLE" 91011 "MISOPROSTOL" 91013 "OLSALAZINE" 91016 "LEVAMISOLE" 91018 "ETHANOLAMINE OLEATE" 91019 "MORICIZINE" 91060 "CEFUROXIME AXETIL" 92501 "ASTEMIZOLE" 92502 "KETOROLAC TROMETHAMINE" 92503 "CLOMIPRAMINE" 92504 "CEFMETAZOLE SODIUM" 92505 "CANNABIS SATIVA" 92506 "METHYLENEDIOXYMETHAMPHETAMINE" 92507 "GAMMA-HYDROXYBUTYRATE" 92508 "PETROLEUM HYDROCARBONS" 92509 "PHENCYCLIDINE" 92510 "TOLUENE" 92511 "THALIDOMIDE" 92512 "MICONAZOLE NITRATE", add; label define prescr 1 "Prescription drug" 2 "Nonprescription drug" 3 "Undetermined" 4 "Illicit"; label define contsub 1 "Schedule I (research only)" 2 "Schedule II" 3 "Schedule III" 4 "Schedule IV" 5 "Schedule V" 6 "No control" 7 "Undetermined"; label define comstat 1 "Single entity drug" 2 "Combination drug" 3 "Undetermined"; destring drug1cl1-drug1cl3, replace; destring drug2cl1-drug2cl3, replace; destring drug3cl1-drug3cl3, replace; destring drug4cl1-drug4cl3, replace; destring drug5cl1-drug5cl3, replace; destring drug6cl1-drug6cl3, replace; destring drug7cl1-drug7cl3, replace; destring drug8cl1-drug8cl3, replace; label define drugcl 0100 "Anesthetics, unspecified" 0117 "Anesthetics, local (injectable)" 0118 "Anesthetics, general" 0119 "Adjuncts to anesthesia/analeptics" 0120 "Medicinal gases" 0121 "Anesthetics, topical" 0122 "Anesthetics, ophthalmic" 0123 "Anesthetics, rectal" 0200 "Antidotes, unspecified" 0281 "Antidotes, specific" 0283 "Antidotes, general" 0285 "Antitoxins/antivenins" 0286 "Anaphylaxis treatment kit" 0300 "Antimicrobial agents, unspecified" 0346 "Penicillins" 0347 "Cephalosporins" 0348 "Erythromycins/lincosamides/macrolides" 0349 "Polymyxins" 0350 "Tetracyclines" 0351 "Chloramphenicol/derivatives" 0352 "Aminoglycosides" 0353 "Sulfonamides and trimethoprim" 0354 "Urinary tract antiseptics" 0355 "Miscellaneous antibacterial agents" 0356 "Antimycobacterial/anti-leprosy agents" 0357 "Quinolones/derivatives" 0358 "Antifungals" 0388 "Antiviral agents" 0400 "Hematologic agents, unspecified" 0408 "Deficiency anemias" 0409 "Anticoagulants/thrombolytics" 0410 "Blood components/substitutes" 0411 "Hemostatics/antihemophelics" 0500 "Cargiovascular-renal drugs, unspecified" 0501 "Cardiac glycosides" 0502 "Antiarrhythmic agents" 0503 "Antianginal agents" 0504 "Vascular disorders, cerebral/peripheral" 0505 "Agents used to treat shock/hypotension" 0506 "Antihypertensive agents" 0507 "Diuretics" 0508 "Coronary vasodilators" 0509 "Relaxants/stimulants, urinary tract" 0510 "Calcium channel blockers" 0511 "Carbonic anhydrase inhibitors" 0512 "Beta blockers" 0513 "Alpha agonist/alpha blockers" 0514 "ACE inhibitors" 0600 "Central nervous system drugs, unspec..." 0626 "Sedatives and hypnotics" 0627 "Antianxiety agents" 0628 "Antipsychotic/antimanics" 0630 "Antidepressants" 0631 "Anorexiants/cns stimulants" 0632 "CNS, miscellaneous" 0633 "Alzheimer-type dementia" 0634 "Sleep aid products-OTC" 0635 "Antiemetics" 0700 "Radiopharmaceutical/contrast media uns" 0789 "Diagnostics, radiopaque & nonradioactive" 0790 "Diagnostics - radiopharmaceuticals" 0791 "Therapeutics - radiopharmaceuticals" 0792 "Miscellaneous" 0800 "Gastrointestinal agents, unspecified" 0874 "Disorders, acid/peptic" 0875 "Antidiarrheals" 0876 "Laxatives" 0877 "Miscellaneous gastrointestinals" 0878 "Antispasmodics/anticholinergics" 0879 "Antacids" 0900 "Metabolic and nurtient agents, unspec..." 0912 "Hyperlipidemia" 0913 "Vitamins/minerals" 0914 "Nutrition, enteral/parenteral" 0915 "Repl/regs of electrolytes/water balance" 0916 "Calcium metabolism" 0917 "Hematopoietic growth factor" 1000 "Hormones, agents affect hormon mech, unsp" 1032 "Adrenal corticosteroids" 1033 "Androgens/anabolic steroids" 1034 "Estrogens/progestins" 1035 "Anterior pituitary/hypothalamic function" 1036 "Blood glucose regulators" 1037 "Thyroid/antithyroid" 1038 "Antidiuretics" 1039 "Relaxants/stimulants, uterine" 1040 "Contraceptives" 1041 "Infertility" 1042 "Growth hormone secretion disorder" 1100 "Immunologic agents, unspecified" 1180 "Vaccines/antisera" 1181 "Immunomodulators" 1182 "Allergenic extracts" 1183 "Immune serums" 1200 "Skin/mucous membrane, unspecified" 1264 "Antiseptics/disinfectants" 1265 "Dermatologics, misc." 1266 "Keratolytics" 1267 "Antiperspirants" 1268 "Topical steroids" 1269 "Burn/sunburn, sunscreen/suntan products" 1270 "Acne products" 1271 "Topical anti-infectives" 1272 "Anorectal products" 1273 "Personal care (vaginal) products" 1274 "Dermatitis/antipruritics" 1275 "Topical analgesics" 1300 "Neurologic drugs, unspecified" 1371 "Extrapyramidal movement disorders" 1372 "Myasthenia gravis" 1373 "Skeletal muscle hyperactivity" 1374 "Anticonvulsants" 1400 "Oncolytics, unspecified" 1479 "Antineoplastics, miscellaneous" 1480 "Hormonal/biological response mod." 1481 "Antimetabolites" 1482 "Antibiotics,alkaloids,enzymes" 1483 "DNA damaging drugs" 1500 "Ophthalmic drugs, unspecified" 1566 "Glaucoma" 1567 "Cycloplegics/mydriatics" 1568 "Ocular anti-infective/anti-inflammatory" 1569 "Miscellaneous ophthalmics" 1570 "Decongestants/antiallergy agents" 1571 "Contact lens products" 1600 "Otologic drugs, unspecified" 1670 "Otic, topical (misc)" 1671 "Vertigo/motion sickness/vomiting" 1700 "Relief of pain" 1720 "Analgesics/general" 1721 "Analgesics, narcotic" 1722 "Analgesics, non-narcotic" 1723 "Antimigraine/other headaches" 1724 "Antiarthritics" 1725 "Antigout" 1726 "Central pain syndrome" 1727 "NSAID" 1728 "Antipyretics" 1729 "Menstrual products" 1800 "Antiparasitics agents, unspecified" 1860 "Antiprotozoals" 1862 "Anthelmintics" 1863 "Scabicides/pediculicides" 1864 "Antimalarials" 1900 "Respiratory tract drugs, unspecified" 1940 "Antiasthmatics/bronchodilators" 1941 "Nasal decongestants" 1943 "Antitussives/expectorants/mucolytics" 1944 "Antihistamines" 1945 "Cold remedies" 1946 "Lozenge products" 1947 "Corticosteroid-inhalation/nasal" 2000 "Miscellaneous/unclassified" 2087 "Unclassified" 2095 "Pharmaceutical aids" 2096 "Surgical aids" 2097 "Dental preparation" 2098 "Dentrifice/denture products" 2099 "Mouth pine, cold sore, canker" 2100 "Homeopathic products" 2200 "Illict substances" 2210 "Illicit psychoactive substances" 2220 "Illicit CNS stimulants" 2230 "Illicit CNS depressants" 2240 "Illicit inhalants" 2250 "Illicit narcotic analgesics" 2260 "Illict hallucinogens"; label define racer 1 "White" 2 "Black" 3 "Other"; label define agedays 0 "Less than 1 day" 999 "More than 365 days"; label define ager 1 "Under 15 years" 2 "15-24 years" 3 "25-44 years" 4 "45-64 years" 5 "65-74 years" 6 "75 years and over"; label define intentr 0 "Not applicable (not an injury visit)" 1 "Unintentional" 2 "Self-inflicted" 3 "Assault" 4 "Legal intervention" 5 "Unknown intent" 6 "Adverse medical effect" 7 "Blank cause"; label define whocomp 1 "Hospital staff" 2 "Census Field Rep - Abstract during rep period" 3 "Census Field Rep - Abstract after rep period" 4 "Other" 5 "Multiple categories checked" 6 "Unknown"; label define settype 1 "NAMCS" 2 "NHAMCS - OPD" 3 "NHAMCS - ED"; #delimit cr label values vmonth vmonth label values vdayr vdayr label values age age label values arrtime arrtime label values waittime waittime label values lov lov label values reside reside label values sex sex label values ethnic ethnic label values arrive arrive label values race race label values paytype paytype label values tempf tempf label values pulse pulse label values bpsys bpsys label values bpdias bpdias label values oriented oriented label values immed immed label values pain pain label values rfv1 rfv label values rfv2 rfv label values rfv3 rfv label values rfv13d rfv3 label values rfv23d rfv3 label values rfv33d rfv3 label values alcohol alcohol label values vworkrel vworkrel label values seen72 seen72 label values episode episode label values injury injury label values intent intent label values cause1 cause label values cause2 cause label values cause3 cause label values cause13d cause3 label values cause23d cause3 label values cause33d cause3 label values prdiag1 prdiag1 label values prdiag2 prdiag2 label values prdiag3 prdiag3 label values diagscrn diagscrn label values medscrnx medscrnx label values menstat menstat label values ekg ekg label values cardmon cardmon label values eeg eeg label values pulsoxim pulsoxim label values pregtest pregtest label values urine urine label values chestxry chestxry label values extrxray extrxray label values otherxry otherxry label values ultrasnd ultrasnd label values mricat mricat label values othimage othimage label values cbc cbc label values bun bun label values creatin creatin label values cholest cholest label values glucose glucose label values hgba hgba label values electrol electrol label values bac bac label values hivser hivser label values otherbld otherbld label values bloodcx bloodcx label values cervcx cervcx label values stoolcx stoolcx label values throatcx throatcx label values urinecx urinecx label values othrtest othrtest label values totdiag totdiag label values proc proc label values bladcath bladcath label values cpr cpr label values endoint endoint label values eyeent eyeent label values ivfluids ivfluids label values ngtube ngtube label values obgyn obgyn label values ortho ortho label values thrombo thrombo label values wound wound label values othproc othproc label values totproc totproc label values med med label values med1 meds label values med2 meds label values med3 meds label values med4 meds label values med5 meds label values med6 meds label values med7 meds label values med8 meds label values nodisp nodisp label values nofu nofu label values retprn retprn label values retref retref label values refothmd refothmd label values outtriag outtriag label values refalcdr refalcdr label values rettxsup rettxsup label values left left label values leftama leftama label values admitobs admitobs label values admithos admithos label values admiticu admiticu label values transfer transfer label values doa doa label values othdisp othdisp label values noprovid noprovid label values staffmd staffmd label values resint resint label values othphys othphys label values rn rn label values lpn lpn label values nursepr nursepr label values physasst physasst label values emt emt label values othtech othtech label values othprov othprov label values region region label values msa msa label values owner owner label values bdatefl impute label values sexfl impute label values ethnicfl impute label values racefl impute label values immedfl impute label values gen1 gen label values gen2 gen label values gen3 gen label values gen4 gen label values gen5 gen label values gen6 gen label values gen7 gen label values gen8 gen label values prescr1 prescr label values prescr2 prescr label values prescr3 prescr label values prescr4 prescr label values prescr5 prescr label values prescr6 prescr label values prescr7 prescr label values prescr8 prescr label values contsub1 contsub label values contsub2 contsub label values contsub3 contsub label values contsub4 contsub label values contsub5 contsub label values contsub6 contsub label values contsub7 contsub label values contsub8 contsub label values comstat1 comstat label values comstat2 comstat label values comstat3 comstat label values comstat4 comstat label values comstat5 comstat label values comstat6 comstat label values comstat7 comstat label values comstat8 comstat label values drug1cl1 drugcl label values drug1cl2 drugcl label values drug1cl3 drugcl label values drug2cl1 drugcl label values drug2cl2 drugcl label values drug2cl3 drugcl label values drug3cl1 drugcl label values drug3cl2 drugcl label values drug3cl3 drugcl label values drug4cl1 drugcl label values drug4cl2 drugcl label values drug4cl3 drugcl label values drug5cl1 drugcl label values drug5cl2 drugcl label values drug5cl3 drugcl label values drug6cl1 drugcl label values drug6cl2 drugcl label values drug6cl3 drugcl label values drug7cl1 drugcl label values drug7cl2 drugcl label values drug7cl3 drugcl label values drug8cl1 drugcl label values drug8cl2 drugcl label values drug8cl3 drugcl label values drg1ing1 gen label values drg1ing2 gen label values drg1ing3 gen label values drg1ing4 gen label values drg1ing5 gen label values drg2ing1 gen label values drg2ing2 gen label values drg2ing3 gen label values drg2ing4 gen label values drg2ing5 gen label values drg3ing1 gen label values drg3ing2 gen label values drg3ing3 gen label values drg3ing4 gen label values drg3ing5 gen label values drg4ing1 gen label values drg4ing2 gen label values drg4ing3 gen label values drg4ing4 gen label values drg4ing5 gen label values drg5ing1 gen label values drg5ing2 gen label values drg5ing3 gen label values drg5ing4 gen label values drg5ing5 gen label values drg6ing1 gen label values drg6ing2 gen label values drg6ing3 gen label values drg6ing4 gen label values drg6ing5 gen label values drg7ing1 gen label values drg7ing2 gen label values drg7ing3 gen label values drg7ing4 gen label values drg7ing5 gen label values drg8ing1 gen label values drg8ing2 gen label values drg8ing3 gen label values drg8ing4 gen label values drg8ing5 gen label values racer racer label values agedays agedays label values ager ager label values intentr intentr label values whocomp whocomp label values settype settype #delimit cr