1 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Copyright (c) 2002-2010 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.3 (TS1M0) Licensed to NATIONAL BUREAU OF ECONOMIC RESEARCH, Site 70111350. NOTE: This session is executing on the Linux 2.6.38-15-server (LIN X64) platform. You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.09 seconds cpu time 0.02 seconds 1 *options obs=100 ; 2 options nocenter ; 3 4 **------------------------------------------------; 5 ** by Jean Roth Fri Sep 30 10:19:39 EDT 2011 6 ** This program reads the 2008 SIPP Wave 6 Topical Module Data File ; 7 ** Report errors to jroth@nber.org ; 8 ** A value of -1 (or -1/# of implied decimals) indicates 'Not in Universe' ; 9 ** This program is distributed under the GNU GPL. ; 10 ** See end of this file and 11 ** http://www.gnu.org/licenses/ for details. ; 12 **-----------------------------------------------; 13 14 * The following line should contain the directory 15 where the SAS file is to be stored ; 16 17 libname library "/homes/data/sipp/2008"; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /homes/data/sipp/2008 18 19 * The following line should contain 20 the complete path and name of the raw data file. 21 On a PC, use backslashes in paths as in C:\ ; 22 23 FILENAME datafile pipe "unzip -p /homes/data/sipp/2008/p08putm6.zip "; 24 25 * The following line should contain the name of the SAS dataset ; 26 2 The SAS System 15:07 Thursday, June 21, 2012 27 %let dataset = sippp08putm6 ; 28 29 DATA library.&dataset ; 30 31 INFILE datafile LRECL = 20000 ; 32 33 ** ------------------------------------------------ ; 34 ** The following variable names have been changed, ; 35 ** if necessary: '$' to 'd', '-' to '_', '%' to 'p' ; 36 ** ----------------------------------------------- ; 37 38 attrib ssuseq length=4 label="SU: Sequence Number of Sample Unit - Primary"; 39 attrib ssuid length=$12 label="SU: Sample Unit Identifier"; 40 attrib spanel length=4 label="SU: Sample Code - Indicates Panel Year"; 41 attrib swave length=3 label="SU: Wave of data collection"; 42 attrib srotaton length=3 label="SU: Rotation of data collection"; 43 attrib tfipsst length=3 label="HH: FIPS State Code"; 44 attrib shhadid length=3 label="SU: Hhld Address ID differentiates hhlds in"; 45 attrib eoutcome length=3 label="HH: Interview Status code for this household"; 46 attrib rfid length=3 label="FA: Family ID Number for this month"; 47 attrib rfid2 length=3 label="FA: Family ID excluding related subfamily"; 48 attrib eppidx length=3 label="PE: Person index"; 49 attrib eentaid length=$3 label="PE: Address ID of hhld where person entered"; 50 attrib epppnum length=$4 label="PE: Person number"; 51 attrib epopstat length=3 label="PE: Population status based on age in 4th"; 52 attrib eppintvw length=3 label="PE: Person's interview status"; 53 attrib eppmis4 length=3 label="PE: Person's 4th month interview status"; 54 attrib esex length=3 label="PE: Sex of this person"; 55 attrib erace length=3 label="PE: The race(s) the respondent is"; 56 attrib eorigin length=3 label="PE: Spanish, Hispanic or Latino"; 57 attrib wpfinwgt length=8 label="WW: Person weight"; 58 attrib errp length=3 label="PE: Household relationship"; 59 attrib tage length=3 label="PE: Age as of last birthday"; 60 attrib ems length=3 label="PE: Marital status"; 61 attrib epnspous length=4 label="PE: Person number of spouse"; 62 attrib epnmom length=4 label="PE: Person number of mother"; 63 attrib epndad length=4 label="PE: Person number of father"; 64 attrib epnguard length=4 label="PE: Person number of guardian"; 65 attrib rdesgpnt length=3 label="PE: Designated parent or guardian flag"; 66 attrib eeducate length=3 label="ED: Highest Degree received or grade completed"; 67 attrib lgtkey length=$8 label="PE: Person longitudinal key"; 68 attrib sinthhid length=3 label="SU: Hhld Address ID of person in interview"; 69 attrib eacsunv length=3 label="CS: Universe indicator."; 70 attrib ecskid01 length=4 label="CS: Person number of first child."; 71 attrib ecskid02 length=4 label="CS: Person number of second child."; 72 attrib ecskid03 length=4 label="CS: Person number of third child."; 73 attrib ecskid04 length=4 label="CS: Person number of fourth child."; 74 attrib ecskid05 length=4 label="CS: Person number of fifth child."; 75 attrib ecskid06 length=4 label="CS: Person number of sixth child."; 76 attrib ecskid07 length=4 label="CS: Person number of seventh child."; 77 attrib ecskid08 length=4 label="CS: Person number of eighth child."; 78 attrib ecskid09 length=4 label="CS: Person number of ninth child."; 79 attrib ecskid10 length=4 label="CS: Person number of tenth child."; 80 attrib eynoab01 length=3 label="CS: Parent not living outside of household"; 81 attrib eynoab02 length=3 label="CS: Parent not living outside of household"; 82 attrib eynoab03 length=3 label="CS: Parent not living outside of household"; 83 attrib eynoab04 length=3 label="CS: Parent not living outside of household"; 84 attrib eynoab05 length=3 label="CS: Parent not living outside of household"; 3 The SAS System 15:07 Thursday, June 21, 2012 85 attrib eynoab06 length=3 label="CS: Parent not living outside of household"; 86 attrib eynoab07 length=3 label="CS: Parent not living outside of household"; 87 attrib eynoab08 length=3 label="CS: Parent not living outside of household"; 88 attrib eynoab09 length=3 label="CS: Parent not living outside of household"; 89 attrib eynoab10 length=3 label="CS: Parent not living outside of household"; 90 attrib aynoab length=3 label="CS: Allocation flag for EYNOAB01-10"; 91 attrib recrdflg length=3 label="CS: Record indicator."; 92 attrib ecsflg01 length=3 label="CS: Child support coverage indicator"; 93 attrib ecsflg02 length=3 label="CS: Child support coverage indicator"; 94 attrib ecsflg03 length=3 label="CS: Child support coverage indicator"; 95 attrib ecsflg04 length=3 label="CS: Child support coverage indicator"; 96 attrib ecsflg05 length=3 label="CS: Child support coverage indicator"; 97 attrib ecsflg06 length=3 label="CS: Child support coverage indicator"; 98 attrib ecsflg07 length=3 label="CS: Child support coverage indicator"; 99 attrib ecsflg08 length=3 label="CS: Child support coverage indicator"; 100 attrib ecsflg09 length=3 label="CS: Child support coverage indicator"; 101 attrib ecsflg10 length=3 label="CS: Child support coverage indicator"; 102 attrib acsflg length=3 label="CS: Allocation flag for ECSFLG01-10"; 103 attrib ranyagre length=3 label="CS: Child support payments ever agreed to or"; 104 attrib tnumagr length=3 label="CS: Number of child support agreements"; 105 attrib anumagr length=3 label="CS: Allocation flag for TNUMAGR"; 106 attrib etypeagr length=3 label="CS: Type of child support agreements"; 107 attrib atypeagr length=3 label="CS: Allocation flag for ETYPEAGR"; 108 attrib efirsyr1 length=4 label="CS: Year the agreement was first reached"; 109 attrib afirsyr1 length=3 label="CS: Allocation flag for EFIRSYR1"; 110 attrib tamtag11 length=4 label="CS: Amount of support agreement"; 111 attrib eamtag12 length=3 label="CS: Frequency of payment"; 112 attrib aamtag11 length=3 label="CS: Allocation flag for TAMTAG11 AND EAMTAG12"; 113 attrib eevrchg1 length=3 label="CS: Dollar amount change"; 114 attrib aevrchg1 length=3 label="CS: Allocation flag for EEVRCHG1"; 115 attrib eyrchng1 length=4 label="CS: Year the amount was last changed"; 116 attrib ayrchng1 length=3 label="CS: Allocation flag for EYRCHNG1"; 117 attrib tamtcg11 length=4 label="CS: The dollar amount for the agreement"; 118 attrib eamtcg12 length=3 label="CS: Frequency of payment"; 119 attrib aamtcg11 length=3 label="CS: Allocation flag for TAMTCG11 AND EAMTCG12"; 120 attrib ewhochgd length=3 label="CS: Change made by government agency"; 121 attrib awhochgd length=3 label="CS: Allocation flag for EWHOCHGD"; 122 attrib epaydue1 length=3 label="CS: Payments due for agreement"; 123 attrib apaydue1 length=3 label="CS: Allocation flag for EPAYDUE1"; 124 attrib eynodue1 length=3 label="CS: Reason payment was not due"; 125 attrib aynodue1 length=3 label="CS: Allocation flag for EYNODUE1"; 126 attrib tamtsup1 length=4 label="CS: The dollar amount of child support"; 127 attrib aamtsup1 length=3 label="CS: Allocation flag for TAMTSUP1"; 128 attrib ehowrec1 length=3 label="CS: Ways payments are received"; 129 attrib ahowrec1 length=3 label="CS: Allocation flag for EHOWREC1"; 130 attrib tactrec1 length=4 label="CS: Amount received for agreement"; 131 attrib aactrec1 length=3 label="CS: Allocation flag for TACTREC1"; 132 attrib eallpay1 length=3 label="CS: Received every single one of child"; 133 attrib aallpay1 length=3 label="CS: Allocation flag for EALLPAY1"; 134 attrib epaytim1 length=3 label="CS: Number of child support payments made on"; 135 attrib apaytim1 length=3 label="CS: Allocation flag for EPAYTIM1"; 136 attrib epayful1 length=3 label="CS: How many of the payments were for the"; 137 attrib apayful1 length=3 label="CS: Allocation flag for EPAYFUL1"; 138 attrib eduback1 length=3 label="CS: Did recent payment include back child"; 139 attrib aduback1 length=3 label="CS: Allocation flag for EDUBACK1"; 140 attrib tdolbac1 length=4 label="CS: How much child support owed was back"; 141 attrib adolbac1 length=3 label="CS: Allocation flag for TDOLBAC1"; 142 attrib ebacowe1 length=3 label="CS: Is ... owed any back payments?"; 4 The SAS System 15:07 Thursday, June 21, 2012 143 attrib abacowe1 length=3 label="CS: Allocation flag for EBACOWE1"; 144 attrib tamtowe1 length=4 label="CS: Amount of back payments owed to ..."; 145 attrib aamtowe1 length=3 label="CS: Allocation flag for TAMTOWE1"; 146 attrib tbacrec1 length=4 label="CS: Amount of back payment actually received"; 147 attrib abacrec1 length=3 label="CS: Allocation flag for TBACREC1"; 148 attrib ehthag11 length=3 label="CS: Non-custodial parent to provide health"; 149 attrib ehthag12 length=3 label="CS: Custodial parent to provide health"; 150 attrib ehthag13 length=3 label="CS: Non-custodial parent to pay actual"; 151 attrib ehthag14 length=3 label="CS: Child support payments include medical"; 152 attrib ehthag15 length=3 label="CS: No provision for health insurance"; 153 attrib ehthag16 length=3 label="CS: Other provisions for health care costs"; 154 attrib ahthag11 length=3 label="CS: Allocation flag for EHTHAG11-EHTHAG16"; 155 attrib ecustag1 length=3 label="CS: Child custody arrangements"; 156 attrib acustag1 length=3 label="CS: Allocation flag for ECUSTAG1"; 157 attrib espentm1 length=3 label="CS: Time spent with other parent"; 158 attrib aspentm1 length=3 label="CS: Allocation flag for ESPENTM1"; 159 attrib esametm1 length=3 label="CS: Time spent with other parent"; 160 attrib asametm1 length=3 label="CS: Allocation flag for ESAMETM1"; 161 attrib eamttm11 length=3 label="CS: Time spent with other parent in days"; 162 attrib eamttm12 length=3 label="CS: Time spent with other parent in weeks"; 163 attrib eamttm13 length=3 label="CS: Time spent with other parent in months"; 164 attrib aamttm11 length=3 label="CS: Allocation flag for EAMTTM11-EAMTTM13"; 165 attrib ewherlv1 length=3 label="CS: Place where other parent lives"; 166 attrib awherlv1 length=3 label="CS: Allocation flag for EWHERLV1"; 167 attrib estagre1 length=3 label="CS: State where parent lives"; 168 attrib astagre1 length=3 label="CS: Allocation flag for ESTAGRE1"; 169 attrib ewhomov1 length=3 label="CS: Person that moved"; 170 attrib awhomov1 length=3 label="CS: Allocation flag for EWHOMOV1"; 171 attrib efirsyr2 length=4 label="CS: Year the agreement was first reached"; 172 attrib afirsyr2 length=3 label="CS: Allocation flag for EFIRSYR2"; 173 attrib tamtag21 length=4 label="CS: Amount of support agreement"; 174 attrib eamtag22 length=3 label="CS: Frequency of payment"; 175 attrib aamtag21 length=3 label="CS: Allocation flag for TAMTAG21 AND EAMTAG22"; 176 attrib eevrchg2 length=3 label="CS: Dollar amount change"; 177 attrib aevrchg2 length=3 label="CS: Allocation flag for EEVRCHG2"; 178 attrib eyrchng2 length=4 label="CS: Year the amount was last changed"; 179 attrib ayrchng2 length=3 label="CS: Allocation flag for EYRCHNG2"; 180 attrib tamtcg21 length=4 label="CS: The dollar amount for the agreement"; 181 attrib eamtcg22 length=3 label="CS: Frequency of payment"; 182 attrib aamtcg21 length=3 label="CS: Allocation flag for TAMTCG21 AND EAMTCG22"; 183 attrib epaydue2 length=3 label="CS: Payments due last year"; 184 attrib apaydue2 length=3 label="CS: Allocation flag for EPAYDUE2"; 185 attrib eynodue2 length=3 label="CS: Reasons payment was not due"; 186 attrib aynodue2 length=3 label="CS: Allocation flag for EYNODUE2"; 187 attrib tamtsup2 length=4 label="CS: The dollar amount of child support"; 188 attrib aamtsup2 length=3 label="CS: Allocation flag for TAMTSUP2"; 189 attrib tactrec2 length=4 label="CS: Amount received for agreement"; 190 attrib aactrec2 length=3 label="CS: Allocation flag for TACTREC2"; 191 attrib eallpay2 length=3 label="CS: Received everyone of the child support"; 192 attrib aallpay2 length=3 label="CS: Allocation flag for EALLPAY2"; 193 attrib epaytim2 length=3 label="CS: Number of child support payments made on"; 194 attrib apaytim2 length=3 label="CS: Allocation flag for EPAYTIM2"; 195 attrib epayful2 length=3 label="CS: How many child support payments were for"; 196 attrib apayful2 length=3 label="CS: Allocation flag for EPAYFUL2"; 197 attrib eduback2 length=3 label="CS: Did recent payment include back child"; 198 attrib aduback2 length=3 label="CS: Allocation flag for EDUBACK2"; 199 attrib tdolbac2 length=3 label="CS: How much child support owed was back"; 200 attrib adolbac2 length=3 label="CS: Allocation flag for TDOLBAC2"; 5 The SAS System 15:07 Thursday, June 21, 2012 201 attrib ebacowe2 length=3 label="CS: Is ... owed any back payments?"; 202 attrib abacowe2 length=3 label="CS: Allocation flag for EBACOWE2"; 203 attrib tamtowe2 length=4 label="CS: Amount of back payments owed to ..."; 204 attrib aamtowe2 length=3 label="CS: Allocation flag for TAMTOWE2"; 205 attrib tbacrec2 length=3 label="CS: Amount of back payment actually received"; 206 attrib abacrec2 length=3 label="CS: Allocation flag for TBACREC2"; 207 attrib ehltag21 length=3 label="CS: Non-custodial parent to provide health"; 208 attrib ehltag22 length=3 label="CS: Custodial parent to provide health"; 209 attrib ehltag23 length=3 label="CS: Non-custodial parent to pay actual"; 210 attrib ehltag24 length=3 label="CS: Child support payments include medical"; 211 attrib ehltag25 length=3 label="CS: No provision for health insurance"; 212 attrib ehltag26 length=3 label="CS: Other provisions for health care costs"; 213 attrib ahltag21 length=3 label="CS: Allocation flag for EHTHAG21-EHTHAG26"; 214 attrib ecustag2 length=3 label="CS: Child custody arrangements"; 215 attrib acustag2 length=3 label="CS: Allocation flag for ECUSTAG2"; 216 attrib espentm2 length=3 label="CS: Time spent with other parent"; 217 attrib aspentm2 length=3 label="CS: Allocation flag for ESPENTM2"; 218 attrib esametm2 length=3 label="CS: Time spent with other parent"; 219 attrib asametm2 length=3 label="CS: Allocation flag for ESAMETM2"; 220 attrib eamttm21 length=3 label="CS: Time spent with other parent in days"; 221 attrib eamttm22 length=3 label="CS: Time spent with other parent in weeks"; 222 attrib eamttm23 length=3 label="CS: Time spent with other parent in months"; 223 attrib aamttm21 length=3 label="CS: Allocation flag for EAMTTM21-EAMTTM23"; 224 attrib edcrt101 length=3 label="CS: Father identified by court ruling"; 225 attrib edcrt102 length=3 label="CS: Father identified by court ruling"; 226 attrib edcrt103 length=3 label="CS: Father identified by court ruling"; 227 attrib edcrt104 length=3 label="CS: Father identified by court ruling"; 228 attrib edcrt105 length=3 label="CS: Father identified by court ruling"; 229 attrib edcrt106 length=3 label="CS: Father identified by court ruling"; 230 attrib edcrt107 length=3 label="CS: Father identified by court ruling"; 231 attrib edcrt108 length=3 label="CS: Father identified by court ruling"; 232 attrib edcrt109 length=3 label="CS: Father identified by court ruling"; 233 attrib edcrt110 length=3 label="CS: Father identified by court ruling"; 234 attrib edtes101 length=3 label="CS: Father identified by blood test"; 235 attrib edtes102 length=3 label="CS: Father identified by blood test"; 236 attrib edtes103 length=3 label="CS: Father identified by blood test"; 237 attrib edtes104 length=3 label="CS: Father identified by blood test"; 238 attrib edtes105 length=3 label="CS: Father identified by blood test"; 239 attrib edtes106 length=3 label="CS: Father identified by blood test"; 240 attrib edtes107 length=3 label="CS: Father identified by blood test"; 241 attrib edtes108 length=3 label="CS: Father identified by blood test"; 242 attrib edtes109 length=3 label="CS: Father identified by blood test"; 243 attrib edtes110 length=3 label="CS: Father identified by blood test"; 244 attrib edcer101 length=3 label="CS: Signature on birth certificate"; 245 attrib edcer102 length=3 label="CS: Signature on birth certificate"; 246 attrib edcer103 length=3 label="CS: Signature on birth certificate"; 247 attrib edcer104 length=3 label="CS: Signature on birth certificate"; 248 attrib edcer105 length=3 label="CS: Signature on birth certificate"; 249 attrib edcer106 length=3 label="CS: Signature on birth certificate"; 250 attrib edcer107 length=3 label="CS: Signature on birth certificate"; 251 attrib edcer108 length=3 label="CS: Signature on birth certificate"; 252 attrib edcer109 length=3 label="CS: Signature on birth certificate"; 253 attrib edcer110 length=3 label="CS: Signature on birth certificate"; 254 attrib edsig101 length=3 label="CS: Signature with father's name"; 255 attrib edsig102 length=3 label="CS: Signature with father's name"; 256 attrib edsig103 length=3 label="CS: Signature with father's name"; 257 attrib edsig104 length=3 label="CS: Signature with father's name"; 258 attrib edsig105 length=3 label="CS: Signature with father's name"; 6 The SAS System 15:07 Thursday, June 21, 2012 259 attrib edsig106 length=3 label="CS: Signature with father's name"; 260 attrib edsig107 length=3 label="CS: Signature with father's name"; 261 attrib edsig108 length=3 label="CS: Signature with father's name"; 262 attrib edsig109 length=3 label="CS: Signature with father's name"; 263 attrib edsig110 length=3 label="CS: Signature with father's name"; 264 attrib edoth101 length=3 label="CS: Father signed other papers"; 265 attrib edoth102 length=3 label="CS: Father signed other papers"; 266 attrib edoth103 length=3 label="CS: Father signed other papers"; 267 attrib edoth104 length=3 label="CS: Father signed other papers"; 268 attrib edoth105 length=3 label="CS: Father signed other papers"; 269 attrib edoth106 length=3 label="CS: Father signed other papers"; 270 attrib edoth107 length=3 label="CS: Father signed other papers"; 271 attrib edoth108 length=3 label="CS: Father signed other papers"; 272 attrib edoth109 length=3 label="CS: Father signed other papers"; 273 attrib edoth110 length=3 label="CS: Father signed other papers"; 274 attrib adid101 length=3 label="CS: Allocation flag for EDCRT101-EDCRT110"; 275 attrib edmar1 length=3 label="CS: Married to child's father"; 276 attrib admar1 length=3 label="CS: Allocation flag for EDMAR1"; 277 attrib edcrt201 length=3 label="CS: Father identified by court ruling"; 278 attrib edcrt202 length=3 label="CS: Father identified by court ruling"; 279 attrib edcrt203 length=3 label="CS: Father identified by court ruling"; 280 attrib edcrt204 length=3 label="CS: Father identified by court ruling"; 281 attrib edcrt205 length=3 label="CS: Father identified by court ruling"; 282 attrib edcrt206 length=3 label="CS: Father identified by court ruling"; 283 attrib edcrt207 length=3 label="CS: Father identified by court ruling"; 284 attrib edcrt208 length=3 label="CS: Father identified by court ruling"; 285 attrib edcrt209 length=3 label="CS: Father identified by court ruling"; 286 attrib edcrt210 length=3 label="CS: Father identified by court ruling"; 287 attrib edtes201 length=3 label="CS: Father identified by blood test"; 288 attrib edtes202 length=3 label="CS: Father identified by blood test"; 289 attrib edtes203 length=3 label="CS: Father identified by blood test"; 290 attrib edtes204 length=3 label="CS: Father identified by blood test"; 291 attrib edtes205 length=3 label="CS: Father identified by blood test"; 292 attrib edtes206 length=3 label="CS: Father identified by blood test"; 293 attrib edtes207 length=3 label="CS: Father identified by blood test"; 294 attrib edtes208 length=3 label="CS: Father identified by blood test"; 295 attrib edtes209 length=3 label="CS: Father identified by blood test"; 296 attrib edtes210 length=3 label="CS: Father identified by blood test"; 297 attrib edcer201 length=3 label="CS: Signature on birth certificate"; 298 attrib edcer202 length=3 label="CS: Signature on birth certificate"; 299 attrib edcer203 length=3 label="CS: Signature on birth certificate"; 300 attrib edcer204 length=3 label="CS: Signature on birth certificate"; 301 attrib edcer205 length=3 label="CS: Signature on birth certificate"; 302 attrib edcer206 length=3 label="CS: Signature on birth certificate"; 303 attrib edcer207 length=3 label="CS: Signature on birth certificate"; 304 attrib edcer208 length=3 label="CS: Signature on birth certificate"; 305 attrib edcer209 length=3 label="CS: Signature on birth certificate"; 306 attrib edcer210 length=3 label="CS: Signature on birth certificate"; 307 attrib edsig201 length=3 label="CS: Signature with father's name"; 308 attrib edsig202 length=3 label="CS: Signature with father's name"; 309 attrib edsig203 length=3 label="CS: Signature with father's name"; 310 attrib edsig204 length=3 label="CS: Signature with father's name"; 311 attrib edsig205 length=3 label="CS: Signature with father's name"; 312 attrib edsig206 length=3 label="CS: Signature with father's name"; 313 attrib edsig207 length=3 label="CS: Signature with father's name"; 314 attrib edsig208 length=3 label="CS: Signature with father's name"; 315 attrib edsig209 length=3 label="CS: Signature with father's name"; 316 attrib edsig210 length=3 label="CS: Signature with father's name"; 7 The SAS System 15:07 Thursday, June 21, 2012 317 attrib edoth201 length=3 label="CS: Father signed other papers"; 318 attrib edoth202 length=3 label="CS: Father signed other papers"; 319 attrib edoth203 length=3 label="CS: Father signed other papers"; 320 attrib edoth204 length=3 label="CS: Father signed other papers"; 321 attrib edoth205 length=3 label="CS: Father signed other papers"; 322 attrib edoth206 length=3 label="CS: Father signed other papers"; 323 attrib edoth207 length=3 label="CS: Father signed other papers"; 324 attrib edoth208 length=3 label="CS: Father signed other papers"; 325 attrib edoth209 length=3 label="CS: Father signed other papers"; 326 attrib edoth210 length=3 label="CS: Father signed other papers"; 327 attrib adid201 length=3 label="CS: Allocation flag for EDCRT201-EDCRT210"; 328 attrib eynevwr1 length=3 label="CS: Reason: Legal paternity not established"; 329 attrib eynevwr2 length=3 label="CS: Reason: Unable to locate parent"; 330 attrib eynevwr3 length=3 label="CS: Reason: Other parent unable to pay"; 331 attrib eynevwr4 length=3 label="CS: Reason: Final agreement pending"; 332 attrib eynevwr5 length=3 label="CS: Property settlement in lieu of child"; 333 attrib eynevwr6 length=3 label="CS: Reason: Did not want a legal child"; 334 attrib eynevwr7 length=3 label="CS: Reason: Did not try to get child support"; 335 attrib eynevwr8 length=3 label="CS: Reason: Some other reason"; 336 attrib aynevwr1 length=3 label="CS: Allocation flag for EYNEVWR1-EYNEVWR8."; 337 attrib ewherlv2 length=3 label="CS: Other parent's residence"; 338 attrib awherlv2 length=3 label="CS: Allocation flag for EWHERLV2"; 339 attrib estagre2 length=3 label="CS: State where parent lives"; 340 attrib astagre2 length=3 label="CS: Allocation flag for ESTAGRE2"; 341 attrib ewhomov2 length=3 label="CS: Person that moved"; 342 attrib awhomov2 length=3 label="CS: Allocation flag for EWHOMOV2"; 343 attrib tamtag31 length=3 label="CS: Dollar amount for the agreement"; 344 attrib eamtag32 length=3 label="CS: Frequency of dollar amount"; 345 attrib aamtag31 length=3 label="CS: Allocation flag for TAMTAG31 AND EAMTAG32"; 346 attrib tactrec3 length=4 label="CS: Amount received in child support"; 347 attrib aactrec3 length=3 label="CS: Allocation flag for TACTREC3"; 348 attrib epubsupp length=3 label="CS: Help in obtaining child support"; 349 attrib apubsupp length=3 label="CS: Allocation flag for EPUBSUPP"; 350 attrib elastask length=4 label="CS: Last year for help"; 351 attrib alastask length=3 label="CS: Allocation flag for ELASTASK"; 352 attrib etypask1 length=3 label="CS: Locate the other parent"; 353 attrib etypask2 length=3 label="CS: Establish paternity"; 354 attrib etypask3 length=3 label="CS: Establish support obligation"; 355 attrib etypask4 length=3 label="CS: Establish medical support"; 356 attrib etypask5 length=3 label="CS: Enforce support order"; 357 attrib etypask6 length=3 label="CS: Modify order"; 358 attrib etypask7 length=3 label="CS: Other reason"; 359 attrib atypask length=3 label="CS: Allocation flag for ETYPASK1-ETYPASK7"; 360 attrib ehelpsyn length=3 label="CS: Help received from agency"; 361 attrib ahelpsyn length=3 label="CS: Allocation flag for EHELPSYN"; 362 attrib etyphlp1 length=3 label="CS: Locate the other parent"; 363 attrib etyphlp2 length=3 label="CS: Establish paternity"; 364 attrib etyphlp3 length=3 label="CS: Establish support obligation"; 365 attrib etyphlp4 length=3 label="CS: Establish medical support"; 366 attrib etyphlp5 length=3 label="CS: Enforce support order"; 367 attrib etyphlp6 length=3 label="CS: Modify order"; 368 attrib etyphlp7 length=3 label="CS: Other reason"; 369 attrib atyphlp length=3 label="CS: Allocation flag for ETYPHLP1-ETYPHLP7"; 370 attrib edcrt301 length=3 label="CS: Father identified by court ruling"; 371 attrib edcrt302 length=3 label="CS: Father identified by court ruling"; 372 attrib edcrt303 length=3 label="CS: Father identified by court ruling"; 373 attrib edcrt304 length=3 label="CS: Father identified by court ruling"; 374 attrib edcrt305 length=3 label="CS: Father identified by court ruling"; 8 The SAS System 15:07 Thursday, June 21, 2012 375 attrib edcrt306 length=3 label="CS: Father identified by court ruling"; 376 attrib edcrt307 length=3 label="CS: Father identified by court ruling"; 377 attrib edcrt308 length=3 label="CS: Father identified by court ruling"; 378 attrib edcrt309 length=3 label="CS: Father identified by court ruling"; 379 attrib edcrt310 length=3 label="CS: Father identified by court ruling"; 380 attrib edtes301 length=3 label="CS: Father identified by blood test"; 381 attrib edtes302 length=3 label="CS: Father identified by blood test"; 382 attrib edtes303 length=3 label="CS: Father identified by blood test"; 383 attrib edtes304 length=3 label="CS: Father identified by blood test"; 384 attrib edtes305 length=3 label="CS: Father identified by blood test"; 385 attrib edtes306 length=3 label="CS: Father identified by blood test"; 386 attrib edtes307 length=3 label="CS: Father identified by blood test"; 387 attrib edtes308 length=3 label="CS: Father identified by blood test"; 388 attrib edtes309 length=3 label="CS: Father identified by blood test"; 389 attrib edtes310 length=3 label="CS: Father identified by blood test"; 390 attrib edcer301 length=3 label="CS: Signature on birth certificate"; 391 attrib edcer302 length=3 label="CS: Signature on birth certificate"; 392 attrib edcer303 length=3 label="CS: Signature on birth certificate"; 393 attrib edcer304 length=3 label="CS: Signature on birth certificate"; 394 attrib edcer305 length=3 label="CS: Signature on birth certificate"; 395 attrib edcer306 length=3 label="CS: Signature on birth certificate"; 396 attrib edcer307 length=3 label="CS: Signature on birth certificate"; 397 attrib edcer308 length=3 label="CS: Signature on birth certificate"; 398 attrib edcer309 length=3 label="CS: Signature on birth certificate"; 399 attrib edcer310 length=3 label="CS: Signature on birth certificate"; 400 attrib edsig301 length=3 label="CS: Signature with father's name"; 401 attrib edsig302 length=3 label="CS: Signature with father's name"; 402 attrib edsig303 length=3 label="CS: Signature with father's name"; 403 attrib edsig304 length=3 label="CS: Signature with father's name"; 404 attrib edsig305 length=3 label="CS: Signature with father's name"; 405 attrib edsig306 length=3 label="CS: Signature with father's name"; 406 attrib edsig307 length=3 label="CS: Signature with father's name"; 407 attrib edsig308 length=3 label="CS: Signature with father's name"; 408 attrib edsig309 length=3 label="CS: Signature with father's name"; 409 attrib edsig310 length=3 label="CS: Signature with father's name"; 410 attrib edoth301 length=3 label="CS: Father signed other papers"; 411 attrib edoth302 length=3 label="CS: Father signed other papers"; 412 attrib edoth303 length=3 label="CS: Father signed other papers"; 413 attrib edoth304 length=3 label="CS: Father signed other papers"; 414 attrib edoth305 length=3 label="CS: Father signed other papers"; 415 attrib edoth306 length=3 label="CS: Father signed other papers"; 416 attrib edoth307 length=3 label="CS: Father signed other papers"; 417 attrib edoth308 length=3 label="CS: Father signed other papers"; 418 attrib edoth309 length=3 label="CS: Father signed other papers"; 419 attrib edoth310 length=3 label="CS: Father signed other papers"; 420 attrib adid301 length=3 label="CS: Allocation flag for EDCRT301-EDCRT310"; 421 attrib edmar201 length=3 label="CS: Married to child's father"; 422 attrib admar201 length=3 label="CS: Allocation flag for EDMAR201"; 423 attrib edmar202 length=3 label="CS: Married to child's father"; 424 attrib admar202 length=3 label="CS: Allocation flag for EDMAR202"; 425 attrib edmar203 length=3 label="CS: Married to child's father"; 426 attrib admar203 length=3 label="CS: Allocation flag for EDMAR203"; 427 attrib edmar204 length=3 label="CS: Married to child's father"; 428 attrib admar204 length=3 label="CS: Allocation flag for EDMAR204"; 429 attrib edmar205 length=3 label="CS: Married to child's father"; 430 attrib admar205 length=3 label="CS: Allocation flag for EDMAR205"; 431 attrib edmar206 length=3 label="CS: Married to child's father"; 432 attrib admar206 length=3 label="CS: Allocation flag for EDMAR206"; 9 The SAS System 15:07 Thursday, June 21, 2012 433 attrib edmar207 length=3 label="CS: Married to child's father"; 434 attrib admar207 length=3 label="CS: Allocation flag for EDMAR207"; 435 attrib edmar208 length=3 label="CS: Married to child's father"; 436 attrib admar208 length=3 label="CS: Allocation flag for EDMAR208"; 437 attrib edmar209 length=3 label="CS: Married to child's father"; 438 attrib admar209 length=3 label="CS: Allocation flag for EDMAR209"; 439 attrib edmar210 length=3 label="CS: Married to child's father"; 440 attrib admar210 length=3 label="CS: Allocation flag for EDMAR210"; 441 attrib esame01 length=3 label="CS: All have same father"; 442 attrib asame01 length=3 label="CS: Allocation flag for ESAME01"; 443 attrib esame02 length=3 label="CS: All have same father"; 444 attrib asame02 length=3 label="CS: Allocation flag for ESAME02"; 445 attrib esame03 length=3 label="CS: All have same father"; 446 attrib asame03 length=3 label="CS: Allocation flag for ESAME03"; 447 attrib esame04 length=3 label="CS: All have same father"; 448 attrib asame04 length=3 label="CS: Allocation flag for ESAME04"; 449 attrib esame05 length=3 label="CS: All have same father"; 450 attrib asame05 length=3 label="CS: Allocation flag for ESAME05"; 451 attrib esame06 length=3 label="CS: All have same father"; 452 attrib asame06 length=3 label="CS: Allocation flag for ESAME06"; 453 attrib esame07 length=3 label="CS: All have same father"; 454 attrib asame07 length=3 label="CS: Allocation flag for ESAME07"; 455 attrib esame08 length=3 label="CS: All have same father"; 456 attrib asame08 length=3 label="CS: Allocation flag for ESAME08"; 457 attrib esame09 length=3 label="CS: All have same father"; 458 attrib asame09 length=3 label="CS: Allocation flag for ESAME09"; 459 attrib esame10 length=3 label="CS: All have same father"; 460 attrib asame10 length=3 label="CS: Allocation flag for ESAME10"; 461 attrib edcrt401 length=3 label="CS: Father identified by court ruling"; 462 attrib edcrt402 length=3 label="CS: Father identified by court ruling"; 463 attrib edcrt403 length=3 label="CS: Father identified by court ruling"; 464 attrib edcrt404 length=3 label="CS: Father identified by court ruling"; 465 attrib edcrt405 length=3 label="CS: Father identified by court ruling"; 466 attrib edcrt406 length=3 label="CS: Father identified by court ruling"; 467 attrib edcrt407 length=3 label="CS: Father identified by court ruling"; 468 attrib edcrt408 length=3 label="CS: Father identified by court ruling"; 469 attrib edcrt409 length=3 label="CS: Father identified by court ruling"; 470 attrib edcrt410 length=3 label="CS: Father identified by court ruling"; 471 attrib edtes401 length=3 label="CS: Father identified by blood test"; 472 attrib edtes402 length=3 label="CS: Father identified by blood test"; 473 attrib edtes403 length=3 label="CS: Father identified by blood test"; 474 attrib edtes404 length=3 label="CS: Father identified by blood test"; 475 attrib edtes405 length=3 label="CS: Father identified by blood test"; 476 attrib edtes406 length=3 label="CS: Father identified by blood test"; 477 attrib edtes407 length=3 label="CS: Father identified by blood test"; 478 attrib edtes408 length=3 label="CS: Father identified by blood test"; 479 attrib edtes409 length=3 label="CS: Father identified by blood test"; 480 attrib edtes410 length=3 label="CS: Father identified by blood test"; 481 attrib edcer401 length=3 label="CS: Signature on birth certificate"; 482 attrib edcer402 length=3 label="CS: Signature on birth certificate"; 483 attrib edcer403 length=3 label="CS: Signature on birth certificate"; 484 attrib edcer404 length=3 label="CS: Signature on birth certificate"; 485 attrib edcer405 length=3 label="CS: Signature on birth certificate"; 486 attrib edcer406 length=3 label="CS: Signature on birth certificate"; 487 attrib edcer407 length=3 label="CS: Signature on birth certificate"; 488 attrib edcer408 length=3 label="CS: Signature on birth certificate"; 489 attrib edcer409 length=3 label="CS: Signature on birth certificate"; 490 attrib edcer410 length=3 label="CS: Signature on birth certificate"; 10 The SAS System 15:07 Thursday, June 21, 2012 491 attrib edsig401 length=3 label="CS: Signed a statement"; 492 attrib edsig402 length=3 label="CS: Signed a statement"; 493 attrib edsig403 length=3 label="CS: Signed a statement"; 494 attrib edsig404 length=3 label="CS: Signed a statement"; 495 attrib edsig405 length=3 label="CS: Signed a statement"; 496 attrib edsig406 length=3 label="CS: Signed a statement"; 497 attrib edsig407 length=3 label="CS: Signed a statement"; 498 attrib edsig408 length=3 label="CS: Signed a statement"; 499 attrib edsig409 length=3 label="CS: Signed a statement"; 500 attrib edsig410 length=3 label="CS: Signed a statement"; 501 attrib edoth401 length=3 label="CS: Father signed other papers"; 502 attrib edoth402 length=3 label="CS: Father signed other papers"; 503 attrib edoth403 length=3 label="CS: Father signed other papers"; 504 attrib edoth404 length=3 label="CS: Father signed other papers"; 505 attrib edoth405 length=3 label="CS: Father signed other papers"; 506 attrib edoth406 length=3 label="CS: Father signed other papers"; 507 attrib edoth407 length=3 label="CS: Father signed other papers"; 508 attrib edoth408 length=3 label="CS: Father signed other papers"; 509 attrib edoth409 length=3 label="CS: Father signed other papers"; 510 attrib edoth410 length=3 label="CS: Father signed other papers"; 511 attrib adid401 length=3 label="CS: Allocation flag for"; 512 attrib adid402 length=3 label="CS: Allocation flag for"; 513 attrib adid403 length=3 label="CS: Allocation flag for"; 514 attrib adid404 length=3 label="CS: Allocation flag for"; 515 attrib adid405 length=3 label="CS: Allocation flag for"; 516 attrib adid406 length=3 label="CS: Allocation flag for"; 517 attrib adid407 length=3 label="CS: Allocation flag for"; 518 attrib adid408 length=3 label="CS: Allocation flag for"; 519 attrib adid409 length=3 label="CS: Allocation flag for"; 520 attrib adid410 length=3 label="CS: Allocation flag for"; 521 attrib esamepar length=3 label="CS: Same father"; 522 attrib asamepar length=3 label="CS: Allocation flag for ESAMEPAR"; 523 attrib eynoag11 length=3 label="CS: Reason: Legal paternity not established"; 524 attrib eynoag12 length=3 label="CS: Reason: Unable to locate parent"; 525 attrib eynoag13 length=3 label="CS: Reason: Other parent unable to pay"; 526 attrib eynoag14 length=3 label="CS: Reason: Final agreement pending"; 527 attrib eynoag15 length=3 label="CS: Reason: Accepted settlement for child"; 528 attrib eynoag16 length=3 label="CS: Reason: Did not want a legal child"; 529 attrib eynoag17 length=3 label="CS: Reason: Did not try to get child support"; 530 attrib eynoag18 length=3 label="CS: Reason: Some other reason"; 531 attrib aynoag11 length=3 label="CS: Allocation flag for EYNOAG11-EYNOAG18"; 532 attrib ewherlv3 length=3 label="CS: Place where other parent lives"; 533 attrib awherlv3 length=3 label="CS: Allocation flag for EWHERLV3"; 534 attrib evisagr1 length=3 label="CS: Agreement by a court order or other gov."; 535 attrib avisagr1 length=3 label="CS: Allocation flag for EVISAGR1"; 536 attrib eamttm41 length=3 label="CS: Time spent with other parent in days"; 537 attrib eamttm42 length=3 label="CS: Time spent with other parent in weeks"; 538 attrib eamttm43 length=3 label="CS: Time spent with other parent in months"; 539 attrib aamttm41 length=3 label="CS: Allocation flag for EAMTTM41-EAMTTM43"; 540 attrib eynoag21 length=3 label="CS: Reason: Legal paternity not established"; 541 attrib eynoag22 length=3 label="CS: Reason: Unable to locate parent"; 542 attrib eynoag23 length=3 label="CS: Reason: Other parent unable to pay"; 543 attrib eynoag24 length=3 label="CS: Reason: Final agreement pending"; 544 attrib eynoag25 length=3 label="CS: Reason: Accepted settlement for child"; 545 attrib eynoag26 length=3 label="CS: Reason: Did not want a legal child"; 546 attrib eynoag27 length=3 label="CS: Reason: Did not try to get child support"; 547 attrib eynoag28 length=3 label="CS: Reason: Some other reason"; 548 attrib aynoag21 length=3 label="CS: Allocation flag for EYNOAG21-EYNOAG28"; 11 The SAS System 15:07 Thursday, June 21, 2012 549 attrib ewherlv4 length=3 label="CS: Place where other parent lives"; 550 attrib awherlv4 length=3 label="CS: Allocation flag for EWHERLV4"; 551 attrib evisagr2 length=3 label="CS: Agreement by a court order or other gov."; 552 attrib avisagr2 length=3 label="CS: Allocation flag for EVISAGR2"; 553 attrib eamttm51 length=3 label="CS: Time spent with other parent in days"; 554 attrib eamttm52 length=3 label="CS: Time spent with other parent in weeks"; 555 attrib eamttm53 length=3 label="CS: Time spent with other parent in months"; 556 attrib aamttm51 length=3 label="CS: Allocation flag for EAMTTM51-EAMTTM53"; 557 attrib epayrecv length=3 label="CS: Payments received"; 558 attrib apayrecv length=3 label="CS: Allocation flag for EPAYRECV"; 559 attrib tactrec4 length=4 label="CS: Amount actually received"; 560 attrib aactrec4 length=3 label="CS: Allocation flag for TACTREC4"; 561 attrib eothitem length=3 label="CS: Non-cash items provided"; 562 attrib aothitem length=3 label="CS: Allocation flag for EOTHITEM"; 563 attrib eagencol length=3 label="CS: Did government or public agency collect"; 564 attrib aagencol length=3 label="CS: Allocation flag for EAGENCOL"; 565 attrib eagenall length=3 label="CS: Did agency collect all or some of child"; 566 attrib aagenall length=3 label="CS: Allocation flag for EAGENALL"; 567 attrib tamtagen length=4 label="CS: Amount that agency collected on your"; 568 attrib aamtagen length=3 label="CS: Allocation flag for TAMTAGEN"; 569 attrib easnunv length=3 label="SUP: Universe indicator."; 570 attrib esupkdyn length=3 label="SUP: Support payments for child(ren) living"; 571 attrib asupkdyn length=3 label="SUP: Allocation flag for ESUPKDYN"; 572 attrib esuptyp1 length=3 label="SUP: Regular payments for child(ren) outside"; 573 attrib esuptyp2 length=3 label="SUP: Lump pay for support of child(ren)"; 574 attrib esuptyp3 length=3 label="SUP: Some other kind of payts for child(ren)"; 575 attrib asuptyp length=3 label="SUP: Allocation flag for ESUPTYP1- ESUPTYP3"; 576 attrib tsupnkid length=3 label="SUP: Number of children supporting"; 577 attrib asupnkid length=3 label="SUP: Allocation flag for TSUPNKID"; 578 attrib tsupltad length=3 label="SUP: Number of children under 18 years old"; 579 attrib asupltad length=3 label="SUP: Allocation flag for TSUPLTAD"; 580 attrib esupagrm length=3 label="SUP: Sup payts ct ordered or another type of"; 581 attrib asupagrm length=3 label="SUP: Allocation flag for ESUPAGRM"; 582 attrib tsupnagr length=3 label="SUP: Num of children covered by most recent"; 583 attrib asupnagr length=3 label="SUP: Allocation flag for TSUPNAGR"; 584 attrib esupagty length=3 label="SUP: Type of agreement"; 585 attrib asupagty length=3 label="SUP: Allocation flag for ESUPAGTY"; 586 attrib esupagyr length=4 label="SUP: Year agreement first reached"; 587 attrib asupagyr length=3 label="SUP: Allocation flag for ESUPAGYR"; 588 attrib esupamtc length=3 label="SUP: Original dollar amount ever changed"; 589 attrib asupamtc length=3 label="SUP: Allocation flag for ESUPAMTC"; 590 attrib esupyrch length=4 label="SUP: Year amount last changed"; 591 attrib asupyrch length=3 label="SUP: Allocation flag for ESUPYRCH"; 592 attrib esupchag length=3 label="SUP: Dollar changed agreed by court or agency"; 593 attrib asupchag length=3 label="SUP: Allocation flag for ESUPCHAG"; 594 attrib esupstlp length=3 label="SUP: Still supposed to pay child support"; 595 attrib asupstlp length=3 label="SUP: Allocation flag for ESUPSTLP"; 596 attrib tsupampd length=4 label="SUP: Amount paid in past year"; 597 attrib asupampd length=3 label="SUP: Allocation flag for TSUPAMPD"; 598 attrib esuphopy length=3 label="SUP: Methods of payments"; 599 attrib asuphopy length=3 label="SUP: Allocation flag for ESUPHOPY"; 600 attrib esuphlt1 length=3 label="SUP: Type of health care costs included"; 601 attrib esuphlt2 length=3 label="SUP: Type of health care costs included"; 602 attrib esuphlt3 length=3 label="SUP: Type of health care costs included"; 603 attrib esuphlt4 length=3 label="SUP: Type of health care costs included"; 604 attrib esuphlt5 length=3 label="SUP: Type of health care costs included"; 605 attrib esuphlt6 length=3 label="SUP: Type of health care costs included"; 606 attrib asuphlt length=3 label="SUP: Allocation flag for ESUPHLT1-6"; 12 The SAS System 15:07 Thursday, June 21, 2012 607 attrib esupcust length=3 label="SUP: Type of custody arrangement"; 608 attrib asupcust length=3 label="SUP: Allocation flag for ESUPCUST"; 609 attrib esupsptm length=3 label="SUP: Time spent specified in agreement"; 610 attrib asupsptm length=3 label="SUP: Allocation flag for ESUPSPTM"; 611 attrib esuptam1 length=3 label="SUP: Total number of days spent with"; 612 attrib esuptam2 length=3 label="SUP: Total number of weeks spent with"; 613 attrib esuptam3 length=3 label="SUP: Total number of months spent with"; 614 attrib asuptam length=3 label="SUP: Allocation flag for ESUPTAM1-3"; 615 attrib esupotha length=3 label="SUP: Other child support agreements"; 616 attrib asupotha length=3 label="SUP: Allocation flag for ESUPOTHA"; 617 attrib tsupamal length=4 label="SUP: Amount paid in past year for another"; 618 attrib asupamal length=3 label="SUP: Allocation flag for TSUPAMAL"; 619 attrib esupwoag length=3 label="SUP: Any payments made with no agreement"; 620 attrib asupwoag length=3 label="SUP: Allocation flag for ESUPWOAG"; 621 attrib tsupamad length=4 label="SUP: Tot amt paid in past yr for those with"; 622 attrib asupamad length=3 label="SUP: Allocation flag for TSUPAMAD"; 623 attrib esuptma1 length=3 label="SUP: Total number of days spent with"; 624 attrib esuptma2 length=3 label="SUP: Total number of weeks spent with"; 625 attrib esuptma3 length=3 label="SUP: Total number of months spent with"; 626 attrib asuptma length=3 label="SUP: Allocation flag for ESUPTMA1-3"; 627 attrib esupotpy length=3 label="SUP: Reg or lump sum paymts made for other"; 628 attrib asupotpy length=3 label="SUP: Allocation flag for ESUPOTPY"; 629 attrib tsupotnp length=3 label="SUP: Number of other persons making support"; 630 attrib asupotnp length=3 label="SUP: Allocation flag for TSUPOTNP"; 631 attrib esupotre length=3 label="SUP: Relationship to younger/youngest pers"; 632 attrib asupotre length=3 label="SUP: Allocation flag for ESUPOTRE"; 633 attrib esupotlv length=3 label="SUP: Where was support person living"; 634 attrib asupotlv length=3 label="SUP: Allocation flag for ESUPOTLV"; 635 attrib tsupotam length=4 label="SUP: Amount paid to support person"; 636 attrib asupotam length=3 label="SUP: Allocation flag for TSUPOTAM"; 637 attrib esupotrl length=3 label="SUP: Relationship to person supporting"; 638 attrib asupotrl length=3 label="SUP: Allocation flag for ESUPOTRL"; 639 attrib esupotli length=3 label="SUP: Place where support person was living"; 640 attrib asupotli length=3 label="SUP: Allocation flag for ESUPOTLI"; 641 attrib tsupotpa length=4 label="SUP: Amount paid to support person"; 642 attrib asupotpa length=3 label="SUP: Allocation flag for TSUPOTPA"; 643 attrib tsupotnt length=4 label="SUP: Amount paid to support other people"; 644 attrib asupotnt length=3 label="SUP: Allocation flag for TSUPOTNT"; 645 attrib eaadunv length=3 label="ADQ: Universe indicator"; 646 attrib ehstat length=3 label="ADQ: Quality of health"; 647 attrib ahstat length=3 label="ADQ: Allocation flag for EHSTAT"; 648 attrib ecane length=3 label="ADQ: Use of cane, crutches, or walker"; 649 attrib acane length=3 label="ADQ: Allocation flag for ECANE"; 650 attrib ewchair length=3 label="ADQ: Use of wheelchair, elect scooter for"; 651 attrib awchair length=3 label="ADQ: Allocation flag for EWCHAIR"; 652 attrib ehearaid length=3 label="ADQ: Use of a hearing aid"; 653 attrib ahearaid length=3 label="ADQ: Allocation flag for EHEARAID"; 654 attrib ecane6 length=3 label="ADQ: Use of aid for six months or longer"; 655 attrib acane6 length=3 label="ADQ: Allocation flag for ECANE6"; 656 attrib eseedif length=3 label="ADQ: Difficulty seeing words/letters in"; 657 attrib aseedif length=3 label="ADQ: Allocation flag for ESEEDIF"; 658 attrib eseenot length=3 label="ADQ: Ability to see words and letters in"; 659 attrib aseenot length=3 label="ADQ: Allocation flag for ESEENOT"; 660 attrib eheardif length=3 label="ADQ: Difficulty hearing what is said in"; 661 attrib aheardif length=3 label="ADQ: Allocation flag for EHEARDIF"; 662 attrib ehearnot length=3 label="ADQ: Ability to hear what is said at all"; 663 attrib ahearnot length=3 label="ADQ: Allocation flag for EHEARNOT"; 664 attrib espeechd length=3 label="ADQ: Difficulty having speech understood"; 13 The SAS System 15:07 Thursday, June 21, 2012 665 attrib aspeechd length=3 label="ADQ: Allocation flag for ESPEECHD"; 666 attrib espeechc length=3 label="ADQ: Ability to understand speech at all"; 667 attrib aspeechc length=3 label="ADQ: Allocation flag for ESPEECHC"; 668 attrib edif10 length=3 label="ADQ: Difficulty lifting and carrying 10 pounds"; 669 attrib adif10 length=3 label="ADQ: Allocation flag for EDIF10"; 670 attrib ecant10 length=3 label="ADQ: Ability to lift and carry 10 pounds at"; 671 attrib acant10 length=3 label="ADQ: Allocation flag for ECANT10"; 672 attrib edif25 length=3 label="ADQ: Difficulty lifting and carrying 25 pounds"; 673 attrib adif25 length=3 label="ADQ: Allocation flag for EDIF25"; 674 attrib ecant25 length=3 label="ADQ: Ability to lift and carry a 25 pound bag"; 675 attrib acant25 length=3 label="ADQ: Allocation flag for ECANT25"; 676 attrib epushd length=3 label="ADQ: Difficulty pushing or pulling large"; 677 attrib apushd length=3 label="ADQ: Allocation flag for EPUSHD"; 678 attrib epushc length=3 label="ADQ: Ability to push or pull large objects at"; 679 attrib apushc length=3 label="ADQ: Allocation flag for EPUSHC"; 680 attrib estandd length=3 label="ADQ: Difficulty standing or being on feet"; 681 attrib astandd length=3 label="ADQ: Allocation flag for ESTANDD"; 682 attrib esitd length=3 label="ADQ: Difficulty sitting"; 683 attrib asitd length=3 label="ADQ: Allocation flag for ESITD"; 684 attrib estoopd length=3 label="ADQ: Difficulty stooping, crouching, or"; 685 attrib astoopd length=3 label="ADQ: Allocation flag for ESTOOPD"; 686 attrib ereachd length=3 label="ADQ: Difficulty reaching over head"; 687 attrib areachd length=3 label="ADQ: Allocation flag for EREACHD"; 688 attrib egraspd length=3 label="ADQ: Difficulty using hands and fingers"; 689 attrib agraspd length=3 label="ADQ: Allocation flag for EGRASPD"; 690 attrib egraspc length=3 label="ADQ: Ability to use hands and fingers at all"; 691 attrib agraspc length=3 label="ADQ: Allocation flag for EGRASPC"; 692 attrib estairsd length=3 label="ADQ: Difficulty walking up a flight of stairs"; 693 attrib astairsd length=3 label="ADQ: Allocation flag for ESTAIRSD"; 694 attrib estairsc length=3 label="ADQ: Ability to walk up a flight of stairs at"; 695 attrib astairsc length=3 label="ADQ: Allocation flag for ESTAIRSC"; 696 attrib ewalkd length=3 label="ADQ: Difficulty walking a quarter of a mile"; 697 attrib awalkd length=3 label="ADQ: Allocation flag for EWALKD"; 698 attrib ewalkc length=3 label="ADQ: Ability to walk a quarter of a mile at"; 699 attrib awalkc length=3 label="ADQ: Allocation flag for EWALKC"; 700 attrib eteled length=3 label="ADQ: Difficulty using an ordinary telephone"; 701 attrib ateled length=3 label="ADQ: Allocation flag for ETELED"; 702 attrib etelec length=3 label="ADQ: Ability to use a telephone at all"; 703 attrib atelec length=3 label="ADQ: Allocation flag for ETELEC"; 704 attrib eindif length=3 label="ADQ: Difficulty getting around inside the home"; 705 attrib aindif length=3 label="ADQ: Allocation flag for EINDIF"; 706 attrib eoutdif length=3 label="ADQ: Difficulty going outside the home"; 707 attrib aoutdif length=3 label="ADQ: Allocation flag for EOUTDIF"; 708 attrib ebeddif length=3 label="ADQ: Difficulty getting in and out of bed or"; 709 attrib abeddif length=3 label="ADQ: Allocation flag for EBEDDIF"; 710 attrib ebathdif length=3 label="ADQ: Difficulty taking a bath or shower"; 711 attrib abathdif length=3 label="ADQ: Allocation flag for EBATHDIF"; 712 attrib edressd length=3 label="ADQ: Difficulty dressing"; 713 attrib adressd length=3 label="ADQ: Allocation flag for EDRESSD"; 714 attrib ewalk2d length=3 label="ADQ: Difficulty walking"; 715 attrib awalk2d length=3 label="ADQ: Allocation flag for EWALK2D"; 716 attrib eeatdif length=3 label="ADQ: Difficulty eating"; 717 attrib aeatdif length=3 label="ADQ: Allocation flag for EEATDIF"; 718 attrib etoiletd length=3 label="ADQ: Difficulty using or getting to the toilet"; 719 attrib atoiletd length=3 label="ADQ: Allocation flag for ETOILETD"; 720 attrib emoneyd length=3 label="ADQ: Difficulty keeping track of money or"; 721 attrib amoneyd length=3 label="ADQ: Allocation flag for EMONEYD"; 722 attrib emealsd length=3 label="ADQ: Difficulty preparing meals"; 14 The SAS System 15:07 Thursday, June 21, 2012 723 attrib amealsd length=3 label="ADQ: Allocation flag for EMEALSD"; 724 attrib ehworkd length=3 label="ADQ: Difficulty doing light housework"; 725 attrib ahworkd length=3 label="ADQ: Allocation flag for EHWORKD"; 726 attrib emedd length=3 label="ADQ: Difficulty taking the right amount of"; 727 attrib amedd length=3 label="ADQ: Allocation flag for EMEDD"; 728 attrib einhelp length=3 label="ADQ: Need help getting around inside the home"; 729 attrib ainhelp length=3 label="ADQ: Allocation flag for EINHELP"; 730 attrib eouthelp length=3 label="ADQ: Need help going outside the home"; 731 attrib aouthelp length=3 label="ADQ: Allocation flag for EOUTHELP"; 732 attrib ebedhelp length=3 label="ADQ: Need help getting in and out of bed or a"; 733 attrib abedhelp length=3 label="ADQ: Allocation flag for EBEDHELP"; 734 attrib ebathh length=3 label="ADQ: Need help taking a bath or shower"; 735 attrib abathh length=3 label="ADQ: Allocation flag for EBATHH"; 736 attrib edressh length=3 label="ADQ: Need help dressing"; 737 attrib adressh length=3 label="ADQ: Allocation flag for EDRESSH"; 738 attrib ewalk2h length=3 label="ADQ: Need help walking"; 739 attrib awalk2h length=3 label="ADQ: Allocation flag for EWALK2H"; 740 attrib eeathelp length=3 label="ADQ: Need help eating"; 741 attrib aeathelp length=3 label="ADQ: Allocation flag for EEATHELP"; 742 attrib etoileth length=3 label="ADQ: Need help using or getting to the toilet"; 743 attrib atoileth length=3 label="ADQ: Allocation flag for ETOILETH"; 744 attrib emoneyh length=3 label="ADQ: Need help keeping track of money and"; 745 attrib amoneyh length=3 label="ADQ: Allocation flag for EMONEYH"; 746 attrib emealsh length=3 label="ADQ: Need help preparing meals"; 747 attrib amealsh length=3 label="ADQ: Allocation flag for EMEALSH"; 748 attrib ehworkh length=3 label="ADQ: Need help doing light housework"; 749 attrib ahworkh length=3 label="ADQ: Allocation flag for EHWORKH"; 750 attrib emedh length=3 label="ADQ: Need help taking the right amount of"; 751 attrib amedh length=3 label="ADQ: Allocation flag for EMEDH"; 752 attrib ehelper1 length=3 label="ADQ: Person who generally helps with these"; 753 attrib ahelper1 length=3 label="ADQ: Allocation flag for EHELPER1"; 754 attrib ehhmemb1 length=4 label="ADQ: Identity of the first helper is a"; 755 attrib ahhmemb1 length=3 label="ADQ: Allocation flag for EHHMEMB1"; 756 attrib ehelper2 length=3 label="ADQ: Another person who generally helps"; 757 attrib ahelper2 length=3 label="ADQ: Allocation flag for EHELPER2"; 758 attrib ehhmemb2 length=4 label="ADQ: Whether the second helper is a household"; 759 attrib ahhmemb2 length=3 label="ADQ: Allocation flag for EHHMEMB2"; 760 attrib ehowlong length=3 label="ADQ: Duration of help of another person"; 761 attrib ahowlong length=3 label="ADQ: Allocation flag for EHOWLONG"; 762 attrib epayhelp length=3 label="ADQ: Whether the help last month was paid for"; 763 attrib apayhelp length=3 label="ADQ: Allocation flag for EPAYHELP"; 764 attrib tpayamt length=4 label="ADQ: Amount that was paid for help last month"; 765 attrib apayamt length=3 label="ADQ: Allocation flag for PAYAMT"; 766 attrib econd1 length=3 label="ADQ: First condition causing difficulty"; 767 attrib acond1 length=3 label="ADQ: Allocation flag for ECOND1, ECOND2,"; 768 attrib econd2 length=3 label="ADQ: Second condition causing difficulty"; 769 attrib econd3 length=3 label="ADQ: Third condition causing difficulty"; 770 attrib econdph1 length=3 label="ADQ: First condition causing fair/poor health"; 771 attrib acondph1 length=3 label="ADQ: Allocation flag for ECONDPH1, ECONDPH2,"; 772 attrib econdph2 length=3 label="ADQ: Second condition causing fair/poor health"; 773 attrib econdph3 length=3 label="ADQ: Third condition causing fair/poor health"; 774 attrib emotorv length=3 label="ADQ: Condition is result of a motor vehicle"; 775 attrib amotorv length=3 label="ADQ: Allocation flag for EMOTORV"; 776 attrib emain1 length=3 label="ADQ: Main reason for difficulty"; 777 attrib amain1 length=3 label="ADQ: Allocation flag for EMAIN1"; 778 attrib tyear1 length=4 label="ADQ: Year when main condition first began"; 779 attrib ayear1 length=3 label="ADQ: Allocation flag for TYEAR1"; 780 attrib emonth1 length=3 label="ADQ: Month when main condition first began"; 15 The SAS System 15:07 Thursday, June 21, 2012 781 attrib amonth1 length=3 label="ADQ: Allocation flag for EMONTH1"; 782 attrib elast12m length=3 label="ADQ: Condition expected to last 12+ months"; 783 attrib alast12m length=3 label="ADQ: Allocation flag for ELAST12M"; 784 attrib eldis length=3 label="ADQ: Learning disability"; 785 attrib aldis length=3 label="ADQ: Allocation flag for ELDIS"; 786 attrib emr length=3 label="ADQ: Mental retardation"; 787 attrib amr length=3 label="ADQ: Allocation flag for EMR"; 788 attrib edevdis length=3 label="ADQ: Developmental disability"; 789 attrib adevdis length=3 label="ADQ: Allocation flag for EDEVDIS"; 790 attrib ealz length=3 label="ADQ: Alzheimer's disease"; 791 attrib aalz length=3 label="ADQ: Allocation flag for EALZ"; 792 attrib eotherm length=3 label="ADQ: Other mental or emotional condition"; 793 attrib aotherm length=3 label="ADQ: Allocation flag for EOTHERM"; 794 attrib eanxious length=3 label="ADQ: Frequently depressed or anxious"; 795 attrib aanxious length=3 label="ADQ: Allocation flag for EANXIOUS"; 796 attrib esocial length=3 label="ADQ: Trouble getting along with other people"; 797 attrib asocial length=3 label="ADQ: Allocation flag for ESOCIAL"; 798 attrib ectrate length=3 label="ADQ: Trouble concentrating"; 799 attrib actrate length=3 label="ADQ: Allocation flag for ECTRATE"; 800 attrib ecope length=3 label="ADQ: Trouble coping with stresses"; 801 attrib acope length=3 label="ADQ: Allocation flag for ECOPE"; 802 attrib eintrfer length=3 label="ADQ: Ability to manage everyday activities"; 803 attrib aintrfer length=3 label="ADQ: Allocation flag for EINTRFER"; 804 attrib ejobdif length=3 label="ADQ: Long-lasting physical or mental condition"; 805 attrib ajobdif length=3 label="ADQ: Allocation flag for EJOBDIF"; 806 attrib ejobcant length=3 label="ADQ: Health or condition preventing working"; 807 attrib ajobcant length=3 label="ADQ: Allocation flag for EJOBCANT"; 808 attrib ehwrkdif length=3 label="ADQ: Condition limiting the kind/amount of"; 809 attrib ahwrkdif length=3 label="ADQ: Allocation flag for EHWRKDIF"; 810 attrib ehwrkno length=3 label="ADQ: Health/condition prevents doing any"; 811 attrib ahwrkno length=3 label="ADQ: Allocation for EHWRKNO"; 812 attrib econdw1 length=3 label="ADQ: First condition causing limitation in"; 813 attrib acondw1 length=3 label="ADQ: Allocation flag for ECONDW1, ECONDW2,"; 814 attrib econdw2 length=3 label="ADQ: Second condition causing limitation in"; 815 attrib econdw3 length=3 label="ADQ: Third condition causing limitation in"; 816 attrib emain2 length=3 label="ADQ: Main reason for work limitation"; 817 attrib amain2 length=3 label="ADQ: Allocation flag for EMAIN2"; 818 attrib eapplyss length=3 label="ADQ: Social Security disability benefits"; 819 attrib aapplyss length=3 label="ADQ: Allocation flag for EAPPLYSS"; 820 attrib ecompute length=3 label="ADQ: Computer or laptop in this household"; 821 attrib acompute length=3 label="ADQ: Allocation flag for ECOMPUTE"; 822 attrib ecmphome length=3 label="ADQ: Use a computer at home"; 823 attrib acmphome length=3 label="ADQ: Allocation flag for ECMPHOME"; 824 attrib ecmpwork length=3 label="ADQ: Use a computer at main job"; 825 attrib acmpwork length=3 label="ADQ: Allocation flag for ECMPWORK"; 826 attrib ecmpschl length=3 label="ADQ: Use a computer at school"; 827 attrib acmpschl length=3 label="ADQ: Allocation flag for ECMPSCHL"; 828 attrib eintrnet length=3 label="ADQ: Use the Internet from any location"; 829 attrib aintrnet length=3 label="ADQ: Allocation flag for EINTRNET"; 830 attrib einthome length=3 label="ADQ: Connect to the Internet at home"; 831 attrib ainthome length=3 label="ADQ: Allocation flag for EINTHOME"; 832 attrib eintwork length=3 label="ADQ: Connect to the Internet at work"; 833 attrib aintwork length=3 label="ADQ: Allocation flag for EINTWORK"; 834 attrib eintschl length=3 label="ADQ: Use the Internet at school"; 835 attrib aintschl length=3 label="ADQ: Allocation flag for EINTSCHL"; 836 attrib eintlibr length=3 label="ADQ: Use the Internet at a public library"; 837 attrib aintlibr length=3 label="ADQ: Allocation flag for EINTLIBR"; 838 attrib eintccen length=3 label="ADQ: Use the Internet at a community center"; 16 The SAS System 15:07 Thursday, June 21, 2012 839 attrib aintccen length=3 label="ADQ: Allocation flag for EINTCCEN"; 840 attrib eintsome length=3 label="ADQ: Use the Internet at someone else's house"; 841 attrib aintsome length=3 label="ADQ: Allocation flag for EINTSOME"; 842 attrib eintothr length=3 label="ADQ: Use the Internet at other place"; 843 attrib aintothr length=3 label="ADQ: Allocation flag for EINTOTHR"; 844 attrib eicourse length=3 label="ADQ: Use the Internet to take a course online"; 845 attrib aicourse length=3 label="ADQ: Allocation flag for EICOURSE"; 846 attrib eihealth length=3 label="ADQ: Use the Internet to search for info"; 847 attrib aihealth length=3 label="ADQ: Allocation flag for EIHEALTH"; 848 attrib eigovern length=3 label="ADQ: Use the Internet to search for info on"; 849 attrib aigovern length=3 label="ADQ: Allocation flag for EIGOVERN"; 850 attrib eisrchjb length=3 label="ADQ: Use the Internet to search for a job"; 851 attrib aisrchjb length=3 label="ADQ: Allocation flag for EISRCHJB"; 852 attrib ronline length=3 label="ADQ: Reply to SIPP interview over the Internet"; 853 attrib aonline length=3 label="ADQ: Allocation flag for RONLINE"; 854 attrib eintstil length=3 label="ADQ: Again agree to reply to SIPP intv over"; 855 attrib aintstil length=3 label="ADQ: Allocation flag for EINTSTIL"; 856 attrib rdisab length=3 label="ADQ: Disability recode from Americans"; 857 attrib epcdunv length=3 label="CDQ: Universe indicator"; 858 attrib eddelay length=3 label="CDQ: Physical/mental condition"; 859 attrib addelay length=3 label="CDQ: Allocation flag for EDDELAY"; 860 attrib earmleg length=3 label="CDQ: Long-lasting condition arms/legs"; 861 attrib aarmleg length=3 label="CDQ: Allocation flag for EARMLEG"; 862 attrib erunplay length=3 label="CDQ: Long-lasting condition walk/run/play"; 863 attrib arunplay length=3 label="CDQ: Allocation flag for ERUNPLAY"; 864 attrib eskoolwk length=3 label="CDQ: Physical/learning/mental condition"; 865 attrib askoolwk length=3 label="CDQ: Allocation flag for ESKOOLWK"; 866 attrib especed length=3 label="CDQ: Special education services, ever"; 867 attrib aspeced length=3 label="CDQ: Allocation flag for ESPECED"; 868 attrib espednow length=3 label="CDQ: Special education services, current"; 869 attrib aspednow length=3 label="CDQ: Allocation flag for ESPEDNOW"; 870 attrib elerndis length=3 label="CDQ: Learning disability like Dyslexia"; 871 attrib alerndis length=3 label="CDQ: Allocation flag for ALERNDIS"; 872 attrib ekmr length=3 label="CDQ: Mental Retardation"; 873 attrib akmr length=3 label="CDQ: Allocation flag for EKMR"; 874 attrib ekdevdis length=3 label="CDQ: Developmental disability"; 875 attrib akdevdis length=3 label="CDQ: Allocation flag for EKDEVDIS"; 876 attrib eadhd length=3 label="CDQ: Attention Deficit Hyperactivity Disorder"; 877 attrib aadhd length=3 label="CDQ: Allocation flag for EADHD"; 878 attrib eotherdc length=3 label="CDQ: Other developmental condition"; 879 attrib aotherdc length=3 label="CDQ: Allocation flag for EOTHERDC"; 880 attrib eadhdmed length=3 label="CDQ: Medication or receive treatment for ADHD"; 881 attrib aadhdmed length=3 label="CDQ: Allocation flag for EADHDMED"; 882 attrib ekcane length=3 label="CDQ: Physical aids used"; 883 attrib akcane length=3 label="CDQ: Allocation flag for EKCANE"; 884 attrib ekwchair length=3 label="CDQ: Physical aids used"; 885 attrib akwchair length=3 label="CDQ: Allocation flag for EKWCHAIR"; 886 attrib ekhearad length=3 label="CDQ: Use of a hearing aid"; 887 attrib akhearad length=3 label="CDQ: Allocation flag for EKHEARAD"; 888 attrib ekcane6 length=3 label="CDQ: Physical aids used 6 months"; 889 attrib akcane6 length=3 label="CDQ: Allocation flag for EKCANE6"; 890 attrib ekseedif length=3 label="CDQ: Difficulty seeing words/letters"; 891 attrib akseedif length=3 label="CDQ: Allocation flag for EKSEEDIF"; 892 attrib ekseenot length=3 label="CDQ: See ordinary newspaper print at all"; 893 attrib akseenot length=3 label="CDQ: Allocation flag for EKSEENOT."; 894 attrib ekheardf length=3 label="CDQ: Difficulty hearing with aid"; 895 attrib akheardf length=3 label="CDQ: Allocation flag for EKHEARDF."; 896 attrib ekhearnt length=3 label="CDQ: Hear normal conversation at all"; 17 The SAS System 15:07 Thursday, June 21, 2012 897 attrib akhearnt length=3 label="CDQ: Allocation flag for EKHEARNT"; 898 attrib ekspechd length=3 label="CDQ: Difficulty having speech understood"; 899 attrib akspechd length=3 label="CDQ: Allocation flag for EKSPECHD"; 900 attrib ekspechc length=3 label="CDQ: Speech not understood"; 901 attrib akspechc length=3 label="CDQ: Allocation flag for EKSPECHC"; 902 attrib esports length=3 label="CDQ: Long lasting condition sports/games"; 903 attrib asports length=3 label="CDQ: Allocation flag for ESPORTS"; 904 attrib ekindif length=3 label="CDQ: Getting around inside home"; 905 attrib akindif length=3 label="CDQ: Allocation flag for EKINDIF"; 906 attrib ekinhelp length=3 label="CDQ: Needs help getting around inside the home"; 907 attrib akinhelp length=3 label="CDQ: Allocation flag for EKINHELP"; 908 attrib ekbeddif length=3 label="CDQ: Difficulty getting in/out of bed/chair"; 909 attrib akbeddif length=3 label="CDQ: Allocation flag for EKBEDDIF"; 910 attrib ekbedhlp length=3 label="CDQ: Needs help getting in/out of bed/chair"; 911 attrib akbedhlp length=3 label="CDQ: Allocation flag for EKBEDHLP"; 912 attrib ekbathdf length=3 label="CDQ: Difficulty taking bath/shower"; 913 attrib akbathdf length=3 label="CDQ: Allocation flag for EKBATHDF"; 914 attrib ekbathh length=3 label="CDQ: Need help taking bath or shower"; 915 attrib akbathh length=3 label="CDQ: Allocation flag for EKBATHH"; 916 attrib ekdressd length=3 label="CDQ: Difficulty putting on clothes"; 917 attrib akdressd length=3 label="CDQ: Allocation flag for EKDRESSD"; 918 attrib ekdressh length=3 label="CDQ: Need help putting on clothes"; 919 attrib akdressh length=3 label="CDQ: Allocation flag for EKDRESSH"; 920 attrib ekeatdif length=3 label="CDQ: Difficulty eating food"; 921 attrib akeatdif length=3 label="CDQ: Allocation flag for EKEATDIF"; 922 attrib ekeathlp length=3 label="CDQ: Need help eating food"; 923 attrib akeathlp length=3 label="CDQ: Allocation flag for EKEATHLP"; 924 attrib ektoiltd length=3 label="CDQ: Difficulty using/getting to toilet"; 925 attrib aktoiltd length=3 label="CDQ: Allocation flag for EKTOILTD"; 926 attrib ektoilth length=3 label="CDQ: Need help using/getting to toilet"; 927 attrib aktoilth length=3 label="CDQ: Allocation flag for EKTOILTH"; 928 attrib eksocial length=3 label="CDQ: Difficult to play/get along with other"; 929 attrib aksocial length=3 label="CDQ: Allocation flag for EKSOCIAL"; 930 attrib ekcond1 length=3 label="CDQ: First condition causing difficulty with"; 931 attrib ekcond2 length=3 label="CDQ: Second condition causing difficulty with"; 932 attrib ekcond3 length=3 label="CDQ: Third condition causing difficulty with"; 933 attrib akcond length=3 label="CDQ: Allocation flag for EKCOND1"; 934 attrib ekmotorv length=3 label="CDQ: Condition result of motor vehicle"; 935 attrib akmotorv length=3 label="CDQ: Allocation flag for EKMOTORV"; 936 attrib rkdisab length=3 label="CDQ: Disability recode from Americans with"; 937 attrib eahbunv length=3 label="HB: Universe indicator."; 938 attrib ehealpla length=3 label="HB: Employer's health insurance plan"; 939 attrib ahealpla length=3 label="HB: Allocation flag for EHEALPLA"; 940 attrib enotplan length=3 label="HB: Reason person is not covered by plan"; 941 attrib anotplan length=3 label="HB: Allocation flag for ENOTPLAN"; 942 attrib enoelig1 length=3 label="HB: Reason ineligible- probationary period"; 943 attrib enoelig2 length=3 label="HB: Reason ineligible - contract or temporary"; 944 attrib enoelig3 length=3 label="HB: Reason ineligible - part-time employee"; 945 attrib enoelig4 length=3 label="HB: Reason ineligible - other"; 946 attrib anoelig length=3 label="HB: Allocation flag for ENOELIG1 through"; 947 attrib edencove length=3 label="HB: Reason person was denied coverage"; 948 attrib adencove length=3 label="HB: Allocation flag for EDENCOVE"; 949 attrib enocov1 length=3 label="HB: No coverage reason, covered by other"; 950 attrib enocov2 length=3 label="HB: No coverage reason, has medical savings"; 951 attrib enocov3 length=3 label="HB: No coverage reason, plan had no family"; 952 attrib enocov4 length=3 label="HB: No coverage reason, plan too costly"; 953 attrib enocov5 length=3 label="HB: No coverage reason, pre-exist conditions"; 954 attrib enocov6 length=3 label="HB: No coverage reason, plan had too many"; 18 The SAS System 15:07 Thursday, June 21, 2012 955 attrib enocov7 length=3 label="HB: No coverage reason, does not need or want"; 956 attrib enocov8 length=3 label="HB: No coverage reason, does not believe in"; 957 attrib enocov9 length=3 label="HB: No coverage reason, dissatisfied"; 958 attrib enocov10 length=3 label="HB: No coverage reason, other"; 959 attrib anocov length=3 label="HB: Allocation flag for ENOCOV1-ENOCOV10"; 960 attrib eoffemp1 length=3 label="HB: Other employer offerings - cash in 401(k)"; 961 attrib eoffemp2 length=3 label="HB: Other employer offerings - cash or salary"; 962 attrib eoffemp3 length=3 label="HB: Other employer offerings - plan combined"; 963 attrib eoffemp4 length=3 label="HB: Other employer offerings - contributions"; 964 attrib eoffemp5 length=3 label="HB: Other employer offerings - other benefits"; 965 attrib aoffemp length=3 label="HB: Allocation flag for EOFFEMP1-EOFFEMP5"; 966 attrib ewheheal length=3 label="HB: Source of health insurance coverage"; 967 attrib awheheal length=3 label="HB: Allocation flag for EWHEHEAL"; 968 attrib ecovmemb length=3 label="HB: Coverage available for others"; 969 attrib acovmemb length=3 label="HB: Allocation flag for ECOVMEMB"; 970 attrib ewhocov1 length=3 label="HB: Coverage available for spouse"; 971 attrib ewhocov2 length=3 label="HB: Coverage available for children"; 972 attrib ewhocov3 length=3 label="HB: Coverage available for grandchildren"; 973 attrib ewhocov4 length=3 label="HB: Coverage available for other family"; 974 attrib ewhocov5 length=3 label="HB: Coverage available for non-family members"; 975 attrib awhocov length=3 label="HB: Allocation flag for EWHOCOV1-EWHOCOV5"; 976 attrib echpnm01 length=4 label="HB: Person number of first child eligible for"; 977 attrib echcov01 length=3 label="HB: Reason first child was not covered"; 978 attrib achcov01 length=3 label="HB: Allocation flag for ECHCOV01"; 979 attrib echpnm02 length=4 label="HB: Person number of second child eligible"; 980 attrib echcov02 length=3 label="HB: Reason second child was not covered"; 981 attrib achcov02 length=3 label="HB: Allocation flag for ECHCOV02"; 982 attrib echpnm03 length=4 label="HB: Person number of third child eligible for"; 983 attrib echcov03 length=3 label="HB: Reason third child was not covered"; 984 attrib achcov03 length=3 label="HB: Allocation flag for ECHCOV03"; 985 attrib echpnm04 length=4 label="HB: Person number of fourth child eligible"; 986 attrib echcov04 length=3 label="HB: Reason fourth child was not covered"; 987 attrib achcov04 length=3 label="HB: Allocation flag for ECHCOV04"; 988 attrib echpnm05 length=4 label="HB: Person number of fifth child eligible for"; 989 attrib echcov05 length=3 label="HB: Reason fifth child was not covered"; 990 attrib achcov05 length=3 label="HB: Allocation flag for ECHCOV05"; 991 attrib echpnm06 length=4 label="HB: Person number of sixth child eligible for"; 992 attrib echcov06 length=3 label="HB: Reason sixth child was not covered"; 993 attrib achcov06 length=3 label="HB: Allocation flag for ECHCOV06"; 994 attrib echpnm07 length=4 label="HB: Person number of seventh child eligible"; 995 attrib echcov07 length=3 label="HB: Reason seventh child was not covered"; 996 attrib achcov07 length=3 label="HB: Allocation flag for ECHCOV07"; 997 attrib tamtplan length=4 label="HB: Amount person paid for health plan"; 998 attrib aamtplan length=3 label="HB: Allocation flag for TAMTPLAN"; 999 attrib etimplan length=3 label="HB: Frequency of health insurance payments"; 1000 attrib atimplan length=3 label="HB: Allocation flag for ETIMPLAN"; 1001 attrib etaxplan length=3 label="HB: Special tax treatment for health plan"; 1002 attrib ataxplan length=3 label="HB: Allocation flag for ETAXPLAN"; 1003 attrib epreminc length=3 label="HB: Premium increase when left employer"; 1004 attrib apreminc length=3 label="HB: Allocation flag for EPREMINC"; 1005 attrib eleftpla length=3 label="HB: Time health plan is in effect after"; 1006 attrib aleftpla length=3 label="HB: Allocation flag for ELEFTPLA"; 1007 attrib eplanmed length=3 label="HB: Health plan covers Medicare coinsurance"; 1008 attrib aplanmed length=3 label="HB: Allocation flag for EPLANMED"; 1009 attrib eoppch1 length=3 label="HB: Employer offerings - cash in 401(k) plan"; 1010 attrib eoppch2 length=3 label="HB: Employer offerings - cash or a salary"; 1011 attrib eoppch3 length=3 label="HB: Employer offerings - plan combined with"; 1012 attrib eoppch4 length=3 label="HB: Employer offerings - contributions to an"; 19 The SAS System 15:07 Thursday, June 21, 2012 1013 attrib eoppch5 length=3 label="HB: Employer offerings - other benefits"; 1014 attrib aoppch length=3 label="HB: Allocation flag for EOPPCH1-EOPPCH5"; 1015 attrib ehashmo length=3 label="HB: Whether health insurance plan is an HMO"; 1016 attrib ahashmo length=3 label="HB: Allocation flag for EHASHMO"; 1017 attrib esigndoc length=3 label="HB: Plan uses clinics for routine care"; 1018 attrib asigndoc length=3 label="HB: Allocation flag for ESIGNDOC"; 1019 attrib ebookdoc length=3 label="HB: List of doctors associated with the"; 1020 attrib abookdoc length=3 label="HB: Allocation flag for EBOOKDOC"; 1021 attrib ewhoref length=3 label="HB: Plan pays for doctor visits without a"; 1022 attrib awhoref length=3 label="HB: Allocation flag for EWHOREF"; 1023 attrib eoptions length=3 label="HB: Multiple health insurance plans offered"; 1024 attrib aoptions length=3 label="HB: Allocation flag for EOPTIONS"; 1025 attrib echoice1 length=3 label="HB: Employer offers traditional health"; 1026 attrib achoice1 length=3 label="HB: Allocation flag for ECHOICE1"; 1027 attrib echoice2 length=3 label="HB: Employer offered plans such as HMOs"; 1028 attrib achoice2 length=3 label="HB: Allocation flag for ECHOICE2"; 1029 attrib eempmate length=3 label="HB: Educational materials provided"; 1030 attrib aempmate length=3 label="HB: Allocation flag for EEMPMATE"; 1031 attrib ematcomp length=3 label="HB: Materials provide easy comparison between"; 1032 attrib amatcomp length=3 label="HB: Allocation flag for EMATCOMP"; 1033 attrib econdnot length=3 label="HB: Pre-existing medical condition"; 1034 attrib acondnot length=3 label="HB: Allocation flag for ECONDNOT"; 1035 attrib eofflong length=3 label="HB: Nursing home or home care coverage"; 1036 attrib aofflong length=3 label="HB: Allocation flag for EOFFLONG"; 1037 attrib ecovlong length=3 label="HB: Coverage under long-term care plan"; 1038 attrib acovlong length=3 label="HB: Allocation flag for ECOVLONG"; 1039 attrib eempcost length=3 label="HB: Employer pays costs of plan"; 1040 attrib aempcost length=3 label="HB: Allocation flag for EEMPCOST"; 1041 attrib tamtlong length=3 label="HB: Amount paid for long term care plan"; 1042 attrib aamtlong length=3 label="HB: Allocation flag for TAMTLONG"; 1043 attrib etimeamt length=3 label="HB: Frequency paid this amount"; 1044 attrib atimeamt length=3 label="HB: Allocation flag for ETIMEAMT"; 1045 attrib eretheal length=3 label="HB: Health insurance obtained through"; 1046 attrib aretheal length=3 label="HB: Allocation flag for ERETHEAL"; 1047 attrib eretcont length=3 label="HB: Continue health insurance plan until age"; 1048 attrib aretcont length=3 label="HB: Allocation flag for ERETCONT"; 1049 attrib eretpays length=3 label="HB: Employer pays cost of health plan after"; 1050 attrib aretpays length=3 label="HB: Allocation flag for ERETPAYS"; 1051 attrib eretplan length=3 label="HB: Retirees obtain coverage for spouse"; 1052 attrib aretplan length=3 label="HB: Allocation flag for ERETPLAN"; 1053 attrib ewhopln1 length=3 label="HB: Spouse may obtain coverage under the plan"; 1054 attrib ewhopln2 length=3 label="HB: Children may obtain coverage under the"; 1055 attrib ewhopln3 length=3 label="HB: Grandchildren may obtain coverage under"; 1056 attrib ewhopln4 length=3 label="HB: Other family members obtain coverage"; 1057 attrib ewhopln5 length=3 label="HB: Non-family members obtain coverage under"; 1058 attrib awhopln length=3 label="HB: Allocation flag for EWHOPLN1-EWHOPLN5"; 1059 attrib epaidjob length=3 label="HB: At job for one year or more"; 1060 attrib apaidjob length=3 label="HB: Allocation flag for EPAIDJOB"; 1061 attrib eformemp length=3 label="HB: Former employer offers health coverage"; 1062 attrib aformemp length=3 label="HB: Allocation flag for EFORMEMP"; 1063 attrib elastcov length=3 label="HB: Covered by employer's health plan on last"; 1064 attrib alastcov length=3 label="HB: Allocation flag for ELASTCOV"; 1065 attrib econleft length=3 label="HB: Continued coverage after left employer"; 1066 attrib aconleft length=3 label="HB: Allocation flag for ECONLEFT"; 1067 attrib econtret length=3 label="HB: Continued coverage through COBRA"; 1068 attrib acontret length=3 label="HB: Allocation flag for ECONTRET"; 1069 attrib ewhyno1 length=3 label="HB: Reason no longer covered- eligibility"; 1070 attrib ewhyno2 length=3 label="HB: Reason no longer covered - too expensive"; 20 The SAS System 15:07 Thursday, June 21, 2012 1071 attrib ewhyno3 length=3 label="HB: Reason no longer covered - covered by"; 1072 attrib ewhyno4 length=3 label="HB: Reason no longer covered- did not"; 1073 attrib ewhyno5 length=3 label="HB: Reason no longer covered - Medicare"; 1074 attrib ewhyno6 length=3 label="HB: Reason no longer covered - not eligible"; 1075 attrib ewhyno7 length=3 label="HB: Reason no longer covered - requirements"; 1076 attrib ewhyno8 length=3 label="HB: Reason no longer covered - retirees not"; 1077 attrib ewhyno9 length=3 label="HB: Reason no longer covered - age/service"; 1078 attrib ewhyno10 length=3 label="HB: Reason no longer covered - became"; 1079 attrib ewhyno11 length=3 label="HB: Reason no longer covered - employer"; 1080 attrib ewhyno12 length=3 label="HB: Reason no longer covered - canceled for"; 1081 attrib ewhyno13 length=3 label="HB: Reason no longer covered - other reason"; 1082 attrib awhyno length=3 label="HB: Allocation flag for EWHYNO1-EWHYNO13"; 1083 attrib tleftjob length=4 label="HB: Year left former job"; 1084 attrib aleftjob length=3 label="HB: Allocation flag for TLEFTJOB"; 1085 attrib eyearemp length=3 label="HB: Number of years worked for former employer"; 1086 attrib ayearemp length=3 label="HB: Allocation flag for EYEAREMP"; 1087 attrib emnthemp length=3 label="HB: Number of months worked for former"; 1088 attrib amnthemp length=3 label="HB: Allocation flag for EMNTHEMP"; 1089 attrib ecovunio length=3 label="HB: Covered under a union or contract by"; 1090 attrib acovunio length=3 label="HB: Allocation flag for ECOVUNIO"; 1091 attrib thbind length=4 label="HB: Industry of former employer"; 1092 attrib thbocc length=4 label="HB: Occupation in former employer"; 1093 attrib eempljob length=3 label="HB: Class of worker for former employer"; 1094 attrib aempljob length=3 label="HB: Allocation flag for EEMPLJOB"; 1095 attrib egovrnmt length=3 label="HB: Former employer's type of government"; 1096 attrib agovrnmt length=3 label="HB: Allocation flag for EGOVRNMT"; 1097 attrib eemptype length=3 label="HB: Former employer's type of business or"; 1098 attrib aemptype length=3 label="HB: Allocation flag for EEMPTYPE"; 1099 attrib tendsala length=4 label="HB: Amount earned per week from former"; 1100 attrib aendsala length=3 label="HB: Allocation flag for TENDSALA"; 1101 attrib temploca length=3 label="HB: Number of people employed by former"; 1102 attrib aemploca length=3 label="HB: Allocation flag for TEMPLOCA"; 1103 attrib efewer20 length=3 label="HB: Fewer than 20 people employed by former"; 1104 attrib afewer20 length=3 label="HB: Allocation flag for EFEWER20"; 1105 attrib eexmedic length=3 label="HB: Expects to be covered by Medicare"; 1106 attrib aexmedic length=3 label="HB: Allocation flag for EEXMEDIC"; 1107 attrib epostmed length=3 label="HB: Eligibility for Medicare"; 1108 attrib apostmed length=3 label="HB: Allocation flag for EPOSTMED"; 1109 attrib eawbunv length=3 label="AW: Universe indicator"; 1110 attrib radwash length=3 label="AW: Household has washing machine"; 1111 attrib aadwash length=3 label="AW: Allocation flag for RADWASH"; 1112 attrib raddryr length=3 label="AW: Household has clothes dryer"; 1113 attrib aaddryr length=3 label="AW: Allocation flag for RADDRYR"; 1114 attrib eaddish length=3 label="AW: Household has dishwasher"; 1115 attrib aaddish length=3 label="AW: Allocation flag for EADDISH"; 1116 attrib eadrefr length=3 label="AW: Household has refrigerator"; 1117 attrib aadrefr length=3 label="AW: Allocation flag for EADREFR"; 1118 attrib eadfrz length=3 label="AW: Household has food freezer"; 1119 attrib aadfrz length=3 label="AW: Allocation flag for EADFRZ"; 1120 attrib eadtelv length=3 label="AW: Household has color television"; 1121 attrib aadtelv length=3 label="AW: Allocation flag for EADTELV"; 1122 attrib eadstov length=3 label="AW: Household has stove"; 1123 attrib aadstov length=3 label="AW: Allocation flag for EADSTOV"; 1124 attrib eadmicr length=3 label="AW: Household has microwave"; 1125 attrib aadmicr length=3 label="AW: Allocation flag for EADMICR"; 1126 attrib eadvcr length=3 label="AW: Household has VCR or DVD"; 1127 attrib aadvcr length=3 label="AW: Allocation flag for EADVCR"; 1128 attrib eadair length=3 label="AW: Household has air conditioner"; 21 The SAS System 15:07 Thursday, June 21, 2012 1129 attrib aadair length=3 label="AW: Allocation flag for EADAIR"; 1130 attrib eadcomp length=3 label="AW: Household has personal computer"; 1131 attrib aadcomp length=3 label="AW: Allocation flag for EADCOMP"; 1132 attrib eadcell length=3 label="AW: Household has cell or mobile phone"; 1133 attrib aadcell length=3 label="AW: Allocation flag for EADCELL"; 1134 attrib radphon length=3 label="AW: Household has telephone"; 1135 attrib aadphon length=3 label="AW: Allocation flag for RADPHON"; 1136 attrib tahroom length=3 label="AW: Number of rooms in home"; 1137 attrib aahroom length=3 label="AW: Allocation flag for EAHROOM"; 1138 attrib eahpest length=3 label="AW: Problem with pests"; 1139 attrib eahleak length=3 label="AW: Problem with leaking roof"; 1140 attrib eahwind length=3 label="AW: Problem with broken windows"; 1141 attrib eahwire length=3 label="AW: Problem with exposed electrical wires"; 1142 attrib eahplum length=3 label="AW: Problem with plumbing that doesn't work"; 1143 attrib eahcrac length=3 label="AW: Problem with holes or cracks in wall or"; 1144 attrib eahhole length=3 label="AW: Problem with holes in the floor"; 1145 attrib aahouse length=3 label="AW: Allocation flag for house conditions"; 1146 attrib eahrepr length=3 label="AW: Satisfaction with general state of repair"; 1147 attrib aahrepr length=3 label="AW: Allocation flag for EAHREPR"; 1148 attrib eahspac length=3 label="AW: Satisfaction with room or space in home"; 1149 attrib aahspac length=3 label="AW: Allocation flag for EAHSPAC"; 1150 attrib eahfurn length=3 label="AW: Satisfaction with furnishings in home"; 1151 attrib aahfurn length=3 label="AW: Allocation flag for EAHFURN"; 1152 attrib eahwarm length=3 label="AW: Satisfaction with warmth of home in winter"; 1153 attrib aahwarm length=3 label="AW: Allocation flag for EAHWARM"; 1154 attrib eahcool length=3 label="AW: Satisfaction with coolness of home in"; 1155 attrib aahcool length=3 label="AW: Allocation flag for EAHCOOL"; 1156 attrib eahpriv length=3 label="AW: Satisfaction with privacy home offers"; 1157 attrib aahpriv length=3 label="AW: Allocation flag for EAHPRIV"; 1158 attrib eahsat length=3 label="AW: Overall satisfaction with home"; 1159 attrib aahsat length=3 label="AW: Allocation flag for EAHSAT"; 1160 attrib rahmove length=3 label="AW: Home undesirable enough to move."; 1161 attrib aahmove length=3 label="AW: Allocation flag for RAHMOVE"; 1162 attrib eacwalk length=3 label="AW: Afraid to walk alone at night."; 1163 attrib aacwalk length=3 label="AW: Allocation flag for EACWALK"; 1164 attrib eacstay length=3 label="AW: Stayed at home at certain times."; 1165 attrib aacstay length=3 label="AW: Allocation flag for EACSTAY"; 1166 attrib eacwith length=3 label="AW: Take someone with you when go out."; 1167 attrib aacwith length=3 label="AW: Allocation flag for EACWITH"; 1168 attrib eacarry length=3 label="AW: Carry something with you when go out."; 1169 attrib aacarry length=3 label="AW: Allocation flag for EACARRY"; 1170 attrib eacnsaf length=3 label="AW: Consider neighborhood safe from crime."; 1171 attrib aacnsaf length=3 label="AW: Allocation flag for EACNSAF"; 1172 attrib eachsaf length=3 label="AW: Consider home safe from crime."; 1173 attrib aachsaf length=3 label="AW: Allocation flag for EACHSAF"; 1174 attrib racwdog length=3 label="AW: Household has dog for protection."; 1175 attrib aacwdog length=3 label="AW: Allocation flag for RACWDOG"; 1176 attrib eacalrm length=3 label="AW: Household has safety devices, alarm"; 1177 attrib aacalrm length=3 label="AW: Allocation flag for EACALRM"; 1178 attrib racmove length=3 label="AW: Threat of crime enough that would move."; 1179 attrib aacmove length=3 label="AW: Allocation flag for RACMOVE"; 1180 attrib eantraf length=3 label="AW: Problem in neighborhood street noise"; 1181 attrib eanstrt length=3 label="AW: Problem in neighborhood street repair"; 1182 attrib eantrsh length=3 label="AW: Problem in neighb trash, litter"; 1183 attrib eanaban length=3 label="AW: Problem in neighborhood abandoned"; 1184 attrib eanind length=3 label="AW: Problem in neighborhood industries"; 1185 attrib eanodor length=3 label="AW: Problem in neighborhood odors, fumes"; 1186 attrib aancond length=3 label="AW: Allocation flag for neighborhood"; 22 The SAS System 15:07 Thursday, June 21, 2012 1187 attrib eanghbr length=3 label="AW: Satisfaction with relationship with"; 1188 attrib aanghbr length=3 label="AW: Allocation flag for EANGHBR"; 1189 attrib eansat length=3 label="AW: Overall satisfaction with neighborhood"; 1190 attrib aansat length=3 label="AW: Allocation flag for EANSAT"; 1191 attrib ranmove length=3 label="AW: Neighborhood undesirable, would like to"; 1192 attrib aanmove length=3 label="AW: Allocation flag for RANMOVE"; 1193 attrib eapschl length=3 label="AW: Satisfaction with public schools"; 1194 attrib aapschl length=3 label="AW: Allocation flag for EAPSCHL"; 1195 attrib eappriv length=3 label="AW: Children attend private school"; 1196 attrib aappriv length=3 label="AW: Allocation flag for EAPPRIV"; 1197 attrib eapmagn length=3 label="AW: Children attend magnet, charter school"; 1198 attrib aapmagn length=3 label="AW: Allocation flag for EAPMAGN"; 1199 attrib eappubs length=3 label="AW: Children attend public school"; 1200 attrib aappubs length=3 label="AW: Allocation flag for EAPPUBS"; 1201 attrib eaphoms length=3 label="AW: Children attend home school"; 1202 attrib aaphoms length=3 label="AW: Allocation flag for EAPHOMS"; 1203 attrib eapnosc length=3 label="AW: Children not in school"; 1204 attrib aapnosc length=3 label="AW: Allocation flag for EAPNOSC"; 1205 attrib eapdiff length=3 label="AW: Prefer a different school for any child"; 1206 attrib aapdiff length=3 label="AW: Allocation flag for EAPDIFF"; 1207 attrib eaphosp length=3 label="AW: Satisfaction with hospitals, health"; 1208 attrib aaphosp length=3 label="AW: Allocation flag for EAPHOSP"; 1209 attrib eapolic length=3 label="AW: Satisfaction with police services"; 1210 attrib aapolic length=3 label="AW: Allocation flag for EAPOLIC"; 1211 attrib eapfire length=3 label="AW: Satisfaction with fire department services"; 1212 attrib aapfire length=3 label="AW: Allocation flag for EAPFIRE."; 1213 attrib eaptran length=3 label="AW: Adequacy of public transportation"; 1214 attrib aaptran length=3 label="AW: Allocation flag for EAPTRAN"; 1215 attrib eapsat length=3 label="AW: Satisfaction with public services"; 1216 attrib aapsat length=3 label="AW: Allocation flag for EAPSAT"; 1217 attrib rapmove length=3 label="AW: Public services undesirable, would like"; 1218 attrib aapmove length=3 label="AW: Allocation flag for RAPMOVE"; 1219 attrib eabmeet length=3 label="AW: Ability to meet essential expenses"; 1220 attrib aabmeet length=3 label="AW: Allocation flag for EABMEET"; 1221 attrib eabrent length=3 label="AW: Did not pay rent or mortgage"; 1222 attrib aabrent length=3 label="AW: Allocation flag for EABRENT"; 1223 attrib rabrhlp1 length=3 label="AW: Family helped with problem paying rent or"; 1224 attrib rabrhlp2 length=3 label="AW: Friend helped with problem paying rent or"; 1225 attrib rabrhlp3 length=3 label="AW: Social serv helped w/ problem paying"; 1226 attrib rabrhlp4 length=3 label="AW: Nonprofit helped with problem paying"; 1227 attrib rabrhlp5 length=3 label="AW: Other source helped w/ problem paying"; 1228 attrib aabrhlp length=3 label="AW: Allocation flag for RABRHLP"; 1229 attrib eabevct length=3 label="AW: Evicted from home or apartment"; 1230 attrib aabevct length=3 label="AW: Allocation flag for EABEVCT"; 1231 attrib rabehlp1 length=3 label="AW: Family helped when evicted from home or"; 1232 attrib rabehlp2 length=3 label="AW: Friend helped when evicted from home or"; 1233 attrib rabehlp3 length=3 label="AW: Social services helped when evicted from"; 1234 attrib rabehlp4 length=3 label="AW: Nonprofit helped when evicted from home"; 1235 attrib rabehlp5 length=3 label="AW: Other source helped when evicted from"; 1236 attrib aabehlp length=3 label="AW: Allocation flag for RABEHLP"; 1237 attrib eabgas length=3 label="AW: Did not pay gas, oil, or electricity bills"; 1238 attrib aabgas length=3 label="AW: Allocation flag for EABGAS"; 1239 attrib rabghlp1 length=3 label="AW: Family helped w/ problem paying gas, oil,"; 1240 attrib rabghlp2 length=3 label="AW: A non-relative helped with paying gas,"; 1241 attrib rabghlp3 length=3 label="AW: Social services helped with problem"; 1242 attrib rabghlp4 length=3 label="AW: Nonprofit helped with problem paying gas,"; 1243 attrib rabghlp5 length=3 label="AW: Other source helped w/ problem paying"; 1244 attrib aabghlp length=3 label="AW: Allocation flag for RABGHLP"; 23 The SAS System 15:07 Thursday, June 21, 2012 1245 attrib eabcut length=3 label="AW: Gas or electric company turned off service"; 1246 attrib aabcut length=3 label="AW: Allocation flag for EABCUT"; 1247 attrib rabchlp1 length=3 label="AW: Family helped when gas/electric co turned"; 1248 attrib rabchlp2 length=3 label="AW: Friend helped when gas/electric co turned"; 1249 attrib rabchlp3 length=3 label="AW: Social services helped when gas co turned"; 1250 attrib rabchlp4 length=3 label="AW: Nonprofit helped when gas company turned"; 1251 attrib rabchlp5 length=3 label="AW: Other source helped when gas co turned"; 1252 attrib aabchlp length=3 label="AW: Allocation flag for RABCHLP"; 1253 attrib eabphon length=3 label="AW: Telephone company disconnected service"; 1254 attrib aabphon length=3 label="AW: Allocation flag for EABPHON"; 1255 attrib rabphlp1 length=3 label="AW: Family helped when telephone co"; 1256 attrib rabphlp2 length=3 label="AW: Friend helped when telephone co turned"; 1257 attrib rabphlp3 length=3 label="AW: Social serv helped when telephone co"; 1258 attrib rabphlp4 length=3 label="AW: Nonprofit helped when telephone co turned"; 1259 attrib rabphlp5 length=3 label="AW: Other source helped when telephone co"; 1260 attrib aabphlp length=3 label="AW: Allocation flag for RABPHLP"; 1261 attrib eabdoct length=3 label="AW: Did not see a doctor when needed"; 1262 attrib aabdoct length=3 label="AW: Allocation flag for EABDOCT"; 1263 attrib rabdhlp1 length=3 label="AW: Family helped with problem seeing a doctor"; 1264 attrib rabdhlp2 length=3 label="AW: Friend helped with problem seeing a doctor"; 1265 attrib rabdhlp3 length=3 label="AW: Social services helped with problem"; 1266 attrib rabdhlp4 length=3 label="AW: Nonprofit helped with problem seeing a"; 1267 attrib rabdhlp5 length=3 label="AW: Other source helped with problem seeing a"; 1268 attrib aabdhlp length=3 label="AW: Allocation flag for RABDHLP"; 1269 attrib eabdent length=3 label="AW: Did not see a dentist when needed"; 1270 attrib aabdent length=3 label="AW: Allocation flag for EABDENT"; 1271 attrib rabthlp1 length=3 label="AW: Family helped with problem seeing a"; 1272 attrib rabthlp2 length=3 label="AW: Friend helped with problem seeing a"; 1273 attrib rabthlp3 length=3 label="AW: Social services helped with problem"; 1274 attrib rabthlp4 length=3 label="AW: Nonprofit helped with problem seeing a"; 1275 attrib rabthlp5 length=3 label="AW: Other source helped with problem seeing a"; 1276 attrib aabthlp length=3 label="AW: Allocation flag for RABTHLP"; 1277 attrib eahlpfm length=3 label="AW: how much help expect to get from family"; 1278 attrib aahlpfm length=3 label="AW: Allocation flag for EAHLPFM"; 1279 attrib eahlpfr length=3 label="AW: how much help expect to get from friends"; 1280 attrib aahlpfr length=3 label="AW: Allocation flag for EAHLPFR"; 1281 attrib eahlpag length=3 label="AW: how much help expect to get from others"; 1282 attrib aahlpag length=3 label="AW: Allocation flag for EAHLPAG"; 1283 attrib eafood1 length=3 label="AW: Sufficiency of food eaten in household"; 1284 attrib aafood1 length=3 label="AW: Allocation flag for EAFOOD1"; 1285 attrib eafdm1 length=3 label="AW: Not enough to eat --4 months ago"; 1286 attrib eafdm2 length=3 label="AW: Not enough to eat --3 months ago"; 1287 attrib eafdm3 length=3 label="AW: Not enough to eat --2 months ago"; 1288 attrib eafdm4 length=3 label="AW: Not enough to eat --last month"; 1289 attrib eafdm5 length=3 label="AW: Not enough to eat --current month"; 1290 attrib aafdm length=3 label="AW: Allocation flag for EAFDM1-EAFDM5."; 1291 attrib eaflast length=3 label="AW: Food we bought just didn't last"; 1292 attrib aaflast length=3 label="AW: Allocation flag for EAFLAST"; 1293 attrib eafbaln length=3 label="AW: Couldn't afford balanced meals"; 1294 attrib aafbaln length=3 label="AW: Allocation flag for EAFBALN"; 1295 attrib eafchld length=3 label="AW: Children were not eating enough"; 1296 attrib aafchld length=3 label="AW: Allocation flag for EAFCHLD"; 1297 attrib eafskip length=3 label="AW: Cut size or skipped meals"; 1298 attrib aafskip length=3 label="AW: Allocation flag for EAFSKIP"; 1299 attrib eafless length=3 label="AW: Ate less than felt you should"; 1300 attrib aafless length=3 label="AW: Allocation flag for EAFLESS"; 1301 attrib eafday length=3 label="AW: Didn't eat for a whole day"; 1302 attrib aafday length=3 label="AW: Allocation flag for EAFDAY."; 24 The SAS System 15:07 Thursday, June 21, 2012 1303 1304 1305 INPUT 1306 1307 @1 ssuseq 5. 1308 @6 ssuid $12. 1309 @18 spanel 4. 1310 @22 swave 2. 1311 @24 srotaton 1. 1312 @25 tfipsst 2. 1313 @27 shhadid 3. 1314 @30 eoutcome 3. 1315 @33 rfid 3. 1316 @36 rfid2 3. 1317 @39 eppidx 3. 1318 @42 eentaid $3. 1319 @45 epppnum $4. 1320 @49 epopstat 1. 1321 @50 eppintvw 2. 1322 @52 eppmis4 1. 1323 @53 esex 1. 1324 @54 erace 1. 1325 @55 eorigin 2. 1326 @57 wpfinwgt 10.4 1327 @67 errp 2. 1328 @69 tage 2. 1329 @71 ems 1. 1330 @72 epnspous 4. 1331 @76 epnmom 4. 1332 @80 epndad 4. 1333 @84 epnguard 4. 1334 @88 rdesgpnt 2. 1335 @90 eeducate 2. 1336 @92 lgtkey $8. 1337 @100 sinthhid 3. 1338 @103 eacsunv 2. 1339 @105 ecskid01 4. 1340 @109 ecskid02 4. 1341 @113 ecskid03 4. 1342 @117 ecskid04 4. 1343 @121 ecskid05 4. 1344 @125 ecskid06 4. 1345 @129 ecskid07 4. 1346 @133 ecskid08 4. 1347 @137 ecskid09 4. 1348 @141 ecskid10 4. 1349 @145 eynoab01 2. 1350 @147 eynoab02 2. 1351 @149 eynoab03 2. 1352 @151 eynoab04 2. 1353 @153 eynoab05 2. 1354 @155 eynoab06 2. 1355 @157 eynoab07 2. 1356 @159 eynoab08 2. 1357 @161 eynoab09 2. 1358 @163 eynoab10 2. 1359 @165 aynoab 1. 1360 @166 recrdflg 2. 25 The SAS System 15:07 Thursday, June 21, 2012 1361 @168 ecsflg01 2. 1362 @170 ecsflg02 2. 1363 @172 ecsflg03 2. 1364 @174 ecsflg04 2. 1365 @176 ecsflg05 2. 1366 @178 ecsflg06 2. 1367 @180 ecsflg07 2. 1368 @182 ecsflg08 2. 1369 @184 ecsflg09 2. 1370 @186 ecsflg10 2. 1371 @188 acsflg 1. 1372 @189 ranyagre 2. 1373 @191 tnumagr 2. 1374 @193 anumagr 1. 1375 @194 etypeagr 2. 1376 @196 atypeagr 1. 1377 @197 efirsyr1 4. 1378 @201 afirsyr1 1. 1379 @202 tamtag11 4. 1380 @206 eamtag12 2. 1381 @208 aamtag11 1. 1382 @209 eevrchg1 2. 1383 @211 aevrchg1 1. 1384 @212 eyrchng1 4. 1385 @216 ayrchng1 1. 1386 @217 tamtcg11 4. 1387 @221 eamtcg12 2. 1388 @223 aamtcg11 1. 1389 @224 ewhochgd 2. 1390 @226 awhochgd 1. 1391 @227 epaydue1 2. 1392 @229 apaydue1 1. 1393 @230 eynodue1 2. 1394 @232 aynodue1 1. 1395 @233 tamtsup1 5. 1396 @238 aamtsup1 1. 1397 @239 ehowrec1 2. 1398 @241 ahowrec1 1. 1399 @242 tactrec1 5. 1400 @247 aactrec1 1. 1401 @248 eallpay1 2. 1402 @250 aallpay1 1. 1403 @251 epaytim1 2. 1404 @253 apaytim1 1. 1405 @254 epayful1 2. 1406 @256 apayful1 1. 1407 @257 eduback1 2. 1408 @259 aduback1 1. 1409 @260 tdolbac1 4. 1410 @264 adolbac1 1. 1411 @265 ebacowe1 2. 1412 @267 abacowe1 1. 1413 @268 tamtowe1 5. 1414 @273 aamtowe1 1. 1415 @274 tbacrec1 4. 1416 @278 abacrec1 1. 1417 @279 ehthag11 2. 1418 @281 ehthag12 2. 26 The SAS System 15:07 Thursday, June 21, 2012 1419 @283 ehthag13 2. 1420 @285 ehthag14 2. 1421 @287 ehthag15 2. 1422 @289 ehthag16 2. 1423 @291 ahthag11 1. 1424 @292 ecustag1 2. 1425 @294 acustag1 1. 1426 @295 espentm1 2. 1427 @297 aspentm1 1. 1428 @298 esametm1 2. 1429 @300 asametm1 1. 1430 @301 eamttm11 3. 1431 @304 eamttm12 2. 1432 @306 eamttm13 2. 1433 @308 aamttm11 1. 1434 @309 ewherlv1 2. 1435 @311 awherlv1 1. 1436 @312 estagre1 2. 1437 @314 astagre1 1. 1438 @315 ewhomov1 2. 1439 @317 awhomov1 1. 1440 @318 efirsyr2 4. 1441 @322 afirsyr2 1. 1442 @323 tamtag21 4. 1443 @327 eamtag22 2. 1444 @329 aamtag21 1. 1445 @330 eevrchg2 2. 1446 @332 aevrchg2 1. 1447 @333 eyrchng2 4. 1448 @337 ayrchng2 1. 1449 @338 tamtcg21 4. 1450 @342 eamtcg22 2. 1451 @344 aamtcg21 1. 1452 @345 epaydue2 2. 1453 @347 apaydue2 1. 1454 @348 eynodue2 2. 1455 @350 aynodue2 1. 1456 @351 tamtsup2 5. 1457 @356 aamtsup2 1. 1458 @357 tactrec2 5. 1459 @362 aactrec2 1. 1460 @363 eallpay2 2. 1461 @365 aallpay2 1. 1462 @366 epaytim2 2. 1463 @368 apaytim2 1. 1464 @369 epayful2 2. 1465 @371 apayful2 1. 1466 @372 eduback2 2. 1467 @374 aduback2 1. 1468 @375 tdolbac2 3. 1469 @378 adolbac2 1. 1470 @379 ebacowe2 2. 1471 @381 abacowe2 1. 1472 @382 tamtowe2 4. 1473 @386 aamtowe2 1. 1474 @387 tbacrec2 3. 1475 @390 abacrec2 1. 1476 @391 ehltag21 2. 27 The SAS System 15:07 Thursday, June 21, 2012 1477 @393 ehltag22 2. 1478 @395 ehltag23 2. 1479 @397 ehltag24 2. 1480 @399 ehltag25 2. 1481 @401 ehltag26 2. 1482 @403 ahltag21 1. 1483 @404 ecustag2 2. 1484 @406 acustag2 1. 1485 @407 espentm2 2. 1486 @409 aspentm2 1. 1487 @410 esametm2 2. 1488 @412 asametm2 1. 1489 @413 eamttm21 3. 1490 @416 eamttm22 2. 1491 @418 eamttm23 2. 1492 @420 aamttm21 1. 1493 @421 edcrt101 2. 1494 @423 edcrt102 2. 1495 @425 edcrt103 2. 1496 @427 edcrt104 2. 1497 @429 edcrt105 2. 1498 @431 edcrt106 2. 1499 @433 edcrt107 2. 1500 @435 edcrt108 2. 1501 @437 edcrt109 2. 1502 @439 edcrt110 2. 1503 @441 edtes101 2. 1504 @443 edtes102 2. 1505 @445 edtes103 2. 1506 @447 edtes104 2. 1507 @449 edtes105 2. 1508 @451 edtes106 2. 1509 @453 edtes107 2. 1510 @455 edtes108 2. 1511 @457 edtes109 2. 1512 @459 edtes110 2. 1513 @461 edcer101 2. 1514 @463 edcer102 2. 1515 @465 edcer103 2. 1516 @467 edcer104 2. 1517 @469 edcer105 2. 1518 @471 edcer106 2. 1519 @473 edcer107 2. 1520 @475 edcer108 2. 1521 @477 edcer109 2. 1522 @479 edcer110 2. 1523 @481 edsig101 2. 1524 @483 edsig102 2. 1525 @485 edsig103 2. 1526 @487 edsig104 2. 1527 @489 edsig105 2. 1528 @491 edsig106 2. 1529 @493 edsig107 2. 1530 @495 edsig108 2. 1531 @497 edsig109 2. 1532 @499 edsig110 2. 1533 @501 edoth101 2. 1534 @503 edoth102 2. 28 The SAS System 15:07 Thursday, June 21, 2012 1535 @505 edoth103 2. 1536 @507 edoth104 2. 1537 @509 edoth105 2. 1538 @511 edoth106 2. 1539 @513 edoth107 2. 1540 @515 edoth108 2. 1541 @517 edoth109 2. 1542 @519 edoth110 2. 1543 @521 adid101 1. 1544 @522 edmar1 2. 1545 @524 admar1 1. 1546 @525 edcrt201 2. 1547 @527 edcrt202 2. 1548 @529 edcrt203 2. 1549 @531 edcrt204 2. 1550 @533 edcrt205 2. 1551 @535 edcrt206 2. 1552 @537 edcrt207 2. 1553 @539 edcrt208 2. 1554 @541 edcrt209 2. 1555 @543 edcrt210 2. 1556 @545 edtes201 2. 1557 @547 edtes202 2. 1558 @549 edtes203 2. 1559 @551 edtes204 2. 1560 @553 edtes205 2. 1561 @555 edtes206 2. 1562 @557 edtes207 2. 1563 @559 edtes208 2. 1564 @561 edtes209 2. 1565 @563 edtes210 2. 1566 @565 edcer201 2. 1567 @567 edcer202 2. 1568 @569 edcer203 2. 1569 @571 edcer204 2. 1570 @573 edcer205 2. 1571 @575 edcer206 2. 1572 @577 edcer207 2. 1573 @579 edcer208 2. 1574 @581 edcer209 2. 1575 @583 edcer210 2. 1576 @585 edsig201 2. 1577 @587 edsig202 2. 1578 @589 edsig203 2. 1579 @591 edsig204 2. 1580 @593 edsig205 2. 1581 @595 edsig206 2. 1582 @597 edsig207 2. 1583 @599 edsig208 2. 1584 @601 edsig209 2. 1585 @603 edsig210 2. 1586 @605 edoth201 2. 1587 @607 edoth202 2. 1588 @609 edoth203 2. 1589 @611 edoth204 2. 1590 @613 edoth205 2. 1591 @615 edoth206 2. 1592 @617 edoth207 2. 29 The SAS System 15:07 Thursday, June 21, 2012 1593 @619 edoth208 2. 1594 @621 edoth209 2. 1595 @623 edoth210 2. 1596 @625 adid201 1. 1597 @626 eynevwr1 2. 1598 @628 eynevwr2 2. 1599 @630 eynevwr3 2. 1600 @632 eynevwr4 2. 1601 @634 eynevwr5 2. 1602 @636 eynevwr6 2. 1603 @638 eynevwr7 2. 1604 @640 eynevwr8 2. 1605 @642 aynevwr1 1. 1606 @643 ewherlv2 2. 1607 @645 awherlv2 1. 1608 @646 estagre2 2. 1609 @648 astagre2 1. 1610 @649 ewhomov2 2. 1611 @651 awhomov2 1. 1612 @652 tamtag31 3. 1613 @655 eamtag32 2. 1614 @657 aamtag31 1. 1615 @658 tactrec3 4. 1616 @662 aactrec3 1. 1617 @663 epubsupp 2. 1618 @665 apubsupp 1. 1619 @666 elastask 4. 1620 @670 alastask 1. 1621 @671 etypask1 2. 1622 @673 etypask2 2. 1623 @675 etypask3 2. 1624 @677 etypask4 2. 1625 @679 etypask5 2. 1626 @681 etypask6 2. 1627 @683 etypask7 2. 1628 @685 atypask 1. 1629 @686 ehelpsyn 2. 1630 @688 ahelpsyn 1. 1631 @689 etyphlp1 2. 1632 @691 etyphlp2 2. 1633 @693 etyphlp3 2. 1634 @695 etyphlp4 2. 1635 @697 etyphlp5 2. 1636 @699 etyphlp6 2. 1637 @701 etyphlp7 2. 1638 @703 atyphlp 1. 1639 @704 edcrt301 2. 1640 @706 edcrt302 2. 1641 @708 edcrt303 2. 1642 @710 edcrt304 2. 1643 @712 edcrt305 2. 1644 @714 edcrt306 2. 1645 @716 edcrt307 2. 1646 @718 edcrt308 2. 1647 @720 edcrt309 2. 1648 @722 edcrt310 2. 1649 @724 edtes301 2. 1650 @726 edtes302 2. 30 The SAS System 15:07 Thursday, June 21, 2012 1651 @728 edtes303 2. 1652 @730 edtes304 2. 1653 @732 edtes305 2. 1654 @734 edtes306 2. 1655 @736 edtes307 2. 1656 @738 edtes308 2. 1657 @740 edtes309 2. 1658 @742 edtes310 2. 1659 @744 edcer301 2. 1660 @746 edcer302 2. 1661 @748 edcer303 2. 1662 @750 edcer304 2. 1663 @752 edcer305 2. 1664 @754 edcer306 2. 1665 @756 edcer307 2. 1666 @758 edcer308 2. 1667 @760 edcer309 2. 1668 @762 edcer310 2. 1669 @764 edsig301 2. 1670 @766 edsig302 2. 1671 @768 edsig303 2. 1672 @770 edsig304 2. 1673 @772 edsig305 2. 1674 @774 edsig306 2. 1675 @776 edsig307 2. 1676 @778 edsig308 2. 1677 @780 edsig309 2. 1678 @782 edsig310 2. 1679 @784 edoth301 2. 1680 @786 edoth302 2. 1681 @788 edoth303 2. 1682 @790 edoth304 2. 1683 @792 edoth305 2. 1684 @794 edoth306 2. 1685 @796 edoth307 2. 1686 @798 edoth308 2. 1687 @800 edoth309 2. 1688 @802 edoth310 2. 1689 @804 adid301 1. 1690 @805 edmar201 2. 1691 @807 admar201 1. 1692 @808 edmar202 2. 1693 @810 admar202 1. 1694 @811 edmar203 2. 1695 @813 admar203 1. 1696 @814 edmar204 2. 1697 @816 admar204 1. 1698 @817 edmar205 2. 1699 @819 admar205 1. 1700 @820 edmar206 2. 1701 @822 admar206 1. 1702 @823 edmar207 2. 1703 @825 admar207 1. 1704 @826 edmar208 2. 1705 @828 admar208 1. 1706 @829 edmar209 2. 1707 @831 admar209 1. 1708 @832 edmar210 2. 31 The SAS System 15:07 Thursday, June 21, 2012 1709 @834 admar210 1. 1710 @835 esame01 2. 1711 @837 asame01 1. 1712 @838 esame02 2. 1713 @840 asame02 1. 1714 @841 esame03 2. 1715 @843 asame03 1. 1716 @844 esame04 2. 1717 @846 asame04 1. 1718 @847 esame05 2. 1719 @849 asame05 1. 1720 @850 esame06 2. 1721 @852 asame06 1. 1722 @853 esame07 2. 1723 @855 asame07 1. 1724 @856 esame08 2. 1725 @858 asame08 1. 1726 @859 esame09 2. 1727 @861 asame09 1. 1728 @862 esame10 2. 1729 @864 asame10 1. 1730 @865 edcrt401 2. 1731 @867 edcrt402 2. 1732 @869 edcrt403 2. 1733 @871 edcrt404 2. 1734 @873 edcrt405 2. 1735 @875 edcrt406 2. 1736 @877 edcrt407 2. 1737 @879 edcrt408 2. 1738 @881 edcrt409 2. 1739 @883 edcrt410 2. 1740 @885 edtes401 2. 1741 @887 edtes402 2. 1742 @889 edtes403 2. 1743 @891 edtes404 2. 1744 @893 edtes405 2. 1745 @895 edtes406 2. 1746 @897 edtes407 2. 1747 @899 edtes408 2. 1748 @901 edtes409 2. 1749 @903 edtes410 2. 1750 @905 edcer401 2. 1751 @907 edcer402 2. 1752 @909 edcer403 2. 1753 @911 edcer404 2. 1754 @913 edcer405 2. 1755 @915 edcer406 2. 1756 @917 edcer407 2. 1757 @919 edcer408 2. 1758 @921 edcer409 2. 1759 @923 edcer410 2. 1760 @925 edsig401 2. 1761 @927 edsig402 2. 1762 @929 edsig403 2. 1763 @931 edsig404 2. 1764 @933 edsig405 2. 1765 @935 edsig406 2. 1766 @937 edsig407 2. 32 The SAS System 15:07 Thursday, June 21, 2012 1767 @939 edsig408 2. 1768 @941 edsig409 2. 1769 @943 edsig410 2. 1770 @945 edoth401 2. 1771 @947 edoth402 2. 1772 @949 edoth403 2. 1773 @951 edoth404 2. 1774 @953 edoth405 2. 1775 @955 edoth406 2. 1776 @957 edoth407 2. 1777 @959 edoth408 2. 1778 @961 edoth409 2. 1779 @963 edoth410 2. 1780 @965 adid401 1. 1781 @966 adid402 1. 1782 @967 adid403 1. 1783 @968 adid404 1. 1784 @969 adid405 1. 1785 @970 adid406 1. 1786 @971 adid407 1. 1787 @972 adid408 1. 1788 @973 adid409 1. 1789 @974 adid410 1. 1790 @975 esamepar 2. 1791 @977 asamepar 1. 1792 @978 eynoag11 2. 1793 @980 eynoag12 2. 1794 @982 eynoag13 2. 1795 @984 eynoag14 2. 1796 @986 eynoag15 2. 1797 @988 eynoag16 2. 1798 @990 eynoag17 2. 1799 @992 eynoag18 2. 1800 @994 aynoag11 1. 1801 @995 ewherlv3 2. 1802 @997 awherlv3 1. 1803 @998 evisagr1 2. 1804 @1000 avisagr1 1. 1805 @1001 eamttm41 3. 1806 @1004 eamttm42 2. 1807 @1006 eamttm43 2. 1808 @1008 aamttm41 1. 1809 @1009 eynoag21 2. 1810 @1011 eynoag22 2. 1811 @1013 eynoag23 2. 1812 @1015 eynoag24 2. 1813 @1017 eynoag25 2. 1814 @1019 eynoag26 2. 1815 @1021 eynoag27 2. 1816 @1023 eynoag28 2. 1817 @1025 aynoag21 1. 1818 @1026 ewherlv4 2. 1819 @1028 awherlv4 1. 1820 @1029 evisagr2 2. 1821 @1031 avisagr2 1. 1822 @1032 eamttm51 3. 1823 @1035 eamttm52 2. 1824 @1037 eamttm53 2. 33 The SAS System 15:07 Thursday, June 21, 2012 1825 @1039 aamttm51 1. 1826 @1040 epayrecv 2. 1827 @1042 apayrecv 1. 1828 @1043 tactrec4 5. 1829 @1048 aactrec4 1. 1830 @1049 eothitem 2. 1831 @1051 aothitem 1. 1832 @1052 eagencol 2. 1833 @1054 aagencol 1. 1834 @1055 eagenall 2. 1835 @1057 aagenall 1. 1836 @1058 tamtagen 5. 1837 @1063 aamtagen 1. 1838 @1064 easnunv 2. 1839 @1066 esupkdyn 2. 1840 @1068 asupkdyn 1. 1841 @1069 esuptyp1 2. 1842 @1071 esuptyp2 2. 1843 @1073 esuptyp3 2. 1844 @1075 asuptyp 1. 1845 @1076 tsupnkid 2. 1846 @1078 asupnkid 1. 1847 @1079 tsupltad 2. 1848 @1081 asupltad 1. 1849 @1082 esupagrm 2. 1850 @1084 asupagrm 1. 1851 @1085 tsupnagr 2. 1852 @1087 asupnagr 1. 1853 @1088 esupagty 2. 1854 @1090 asupagty 1. 1855 @1091 esupagyr 4. 1856 @1095 asupagyr 1. 1857 @1096 esupamtc 2. 1858 @1098 asupamtc 1. 1859 @1099 esupyrch 4. 1860 @1103 asupyrch 2. 1861 @1105 esupchag 2. 1862 @1107 asupchag 1. 1863 @1108 esupstlp 2. 1864 @1110 asupstlp 1. 1865 @1111 tsupampd 5. 1866 @1116 asupampd 1. 1867 @1117 esuphopy 2. 1868 @1119 asuphopy 1. 1869 @1120 esuphlt1 2. 1870 @1122 esuphlt2 2. 1871 @1124 esuphlt3 2. 1872 @1126 esuphlt4 2. 1873 @1128 esuphlt5 2. 1874 @1130 esuphlt6 2. 1875 @1132 asuphlt 1. 1876 @1133 esupcust 2. 1877 @1135 asupcust 1. 1878 @1136 esupsptm 2. 1879 @1138 asupsptm 1. 1880 @1139 esuptam1 3. 1881 @1142 esuptam2 2. 1882 @1144 esuptam3 2. 34 The SAS System 15:07 Thursday, June 21, 2012 1883 @1146 asuptam 1. 1884 @1147 esupotha 2. 1885 @1149 asupotha 1. 1886 @1150 tsupamal 4. 1887 @1154 asupamal 1. 1888 @1155 esupwoag 2. 1889 @1157 asupwoag 1. 1890 @1158 tsupamad 5. 1891 @1163 asupamad 1. 1892 @1164 esuptma1 3. 1893 @1167 esuptma2 2. 1894 @1169 esuptma3 2. 1895 @1171 asuptma 1. 1896 @1172 esupotpy 2. 1897 @1174 asupotpy 1. 1898 @1175 tsupotnp 2. 1899 @1177 asupotnp 1. 1900 @1178 esupotre 2. 1901 @1180 asupotre 1. 1902 @1181 esupotlv 2. 1903 @1183 asupotlv 1. 1904 @1184 tsupotam 5. 1905 @1189 asupotam 1. 1906 @1190 esupotrl 2. 1907 @1192 asupotrl 1. 1908 @1193 esupotli 2. 1909 @1195 asupotli 1. 1910 @1196 tsupotpa 5. 1911 @1201 asupotpa 1. 1912 @1202 tsupotnt 5. 1913 @1207 asupotnt 1. 1914 @1208 eaadunv 2. 1915 @1210 ehstat 2. 1916 @1212 ahstat 1. 1917 @1213 ecane 2. 1918 @1215 acane 1. 1919 @1216 ewchair 2. 1920 @1218 awchair 1. 1921 @1219 ehearaid 2. 1922 @1221 ahearaid 1. 1923 @1222 ecane6 2. 1924 @1224 acane6 1. 1925 @1225 eseedif 2. 1926 @1227 aseedif 1. 1927 @1228 eseenot 2. 1928 @1230 aseenot 1. 1929 @1231 eheardif 2. 1930 @1233 aheardif 1. 1931 @1234 ehearnot 2. 1932 @1236 ahearnot 1. 1933 @1237 espeechd 2. 1934 @1239 aspeechd 1. 1935 @1240 espeechc 2. 1936 @1242 aspeechc 1. 1937 @1243 edif10 2. 1938 @1245 adif10 1. 1939 @1246 ecant10 2. 1940 @1248 acant10 1. 35 The SAS System 15:07 Thursday, June 21, 2012 1941 @1249 edif25 2. 1942 @1251 adif25 1. 1943 @1252 ecant25 2. 1944 @1254 acant25 1. 1945 @1255 epushd 2. 1946 @1257 apushd 1. 1947 @1258 epushc 2. 1948 @1260 apushc 1. 1949 @1261 estandd 2. 1950 @1263 astandd 1. 1951 @1264 esitd 2. 1952 @1266 asitd 1. 1953 @1267 estoopd 2. 1954 @1269 astoopd 1. 1955 @1270 ereachd 2. 1956 @1272 areachd 1. 1957 @1273 egraspd 2. 1958 @1275 agraspd 1. 1959 @1276 egraspc 2. 1960 @1278 agraspc 1. 1961 @1279 estairsd 2. 1962 @1281 astairsd 1. 1963 @1282 estairsc 2. 1964 @1284 astairsc 1. 1965 @1285 ewalkd 2. 1966 @1287 awalkd 1. 1967 @1288 ewalkc 2. 1968 @1290 awalkc 1. 1969 @1291 eteled 2. 1970 @1293 ateled 1. 1971 @1294 etelec 2. 1972 @1296 atelec 1. 1973 @1297 eindif 2. 1974 @1299 aindif 1. 1975 @1300 eoutdif 2. 1976 @1302 aoutdif 1. 1977 @1303 ebeddif 2. 1978 @1305 abeddif 1. 1979 @1306 ebathdif 2. 1980 @1308 abathdif 1. 1981 @1309 edressd 2. 1982 @1311 adressd 1. 1983 @1312 ewalk2d 2. 1984 @1314 awalk2d 1. 1985 @1315 eeatdif 2. 1986 @1317 aeatdif 1. 1987 @1318 etoiletd 2. 1988 @1320 atoiletd 1. 1989 @1321 emoneyd 2. 1990 @1323 amoneyd 1. 1991 @1324 emealsd 2. 1992 @1326 amealsd 1. 1993 @1327 ehworkd 2. 1994 @1329 ahworkd 1. 1995 @1330 emedd 2. 1996 @1332 amedd 1. 1997 @1333 einhelp 2. 1998 @1335 ainhelp 1. 36 The SAS System 15:07 Thursday, June 21, 2012 1999 @1336 eouthelp 2. 2000 @1338 aouthelp 1. 2001 @1339 ebedhelp 2. 2002 @1341 abedhelp 1. 2003 @1342 ebathh 2. 2004 @1344 abathh 1. 2005 @1345 edressh 2. 2006 @1347 adressh 1. 2007 @1348 ewalk2h 2. 2008 @1350 awalk2h 1. 2009 @1351 eeathelp 2. 2010 @1353 aeathelp 1. 2011 @1354 etoileth 2. 2012 @1356 atoileth 1. 2013 @1357 emoneyh 2. 2014 @1359 amoneyh 1. 2015 @1360 emealsh 2. 2016 @1362 amealsh 1. 2017 @1363 ehworkh 2. 2018 @1365 ahworkh 1. 2019 @1366 emedh 2. 2020 @1368 amedh 1. 2021 @1369 ehelper1 2. 2022 @1371 ahelper1 1. 2023 @1372 ehhmemb1 4. 2024 @1376 ahhmemb1 1. 2025 @1377 ehelper2 2. 2026 @1379 ahelper2 1. 2027 @1380 ehhmemb2 4. 2028 @1384 ahhmemb2 1. 2029 @1385 ehowlong 2. 2030 @1387 ahowlong 1. 2031 @1388 epayhelp 2. 2032 @1390 apayhelp 1. 2033 @1391 tpayamt 4. 2034 @1395 apayamt 1. 2035 @1396 econd1 2. 2036 @1398 acond1 1. 2037 @1399 econd2 2. 2038 @1401 econd3 2. 2039 @1403 econdph1 2. 2040 @1405 acondph1 1. 2041 @1406 econdph2 2. 2042 @1408 econdph3 2. 2043 @1410 emotorv 2. 2044 @1412 amotorv 1. 2045 @1413 emain1 2. 2046 @1415 amain1 1. 2047 @1416 tyear1 4. 2048 @1420 ayear1 1. 2049 @1421 emonth1 2. 2050 @1423 amonth1 1. 2051 @1424 elast12m 2. 2052 @1426 alast12m 1. 2053 @1427 eldis 2. 2054 @1429 aldis 1. 2055 @1430 emr 2. 2056 @1432 amr 1. 37 The SAS System 15:07 Thursday, June 21, 2012 2057 @1433 edevdis 2. 2058 @1435 adevdis 1. 2059 @1436 ealz 2. 2060 @1438 aalz 1. 2061 @1439 eotherm 2. 2062 @1441 aotherm 1. 2063 @1442 eanxious 2. 2064 @1444 aanxious 1. 2065 @1445 esocial 2. 2066 @1447 asocial 1. 2067 @1448 ectrate 2. 2068 @1450 actrate 1. 2069 @1451 ecope 2. 2070 @1453 acope 1. 2071 @1454 eintrfer 2. 2072 @1456 aintrfer 1. 2073 @1457 ejobdif 2. 2074 @1459 ajobdif 1. 2075 @1460 ejobcant 2. 2076 @1462 ajobcant 1. 2077 @1463 ehwrkdif 2. 2078 @1465 ahwrkdif 1. 2079 @1466 ehwrkno 2. 2080 @1468 ahwrkno 1. 2081 @1469 econdw1 2. 2082 @1471 acondw1 1. 2083 @1472 econdw2 2. 2084 @1474 econdw3 2. 2085 @1476 emain2 2. 2086 @1478 amain2 1. 2087 @1479 eapplyss 2. 2088 @1481 aapplyss 1. 2089 @1482 ecompute 2. 2090 @1484 acompute 1. 2091 @1485 ecmphome 2. 2092 @1487 acmphome 1. 2093 @1488 ecmpwork 2. 2094 @1490 acmpwork 1. 2095 @1491 ecmpschl 2. 2096 @1493 acmpschl 1. 2097 @1494 eintrnet 2. 2098 @1496 aintrnet 1. 2099 @1497 einthome 2. 2100 @1499 ainthome 1. 2101 @1500 eintwork 2. 2102 @1502 aintwork 1. 2103 @1503 eintschl 2. 2104 @1505 aintschl 1. 2105 @1506 eintlibr 2. 2106 @1508 aintlibr 1. 2107 @1509 eintccen 2. 2108 @1511 aintccen 1. 2109 @1512 eintsome 2. 2110 @1514 aintsome 1. 2111 @1515 eintothr 2. 2112 @1517 aintothr 1. 2113 @1518 eicourse 2. 2114 @1520 aicourse 1. 38 The SAS System 15:07 Thursday, June 21, 2012 2115 @1521 eihealth 2. 2116 @1523 aihealth 1. 2117 @1524 eigovern 2. 2118 @1526 aigovern 1. 2119 @1527 eisrchjb 2. 2120 @1529 aisrchjb 1. 2121 @1530 ronline 2. 2122 @1532 aonline 1. 2123 @1533 eintstil 2. 2124 @1535 aintstil 1. 2125 @1536 rdisab 2. 2126 @1538 epcdunv 2. 2127 @1540 eddelay 2. 2128 @1542 addelay 1. 2129 @1543 earmleg 2. 2130 @1545 aarmleg 1. 2131 @1546 erunplay 2. 2132 @1548 arunplay 1. 2133 @1549 eskoolwk 2. 2134 @1551 askoolwk 1. 2135 @1552 especed 2. 2136 @1554 aspeced 1. 2137 @1555 espednow 2. 2138 @1557 aspednow 1. 2139 @1558 elerndis 2. 2140 @1560 alerndis 1. 2141 @1561 ekmr 2. 2142 @1563 akmr 1. 2143 @1564 ekdevdis 2. 2144 @1566 akdevdis 1. 2145 @1567 eadhd 2. 2146 @1569 aadhd 1. 2147 @1570 eotherdc 2. 2148 @1572 aotherdc 1. 2149 @1573 eadhdmed 2. 2150 @1575 aadhdmed 1. 2151 @1576 ekcane 2. 2152 @1578 akcane 1. 2153 @1579 ekwchair 2. 2154 @1581 akwchair 1. 2155 @1582 ekhearad 2. 2156 @1584 akhearad 1. 2157 @1585 ekcane6 2. 2158 @1587 akcane6 1. 2159 @1588 ekseedif 2. 2160 @1590 akseedif 1. 2161 @1591 ekseenot 2. 2162 @1593 akseenot 1. 2163 @1594 ekheardf 2. 2164 @1596 akheardf 1. 2165 @1597 ekhearnt 2. 2166 @1599 akhearnt 1. 2167 @1600 ekspechd 2. 2168 @1602 akspechd 1. 2169 @1603 ekspechc 2. 2170 @1605 akspechc 1. 2171 @1606 esports 2. 2172 @1608 asports 1. 39 The SAS System 15:07 Thursday, June 21, 2012 2173 @1609 ekindif 2. 2174 @1611 akindif 1. 2175 @1612 ekinhelp 2. 2176 @1614 akinhelp 1. 2177 @1615 ekbeddif 2. 2178 @1617 akbeddif 1. 2179 @1618 ekbedhlp 2. 2180 @1620 akbedhlp 1. 2181 @1621 ekbathdf 2. 2182 @1623 akbathdf 1. 2183 @1624 ekbathh 2. 2184 @1626 akbathh 1. 2185 @1627 ekdressd 2. 2186 @1629 akdressd 1. 2187 @1630 ekdressh 2. 2188 @1632 akdressh 1. 2189 @1633 ekeatdif 2. 2190 @1635 akeatdif 1. 2191 @1636 ekeathlp 2. 2192 @1638 akeathlp 1. 2193 @1639 ektoiltd 2. 2194 @1641 aktoiltd 1. 2195 @1642 ektoilth 2. 2196 @1644 aktoilth 1. 2197 @1645 eksocial 2. 2198 @1647 aksocial 1. 2199 @1648 ekcond1 2. 2200 @1650 ekcond2 2. 2201 @1652 ekcond3 2. 2202 @1654 akcond 2. 2203 @1656 ekmotorv 2. 2204 @1658 akmotorv 1. 2205 @1659 rkdisab 2. 2206 @1661 eahbunv 2. 2207 @1663 ehealpla 2. 2208 @1665 ahealpla 1. 2209 @1666 enotplan 2. 2210 @1668 anotplan 1. 2211 @1669 enoelig1 2. 2212 @1671 enoelig2 2. 2213 @1673 enoelig3 2. 2214 @1675 enoelig4 2. 2215 @1677 anoelig 1. 2216 @1678 edencove 2. 2217 @1680 adencove 1. 2218 @1681 enocov1 2. 2219 @1683 enocov2 2. 2220 @1685 enocov3 2. 2221 @1687 enocov4 2. 2222 @1689 enocov5 2. 2223 @1691 enocov6 2. 2224 @1693 enocov7 2. 2225 @1695 enocov8 2. 2226 @1697 enocov9 2. 2227 @1699 enocov10 2. 2228 @1701 anocov 1. 2229 @1702 eoffemp1 2. 2230 @1704 eoffemp2 2. 40 The SAS System 15:07 Thursday, June 21, 2012 2231 @1706 eoffemp3 2. 2232 @1708 eoffemp4 2. 2233 @1710 eoffemp5 2. 2234 @1712 aoffemp 1. 2235 @1713 ewheheal 2. 2236 @1715 awheheal 1. 2237 @1716 ecovmemb 2. 2238 @1718 acovmemb 1. 2239 @1719 ewhocov1 2. 2240 @1721 ewhocov2 2. 2241 @1723 ewhocov3 2. 2242 @1725 ewhocov4 2. 2243 @1727 ewhocov5 2. 2244 @1729 awhocov 1. 2245 @1730 echpnm01 4. 2246 @1734 echcov01 2. 2247 @1736 achcov01 1. 2248 @1737 echpnm02 4. 2249 @1741 echcov02 2. 2250 @1743 achcov02 1. 2251 @1744 echpnm03 4. 2252 @1748 echcov03 2. 2253 @1750 achcov03 1. 2254 @1751 echpnm04 4. 2255 @1755 echcov04 2. 2256 @1757 achcov04 1. 2257 @1758 echpnm05 4. 2258 @1762 echcov05 2. 2259 @1764 achcov05 1. 2260 @1765 echpnm06 4. 2261 @1769 echcov06 2. 2262 @1771 achcov06 1. 2263 @1772 echpnm07 4. 2264 @1776 echcov07 2. 2265 @1778 achcov07 1. 2266 @1779 tamtplan 4. 2267 @1783 aamtplan 1. 2268 @1784 etimplan 2. 2269 @1786 atimplan 1. 2270 @1787 etaxplan 2. 2271 @1789 ataxplan 1. 2272 @1790 epreminc 2. 2273 @1792 apreminc 1. 2274 @1793 eleftpla 2. 2275 @1795 aleftpla 1. 2276 @1796 eplanmed 2. 2277 @1798 aplanmed 1. 2278 @1799 eoppch1 2. 2279 @1801 eoppch2 2. 2280 @1803 eoppch3 2. 2281 @1805 eoppch4 2. 2282 @1807 eoppch5 2. 2283 @1809 aoppch 1. 2284 @1810 ehashmo 2. 2285 @1812 ahashmo 1. 2286 @1813 esigndoc 2. 2287 @1815 asigndoc 1. 2288 @1816 ebookdoc 2. 41 The SAS System 15:07 Thursday, June 21, 2012 2289 @1818 abookdoc 1. 2290 @1819 ewhoref 2. 2291 @1821 awhoref 1. 2292 @1822 eoptions 2. 2293 @1824 aoptions 1. 2294 @1825 echoice1 2. 2295 @1827 achoice1 1. 2296 @1828 echoice2 2. 2297 @1830 achoice2 1. 2298 @1831 eempmate 2. 2299 @1833 aempmate 1. 2300 @1834 ematcomp 2. 2301 @1836 amatcomp 1. 2302 @1837 econdnot 2. 2303 @1839 acondnot 1. 2304 @1840 eofflong 2. 2305 @1842 aofflong 1. 2306 @1843 ecovlong 2. 2307 @1845 acovlong 1. 2308 @1846 eempcost 2. 2309 @1848 aempcost 1. 2310 @1849 tamtlong 3. 2311 @1852 aamtlong 1. 2312 @1853 etimeamt 2. 2313 @1855 atimeamt 1. 2314 @1856 eretheal 2. 2315 @1858 aretheal 1. 2316 @1859 eretcont 2. 2317 @1861 aretcont 1. 2318 @1862 eretpays 2. 2319 @1864 aretpays 1. 2320 @1865 eretplan 2. 2321 @1867 aretplan 1. 2322 @1868 ewhopln1 2. 2323 @1870 ewhopln2 2. 2324 @1872 ewhopln3 2. 2325 @1874 ewhopln4 2. 2326 @1876 ewhopln5 2. 2327 @1878 awhopln 1. 2328 @1879 epaidjob 2. 2329 @1881 apaidjob 1. 2330 @1882 eformemp 2. 2331 @1884 aformemp 1. 2332 @1885 elastcov 2. 2333 @1887 alastcov 1. 2334 @1888 econleft 2. 2335 @1890 aconleft 1. 2336 @1891 econtret 2. 2337 @1893 acontret 1. 2338 @1894 ewhyno1 2. 2339 @1896 ewhyno2 2. 2340 @1898 ewhyno3 2. 2341 @1900 ewhyno4 2. 2342 @1902 ewhyno5 2. 2343 @1904 ewhyno6 2. 2344 @1906 ewhyno7 2. 2345 @1908 ewhyno8 2. 2346 @1910 ewhyno9 2. 42 The SAS System 15:07 Thursday, June 21, 2012 2347 @1912 ewhyno10 2. 2348 @1914 ewhyno11 2. 2349 @1916 ewhyno12 2. 2350 @1918 ewhyno13 2. 2351 @1920 awhyno 1. 2352 @1921 tleftjob 4. 2353 @1925 aleftjob 1. 2354 @1926 eyearemp 2. 2355 @1928 ayearemp 1. 2356 @1929 emnthemp 2. 2357 @1931 amnthemp 1. 2358 @1932 ecovunio 2. 2359 @1934 acovunio 1. 2360 @1935 thbind 4. 2361 @1939 thbocc 4. 2362 @1943 eempljob 2. 2363 @1945 aempljob 1. 2364 @1946 egovrnmt 2. 2365 @1948 agovrnmt 1. 2366 @1949 eemptype 2. 2367 @1951 aemptype 1. 2368 @1952 tendsala 5. 2369 @1957 aendsala 1. 2370 @1958 temploca 2. 2371 @1960 aemploca 1. 2372 @1961 efewer20 2. 2373 @1963 afewer20 1. 2374 @1964 eexmedic 2. 2375 @1966 aexmedic 1. 2376 @1967 epostmed 2. 2377 @1969 apostmed 1. 2378 @1970 eawbunv 2. 2379 @1972 radwash 2. 2380 @1974 aadwash 1. 2381 @1975 raddryr 2. 2382 @1977 aaddryr 1. 2383 @1978 eaddish 2. 2384 @1980 aaddish 1. 2385 @1981 eadrefr 2. 2386 @1983 aadrefr 1. 2387 @1984 eadfrz 2. 2388 @1986 aadfrz 1. 2389 @1987 eadtelv 2. 2390 @1989 aadtelv 1. 2391 @1990 eadstov 2. 2392 @1992 aadstov 1. 2393 @1993 eadmicr 2. 2394 @1995 aadmicr 1. 2395 @1996 eadvcr 2. 2396 @1998 aadvcr 1. 2397 @1999 eadair 2. 2398 @2001 aadair 1. 2399 @2002 eadcomp 2. 2400 @2004 aadcomp 1. 2401 @2005 eadcell 2. 2402 @2007 aadcell 1. 2403 @2008 radphon 2. 2404 @2010 aadphon 1. 43 The SAS System 15:07 Thursday, June 21, 2012 2405 @2011 tahroom 2. 2406 @2013 aahroom 1. 2407 @2014 eahpest 2. 2408 @2016 eahleak 2. 2409 @2018 eahwind 2. 2410 @2020 eahwire 2. 2411 @2022 eahplum 2. 2412 @2024 eahcrac 2. 2413 @2026 eahhole 2. 2414 @2028 aahouse 1. 2415 @2029 eahrepr 2. 2416 @2031 aahrepr 1. 2417 @2032 eahspac 2. 2418 @2034 aahspac 1. 2419 @2035 eahfurn 2. 2420 @2037 aahfurn 1. 2421 @2038 eahwarm 2. 2422 @2040 aahwarm 1. 2423 @2041 eahcool 2. 2424 @2043 aahcool 1. 2425 @2044 eahpriv 2. 2426 @2046 aahpriv 1. 2427 @2047 eahsat 2. 2428 @2049 aahsat 1. 2429 @2050 rahmove 2. 2430 @2052 aahmove 1. 2431 @2053 eacwalk 2. 2432 @2055 aacwalk 1. 2433 @2056 eacstay 2. 2434 @2058 aacstay 1. 2435 @2059 eacwith 2. 2436 @2061 aacwith 1. 2437 @2062 eacarry 2. 2438 @2064 aacarry 1. 2439 @2065 eacnsaf 2. 2440 @2067 aacnsaf 1. 2441 @2068 eachsaf 2. 2442 @2070 aachsaf 1. 2443 @2071 racwdog 2. 2444 @2073 aacwdog 1. 2445 @2074 eacalrm 2. 2446 @2076 aacalrm 1. 2447 @2077 racmove 2. 2448 @2079 aacmove 1. 2449 @2080 eantraf 2. 2450 @2082 eanstrt 2. 2451 @2084 eantrsh 2. 2452 @2086 eanaban 2. 2453 @2088 eanind 2. 2454 @2090 eanodor 2. 2455 @2092 aancond 1. 2456 @2093 eanghbr 2. 2457 @2095 aanghbr 1. 2458 @2096 eansat 2. 2459 @2098 aansat 1. 2460 @2099 ranmove 2. 2461 @2101 aanmove 1. 2462 @2102 eapschl 2. 44 The SAS System 15:07 Thursday, June 21, 2012 2463 @2104 aapschl 1. 2464 @2105 eappriv 2. 2465 @2107 aappriv 1. 2466 @2108 eapmagn 2. 2467 @2110 aapmagn 1. 2468 @2111 eappubs 2. 2469 @2113 aappubs 1. 2470 @2114 eaphoms 2. 2471 @2116 aaphoms 1. 2472 @2117 eapnosc 2. 2473 @2119 aapnosc 1. 2474 @2120 eapdiff 2. 2475 @2122 aapdiff 1. 2476 @2123 eaphosp 2. 2477 @2125 aaphosp 1. 2478 @2126 eapolic 2. 2479 @2128 aapolic 1. 2480 @2129 eapfire 2. 2481 @2131 aapfire 1. 2482 @2132 eaptran 2. 2483 @2134 aaptran 1. 2484 @2135 eapsat 2. 2485 @2137 aapsat 1. 2486 @2138 rapmove 2. 2487 @2140 aapmove 1. 2488 @2141 eabmeet 2. 2489 @2143 aabmeet 1. 2490 @2144 eabrent 2. 2491 @2146 aabrent 1. 2492 @2147 rabrhlp1 2. 2493 @2149 rabrhlp2 2. 2494 @2151 rabrhlp3 2. 2495 @2153 rabrhlp4 2. 2496 @2155 rabrhlp5 2. 2497 @2157 aabrhlp 1. 2498 @2158 eabevct 2. 2499 @2160 aabevct 1. 2500 @2161 rabehlp1 2. 2501 @2163 rabehlp2 2. 2502 @2165 rabehlp3 2. 2503 @2167 rabehlp4 2. 2504 @2169 rabehlp5 2. 2505 @2171 aabehlp 1. 2506 @2172 eabgas 2. 2507 @2174 aabgas 1. 2508 @2175 rabghlp1 2. 2509 @2177 rabghlp2 2. 2510 @2179 rabghlp3 2. 2511 @2181 rabghlp4 2. 2512 @2183 rabghlp5 2. 2513 @2185 aabghlp 1. 2514 @2186 eabcut 2. 2515 @2188 aabcut 1. 2516 @2189 rabchlp1 2. 2517 @2191 rabchlp2 2. 2518 @2193 rabchlp3 2. 2519 @2195 rabchlp4 2. 2520 @2197 rabchlp5 2. 45 The SAS System 15:07 Thursday, June 21, 2012 2521 @2199 aabchlp 1. 2522 @2200 eabphon 2. 2523 @2202 aabphon 1. 2524 @2203 rabphlp1 2. 2525 @2205 rabphlp2 2. 2526 @2207 rabphlp3 2. 2527 @2209 rabphlp4 2. 2528 @2211 rabphlp5 2. 2529 @2213 aabphlp 1. 2530 @2214 eabdoct 2. 2531 @2216 aabdoct 1. 2532 @2217 rabdhlp1 2. 2533 @2219 rabdhlp2 2. 2534 @2221 rabdhlp3 2. 2535 @2223 rabdhlp4 2. 2536 @2225 rabdhlp5 2. 2537 @2227 aabdhlp 1. 2538 @2228 eabdent 2. 2539 @2230 aabdent 1. 2540 @2231 rabthlp1 2. 2541 @2233 rabthlp2 2. 2542 @2235 rabthlp3 2. 2543 @2237 rabthlp4 2. 2544 @2239 rabthlp5 2. 2545 @2241 aabthlp 1. 2546 @2242 eahlpfm 2. 2547 @2244 aahlpfm 1. 2548 @2245 eahlpfr 2. 2549 @2247 aahlpfr 1. 2550 @2248 eahlpag 2. 2551 @2250 aahlpag 1. 2552 @2251 eafood1 2. 2553 @2253 aafood1 1. 2554 @2254 eafdm1 2. 2555 @2256 eafdm2 2. 2556 @2258 eafdm3 2. 2557 @2260 eafdm4 2. 2558 @2262 eafdm5 2. 2559 @2264 aafdm 1. 2560 @2265 eaflast 2. 2561 @2267 aaflast 1. 2562 @2268 eafbaln 2. 2563 @2270 aafbaln 1. 2564 @2271 eafchld 2. 2565 @2273 aafchld 1. 2566 @2274 eafskip 2. 2567 @2276 aafskip 1. 2568 @2277 eafless 2. 2569 @2279 aafless 1. 2570 @2280 eafday 2. 2571 @2282 aafday 1. 2572 ; 2573 2574 **------------------------------------------------; 2575 ** The PROC FORMAT statement will store the formats ; 2576 ** in a sas data set called fsippp08putm6 ; 2577 ** To use the stored formats in a subsequent program, ; 2578 ** use code like the following; 46 The SAS System 15:07 Thursday, June 21, 2012 2579 2580 ** proc format cntlin=library.fsppp08putm6; 2581 ** PROC freq; 2582 ** tables pesex ; 2583 ** format pesex P135L.; 2584 2585 ** For more information, consult PROC FORMAT in the SAS Procedures Guide ; 2586 **-----------------------------------------------; 2587 NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/sipp/2008/p08putm6.zip " NOTE: 88164 records were read from the infile DATAFILE. The minimum record length was 2284. The maximum record length was 2284. NOTE: The data set LIBRARY.SIPPP08PUTM6 has 88164 observations and 1265 variables. NOTE: DATA statement used (Total process time): real time 6.84 seconds cpu time 3.47 seconds 2588 PROC FORMAT cntlout=library.fsppp08putm6; 2589 2590 ; 2591 VALUE spanel (default=32) 2592 2008 = "Panel Year" 2593 ; NOTE: Format SPANEL has been output. 2594 VALUE tfipsst (default=32) 2595 1 = "Alabama" 2596 2 = "Alaska" 2597 4 = "Arizona" 2598 5 = "Arkansas" 2599 6 = "California" 2600 8 = "Colorado" 2601 9 = "Connecticut" 2602 10 = "Delaware" 2603 11 = "DC" 2604 12 = "Florida" 2605 13 = "Georgia" 2606 15 = "Hawaii" 2607 16 = "Idaho" 2608 17 = "Illinois" 2609 18 = "Indiana" 2610 19 = "Iowa" 2611 20 = "Kansas" 2612 21 = "Kentucky" 2613 22 = "Louisiana" 2614 23 = "Maine" 2615 24 = "Maryland" 2616 25 = "Massachusetts" 2617 26 = "Michigan" 2618 27 = "Minnesota" 2619 28 = "Mississippi" 2620 29 = "Missouri" 2621 30 = "Montana" 2622 31 = "Nebraska" 47 The SAS System 15:07 Thursday, June 21, 2012 2623 32 = "Nevada" 2624 33 = "New Hampshire" 2625 34 = "New Jersey" 2626 35 = "New Mexico" 2627 36 = "New York" 2628 37 = "North Carolina" 2629 38 = "North Dakota" 2630 39 = "Ohio" 2631 40 = "Oklahoma" 2632 41 = "Oregon" 2633 42 = "Pennsylvania" 2634 44 = "Rhode Island" 2635 45 = "South Carolina" 2636 46 = "South Dakota" 2637 47 = "Tennessee" 2638 48 = "Texas" 2639 49 = "Utah" 2640 50 = "Vermont" 2641 51 = "Virginia" 2642 53 = "Washington" 2643 54 = "West Virginia" 2644 55 = "Wisconsin" 2645 56 = "Wyoming" 2646 ; NOTE: Format TFIPSST has been output. 2647 VALUE eoutcome (default=32) 2648 201 = "Completed interview" 2649 203 = "Compl. partial- missing data; no" 2650 207 = "Complete partial - TYPE-Z; no" 2651 213 = "TYPE-A, language problem" 2652 216 = "TYPE-A, no one home (noh)" 2653 217 = "TYPE-A, temporarily absent (ta)" 2654 218 = "TYPE-A, hh refused" 2655 219 = "TYPE-A, other occupied (specify)" 2656 234 = "TYPE-B, entire hh institut. or" 2657 248 = "TYPE-C, other (specify)" 2658 249 = "TYPE-C, sample adjustment" 2659 250 = "TYPE-C, hh deceased" 2660 251 = "TYPE-C, moved out of country" 2661 252 = "TYPE-C, living in armed forces" 2662 253 = "TYPE-C, on active duty in Armed" 2663 254 = "TYPE-C, no one over age 15 years" 2664 255 = "TYPE-C, no Wave 1 persons" 2665 260 = "TYPE-D, moved address unknown" 2666 261 = "TYPE-D, moved within U.S. but" 2667 262 = "TYPE-C, merged with another SIPP" 2668 270 = "TYPE-C, mover, no longer located" 2669 271 = "TYPE-C, mover, new address" 2670 280 = "TYPE-D, mover, no longer located" 2671 ; NOTE: Format EOUTCOME has been output. 2672 VALUE rfid2l (default=32) 2673 -1 = "Not in Universe" 2674 ; NOTE: Format RFID2L has been output. 2675 VALUE epopstat (default=32) 2676 1 = "Adult (15 years of age or older)" 2677 2 = "Child (Under 15 years of age)" 48 The SAS System 15:07 Thursday, June 21, 2012 2678 ; NOTE: Format EPOPSTAT has been output. 2679 VALUE eppintvw (default=32) 2680 1 = "Interview (self)" 2681 2 = "Interview (proxy)" 2682 3 = "Noninterview - Type Z" 2683 4 = "Noninterview - pseudo Type Z." 2684 5 = "Children under 15 during" 2685 ; NOTE: Format EPPINTVW has been output. 2686 VALUE eppmis4l (default=32) 2687 1 = "Interview" 2688 2 = "Non-interview" 2689 ; NOTE: Format EPPMIS4L has been output. 2690 VALUE esex (default=32) 2691 1 = "Male" 2692 2 = "Female" 2693 ; NOTE: Format ESEX has been output. 2694 VALUE erace (default=32) 2695 1 = "White alone" 2696 2 = "Black alone" 2697 3 = "Asian alone" 2698 4 = "Residual" 2699 ; NOTE: Format ERACE has been output. 2700 VALUE eorigin (default=32) 2701 1 = "Yes" 2702 2 = "No" 2703 ; NOTE: Format EORIGIN has been output. 2704 VALUE errp (default=32) 2705 1 = "Reference person with related" 2706 2 = "Reference Person without related" 2707 3 = "Spouse of reference person" 2708 4 = "Child of reference person" 2709 5 = "Grandchild of reference person" 2710 6 = "Parent of reference person" 2711 7 = "Brother/sister of reference person" 2712 8 = "Other relative of reference person" 2713 9 = "Foster child of reference person" 2714 10 = "Unmarried partner of reference" 2715 11 = "Housemate/roommate" 2716 12 = "Roomer/boarder" 2717 13 = "Other non-relative of reference" 2718 ; NOTE: Format ERRP has been output. 2719 VALUE tage (default=32) 2720 0 = "Less than 1 full year old" 2721 ; NOTE: Format TAGE has been output. 2722 VALUE ems (default=32) 2723 1 = "Married, spouse present" 2724 2 = "Married, spouse absent" 2725 3 = "Widowed" 2726 4 = "Divorced" 2727 5 = "Separated" 49 The SAS System 15:07 Thursday, June 21, 2012 2728 6 = "Never Married" 2729 ; NOTE: Format EMS has been output. 2730 VALUE epnspous (default=32) 2731 9999 = "Spouse not in household or person" 2732 ; NOTE: Format EPNSPOUS has been output. 2733 VALUE epnmom (default=32) 2734 9999 = "No mother in household" 2735 ; NOTE: Format EPNMOM has been output. 2736 VALUE epndad (default=32) 2737 9999 = "No father in household" 2738 ; NOTE: Format EPNDAD has been output. 2739 VALUE epnguard (default=32) 2740 -1 = "Not in Universe" 2741 9999 = "Guardian not in household" 2742 ; NOTE: Format EPNGUARD has been output. 2743 VALUE rdesgpnt (default=32) 2744 -1 = "Not in Universe" 2745 1 = "Yes" 2746 2 = "No" 2747 ; NOTE: Format RDESGPNT has been output. 2748 VALUE eeducate (default=32) 2749 -1 = "Not in Universe" 2750 31 = "Less Than 1st Grade" 2751 32 = "1st, 2nd, 3rd or 4th grade" 2752 33 = "5th Or 6th Grade" 2753 34 = "7th Or 8th Grade" 2754 35 = "9th Grade" 2755 36 = "10th Grade" 2756 37 = "11th Grade" 2757 38 = "12th grade, no diploma" 2758 39 = "High School Graduate - (diploma" 2759 40 = "Some college, but no degree" 2760 41 = "Diploma or certificate from a" 2761 43 = "Associate (2-yr) college degree" 2762 44 = "Bachelor's degree (for example:" 2763 45 = "Master's degree (For example: MA," 2764 46 = "Professional School degree (for" 2765 47 = "Doctorate degree (for example:" 2766 ; NOTE: Format EEDUCATE has been output. 2767 VALUE sinthhid (default=32) 2768 0 = "Not In Universe" 2769 ; NOTE: Format SINTHHID has been output. 2770 VALUE eacsunv (default=32) 2771 -1 = "Not in Universe" 2772 1 = "In universe" 2773 ; NOTE: Format EACSUNV has been output. 2774 VALUE ecskid0v (default=32) 2775 -1 = "Not in Universe" 2776 ; 50 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format ECSKID0V has been output. 2777 VALUE ecskid0k (default=32) 2778 -1 = "Not in Universe" 2779 ; NOTE: Format ECSKID0K has been output. 2780 VALUE ecskid0l (default=32) 2781 -1 = "Not in Universe" 2782 ; NOTE: Format ECSKID0L has been output. 2783 VALUE ecskid0m (default=32) 2784 -1 = "Not in Universe" 2785 ; NOTE: Format ECSKID0M has been output. 2786 VALUE ecskid0n (default=32) 2787 -1 = "Not in Universe" 2788 ; NOTE: Format ECSKID0N has been output. 2789 VALUE ecskid0o (default=32) 2790 -1 = "Not in Universe" 2791 ; NOTE: Format ECSKID0O has been output. 2792 VALUE ecskid0p (default=32) 2793 -1 = "Not in Universe" 2794 ; NOTE: Format ECSKID0P has been output. 2795 VALUE ecskid0q (default=32) 2796 -1 = "Not in Universe" 2797 ; NOTE: Format ECSKID0Q has been output. 2798 VALUE ecskid0r (default=32) 2799 -1 = "Not in Universe" 2800 ; NOTE: Format ECSKID0R has been output. 2801 VALUE ecskid1v (default=32) 2802 -1 = "Not in Universe" 2803 ; NOTE: Format ECSKID1V has been output. 2804 VALUE eynoab0v (default=32) 2805 -1 = "Not in Universe" 2806 1 = "Other parent has died" 2807 2 = "Both parents live in the household" 2808 3 = "Parents are separated/divorced" 2809 4 = "Don't want contact with child's" 2810 5 = "Don't know where child's other" 2811 6 = "Other Parent lives elsewhere" 2812 7 = "Other parent legally terminated" 2813 8 = "Other parent is no longer" 2814 9 = "Child was adopted by a single" 2815 10 = "Other" 2816 ; NOTE: Format EYNOAB0V has been output. 2817 VALUE eynoab0k (default=32) 2818 -1 = "Not in Universe" 2819 1 = "Other parent has died" 2820 2 = "Both parents live in the household" 2821 3 = "Parents are separated/divorced" 2822 4 = "Don't want contact with child's" 2823 5 = "Don't know where child's other" 51 The SAS System 15:07 Thursday, June 21, 2012 2824 6 = "Other Parent lives elsewhere" 2825 7 = "Other parent legally terminated" 2826 8 = "Other parent is no longer" 2827 9 = "Child was adopted by a single" 2828 10 = "Other" 2829 ; NOTE: Format EYNOAB0K has been output. 2830 VALUE eynoab0l (default=32) 2831 -1 = "Not in Universe" 2832 1 = "Other parent has died" 2833 2 = "Both parents live in the household" 2834 3 = "Parents are separated/divorced" 2835 4 = "Don't want contact with child's" 2836 5 = "Don't know where child's other" 2837 6 = "Other Parent lives elsewhere" 2838 7 = "Other parent legally terminated" 2839 8 = "Other parent is no longer" 2840 9 = "Child was adopted by a single" 2841 10 = "Other" 2842 ; NOTE: Format EYNOAB0L has been output. 2843 VALUE eynoab0m (default=32) 2844 -1 = "Not in Universe" 2845 1 = "Other parent has died" 2846 2 = "Both parents live in the household" 2847 3 = "Parents are separated/divorced" 2848 4 = "Don't want contact with child's" 2849 5 = "Don't know where child's other" 2850 6 = "Other Parent lives elsewhere" 2851 7 = "Other parent legally terminated" 2852 8 = "Other parent is no longer" 2853 9 = "Child was adopted by a single" 2854 10 = "Other" 2855 ; NOTE: Format EYNOAB0M has been output. 2856 VALUE eynoab0n (default=32) 2857 -1 = "Not in Universe" 2858 1 = "Other parent has died" 2859 2 = "Both parents live in the household" 2860 3 = "Parents are separated/divorced" 2861 4 = "Don't want contact with child's" 2862 5 = "Don't know where child's other" 2863 6 = "Other Parent lives elsewhere" 2864 7 = "Other parent legally terminated" 2865 8 = "Other parent is no longer" 2866 9 = "Child was adopted by a single" 2867 10 = "Other" 2868 ; NOTE: Format EYNOAB0N has been output. 2869 VALUE eynoab0o (default=32) 2870 -1 = "Not in Universe" 2871 1 = "Other parent has died" 2872 2 = "Both parents live in the household" 2873 3 = "Parents are separated/divorced" 2874 4 = "Don't want contact with child's" 2875 5 = "Don't know where child's other" 2876 6 = "Other Parent lives elsewhere" 2877 7 = "Other parent legally terminated" 52 The SAS System 15:07 Thursday, June 21, 2012 2878 8 = "Other parent is no longer" 2879 9 = "Child was adopted by a single" 2880 10 = "Other" 2881 ; NOTE: Format EYNOAB0O has been output. 2882 VALUE eynoab0p (default=32) 2883 -1 = "Not in Universe" 2884 1 = "Other parent has died" 2885 2 = "Both parents live in the household" 2886 3 = "Parents are separated/divorced" 2887 4 = "Don't want contact with child's" 2888 5 = "Don't know where child's other" 2889 6 = "Other Parent lives elsewhere" 2890 7 = "Other parent legally terminated" 2891 8 = "Other parent is no longer" 2892 9 = "Child was adopted by a single" 2893 10 = "Other" 2894 ; NOTE: Format EYNOAB0P has been output. 2895 VALUE eynoab0q (default=32) 2896 -1 = "Not in Universe" 2897 1 = "Other parent has died" 2898 2 = "Both parents live in the household" 2899 3 = "Parents are separated/divorced" 2900 4 = "Don't want contact with child's" 2901 5 = "Don't know where child's other" 2902 6 = "Other Parent lives elsewhere" 2903 7 = "Other parent legally terminated" 2904 8 = "Other parent is no longer" 2905 9 = "Child was adopted by a single" 2906 10 = "Other" 2907 ; NOTE: Format EYNOAB0Q has been output. 2908 VALUE eynoab0r (default=32) 2909 -1 = "Not in Universe" 2910 1 = "Other parent has died" 2911 2 = "Both parents live in the household" 2912 3 = "Parents are separated/divorced" 2913 4 = "Don't want contact with child's" 2914 5 = "Don't know where child's other" 2915 6 = "Other Parent lives elsewhere" 2916 7 = "Other parent legally terminated" 2917 8 = "Other parent is no longer" 2918 9 = "Child was adopted by a single" 2919 10 = "Other" 2920 ; NOTE: Format EYNOAB0R has been output. 2921 VALUE eynoab1v (default=32) 2922 -1 = "Not in Universe" 2923 1 = "Other parent has died" 2924 2 = "Both parents live in the household" 2925 3 = "Parents are separated/divorced" 2926 4 = "Don't want contact with child's" 2927 5 = "Don't know where child's other" 2928 6 = "Other Parent lives elsewhere" 2929 7 = "Other parent legally terminated" 2930 8 = "Other parent is no longer" 2931 9 = "Child was adopted by a single" 53 The SAS System 15:07 Thursday, June 21, 2012 2932 10 = "Other" 2933 ; NOTE: Format EYNOAB1V has been output. 2934 VALUE aynoab (default=32) 2935 0 = "Not imputed" 2936 1 = "Statistical imputation (hot deck)" 2937 2 = "Cold deck imputation" 2938 3 = "Logical imputation (derivation)" 2939 ; NOTE: Format AYNOAB has been output. 2940 VALUE recrdflg (default=32) 2941 -1 = "Not in Universe" 2942 1 = "Yes" 2943 2 = "No" 2944 ; NOTE: Format RECRDFLG has been output. 2945 VALUE ecsflg0g (default=32) 2946 -1 = "Not in Universe" 2947 1 = "Covered by the most recent child" 2948 2 = "Covered by some other child" 2949 3 = "Not covered by a child support" 2950 4 = "Not eligible for supplement" 2951 ; NOTE: Format ECSFLG0G has been output. 2952 VALUE ecsflg0k (default=32) 2953 -1 = "Not in Universe" 2954 1 = "Covered by the most recent child" 2955 2 = "Covered by some other child" 2956 3 = "Not covered by a child support" 2957 4 = "Not eligible for supplement" 2958 ; NOTE: Format ECSFLG0K has been output. 2959 VALUE ecsflg0l (default=32) 2960 -1 = "Not in Universe" 2961 1 = "Covered by the most recent child" 2962 2 = "Covered by some other child" 2963 3 = "Not covered by a child support" 2964 4 = "Not eligible for supplement" 2965 ; NOTE: Format ECSFLG0L has been output. 2966 VALUE ecsflg0m (default=32) 2967 -1 = "Not in Universe" 2968 1 = "Covered by the most recent child" 2969 2 = "Covered by some other child" 2970 3 = "Not covered by a child support" 2971 4 = "Not eligible for supplement" 2972 ; NOTE: Format ECSFLG0M has been output. 2973 VALUE ecsflg0n (default=32) 2974 -1 = "Not in Universe" 2975 1 = "Covered by the most recent child" 2976 2 = "Covered by some other child" 2977 3 = "Not covered by a child support" 2978 4 = "Not eligible for supplement" 2979 ; NOTE: Format ECSFLG0N has been output. 2980 VALUE ecsflg0o (default=32) 2981 -1 = "Not in Universe" 54 The SAS System 15:07 Thursday, June 21, 2012 2982 1 = "Covered by the most recent child" 2983 2 = "Covered by some other child" 2984 3 = "Not covered by a child support" 2985 4 = "Not eligible for supplement" 2986 ; NOTE: Format ECSFLG0O has been output. 2987 VALUE ecsflg0p (default=32) 2988 -1 = "Not in Universe" 2989 1 = "Covered by the most recent child" 2990 2 = "Covered by some other child" 2991 3 = "Not covered by a child support" 2992 4 = "Not eligible for supplement" 2993 ; NOTE: Format ECSFLG0P has been output. 2994 VALUE ecsflg0q (default=32) 2995 -1 = "Not in Universe" 2996 1 = "Covered by the most recent child" 2997 2 = "Covered by some other child" 2998 3 = "Not covered by a child support" 2999 4 = "Not eligible for supplement" 3000 ; NOTE: Format ECSFLG0Q has been output. 3001 VALUE ecsflg0r (default=32) 3002 -1 = "Not in Universe" 3003 1 = "Covered by the most recent child" 3004 2 = "Covered by some other child" 3005 3 = "Not covered by a child support" 3006 4 = "Not eligible for supplement" 3007 ; NOTE: Format ECSFLG0R has been output. 3008 VALUE ecsflg1g (default=32) 3009 -1 = "Not in Universe" 3010 1 = "Covered by the most recent child" 3011 2 = "Covered by some other child" 3012 3 = "Not covered by a child support" 3013 4 = "Not eligible for supplement" 3014 ; NOTE: Format ECSFLG1G has been output. 3015 VALUE acsflg (default=32) 3016 0 = "Not imputed" 3017 1 = "Statistical imputation (hot deck)" 3018 2 = "Cold deck imputation" 3019 3 = "Logical imputation (derivation)" 3020 ; NOTE: Format ACSFLG has been output. 3021 VALUE ranyagre (default=32) 3022 -1 = "Not in Universe" 3023 1 = "Yes" 3024 2 = "No" 3025 ; NOTE: Format RANYAGRE has been output. 3026 VALUE tnumagr (default=32) 3027 -1 = "Not in Universe" 3028 2 = "Number of agreements" 3029 ; NOTE: Format TNUMAGR has been output. 3030 VALUE anumagr (default=32) 3031 0 = "Not imputed" 55 The SAS System 15:07 Thursday, June 21, 2012 3032 1 = "Statistical imputation (hot deck)" 3033 2 = "Cold deck imputation" 3034 3 = "Logical imputation (derivation)" 3035 ; NOTE: Format ANUMAGR has been output. 3036 VALUE etypeagr (default=32) 3037 -1 = "Not in Universe" 3038 1 = "Voluntary written agreement" 3039 2 = "Court-ordered agreement" 3040 3 = "Other type of written agreement" 3041 4 = "A non-written verbal agreement" 3042 ; NOTE: Format ETYPEAGR has been output. 3043 VALUE atypeagr (default=32) 3044 0 = "Not imputed" 3045 1 = "Statistical imputation (hot deck)" 3046 2 = "Cold deck imputation" 3047 3 = "Logical imputation (derivation)" 3048 ; NOTE: Format ATYPEAGR has been output. 3049 VALUE efirsyrr (default=32) 3050 -1 = "Not in Universe" 3051 ; NOTE: Format EFIRSYRR has been output. 3052 VALUE afirsyrr (default=32) 3053 0 = "Not imputed" 3054 1 = "Statistical imputation (hot deck)" 3055 2 = "Cold deck imputation" 3056 3 = "Logical imputation (derivation)" 3057 ; NOTE: Format AFIRSYRR has been output. 3058 VALUE tamtag1r (default=32) 3059 0 = "None or not in universe" 3060 ; NOTE: Format TAMTAG1R has been output. 3061 VALUE eamtag1r (default=32) 3062 -1 = "Not in Universe" 3063 1 = "Per week" 3064 2 = "Biweekly" 3065 3 = "Per month" 3066 4 = "Per year" 3067 ; NOTE: Format EAMTAG1R has been output. 3068 VALUE aamtag1r (default=32) 3069 0 = "Not imputed" 3070 1 = "Statistical imputation (hot deck)" 3071 2 = "Cold deck imputation" 3072 3 = "Logical imputation (derivation)" 3073 ; NOTE: Format AAMTAG1R has been output. 3074 VALUE eevrchgr (default=32) 3075 -1 = "Not in Universe" 3076 1 = "Yes" 3077 2 = "No" 3078 ; NOTE: Format EEVRCHGR has been output. 3079 VALUE aevrchgr (default=32) 3080 0 = "Not imputed" 56 The SAS System 15:07 Thursday, June 21, 2012 3081 1 = "Statistical imputation (hot deck)" 3082 2 = "Cold deck imputation" 3083 3 = "Logical imputation (derivation)" 3084 ; NOTE: Format AEVRCHGR has been output. 3085 VALUE eyrchngr (default=32) 3086 -1 = "Not in Universe" 3087 ; NOTE: Format EYRCHNGR has been output. 3088 VALUE ayrchngr (default=32) 3089 0 = "Not imputed" 3090 1 = "Statistical imputation (hot deck)" 3091 2 = "Cold deck imputation" 3092 3 = "Logical imputation (derivation)" 3093 ; NOTE: Format AYRCHNGR has been output. 3094 VALUE tamtcg1r (default=32) 3095 0 = "None or not in universe" 3096 ; NOTE: Format TAMTCG1R has been output. 3097 VALUE eamtcg1r (default=32) 3098 -1 = "Not in Universe" 3099 1 = "Per week" 3100 2 = "Biweekly" 3101 3 = "Per month" 3102 4 = "Per year" 3103 ; NOTE: Format EAMTCG1R has been output. 3104 VALUE aamtcg1r (default=32) 3105 0 = "Not imputed" 3106 1 = "Statistical imputation (hot deck)" 3107 2 = "Cold deck imputation" 3108 3 = "Logical imputation (derivation)" 3109 ; NOTE: Format AAMTCG1R has been output. 3110 VALUE ewhochgd (default=32) 3111 -1 = "Not in Universe" 3112 1 = "Yes" 3113 2 = "No" 3114 ; NOTE: Format EWHOCHGD has been output. 3115 VALUE awhochgd (default=32) 3116 0 = "Not imputed" 3117 1 = "Statistical imputation (hot deck)" 3118 2 = "Cold deck imputation" 3119 3 = "Logical imputation (derivation)" 3120 ; NOTE: Format AWHOCHGD has been output. 3121 VALUE epaydued (default=32) 3122 -1 = "Not in Universe" 3123 1 = "Yes" 3124 2 = "No" 3125 ; NOTE: Format EPAYDUED has been output. 3126 VALUE apaydued (default=32) 3127 0 = "Not imputed" 3128 1 = "Statistical imputation (hot deck)" 3129 2 = "Cold deck imputation" 57 The SAS System 15:07 Thursday, June 21, 2012 3130 3 = "Logical imputation (derivation)" 3131 ; NOTE: Format APAYDUED has been output. 3132 VALUE eynodued (default=32) 3133 -1 = "Not in Universe" 3134 1 = "Child(ren) over the age limit" 3135 2 = "Other parent not working" 3136 3 = "Other parent in jail or" 3137 4 = "Payment suspended by court or" 3138 5 = "Other reason" 3139 ; NOTE: Format EYNODUED has been output. 3140 VALUE aynodued (default=32) 3141 0 = "Not imputed" 3142 1 = "Statistical imputation (hot deck)" 3143 2 = "Cold deck imputation" 3144 3 = "Logical imputation (derivation)" 3145 ; NOTE: Format AYNODUED has been output. 3146 VALUE tamtsupd (default=32) 3147 0 = "None or not in universe" 3148 ; NOTE: Format TAMTSUPD has been output. 3149 VALUE aamtsupd (default=32) 3150 0 = "Not imputed" 3151 1 = "Statistical imputation (hot deck)" 3152 2 = "Cold deck imputation" 3153 3 = "Logical imputation (derivation)" 3154 ; NOTE: Format AAMTSUPD has been output. 3155 VALUE ehowrecd (default=32) 3156 -1 = "Not in Universe" 3157 1 = "Directly from the other parent" 3158 2 = "Through the court" 3159 3 = "Through the welfare or child" 3160 4 = "Some other method" 3161 ; NOTE: Format EHOWRECD has been output. 3162 VALUE ahowrecd (default=32) 3163 0 = "Not imputed" 3164 1 = "Statistical imputation (hot deck)" 3165 2 = "Cold deck imputation" 3166 3 = "Logical imputation (derivation)" 3167 ; NOTE: Format AHOWRECD has been output. 3168 VALUE tactrecd (default=32) 3169 0 = "None or not in universe" 3170 ; NOTE: Format TACTRECD has been output. 3171 VALUE aactrecd (default=32) 3172 0 = "Not imputed" 3173 1 = "Statistical imputation (hot deck)" 3174 2 = "Cold deck imputation" 3175 3 = "Logical imputation (derivation)" 3176 ; NOTE: Format AACTRECD has been output. 3177 VALUE eallpayd (default=32) 3178 -1 = "Not in Universe" 58 The SAS System 15:07 Thursday, June 21, 2012 3179 1 = "Yes" 3180 2 = "No" 3181 ; NOTE: Format EALLPAYD has been output. 3182 VALUE aallpayd (default=32) 3183 0 = "Not imputed" 3184 1 = "Statistical imputation (hot deck)" 3185 2 = "Cold deck imputation" 3186 3 = "Logical imputation (derivation)" 3187 ; NOTE: Format AALLPAYD has been output. 3188 VALUE epaytimd (default=32) 3189 -1 = "Not in Universe" 3190 1 = "All of the time" 3191 2 = "Most of the time" 3192 3 = "Some of the time" 3193 4 = "None of the time" 3194 ; NOTE: Format EPAYTIMD has been output. 3195 VALUE apaytimd (default=32) 3196 0 = "Not imputed" 3197 1 = "Statistical imputation (hot deck)" 3198 2 = "Cold deck imputation" 3199 3 = "Logical imputation (derivation)" 3200 ; NOTE: Format APAYTIMD has been output. 3201 VALUE epayfuld (default=32) 3202 -1 = "Not in Universe" 3203 1 = "All" 3204 2 = "Most" 3205 3 = "Some" 3206 4 = "None" 3207 ; NOTE: Format EPAYFULD has been output. 3208 VALUE apayfuld (default=32) 3209 0 = "Not imputed" 3210 1 = "Statistical imputation (hot deck)" 3211 2 = "Cold deck imputation" 3212 3 = "Logical imputation (derivation)" 3213 ; NOTE: Format APAYFULD has been output. 3214 VALUE edubackd (default=32) 3215 -1 = "Not in Universe" 3216 1 = "Yes" 3217 2 = "No" 3218 ; NOTE: Format EDUBACKD has been output. 3219 VALUE adubackd (default=32) 3220 0 = "Not imputed" 3221 1 = "Statistical imputation (hot deck)" 3222 2 = "Cold deck imputation" 3223 3 = "Logical imputation (derivation)" 3224 ; NOTE: Format ADUBACKD has been output. 3225 VALUE tdolbacd (default=32) 3226 0 = "Not In Universe" 3227 ; NOTE: Format TDOLBACD has been output. 59 The SAS System 15:07 Thursday, June 21, 2012 3228 VALUE adolbacd (default=32) 3229 0 = "Not imputed" 3230 1 = "Statistical imputation (hot deck)" 3231 2 = "Cold deck imputation" 3232 3 = "Logical imputation (derivation)" 3233 ; NOTE: Format ADOLBACD has been output. 3234 VALUE ebacowed (default=32) 3235 -1 = "Not in Universe" 3236 1 = "Yes" 3237 2 = "No" 3238 ; NOTE: Format EBACOWED has been output. 3239 VALUE abacowed (default=32) 3240 0 = "Not imputed" 3241 1 = "Statistical imputation (hot deck)" 3242 2 = "Cold deck imputation" 3243 3 = "Logical imputation (derivation)" 3244 ; NOTE: Format ABACOWED has been output. 3245 VALUE tamtowed (default=32) 3246 0 = "Not In Universe" 3247 ; NOTE: Format TAMTOWED has been output. 3248 VALUE aamtowed (default=32) 3249 0 = "Not imputed" 3250 1 = "Statistical imputation (hot deck)" 3251 2 = "Cold deck imputation" 3252 3 = "Logical imputation (derivation)" 3253 ; NOTE: Format AAMTOWED has been output. 3254 VALUE tbacrecd (default=32) 3255 0 = "Not In Universe" 3256 ; NOTE: Format TBACRECD has been output. 3257 VALUE abacrecd (default=32) 3258 0 = "Not imputed" 3259 1 = "Statistical imputation (hot deck)" 3260 2 = "Cold deck imputation" 3261 3 = "Logical imputation (derivation)" 3262 ; NOTE: Format ABACRECD has been output. 3263 VALUE ehthag1d (default=32) 3264 -1 = "Not in Universe" 3265 1 = "Yes" 3266 2 = "No" 3267 ; NOTE: Format EHTHAG1D has been output. 3268 VALUE ehthag1k (default=32) 3269 -1 = "Not in Universe" 3270 1 = "Yes" 3271 2 = "No" 3272 ; NOTE: Format EHTHAG1K has been output. 3273 VALUE ehthag1l (default=32) 3274 -1 = "Not in Universe" 3275 1 = "Yes" 3276 2 = "No" 60 The SAS System 15:07 Thursday, June 21, 2012 3277 ; NOTE: Format EHTHAG1L has been output. 3278 VALUE ehthag1m (default=32) 3279 -1 = "Not in Universe" 3280 1 = "Yes" 3281 2 = "No" 3282 ; NOTE: Format EHTHAG1M has been output. 3283 VALUE ehthag1n (default=32) 3284 -1 = "Not in Universe" 3285 1 = "Yes" 3286 2 = "No" 3287 ; NOTE: Format EHTHAG1N has been output. 3288 VALUE ehthag1o (default=32) 3289 -1 = "Not in Universe" 3290 1 = "Yes" 3291 2 = "No" 3292 ; NOTE: Format EHTHAG1O has been output. 3293 VALUE ahthag1d (default=32) 3294 0 = "Not imputed" 3295 1 = "Statistical imputation (hot deck)" 3296 2 = "Cold deck imputation" 3297 3 = "Logical imputation (derivation)" 3298 ; NOTE: Format AHTHAG1D has been output. 3299 VALUE ecustagd (default=32) 3300 -1 = "Not in Universe" 3301 1 = "Joint legal and physical custody" 3302 2 = "Joint legal with mother physical" 3303 3 = "Joint Legal with father physical" 3304 4 = "Mother legal and physical custody" 3305 5 = "Father legal and physical custody" 3306 6 = "Split custody" 3307 7 = "Other custody arrangement" 3308 ; NOTE: Format ECUSTAGD has been output. 3309 VALUE acustagd (default=32) 3310 0 = "Not imputed" 3311 1 = "Statistical imputation (hot deck)" 3312 2 = "Cold deck imputation" 3313 3 = "Logical imputation (derivation)" 3314 ; NOTE: Format ACUSTAGD has been output. 3315 VALUE espentmd (default=32) 3316 -1 = "Not in Universe" 3317 1 = "Yes" 3318 2 = "No" 3319 ; NOTE: Format ESPENTMD has been output. 3320 VALUE aspentmd (default=32) 3321 0 = "Not imputed" 3322 1 = "Statistical imputation (hot deck)" 3323 2 = "Cold deck imputation" 3324 3 = "Logical imputation (derivation)" 3325 ; NOTE: Format ASPENTMD has been output. 61 The SAS System 15:07 Thursday, June 21, 2012 3326 VALUE esametmd (default=32) 3327 -1 = "Not in Universe" 3328 1 = "Yes" 3329 2 = "No" 3330 ; NOTE: Format ESAMETMD has been output. 3331 VALUE asametmd (default=32) 3332 0 = "Not imputed" 3333 1 = "Statistical imputation (hot deck)" 3334 2 = "Cold deck imputation" 3335 3 = "Logical imputation (derivation)" 3336 ; NOTE: Format ASAMETMD has been output. 3337 VALUE eamttm1d (default=32) 3338 -1 = "Not in Universe" 3339 ; NOTE: Format EAMTTM1D has been output. 3340 VALUE eamttm1k (default=32) 3341 -1 = "Not in Universe" 3342 ; NOTE: Format EAMTTM1K has been output. 3343 VALUE eamttm1l (default=32) 3344 -1 = "Not in Universe" 3345 ; NOTE: Format EAMTTM1L has been output. 3346 VALUE aamttm1d (default=32) 3347 0 = "Not imputed" 3348 1 = "Statistical imputation (hot deck)" 3349 2 = "Cold deck imputation" 3350 3 = "Logical imputation (derivation)" 3351 ; NOTE: Format AAMTTM1D has been output. 3352 VALUE ewherlvd (default=32) 3353 -1 = "Not in Universe" 3354 1 = "Same county or city" 3355 2 = "Same State (different county or" 3356 3 = "Different State" 3357 4 = "Other parent now deceased" 3358 5 = "Other" 3359 6 = "Unknown" 3360 ; NOTE: Format EWHERLVD has been output. 3361 VALUE awherlvd (default=32) 3362 0 = "Not imputed" 3363 1 = "Statistical imputation (hot deck)" 3364 2 = "Cold deck imputation" 3365 3 = "Logical imputation (derivation)" 3366 ; NOTE: Format AWHERLVD has been output. 3367 VALUE estagred (default=32) 3368 -1 = "Not in Universe" 3369 1 = "Yes" 3370 2 = "No" 3371 ; NOTE: Format ESTAGRED has been output. 3372 VALUE astagred (default=32) 3373 0 = "Not imputed" 3374 1 = "Statistical imputation (hot deck)" 62 The SAS System 15:07 Thursday, June 21, 2012 3375 2 = "Cold deck imputation" 3376 3 = "Logical imputation (derivation)" 3377 ; NOTE: Format ASTAGRED has been output. 3378 VALUE ewhomovd (default=32) 3379 -1 = "Not in Universe" 3380 1 = "Subject person" 3381 2 = "Other parent" 3382 3 = "Both subject person and other" 3383 ; NOTE: Format EWHOMOVD has been output. 3384 VALUE awhomovd (default=32) 3385 0 = "Not imputed" 3386 1 = "Statistical imputation (hot deck)" 3387 2 = "Cold deck imputation" 3388 3 = "Logical imputation (derivation)" 3389 ; NOTE: Format AWHOMOVD has been output. 3390 VALUE efirsyrd (default=32) 3391 -1 = "Not in Universe" 3392 ; NOTE: Format EFIRSYRD has been output. 3393 VALUE afirsyrd (default=32) 3394 0 = "Not imputed" 3395 1 = "Statistical imputation (hot deck)" 3396 2 = "Cold deck imputation" 3397 3 = "Logical imputation (derivation)" 3398 ; NOTE: Format AFIRSYRD has been output. 3399 VALUE tamtag2d (default=32) 3400 0 = "None or not in universe" 3401 ; NOTE: Format TAMTAG2D has been output. 3402 VALUE eamtag2d (default=32) 3403 -1 = "Not in Universe" 3404 1 = "Per week" 3405 2 = "Biweekly" 3406 3 = "Per month" 3407 4 = "Per year" 3408 ; NOTE: Format EAMTAG2D has been output. 3409 VALUE aamtag2d (default=32) 3410 0 = "Not imputed" 3411 1 = "Statistical imputation (hot deck)" 3412 2 = "Cold deck imputation" 3413 3 = "Logical imputation (derivation)" 3414 ; NOTE: Format AAMTAG2D has been output. 3415 VALUE eevrchgd (default=32) 3416 -1 = "Not in Universe" 3417 1 = "Yes" 3418 2 = "No" 3419 ; NOTE: Format EEVRCHGD has been output. 3420 VALUE aevrchgd (default=32) 3421 0 = "Not imputed" 3422 1 = "Statistical imputation (hot deck)" 3423 2 = "Cold deck imputation" 63 The SAS System 15:07 Thursday, June 21, 2012 3424 3 = "Logical imputation (derivation)" 3425 ; NOTE: Format AEVRCHGD has been output. 3426 VALUE eyrchngd (default=32) 3427 -1 = "Not in Universe" 3428 ; NOTE: Format EYRCHNGD has been output. 3429 VALUE ayrchngd (default=32) 3430 0 = "Not imputed" 3431 1 = "Statistical imputation (hot deck)" 3432 2 = "Cold deck imputation" 3433 3 = "Logical imputation (derivation)" 3434 ; NOTE: Format AYRCHNGD has been output. 3435 VALUE tamtcg2d (default=32) 3436 0 = "None or not in universe" 3437 ; NOTE: Format TAMTCG2D has been output. 3438 VALUE eamtcg2d (default=32) 3439 -1 = "Not in Universe" 3440 1 = "Per week" 3441 2 = "Biweekly" 3442 3 = "Per month" 3443 4 = "Per year" 3444 ; NOTE: Format EAMTCG2D has been output. 3445 VALUE aamtcg2d (default=32) 3446 0 = "Not imputed" 3447 1 = "Statistical imputation (hot deck)" 3448 2 = "Cold deck imputation" 3449 3 = "Logical imputation (derivation)" 3450 ; NOTE: Format AAMTCG2D has been output. 3451 VALUE epayduek (default=32) 3452 -1 = "Not in Universe" 3453 1 = "Yes" 3454 2 = "No" 3455 ; NOTE: Format EPAYDUEK has been output. 3456 VALUE apayduek (default=32) 3457 0 = "Not imputed" 3458 1 = "Statistical imputation (hot deck)" 3459 2 = "Cold deck imputation" 3460 3 = "Logical imputation (derivation)" 3461 ; NOTE: Format APAYDUEK has been output. 3462 VALUE eynoduek (default=32) 3463 -1 = "Not in Universe" 3464 1 = "Child(ren) over the age limit" 3465 2 = "Other parent not working" 3466 3 = "Other parent in jail or" 3467 4 = "Other reason" 3468 ; NOTE: Format EYNODUEK has been output. 3469 VALUE aynoduek (default=32) 3470 0 = "Not imputed" 3471 1 = "Statistical imputation (hot deck)" 3472 2 = "Cold deck imputation" 64 The SAS System 15:07 Thursday, June 21, 2012 3473 3 = "Logical imputation (derivation)" 3474 ; NOTE: Format AYNODUEK has been output. 3475 VALUE tamtsupk (default=32) 3476 0 = "None or not in universe" 3477 ; NOTE: Format TAMTSUPK has been output. 3478 VALUE aamtsupk (default=32) 3479 0 = "Not imputed" 3480 1 = "Statistical imputation (hot deck)" 3481 2 = "Cold deck imputation" 3482 3 = "Logical imputation (derivation)" 3483 ; NOTE: Format AAMTSUPK has been output. 3484 VALUE tactreck (default=32) 3485 0 = "None or not in universe" 3486 ; NOTE: Format TACTRECK has been output. 3487 VALUE aactreck (default=32) 3488 0 = "Not imputed" 3489 1 = "Statistical imputation (hot deck)" 3490 2 = "Cold deck imputation" 3491 3 = "Logical imputation (derivation)" 3492 ; NOTE: Format AACTRECK has been output. 3493 VALUE eallpayk (default=32) 3494 -1 = "Not in Universe" 3495 1 = "Yes" 3496 2 = "No" 3497 ; NOTE: Format EALLPAYK has been output. 3498 VALUE aallpayk (default=32) 3499 0 = "Not imputed" 3500 1 = "Statistical imputation (hot deck)" 3501 2 = "Cold deck imputation" 3502 3 = "Logical imputation (derivation)" 3503 ; NOTE: Format AALLPAYK has been output. 3504 VALUE epaytimk (default=32) 3505 -1 = "Not in Universe" 3506 1 = "All of the time" 3507 2 = "Most of the time" 3508 3 = "Some of the time" 3509 4 = "None of the time" 3510 ; NOTE: Format EPAYTIMK has been output. 3511 VALUE apaytimk (default=32) 3512 0 = "Not imputed" 3513 1 = "Statistical imputation (hot deck)" 3514 2 = "Cold deck imputation" 3515 3 = "Logical imputation (derivation)" 3516 ; NOTE: Format APAYTIMK has been output. 3517 VALUE epayfulk (default=32) 3518 -1 = "Not in Universe" 3519 1 = "All" 3520 2 = "Most" 3521 3 = "Some" 65 The SAS System 15:07 Thursday, June 21, 2012 3522 4 = "None" 3523 ; NOTE: Format EPAYFULK has been output. 3524 VALUE apayfulk (default=32) 3525 0 = "Not imputed" 3526 1 = "Statistical imputation (hot deck)" 3527 2 = "Cold deck imputation" 3528 3 = "Logical imputation (derivation)" 3529 ; NOTE: Format APAYFULK has been output. 3530 VALUE edubackk (default=32) 3531 -1 = "Not in Universe" 3532 1 = "Yes" 3533 2 = "No" 3534 ; NOTE: Format EDUBACKK has been output. 3535 VALUE adubackk (default=32) 3536 0 = "Not imputed" 3537 1 = "Statistical imputation (hot deck)" 3538 2 = "Cold deck imputation" 3539 3 = "Logical imputation (derivation)" 3540 ; NOTE: Format ADUBACKK has been output. 3541 VALUE tdolback (default=32) 3542 0 = "None or not in universe" 3543 1 = "Data suppressed" 3544 ; NOTE: Format TDOLBACK has been output. 3545 VALUE adolback (default=32) 3546 0 = "Not imputed" 3547 1 = "Statistical imputation (hot deck)" 3548 2 = "Cold deck imputation" 3549 3 = "Logical imputation (derivation)" 3550 ; NOTE: Format ADOLBACK has been output. 3551 VALUE ebacowek (default=32) 3552 -1 = "Not in Universe" 3553 1 = "Yes" 3554 2 = "No" 3555 ; NOTE: Format EBACOWEK has been output. 3556 VALUE abacowek (default=32) 3557 0 = "Not imputed" 3558 1 = "Statistical imputation (hot deck)" 3559 2 = "Cold deck imputation" 3560 3 = "Logical imputation (derivation)" 3561 ; NOTE: Format ABACOWEK has been output. 3562 VALUE tamtowek (default=32) 3563 0 = "None or not in universe" 3564 ; NOTE: Format TAMTOWEK has been output. 3565 VALUE aamtowek (default=32) 3566 0 = "Not imputed" 3567 1 = "Statistical imputation (hot deck)" 3568 2 = "Cold deck imputation" 3569 3 = "Logical imputation (derivation)" 3570 ; 66 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format AAMTOWEK has been output. 3571 VALUE tbacreck (default=32) 3572 0 = "Not In Universe" 3573 1 = "Data suppressed" 3574 ; NOTE: Format TBACRECK has been output. 3575 VALUE abacreck (default=32) 3576 0 = "Not imputed" 3577 1 = "Statistical imputation (hot deck)" 3578 2 = "Cold deck imputation" 3579 3 = "Logical imputation (derivation)" 3580 ; NOTE: Format ABACRECK has been output. 3581 VALUE ehltag2d (default=32) 3582 -1 = "Not in Universe" 3583 1 = "Yes" 3584 2 = "No" 3585 ; NOTE: Format EHLTAG2D has been output. 3586 VALUE ehltag2k (default=32) 3587 -1 = "Not in Universe" 3588 1 = "Yes" 3589 2 = "No" 3590 ; NOTE: Format EHLTAG2K has been output. 3591 VALUE ehltag2l (default=32) 3592 -1 = "Not in Universe" 3593 1 = "Yes" 3594 2 = "No" 3595 ; NOTE: Format EHLTAG2L has been output. 3596 VALUE ehltag2m (default=32) 3597 -1 = "Not in Universe" 3598 1 = "Yes" 3599 2 = "No" 3600 ; NOTE: Format EHLTAG2M has been output. 3601 VALUE ehltag2n (default=32) 3602 -1 = "Not in Universe" 3603 1 = "Yes" 3604 2 = "No" 3605 ; NOTE: Format EHLTAG2N has been output. 3606 VALUE ehltag2o (default=32) 3607 -1 = "Not in Universe" 3608 1 = "Yes" 3609 2 = "No" 3610 ; NOTE: Format EHLTAG2O has been output. 3611 VALUE ahltag2d (default=32) 3612 0 = "Not imputed" 3613 1 = "Statistical imputation (hot deck)" 3614 2 = "Cold deck imputation" 3615 3 = "Logical imputation (derivation)" 3616 ; NOTE: Format AHLTAG2D has been output. 3617 VALUE ecustagk (default=32) 3618 -1 = "Not in Universe" 67 The SAS System 15:07 Thursday, June 21, 2012 3619 1 = "Child(ren) Live with mother" 3620 2 = "Child(Ren) live With father" 3621 3 = "Child(ren) live with mother and" 3622 4 = "None" 3623 5 = "Other" 3624 ; NOTE: Format ECUSTAGK has been output. 3625 VALUE acustagk (default=32) 3626 0 = "Not imputed" 3627 1 = "Statistical imputation (hot deck)" 3628 2 = "Cold deck imputation" 3629 3 = "Logical imputation (derivation)" 3630 ; NOTE: Format ACUSTAGK has been output. 3631 VALUE espentmk (default=32) 3632 -1 = "Not in Universe" 3633 1 = "Yes" 3634 2 = "No" 3635 ; NOTE: Format ESPENTMK has been output. 3636 VALUE aspentmk (default=32) 3637 0 = "Not imputed" 3638 1 = "Statistical imputation (hot deck)" 3639 2 = "Cold deck imputation" 3640 3 = "Logical imputation (derivation)" 3641 ; NOTE: Format ASPENTMK has been output. 3642 VALUE esametmk (default=32) 3643 -1 = "Not in Universe" 3644 1 = "Yes" 3645 2 = "No" 3646 ; NOTE: Format ESAMETMK has been output. 3647 VALUE asametmk (default=32) 3648 0 = "Not imputed" 3649 1 = "Statistical imputation (hot deck)" 3650 2 = "Cold deck imputation" 3651 3 = "Logical imputation (derivation)" 3652 ; NOTE: Format ASAMETMK has been output. 3653 VALUE eamttm2d (default=32) 3654 -1 = "Not in Universe" 3655 ; NOTE: Format EAMTTM2D has been output. 3656 VALUE eamttm2k (default=32) 3657 -1 = "Not in Universe" 3658 ; NOTE: Format EAMTTM2K has been output. 3659 VALUE eamttm2l (default=32) 3660 -1 = "Not in Universe" 3661 ; NOTE: Format EAMTTM2L has been output. 3662 VALUE aamttm2d (default=32) 3663 0 = "Not imputed" 3664 1 = "Statistical imputation (hot deck)" 3665 2 = "Cold deck imputation" 3666 3 = "Logical imputation (derivation)" 3667 ; 68 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format AAMTTM2D has been output. 3668 VALUE edcrt10d (default=32) 3669 -1 = "Not in Universe" 3670 1 = "Yes" 3671 2 = "No" 3672 ; NOTE: Format EDCRT10D has been output. 3673 VALUE edcrt10k (default=32) 3674 -1 = "Not in Universe" 3675 1 = "Yes" 3676 2 = "No" 3677 ; NOTE: Format EDCRT10K has been output. 3678 VALUE edcrt10l (default=32) 3679 -1 = "Not in Universe" 3680 1 = "Yes" 3681 2 = "No" 3682 ; NOTE: Format EDCRT10L has been output. 3683 VALUE edcrt10m (default=32) 3684 -1 = "Not in Universe" 3685 1 = "Yes" 3686 2 = "No" 3687 ; NOTE: Format EDCRT10M has been output. 3688 VALUE edcrt10n (default=32) 3689 -1 = "Not in Universe" 3690 1 = "Yes" 3691 2 = "No" 3692 ; NOTE: Format EDCRT10N has been output. 3693 VALUE edcrt10o (default=32) 3694 -1 = "Not in Universe" 3695 1 = "Yes" 3696 2 = "No" 3697 ; NOTE: Format EDCRT10O has been output. 3698 VALUE edcrt10p (default=32) 3699 -1 = "Not in Universe" 3700 1 = "Yes" 3701 2 = "No" 3702 ; NOTE: Format EDCRT10P has been output. 3703 VALUE edcrt10q (default=32) 3704 -1 = "Not in Universe" 3705 1 = "Yes" 3706 2 = "No" 3707 ; NOTE: Format EDCRT10Q has been output. 3708 VALUE edcrt10r (default=32) 3709 -1 = "Not in Universe" 3710 1 = "Yes" 3711 2 = "No" 3712 ; NOTE: Format EDCRT10R has been output. 3713 VALUE edcrt11d (default=32) 3714 -1 = "Not in Universe" 3715 1 = "Yes" 69 The SAS System 15:07 Thursday, June 21, 2012 3716 2 = "No" 3717 ; NOTE: Format EDCRT11D has been output. 3718 VALUE edtes10d (default=32) 3719 -1 = "Not in Universe" 3720 1 = "Yes" 3721 2 = "No" 3722 ; NOTE: Format EDTES10D has been output. 3723 VALUE edtes10k (default=32) 3724 -1 = "Not in Universe" 3725 1 = "Yes" 3726 2 = "No" 3727 ; NOTE: Format EDTES10K has been output. 3728 VALUE edtes10l (default=32) 3729 -1 = "Not in Universe" 3730 1 = "Yes" 3731 2 = "No" 3732 ; NOTE: Format EDTES10L has been output. 3733 VALUE edtes10m (default=32) 3734 -1 = "Not in Universe" 3735 1 = "Yes" 3736 2 = "No" 3737 ; NOTE: Format EDTES10M has been output. 3738 VALUE edtes10n (default=32) 3739 -1 = "Not in Universe" 3740 1 = "Yes" 3741 2 = "No" 3742 ; NOTE: Format EDTES10N has been output. 3743 VALUE edtes10o (default=32) 3744 -1 = "Not in Universe" 3745 1 = "Yes" 3746 2 = "No" 3747 ; NOTE: Format EDTES10O has been output. 3748 VALUE edtes10p (default=32) 3749 -1 = "Not in Universe" 3750 1 = "Yes" 3751 2 = "No" 3752 ; NOTE: Format EDTES10P has been output. 3753 VALUE edtes10q (default=32) 3754 -1 = "Not in Universe" 3755 1 = "Yes" 3756 2 = "No" 3757 ; NOTE: Format EDTES10Q has been output. 3758 VALUE edtes10r (default=32) 3759 -1 = "Not in Universe" 3760 1 = "Yes" 3761 2 = "No" 3762 ; NOTE: Format EDTES10R has been output. 3763 VALUE edtes11d (default=32) 70 The SAS System 15:07 Thursday, June 21, 2012 3764 -1 = "Not in Universe" 3765 1 = "Yes" 3766 2 = "No" 3767 ; NOTE: Format EDTES11D has been output. 3768 VALUE edcer10d (default=32) 3769 -1 = "Not in Universe" 3770 1 = "Yes" 3771 2 = "No" 3772 ; NOTE: Format EDCER10D has been output. 3773 VALUE edcer10k (default=32) 3774 -1 = "Not in Universe" 3775 1 = "Yes" 3776 2 = "No" 3777 ; NOTE: Format EDCER10K has been output. 3778 VALUE edcer10l (default=32) 3779 -1 = "Not in Universe" 3780 1 = "Yes" 3781 2 = "No" 3782 ; NOTE: Format EDCER10L has been output. 3783 VALUE edcer10m (default=32) 3784 -1 = "Not in Universe" 3785 1 = "Yes" 3786 2 = "No" 3787 ; NOTE: Format EDCER10M has been output. 3788 VALUE edcer10n (default=32) 3789 -1 = "Not in Universe" 3790 1 = "Yes" 3791 2 = "No" 3792 ; NOTE: Format EDCER10N has been output. 3793 VALUE edcer10o (default=32) 3794 -1 = "Not in Universe" 3795 1 = "Yes" 3796 2 = "No" 3797 ; NOTE: Format EDCER10O has been output. 3798 VALUE edcer10p (default=32) 3799 -1 = "Not in Universe" 3800 1 = "Yes" 3801 2 = "No" 3802 ; NOTE: Format EDCER10P has been output. 3803 VALUE edcer10q (default=32) 3804 -1 = "Not in Universe" 3805 1 = "Yes" 3806 2 = "No" 3807 ; NOTE: Format EDCER10Q has been output. 3808 VALUE edcer10r (default=32) 3809 -1 = "Not in Universe" 3810 1 = "Yes" 3811 2 = "No" 3812 ; 71 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EDCER10R has been output. 3813 VALUE edcer11d (default=32) 3814 -1 = "Not in Universe" 3815 1 = "Yes" 3816 2 = "No" 3817 ; NOTE: Format EDCER11D has been output. 3818 VALUE edsig10d (default=32) 3819 -1 = "Not in Universe" 3820 1 = "Yes" 3821 2 = "No" 3822 ; NOTE: Format EDSIG10D has been output. 3823 VALUE edsig10k (default=32) 3824 -1 = "Not in Universe" 3825 1 = "Yes" 3826 2 = "No" 3827 ; NOTE: Format EDSIG10K has been output. 3828 VALUE edsig10l (default=32) 3829 -1 = "Not in Universe" 3830 1 = "Yes" 3831 2 = "No" 3832 ; NOTE: Format EDSIG10L has been output. 3833 VALUE edsig10m (default=32) 3834 -1 = "Not in Universe" 3835 1 = "Yes" 3836 2 = "No" 3837 ; NOTE: Format EDSIG10M has been output. 3838 VALUE edsig10n (default=32) 3839 -1 = "Not in Universe" 3840 1 = "Yes" 3841 2 = "No" 3842 ; NOTE: Format EDSIG10N has been output. 3843 VALUE edsig10o (default=32) 3844 -1 = "Not in Universe" 3845 1 = "Yes" 3846 2 = "No" 3847 ; NOTE: Format EDSIG10O has been output. 3848 VALUE edsig10p (default=32) 3849 -1 = "Not in Universe" 3850 1 = "Yes" 3851 2 = "No" 3852 ; NOTE: Format EDSIG10P has been output. 3853 VALUE edsig10q (default=32) 3854 -1 = "Not in Universe" 3855 1 = "Yes" 3856 2 = "No" 3857 ; NOTE: Format EDSIG10Q has been output. 3858 VALUE edsig10r (default=32) 3859 -1 = "Not in Universe" 3860 1 = "Yes" 72 The SAS System 15:07 Thursday, June 21, 2012 3861 2 = "No" 3862 ; NOTE: Format EDSIG10R has been output. 3863 VALUE edsig11d (default=32) 3864 -1 = "Not in Universe" 3865 1 = "Yes" 3866 2 = "No" 3867 ; NOTE: Format EDSIG11D has been output. 3868 VALUE edoth10d (default=32) 3869 -1 = "Not in Universe" 3870 1 = "Yes" 3871 2 = "No" 3872 ; NOTE: Format EDOTH10D has been output. 3873 VALUE edoth10k (default=32) 3874 -1 = "Not in Universe" 3875 1 = "Yes" 3876 2 = "No" 3877 ; NOTE: Format EDOTH10K has been output. 3878 VALUE edoth10l (default=32) 3879 -1 = "Not in Universe" 3880 1 = "Yes" 3881 2 = "No" 3882 ; NOTE: Format EDOTH10L has been output. 3883 VALUE edoth10m (default=32) 3884 -1 = "Not in Universe" 3885 1 = "Yes" 3886 2 = "No" 3887 ; NOTE: Format EDOTH10M has been output. 3888 VALUE edoth10n (default=32) 3889 -1 = "Not in Universe" 3890 1 = "Yes" 3891 2 = "No" 3892 ; NOTE: Format EDOTH10N has been output. 3893 VALUE edoth10o (default=32) 3894 -1 = "Not in Universe" 3895 1 = "Yes" 3896 2 = "No" 3897 ; NOTE: Format EDOTH10O has been output. 3898 VALUE edoth10p (default=32) 3899 -1 = "Not in Universe" 3900 1 = "Yes" 3901 2 = "No" 3902 ; NOTE: Format EDOTH10P has been output. 3903 VALUE edoth10q (default=32) 3904 -1 = "Not in Universe" 3905 1 = "Yes" 3906 2 = "No" 3907 ; NOTE: Format EDOTH10Q has been output. 3908 VALUE edoth10r (default=32) 73 The SAS System 15:07 Thursday, June 21, 2012 3909 -1 = "Not in Universe" 3910 1 = "Yes" 3911 2 = "No" 3912 ; NOTE: Format EDOTH10R has been output. 3913 VALUE edoth11d (default=32) 3914 -1 = "Not in Universe" 3915 1 = "Yes" 3916 2 = "No" 3917 ; NOTE: Format EDOTH11D has been output. 3918 VALUE adid101l (default=32) 3919 0 = "Not imputed" 3920 1 = "Statistical imputation (hot deck)" 3921 2 = "Cold deck imputation" 3922 3 = "Logical imputation (derivation)" 3923 ; NOTE: Format ADID101L has been output. 3924 VALUE edmar1l (default=32) 3925 -1 = "Not in Universe" 3926 1 = "Yes" 3927 2 = "No" 3928 ; NOTE: Format EDMAR1L has been output. 3929 VALUE admar1l (default=32) 3930 0 = "Not imputed" 3931 1 = "Statistical imputation (hot deck)" 3932 2 = "Cold deck imputation" 3933 3 = "Logical imputation (derivation)" 3934 ; NOTE: Format ADMAR1L has been output. 3935 VALUE edcrt20d (default=32) 3936 -1 = "Not in Universe" 3937 1 = "Yes" 3938 2 = "No" 3939 ; NOTE: Format EDCRT20D has been output. 3940 VALUE edcrt20k (default=32) 3941 -1 = "Not in Universe" 3942 1 = "Yes" 3943 2 = "No" 3944 ; NOTE: Format EDCRT20K has been output. 3945 VALUE edcrt20l (default=32) 3946 -1 = "Not in Universe" 3947 1 = "Yes" 3948 2 = "No" 3949 ; NOTE: Format EDCRT20L has been output. 3950 VALUE edcrt20m (default=32) 3951 -1 = "Not in Universe" 3952 1 = "Yes" 3953 2 = "No" 3954 ; NOTE: Format EDCRT20M has been output. 3955 VALUE edcrt20n (default=32) 3956 -1 = "Not in Universe" 3957 1 = "Yes" 74 The SAS System 15:07 Thursday, June 21, 2012 3958 2 = "No" 3959 ; NOTE: Format EDCRT20N has been output. 3960 VALUE edcrt20o (default=32) 3961 -1 = "Not in Universe" 3962 1 = "Yes" 3963 2 = "No" 3964 ; NOTE: Format EDCRT20O has been output. 3965 VALUE edcrt20p (default=32) 3966 -1 = "Not in Universe" 3967 1 = "Yes" 3968 2 = "No" 3969 ; NOTE: Format EDCRT20P has been output. 3970 VALUE edcrt20q (default=32) 3971 -1 = "Not in Universe" 3972 1 = "Yes" 3973 2 = "No" 3974 ; NOTE: Format EDCRT20Q has been output. 3975 VALUE edcrt20r (default=32) 3976 -1 = "Not in Universe" 3977 1 = "Yes" 3978 2 = "No" 3979 ; NOTE: Format EDCRT20R has been output. 3980 VALUE edcrt21d (default=32) 3981 -1 = "Not in Universe" 3982 1 = "Yes" 3983 2 = "No" 3984 ; NOTE: Format EDCRT21D has been output. 3985 VALUE edtes20d (default=32) 3986 -1 = "Not in Universe" 3987 1 = "Yes" 3988 2 = "No" 3989 ; NOTE: Format EDTES20D has been output. 3990 VALUE edtes20k (default=32) 3991 -1 = "Not in Universe" 3992 1 = "Yes" 3993 2 = "No" 3994 ; NOTE: Format EDTES20K has been output. 3995 VALUE edtes20l (default=32) 3996 -1 = "Not in Universe" 3997 1 = "Yes" 3998 2 = "No" 3999 ; NOTE: Format EDTES20L has been output. 4000 VALUE edtes20m (default=32) 4001 -1 = "Not in Universe" 4002 1 = "Yes" 4003 2 = "No" 4004 ; NOTE: Format EDTES20M has been output. 4005 VALUE edtes20n (default=32) 75 The SAS System 15:07 Thursday, June 21, 2012 4006 -1 = "Not in Universe" 4007 1 = "Yes" 4008 2 = "No" 4009 ; NOTE: Format EDTES20N has been output. 4010 VALUE edtes20o (default=32) 4011 -1 = "Not in Universe" 4012 1 = "Yes" 4013 2 = "No" 4014 ; NOTE: Format EDTES20O has been output. 4015 VALUE edtes20p (default=32) 4016 -1 = "Not in Universe" 4017 1 = "Yes" 4018 2 = "No" 4019 ; NOTE: Format EDTES20P has been output. 4020 VALUE edtes20q (default=32) 4021 -1 = "Not in Universe" 4022 1 = "Yes" 4023 2 = "No" 4024 ; NOTE: Format EDTES20Q has been output. 4025 VALUE edtes20r (default=32) 4026 -1 = "Not in Universe" 4027 1 = "Yes" 4028 2 = "No" 4029 ; NOTE: Format EDTES20R has been output. 4030 VALUE edtes21d (default=32) 4031 -1 = "Not in Universe" 4032 1 = "Yes" 4033 2 = "No" 4034 ; NOTE: Format EDTES21D has been output. 4035 VALUE edcer20d (default=32) 4036 -1 = "Not in Universe" 4037 1 = "Yes" 4038 2 = "No" 4039 ; NOTE: Format EDCER20D has been output. 4040 VALUE edcer20k (default=32) 4041 -1 = "Not in Universe" 4042 1 = "Yes" 4043 2 = "No" 4044 ; NOTE: Format EDCER20K has been output. 4045 VALUE edcer20l (default=32) 4046 -1 = "Not in Universe" 4047 1 = "Yes" 4048 2 = "No" 4049 ; NOTE: Format EDCER20L has been output. 4050 VALUE edcer20m (default=32) 4051 -1 = "Not in Universe" 4052 1 = "Yes" 4053 2 = "No" 4054 ; 76 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EDCER20M has been output. 4055 VALUE edcer20n (default=32) 4056 -1 = "Not in Universe" 4057 1 = "Yes" 4058 2 = "No" 4059 ; NOTE: Format EDCER20N has been output. 4060 VALUE edcer20o (default=32) 4061 -1 = "Not in Universe" 4062 1 = "Yes" 4063 2 = "No" 4064 ; NOTE: Format EDCER20O has been output. 4065 VALUE edcer20p (default=32) 4066 -1 = "Not in Universe" 4067 1 = "Yes" 4068 2 = "No" 4069 ; NOTE: Format EDCER20P has been output. 4070 VALUE edcer20q (default=32) 4071 -1 = "Not in Universe" 4072 1 = "Yes" 4073 2 = "No" 4074 ; NOTE: Format EDCER20Q has been output. 4075 VALUE edcer20r (default=32) 4076 -1 = "Not in Universe" 4077 1 = "Yes" 4078 2 = "No" 4079 ; NOTE: Format EDCER20R has been output. 4080 VALUE edcer21d (default=32) 4081 -1 = "Not in Universe" 4082 1 = "Yes" 4083 2 = "No" 4084 ; NOTE: Format EDCER21D has been output. 4085 VALUE edsig20d (default=32) 4086 -1 = "Not in Universe" 4087 1 = "Yes" 4088 2 = "No" 4089 ; NOTE: Format EDSIG20D has been output. 4090 VALUE edsig20k (default=32) 4091 -1 = "Not in Universe" 4092 1 = "Yes" 4093 2 = "No" 4094 ; NOTE: Format EDSIG20K has been output. 4095 VALUE edsig20l (default=32) 4096 -1 = "Not in Universe" 4097 1 = "Yes" 4098 2 = "No" 4099 ; NOTE: Format EDSIG20L has been output. 4100 VALUE edsig20m (default=32) 4101 -1 = "Not in Universe" 4102 1 = "Yes" 77 The SAS System 15:07 Thursday, June 21, 2012 4103 2 = "No" 4104 ; NOTE: Format EDSIG20M has been output. 4105 VALUE edsig20n (default=32) 4106 -1 = "Not in Universe" 4107 1 = "Yes" 4108 2 = "No" 4109 ; NOTE: Format EDSIG20N has been output. 4110 VALUE edsig20o (default=32) 4111 -1 = "Not in Universe" 4112 1 = "Yes" 4113 2 = "No" 4114 ; NOTE: Format EDSIG20O has been output. 4115 VALUE edsig20p (default=32) 4116 -1 = "Not in Universe" 4117 1 = "Yes" 4118 2 = "No" 4119 ; NOTE: Format EDSIG20P has been output. 4120 VALUE edsig20q (default=32) 4121 -1 = "Not in Universe" 4122 1 = "Yes" 4123 2 = "No" 4124 ; NOTE: Format EDSIG20Q has been output. 4125 VALUE edsig20r (default=32) 4126 -1 = "Not in Universe" 4127 1 = "Yes" 4128 2 = "No" 4129 ; NOTE: Format EDSIG20R has been output. 4130 VALUE edsig21d (default=32) 4131 -1 = "Not in Universe" 4132 1 = "Yes" 4133 2 = "No" 4134 ; NOTE: Format EDSIG21D has been output. 4135 VALUE edoth20d (default=32) 4136 -1 = "Not in Universe" 4137 1 = "Yes" 4138 2 = "No" 4139 ; NOTE: Format EDOTH20D has been output. 4140 VALUE edoth20k (default=32) 4141 -1 = "Not in Universe" 4142 1 = "Yes" 4143 2 = "No" 4144 ; NOTE: Format EDOTH20K has been output. 4145 VALUE edoth20l (default=32) 4146 -1 = "Not in Universe" 4147 1 = "Yes" 4148 2 = "No" 4149 ; NOTE: Format EDOTH20L has been output. 4150 VALUE edoth20m (default=32) 78 The SAS System 15:07 Thursday, June 21, 2012 4151 -1 = "Not in Universe" 4152 1 = "Yes" 4153 2 = "No" 4154 ; NOTE: Format EDOTH20M has been output. 4155 VALUE edoth20n (default=32) 4156 -1 = "Not in Universe" 4157 1 = "Yes" 4158 2 = "No" 4159 ; NOTE: Format EDOTH20N has been output. 4160 VALUE edoth20o (default=32) 4161 -1 = "Not in Universe" 4162 1 = "Yes" 4163 2 = "No" 4164 ; NOTE: Format EDOTH20O has been output. 4165 VALUE edoth20p (default=32) 4166 -1 = "Not in Universe" 4167 1 = "Yes" 4168 2 = "No" 4169 ; NOTE: Format EDOTH20P has been output. 4170 VALUE edoth20q (default=32) 4171 -1 = "Not in Universe" 4172 1 = "Yes" 4173 2 = "No" 4174 ; NOTE: Format EDOTH20Q has been output. 4175 VALUE edoth20r (default=32) 4176 -1 = "Not in Universe" 4177 1 = "Yes" 4178 2 = "No" 4179 ; NOTE: Format EDOTH20R has been output. 4180 VALUE edoth21d (default=32) 4181 -1 = "Not in Universe" 4182 1 = "Yes" 4183 2 = "No" 4184 ; NOTE: Format EDOTH21D has been output. 4185 VALUE adid201l (default=32) 4186 0 = "Not imputed" 4187 1 = "Statistical imputation (hot deck)" 4188 2 = "Cold deck imputation" 4189 3 = "Logical imputation (derivation)" 4190 ; NOTE: Format ADID201L has been output. 4191 VALUE eynevwrd (default=32) 4192 -1 = "Not in Universe" 4193 1 = "Yes" 4194 2 = "No" 4195 ; NOTE: Format EYNEVWRD has been output. 4196 VALUE eynevwrk (default=32) 4197 -1 = "Not in Universe" 4198 1 = "Yes" 4199 2 = "No" 79 The SAS System 15:07 Thursday, June 21, 2012 4200 ; NOTE: Format EYNEVWRK has been output. 4201 VALUE eynevwrl (default=32) 4202 -1 = "Not in Universe" 4203 1 = "Yes" 4204 2 = "No" 4205 ; NOTE: Format EYNEVWRL has been output. 4206 VALUE eynevwrm (default=32) 4207 -1 = "Not in Universe" 4208 1 = "Yes" 4209 2 = "No" 4210 ; NOTE: Format EYNEVWRM has been output. 4211 VALUE eynevwrn (default=32) 4212 -1 = "Not in Universe" 4213 1 = "Yes" 4214 2 = "No" 4215 ; NOTE: Format EYNEVWRN has been output. 4216 VALUE eynevwro (default=32) 4217 -1 = "Not in Universe" 4218 1 = "Yes" 4219 2 = "No" 4220 ; NOTE: Format EYNEVWRO has been output. 4221 VALUE eynevwrp (default=32) 4222 -1 = "Not in Universe" 4223 1 = "Yes" 4224 2 = "No" 4225 ; NOTE: Format EYNEVWRP has been output. 4226 VALUE eynevwrq (default=32) 4227 -1 = "Not in Universe" 4228 1 = "Yes" 4229 2 = "No" 4230 ; NOTE: Format EYNEVWRQ has been output. 4231 VALUE aynevwrd (default=32) 4232 0 = "Not imputed" 4233 1 = "Statistical imputation (hot deck)" 4234 2 = "Cold deck imputation" 4235 3 = "Logical imputation (derivation)" 4236 ; NOTE: Format AYNEVWRD has been output. 4237 VALUE ewherlvk (default=32) 4238 -1 = "Not in Universe" 4239 1 = "Same county or city" 4240 2 = "Same State (different county or" 4241 3 = "Different State" 4242 4 = "Other parent now deceased" 4243 5 = "Other" 4244 6 = "Unknown" 4245 ; NOTE: Format EWHERLVK has been output. 4246 VALUE awherlvk (default=32) 4247 0 = "Not imputed" 4248 1 = "Statistical imputation (hot deck)" 80 The SAS System 15:07 Thursday, June 21, 2012 4249 2 = "Cold deck imputation" 4250 3 = "Logical imputation (derivation)" 4251 ; NOTE: Format AWHERLVK has been output. 4252 VALUE estagrek (default=32) 4253 -1 = "Not in Universe" 4254 1 = "Yes" 4255 2 = "No" 4256 ; NOTE: Format ESTAGREK has been output. 4257 VALUE astagrek (default=32) 4258 0 = "Not imputed" 4259 1 = "Statistical imputation (hot deck)" 4260 2 = "Cold deck imputation" 4261 3 = "Logical imputation (derivation)" 4262 ; NOTE: Format ASTAGREK has been output. 4263 VALUE ewhomovk (default=32) 4264 -1 = "Not in Universe" 4265 1 = "Subject person" 4266 2 = "Other parent" 4267 3 = "Both subject person and other" 4268 ; NOTE: Format EWHOMOVK has been output. 4269 VALUE awhomovk (default=32) 4270 0 = "Not imputed" 4271 1 = "Statistical imputation (hot deck)" 4272 2 = "Cold deck imputation" 4273 3 = "Logical imputation (derivation)" 4274 ; NOTE: Format AWHOMOVK has been output. 4275 VALUE tamtag3d (default=32) 4276 0 = "None or not in universe" 4277 ; NOTE: Format TAMTAG3D has been output. 4278 VALUE eamtag3d (default=32) 4279 -1 = "Not in Universe" 4280 1 = "Per week" 4281 2 = "Biweekly" 4282 3 = "Per month" 4283 4 = "Per year" 4284 ; NOTE: Format EAMTAG3D has been output. 4285 VALUE aamtag3d (default=32) 4286 0 = "Not imputed" 4287 1 = "Statistical imputation (hot deck)" 4288 2 = "Cold deck imputation" 4289 3 = "Logical imputation (derivation)" 4290 ; NOTE: Format AAMTAG3D has been output. 4291 VALUE tactrecl (default=32) 4292 0 = "None or not in universe" 4293 ; NOTE: Format TACTRECL has been output. 4294 VALUE aactrecl (default=32) 4295 0 = "Not imputed" 4296 1 = "Statistical imputation (hot deck)" 4297 2 = "Cold deck imputation" 81 The SAS System 15:07 Thursday, June 21, 2012 4298 3 = "Logical imputation (derivation)" 4299 ; NOTE: Format AACTRECL has been output. 4300 VALUE epubsupp (default=32) 4301 -1 = "Not in Universe" 4302 1 = "Yes" 4303 2 = "No" 4304 ; NOTE: Format EPUBSUPP has been output. 4305 VALUE apubsupp (default=32) 4306 0 = "Not imputed" 4307 1 = "Statistical imputation (hot deck)" 4308 2 = "Cold deck imputation" 4309 3 = "Logical imputation (derivation)" 4310 ; NOTE: Format APUBSUPP has been output. 4311 VALUE elastask (default=32) 4312 -1 = "Not in Universe" 4313 ; NOTE: Format ELASTASK has been output. 4314 VALUE alastask (default=32) 4315 0 = "Not imputed" 4316 1 = "Statistical imputation (hot deck)" 4317 2 = "Cold deck imputation" 4318 3 = "Logical imputation (derivation)" 4319 ; NOTE: Format ALASTASK has been output. 4320 VALUE etypaskk (default=32) 4321 -1 = "Not in Universe" 4322 1 = "Yes" 4323 2 = "No" 4324 ; NOTE: Format ETYPASKK has been output. 4325 VALUE etypaskl (default=32) 4326 -1 = "Not in Universe" 4327 1 = "Yes" 4328 2 = "No" 4329 ; NOTE: Format ETYPASKL has been output. 4330 VALUE etypaskm (default=32) 4331 -1 = "Not in Universe" 4332 1 = "Yes" 4333 2 = "No" 4334 ; NOTE: Format ETYPASKM has been output. 4335 VALUE etypaskn (default=32) 4336 -1 = "Not in Universe" 4337 1 = "Yes" 4338 2 = "No" 4339 ; NOTE: Format ETYPASKN has been output. 4340 VALUE etypasko (default=32) 4341 -1 = "Not in Universe" 4342 1 = "Yes" 4343 2 = "No" 4344 ; NOTE: Format ETYPASKO has been output. 4345 VALUE etypaskp (default=32) 82 The SAS System 15:07 Thursday, June 21, 2012 4346 -1 = "Not in Universe" 4347 1 = "Yes" 4348 2 = "No" 4349 ; NOTE: Format ETYPASKP has been output. 4350 VALUE etypaskq (default=32) 4351 -1 = "Not in Universe" 4352 1 = "Yes" 4353 2 = "No" 4354 ; NOTE: Format ETYPASKQ has been output. 4355 VALUE atypask (default=32) 4356 0 = "Not imputed" 4357 1 = "Statistical imputation (hot deck)" 4358 2 = "Cold deck imputation" 4359 3 = "Logical imputation (derivation)" 4360 ; NOTE: Format ATYPASK has been output. 4361 VALUE ehelpsyn (default=32) 4362 -1 = "Not in Universe" 4363 1 = "Yes" 4364 2 = "No" 4365 ; NOTE: Format EHELPSYN has been output. 4366 VALUE ahelpsyn (default=32) 4367 0 = "Not imputed" 4368 1 = "Statistical imputation (hot deck)" 4369 2 = "Cold deck imputation" 4370 3 = "Logical imputation (derivation)" 4371 ; NOTE: Format AHELPSYN has been output. 4372 VALUE etyphlpn (default=32) 4373 -1 = "Not in Universe" 4374 1 = "Yes" 4375 2 = "No" 4376 ; NOTE: Format ETYPHLPN has been output. 4377 VALUE etyphlpk (default=32) 4378 -1 = "Not in Universe" 4379 1 = "Yes" 4380 2 = "No" 4381 ; NOTE: Format ETYPHLPK has been output. 4382 VALUE etyphlpl (default=32) 4383 -1 = "Not in Universe" 4384 1 = "Yes" 4385 2 = "No" 4386 ; NOTE: Format ETYPHLPL has been output. 4387 VALUE etyphlpm (default=32) 4388 -1 = "Not in Universe" 4389 1 = "Yes" 4390 2 = "No" 4391 ; NOTE: Format ETYPHLPM has been output. 4392 VALUE etyphlpo (default=32) 4393 -1 = "Not in Universe" 4394 1 = "Yes" 83 The SAS System 15:07 Thursday, June 21, 2012 4395 2 = "No" 4396 ; NOTE: Format ETYPHLPO has been output. 4397 VALUE etyphlpp (default=32) 4398 -1 = "Not in Universe" 4399 1 = "Yes" 4400 2 = "No" 4401 ; NOTE: Format ETYPHLPP has been output. 4402 VALUE etyphlpq (default=32) 4403 -1 = "Not in Universe" 4404 1 = "Yes" 4405 2 = "No" 4406 ; NOTE: Format ETYPHLPQ has been output. 4407 VALUE atyphlp (default=32) 4408 0 = "Not imputed" 4409 1 = "Statistical imputation (hot deck)" 4410 2 = "Cold deck imputation" 4411 3 = "Logical imputation (derivation)" 4412 ; NOTE: Format ATYPHLP has been output. 4413 VALUE edcrt30p (default=32) 4414 -1 = "Not in Universe" 4415 1 = "Yes" 4416 2 = "No" 4417 ; NOTE: Format EDCRT30P has been output. 4418 VALUE edcrt30k (default=32) 4419 -1 = "Not in Universe" 4420 1 = "Yes" 4421 2 = "No" 4422 ; NOTE: Format EDCRT30K has been output. 4423 VALUE edcrt30l (default=32) 4424 -1 = "Not in Universe" 4425 1 = "Yes" 4426 2 = "No" 4427 ; NOTE: Format EDCRT30L has been output. 4428 VALUE edcrt30m (default=32) 4429 -1 = "Not in Universe" 4430 1 = "Yes" 4431 2 = "No" 4432 ; NOTE: Format EDCRT30M has been output. 4433 VALUE edcrt30n (default=32) 4434 -1 = "Not in Universe" 4435 1 = "Yes" 4436 2 = "No" 4437 ; NOTE: Format EDCRT30N has been output. 4438 VALUE edcrt30o (default=32) 4439 -1 = "Not in Universe" 4440 1 = "Yes" 4441 2 = "No" 4442 ; NOTE: Format EDCRT30O has been output. 84 The SAS System 15:07 Thursday, June 21, 2012 4443 VALUE edcrt30q (default=32) 4444 -1 = "Not in Universe" 4445 1 = "Yes" 4446 2 = "No" 4447 ; NOTE: Format EDCRT30Q has been output. 4448 VALUE edcrt30r (default=32) 4449 -1 = "Not in Universe" 4450 1 = "Yes" 4451 2 = "No" 4452 ; NOTE: Format EDCRT30R has been output. 4453 VALUE edcrt30s (default=32) 4454 -1 = "Not in Universe" 4455 1 = "Yes" 4456 2 = "No" 4457 ; NOTE: Format EDCRT30S has been output. 4458 VALUE edcrt31p (default=32) 4459 -1 = "Not in Universe" 4460 1 = "Yes" 4461 2 = "No" 4462 ; NOTE: Format EDCRT31P has been output. 4463 VALUE edtes30p (default=32) 4464 -1 = "Not in Universe" 4465 1 = "Yes" 4466 2 = "No" 4467 ; NOTE: Format EDTES30P has been output. 4468 VALUE edtes30k (default=32) 4469 -1 = "Not in Universe" 4470 1 = "Yes" 4471 2 = "No" 4472 ; NOTE: Format EDTES30K has been output. 4473 VALUE edtes30l (default=32) 4474 -1 = "Not in Universe" 4475 1 = "Yes" 4476 2 = "No" 4477 ; NOTE: Format EDTES30L has been output. 4478 VALUE edtes30m (default=32) 4479 -1 = "Not in Universe" 4480 1 = "Yes" 4481 2 = "No" 4482 ; NOTE: Format EDTES30M has been output. 4483 VALUE edtes30n (default=32) 4484 -1 = "Not in Universe" 4485 1 = "Yes" 4486 2 = "No" 4487 ; NOTE: Format EDTES30N has been output. 4488 VALUE edtes30o (default=32) 4489 -1 = "Not in Universe" 4490 1 = "Yes" 4491 2 = "No" 85 The SAS System 15:07 Thursday, June 21, 2012 4492 ; NOTE: Format EDTES30O has been output. 4493 VALUE edtes30q (default=32) 4494 -1 = "Not in Universe" 4495 1 = "Yes" 4496 2 = "No" 4497 ; NOTE: Format EDTES30Q has been output. 4498 VALUE edtes30r (default=32) 4499 -1 = "Not in Universe" 4500 1 = "Yes" 4501 2 = "No" 4502 ; NOTE: Format EDTES30R has been output. 4503 VALUE edtes30s (default=32) 4504 -1 = "Not in Universe" 4505 1 = "Yes" 4506 2 = "No" 4507 ; NOTE: Format EDTES30S has been output. 4508 VALUE edtes31p (default=32) 4509 -1 = "Not in Universe" 4510 1 = "Yes" 4511 2 = "No" 4512 ; NOTE: Format EDTES31P has been output. 4513 VALUE edcer30p (default=32) 4514 -1 = "Not in Universe" 4515 1 = "Yes" 4516 2 = "No" 4517 ; NOTE: Format EDCER30P has been output. 4518 VALUE edcer30k (default=32) 4519 -1 = "Not in Universe" 4520 1 = "Yes" 4521 2 = "No" 4522 ; NOTE: Format EDCER30K has been output. 4523 VALUE edcer30l (default=32) 4524 -1 = "Not in Universe" 4525 1 = "Yes" 4526 2 = "No" 4527 ; NOTE: Format EDCER30L has been output. 4528 VALUE edcer30m (default=32) 4529 -1 = "Not in Universe" 4530 1 = "Yes" 4531 2 = "No" 4532 ; NOTE: Format EDCER30M has been output. 4533 VALUE edcer30n (default=32) 4534 -1 = "Not in Universe" 4535 1 = "Yes" 4536 2 = "No" 4537 ; NOTE: Format EDCER30N has been output. 4538 VALUE edcer30o (default=32) 4539 -1 = "Not in Universe" 86 The SAS System 15:07 Thursday, June 21, 2012 4540 1 = "Yes" 4541 2 = "No" 4542 ; NOTE: Format EDCER30O has been output. 4543 VALUE edcer30q (default=32) 4544 -1 = "Not in Universe" 4545 1 = "Yes" 4546 2 = "No" 4547 ; NOTE: Format EDCER30Q has been output. 4548 VALUE edcer30r (default=32) 4549 -1 = "Not in Universe" 4550 1 = "Yes" 4551 2 = "No" 4552 ; NOTE: Format EDCER30R has been output. 4553 VALUE edcer30s (default=32) 4554 -1 = "Not in Universe" 4555 1 = "Yes" 4556 2 = "No" 4557 ; NOTE: Format EDCER30S has been output. 4558 VALUE edcer31p (default=32) 4559 -1 = "Not in Universe" 4560 1 = "Yes" 4561 2 = "No" 4562 ; NOTE: Format EDCER31P has been output. 4563 VALUE edsig30p (default=32) 4564 -1 = "Not in Universe" 4565 1 = "Yes" 4566 2 = "No" 4567 ; NOTE: Format EDSIG30P has been output. 4568 VALUE edsig30k (default=32) 4569 -1 = "Not in Universe" 4570 1 = "Yes" 4571 2 = "No" 4572 ; NOTE: Format EDSIG30K has been output. 4573 VALUE edsig30l (default=32) 4574 -1 = "Not in Universe" 4575 1 = "Yes" 4576 2 = "No" 4577 ; NOTE: Format EDSIG30L has been output. 4578 VALUE edsig30m (default=32) 4579 -1 = "Not in Universe" 4580 1 = "Yes" 4581 2 = "No" 4582 ; NOTE: Format EDSIG30M has been output. 4583 VALUE edsig30n (default=32) 4584 -1 = "Not in Universe" 4585 1 = "Yes" 4586 2 = "No" 4587 ; NOTE: Format EDSIG30N has been output. 87 The SAS System 15:07 Thursday, June 21, 2012 4588 VALUE edsig30o (default=32) 4589 -1 = "Not in Universe" 4590 1 = "Yes" 4591 2 = "No" 4592 ; NOTE: Format EDSIG30O has been output. 4593 VALUE edsig30q (default=32) 4594 -1 = "Not in Universe" 4595 1 = "Yes" 4596 2 = "No" 4597 ; NOTE: Format EDSIG30Q has been output. 4598 VALUE edsig30r (default=32) 4599 -1 = "Not in Universe" 4600 1 = "Yes" 4601 2 = "No" 4602 ; NOTE: Format EDSIG30R has been output. 4603 VALUE edsig30s (default=32) 4604 -1 = "Not in Universe" 4605 1 = "Yes" 4606 2 = "No" 4607 ; NOTE: Format EDSIG30S has been output. 4608 VALUE edsig31p (default=32) 4609 -1 = "Not in Universe" 4610 1 = "Yes" 4611 2 = "No" 4612 ; NOTE: Format EDSIG31P has been output. 4613 VALUE edoth30p (default=32) 4614 -1 = "Not in Universe" 4615 1 = "Yes" 4616 2 = "No" 4617 ; NOTE: Format EDOTH30P has been output. 4618 VALUE edoth30k (default=32) 4619 -1 = "Not in Universe" 4620 1 = "Yes" 4621 2 = "No" 4622 ; NOTE: Format EDOTH30K has been output. 4623 VALUE edoth30l (default=32) 4624 -1 = "Not in Universe" 4625 1 = "Yes" 4626 2 = "No" 4627 ; NOTE: Format EDOTH30L has been output. 4628 VALUE edoth30m (default=32) 4629 -1 = "Not in Universe" 4630 1 = "Yes" 4631 2 = "No" 4632 ; NOTE: Format EDOTH30M has been output. 4633 VALUE edoth30n (default=32) 4634 -1 = "Not in Universe" 4635 1 = "Yes" 4636 2 = "No" 88 The SAS System 15:07 Thursday, June 21, 2012 4637 ; NOTE: Format EDOTH30N has been output. 4638 VALUE edoth30o (default=32) 4639 -1 = "Not in Universe" 4640 1 = "Yes" 4641 2 = "No" 4642 ; NOTE: Format EDOTH30O has been output. 4643 VALUE edoth30q (default=32) 4644 -1 = "Not in Universe" 4645 1 = "Yes" 4646 2 = "No" 4647 ; NOTE: Format EDOTH30Q has been output. 4648 VALUE edoth30r (default=32) 4649 -1 = "Not in Universe" 4650 1 = "Yes" 4651 2 = "No" 4652 ; NOTE: Format EDOTH30R has been output. 4653 VALUE edoth30s (default=32) 4654 -1 = "Not in Universe" 4655 1 = "Yes" 4656 2 = "No" 4657 ; NOTE: Format EDOTH30S has been output. 4658 VALUE edoth31p (default=32) 4659 -1 = "Not in Universe" 4660 1 = "Yes" 4661 2 = "No" 4662 ; NOTE: Format EDOTH31P has been output. 4663 VALUE adid301l (default=32) 4664 0 = "Not imputed" 4665 1 = "Statistical imputation (hot deck)" 4666 2 = "Cold deck imputation" 4667 3 = "Logical imputation (derivation)" 4668 ; NOTE: Format ADID301L has been output. 4669 VALUE edmar20p (default=32) 4670 -1 = "Not in Universe" 4671 1 = "Yes" 4672 2 = "No" 4673 ; NOTE: Format EDMAR20P has been output. 4674 VALUE admar20p (default=32) 4675 0 = "Not imputed" 4676 1 = "Statistical imputation (hot deck)" 4677 2 = "Cold deck imputation" 4678 3 = "Logical imputation (derivation)" 4679 ; NOTE: Format ADMAR20P has been output. 4680 VALUE edmar20k (default=32) 4681 -1 = "Not in Universe" 4682 1 = "Yes" 4683 2 = "No" 4684 ; NOTE: Format EDMAR20K has been output. 89 The SAS System 15:07 Thursday, June 21, 2012 4685 VALUE admar20k (default=32) 4686 0 = "Not imputed" 4687 1 = "Statistical imputation (hot deck)" 4688 2 = "Cold deck imputation" 4689 3 = "Logical imputation (derivation)" 4690 ; NOTE: Format ADMAR20K has been output. 4691 VALUE edmar20l (default=32) 4692 -1 = "Not in Universe" 4693 1 = "Yes" 4694 2 = "No" 4695 ; NOTE: Format EDMAR20L has been output. 4696 VALUE admar20l (default=32) 4697 0 = "Not imputed" 4698 1 = "Statistical imputation (hot deck)" 4699 2 = "Cold deck imputation" 4700 3 = "Logical imputation (derivation)" 4701 ; NOTE: Format ADMAR20L has been output. 4702 VALUE edmar20m (default=32) 4703 -1 = "Not in Universe" 4704 1 = "Yes" 4705 2 = "No" 4706 ; NOTE: Format EDMAR20M has been output. 4707 VALUE admar20m (default=32) 4708 0 = "Not imputed" 4709 1 = "Statistical imputation (hot deck)" 4710 2 = "Cold deck imputation" 4711 3 = "Logical imputation (derivation)" 4712 ; NOTE: Format ADMAR20M has been output. 4713 VALUE edmar20n (default=32) 4714 -1 = "Not in Universe" 4715 1 = "Yes" 4716 2 = "No" 4717 ; NOTE: Format EDMAR20N has been output. 4718 VALUE admar20n (default=32) 4719 0 = "Not imputed" 4720 1 = "Statistical imputation (hot deck)" 4721 2 = "Cold deck imputation" 4722 3 = "Logical imputation (derivation)" 4723 ; NOTE: Format ADMAR20N has been output. 4724 VALUE edmar20o (default=32) 4725 -1 = "Not in Universe" 4726 1 = "Yes" 4727 2 = "No" 4728 ; NOTE: Format EDMAR20O has been output. 4729 VALUE admar20o (default=32) 4730 0 = "Not imputed" 4731 1 = "Statistical imputation (hot deck)" 4732 2 = "Cold deck imputation" 4733 3 = "Logical imputation (derivation)" 4734 ; 90 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format ADMAR20O has been output. 4735 VALUE edmar20q (default=32) 4736 -1 = "Not in Universe" 4737 1 = "Yes" 4738 2 = "No" 4739 ; NOTE: Format EDMAR20Q has been output. 4740 VALUE admar20q (default=32) 4741 0 = "Not imputed" 4742 1 = "Statistical imputation (hot deck)" 4743 2 = "Cold deck imputation" 4744 3 = "Logical imputation (derivation)" 4745 ; NOTE: Format ADMAR20Q has been output. 4746 VALUE edmar20r (default=32) 4747 -1 = "Not in Universe" 4748 1 = "Yes" 4749 2 = "No" 4750 ; NOTE: Format EDMAR20R has been output. 4751 VALUE admar20r (default=32) 4752 0 = "Not imputed" 4753 1 = "Statistical imputation (hot deck)" 4754 2 = "Cold deck imputation" 4755 3 = "Logical imputation (derivation)" 4756 ; NOTE: Format ADMAR20R has been output. 4757 VALUE edmar20s (default=32) 4758 -1 = "Not in Universe" 4759 1 = "Yes" 4760 2 = "No" 4761 ; NOTE: Format EDMAR20S has been output. 4762 VALUE admar20s (default=32) 4763 0 = "Not imputed" 4764 1 = "Statistical imputation (hot deck)" 4765 2 = "Cold deck imputation" 4766 3 = "Logical imputation (derivation)" 4767 ; NOTE: Format ADMAR20S has been output. 4768 VALUE edmar21p (default=32) 4769 -1 = "Not in Universe" 4770 1 = "Yes" 4771 2 = "No" 4772 ; NOTE: Format EDMAR21P has been output. 4773 VALUE admar21p (default=32) 4774 0 = "Not imputed" 4775 1 = "Statistical imputation (hot deck)" 4776 2 = "Cold deck imputation" 4777 3 = "Logical imputation (derivation)" 4778 ; NOTE: Format ADMAR21P has been output. 4779 VALUE esame01l (default=32) 4780 -1 = "Not in Universe" 4781 1 = "Yes" 4782 2 = "No" 4783 ; 91 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format ESAME01L has been output. 4784 VALUE asame01l (default=32) 4785 0 = "Not imputed" 4786 1 = "Statistical imputation (hot deck)" 4787 2 = "Cold deck imputation" 4788 3 = "Logical imputation (derivation)" 4789 ; NOTE: Format ASAME01L has been output. 4790 VALUE esame02l (default=32) 4791 -1 = "Not in Universe" 4792 1 = "Yes" 4793 2 = "No" 4794 ; NOTE: Format ESAME02L has been output. 4795 VALUE asame02l (default=32) 4796 0 = "Not imputed" 4797 1 = "Statistical imputation (hot deck)" 4798 2 = "Cold deck imputation" 4799 3 = "Logical imputation (derivation)" 4800 ; NOTE: Format ASAME02L has been output. 4801 VALUE esame03l (default=32) 4802 -1 = "Not in Universe" 4803 1 = "Yes" 4804 2 = "No" 4805 ; NOTE: Format ESAME03L has been output. 4806 VALUE asame03l (default=32) 4807 0 = "Not imputed" 4808 1 = "Statistical imputation (hot deck)" 4809 2 = "Cold deck imputation" 4810 3 = "Logical imputation (derivation)" 4811 ; NOTE: Format ASAME03L has been output. 4812 VALUE esame04l (default=32) 4813 -1 = "Not in Universe" 4814 1 = "Yes" 4815 2 = "No" 4816 ; NOTE: Format ESAME04L has been output. 4817 VALUE asame04l (default=32) 4818 0 = "Not imputed" 4819 1 = "Statistical imputation (hot deck)" 4820 2 = "Cold deck imputation" 4821 3 = "Logical imputation (derivation)" 4822 ; NOTE: Format ASAME04L has been output. 4823 VALUE esame05l (default=32) 4824 -1 = "Not in Universe" 4825 1 = "Yes" 4826 2 = "No" 4827 ; NOTE: Format ESAME05L has been output. 4828 VALUE asame05l (default=32) 4829 0 = "Not imputed" 4830 1 = "Statistical imputation (hot deck)" 4831 2 = "Cold deck imputation" 4832 3 = "Logical imputation (derivation)" 92 The SAS System 15:07 Thursday, June 21, 2012 4833 ; NOTE: Format ASAME05L has been output. 4834 VALUE esame06l (default=32) 4835 -1 = "Not in Universe" 4836 1 = "Yes" 4837 2 = "No" 4838 ; NOTE: Format ESAME06L has been output. 4839 VALUE asame06l (default=32) 4840 0 = "Not imputed" 4841 1 = "Statistical imputation (hot deck)" 4842 2 = "Cold deck imputation" 4843 3 = "Logical imputation (derivation)" 4844 ; NOTE: Format ASAME06L has been output. 4845 VALUE esame07l (default=32) 4846 -1 = "Not in Universe" 4847 1 = "Yes" 4848 2 = "No" 4849 ; NOTE: Format ESAME07L has been output. 4850 VALUE asame07l (default=32) 4851 0 = "Not imputed" 4852 1 = "Statistical imputation (hot deck)" 4853 2 = "Cold deck imputation" 4854 3 = "Logical imputation (derivation)" 4855 ; NOTE: Format ASAME07L has been output. 4856 VALUE esame08l (default=32) 4857 -1 = "Not in Universe" 4858 1 = "Yes" 4859 2 = "No" 4860 ; NOTE: Format ESAME08L has been output. 4861 VALUE asame08l (default=32) 4862 0 = "Not imputed" 4863 1 = "Statistical imputation (hot deck)" 4864 2 = "Cold deck imputation" 4865 3 = "Logical imputation (derivation)" 4866 ; NOTE: Format ASAME08L has been output. 4867 VALUE esame09l (default=32) 4868 -1 = "Not in Universe" 4869 1 = "Yes" 4870 2 = "No" 4871 ; NOTE: Format ESAME09L has been output. 4872 VALUE asame09l (default=32) 4873 0 = "Not imputed" 4874 1 = "Statistical imputation (hot deck)" 4875 2 = "Cold deck imputation" 4876 3 = "Logical imputation (derivation)" 4877 ; NOTE: Format ASAME09L has been output. 4878 VALUE esame10l (default=32) 4879 -1 = "Not in Universe" 4880 1 = "Yes" 4881 2 = "No" 93 The SAS System 15:07 Thursday, June 21, 2012 4882 ; NOTE: Format ESAME10L has been output. 4883 VALUE asame10l (default=32) 4884 0 = "Not imputed" 4885 1 = "Statistical imputation (hot deck)" 4886 2 = "Cold deck imputation" 4887 3 = "Logical imputation (derivation)" 4888 ; NOTE: Format ASAME10L has been output. 4889 VALUE edcrt40p (default=32) 4890 -1 = "Not in Universe" 4891 1 = "Yes" 4892 2 = "No" 4893 ; NOTE: Format EDCRT40P has been output. 4894 VALUE edcrt40k (default=32) 4895 -1 = "Not in Universe" 4896 1 = "Yes" 4897 2 = "No" 4898 ; NOTE: Format EDCRT40K has been output. 4899 VALUE edcrt40l (default=32) 4900 -1 = "Not in Universe" 4901 1 = "Yes" 4902 2 = "No" 4903 ; NOTE: Format EDCRT40L has been output. 4904 VALUE edcrt40m (default=32) 4905 -1 = "Not in Universe" 4906 1 = "Yes" 4907 2 = "No" 4908 ; NOTE: Format EDCRT40M has been output. 4909 VALUE edcrt40n (default=32) 4910 -1 = "Not in Universe" 4911 1 = "Yes" 4912 2 = "No" 4913 ; NOTE: Format EDCRT40N has been output. 4914 VALUE edcrt40o (default=32) 4915 -1 = "Not in Universe" 4916 1 = "Yes" 4917 2 = "No" 4918 ; NOTE: Format EDCRT40O has been output. 4919 VALUE edcrt40q (default=32) 4920 -1 = "Not in Universe" 4921 1 = "Yes" 4922 2 = "No" 4923 ; NOTE: Format EDCRT40Q has been output. 4924 VALUE edcrt40r (default=32) 4925 -1 = "Not in Universe" 4926 1 = "Yes" 4927 2 = "No" 4928 ; NOTE: Format EDCRT40R has been output. 4929 VALUE edcrt40s (default=32) 94 The SAS System 15:07 Thursday, June 21, 2012 4930 -1 = "Not in Universe" 4931 1 = "Yes" 4932 2 = "No" 4933 ; NOTE: Format EDCRT40S has been output. 4934 VALUE edcrt41p (default=32) 4935 -1 = "Not in Universe" 4936 1 = "Yes" 4937 2 = "No" 4938 ; NOTE: Format EDCRT41P has been output. 4939 VALUE edtes40p (default=32) 4940 -1 = "Not in Universe" 4941 1 = "Yes" 4942 2 = "No" 4943 ; NOTE: Format EDTES40P has been output. 4944 VALUE edtes40k (default=32) 4945 -1 = "Not in Universe" 4946 1 = "Yes" 4947 2 = "No" 4948 ; NOTE: Format EDTES40K has been output. 4949 VALUE edtes40l (default=32) 4950 -1 = "Not in Universe" 4951 1 = "Yes" 4952 2 = "No" 4953 ; NOTE: Format EDTES40L has been output. 4954 VALUE edtes40m (default=32) 4955 -1 = "Not in Universe" 4956 1 = "Yes" 4957 2 = "No" 4958 ; NOTE: Format EDTES40M has been output. 4959 VALUE edtes40n (default=32) 4960 -1 = "Not in Universe" 4961 1 = "Yes" 4962 2 = "No" 4963 ; NOTE: Format EDTES40N has been output. 4964 VALUE edtes40o (default=32) 4965 -1 = "Not in Universe" 4966 1 = "Yes" 4967 2 = "No" 4968 ; NOTE: Format EDTES40O has been output. 4969 VALUE edtes40q (default=32) 4970 -1 = "Not in Universe" 4971 1 = "Yes" 4972 2 = "No" 4973 ; NOTE: Format EDTES40Q has been output. 4974 VALUE edtes40r (default=32) 4975 -1 = "Not in Universe" 4976 1 = "Yes" 4977 2 = "No" 4978 ; 95 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EDTES40R has been output. 4979 VALUE edtes40s (default=32) 4980 -1 = "Not in Universe" 4981 1 = "Yes" 4982 2 = "No" 4983 ; NOTE: Format EDTES40S has been output. 4984 VALUE edtes41p (default=32) 4985 -1 = "Not in Universe" 4986 1 = "Yes" 4987 2 = "No" 4988 ; NOTE: Format EDTES41P has been output. 4989 VALUE edcer40p (default=32) 4990 -1 = "Not in Universe" 4991 1 = "Yes" 4992 2 = "No" 4993 ; NOTE: Format EDCER40P has been output. 4994 VALUE edcer40k (default=32) 4995 -1 = "Not in Universe" 4996 1 = "Yes" 4997 2 = "No" 4998 ; NOTE: Format EDCER40K has been output. 4999 VALUE edcer40l (default=32) 5000 -1 = "Not in Universe" 5001 1 = "Yes" 5002 2 = "No" 5003 ; NOTE: Format EDCER40L has been output. 5004 VALUE edcer40m (default=32) 5005 -1 = "Not in Universe" 5006 1 = "Yes" 5007 2 = "No" 5008 ; NOTE: Format EDCER40M has been output. 5009 VALUE edcer40n (default=32) 5010 -1 = "Not in Universe" 5011 1 = "Yes" 5012 2 = "No" 5013 ; NOTE: Format EDCER40N has been output. 5014 VALUE edcer40o (default=32) 5015 -1 = "Not in Universe" 5016 1 = "Yes" 5017 2 = "No" 5018 ; NOTE: Format EDCER40O has been output. 5019 VALUE edcer40q (default=32) 5020 -1 = "Not in Universe" 5021 1 = "Yes" 5022 2 = "No" 5023 ; NOTE: Format EDCER40Q has been output. 5024 VALUE edcer40r (default=32) 5025 -1 = "Not in Universe" 5026 1 = "Yes" 96 The SAS System 15:07 Thursday, June 21, 2012 5027 2 = "No" 5028 ; NOTE: Format EDCER40R has been output. 5029 VALUE edcer40s (default=32) 5030 -1 = "Not in Universe" 5031 1 = "Yes" 5032 2 = "No" 5033 ; NOTE: Format EDCER40S has been output. 5034 VALUE edcer41p (default=32) 5035 -1 = "Not in Universe" 5036 1 = "Yes" 5037 2 = "No" 5038 ; NOTE: Format EDCER41P has been output. 5039 VALUE edsig40p (default=32) 5040 -1 = "Not in Universe" 5041 1 = "Yes" 5042 2 = "No" 5043 ; NOTE: Format EDSIG40P has been output. 5044 VALUE edsig40k (default=32) 5045 -1 = "Not in Universe" 5046 1 = "Yes" 5047 2 = "No" 5048 ; NOTE: Format EDSIG40K has been output. 5049 VALUE edsig40l (default=32) 5050 -1 = "Not in Universe" 5051 1 = "Yes" 5052 2 = "No" 5053 ; NOTE: Format EDSIG40L has been output. 5054 VALUE edsig40m (default=32) 5055 -1 = "Not in Universe" 5056 1 = "Yes" 5057 2 = "No" 5058 ; NOTE: Format EDSIG40M has been output. 5059 VALUE edsig40n (default=32) 5060 -1 = "Not in Universe" 5061 1 = "Yes" 5062 2 = "No" 5063 ; NOTE: Format EDSIG40N has been output. 5064 VALUE edsig40o (default=32) 5065 -1 = "Not in Universe" 5066 1 = "Yes" 5067 2 = "No" 5068 ; NOTE: Format EDSIG40O has been output. 5069 VALUE edsig40q (default=32) 5070 -1 = "Not in Universe" 5071 1 = "Yes" 5072 2 = "No" 5073 ; NOTE: Format EDSIG40Q has been output. 5074 VALUE edsig40r (default=32) 97 The SAS System 15:07 Thursday, June 21, 2012 5075 -1 = "Not in Universe" 5076 1 = "Yes" 5077 2 = "No" 5078 ; NOTE: Format EDSIG40R has been output. 5079 VALUE edsig40s (default=32) 5080 -1 = "Not in Universe" 5081 1 = "Yes" 5082 2 = "No" 5083 ; NOTE: Format EDSIG40S has been output. 5084 VALUE edsig41p (default=32) 5085 -1 = "Not in Universe" 5086 1 = "Yes" 5087 2 = "No" 5088 ; NOTE: Format EDSIG41P has been output. 5089 VALUE edoth40p (default=32) 5090 -1 = "Not in Universe" 5091 1 = "Yes" 5092 2 = "No" 5093 ; NOTE: Format EDOTH40P has been output. 5094 VALUE edoth40k (default=32) 5095 -1 = "Not in Universe" 5096 1 = "Yes" 5097 2 = "No" 5098 ; NOTE: Format EDOTH40K has been output. 5099 VALUE edoth40l (default=32) 5100 -1 = "Not in Universe" 5101 1 = "Yes" 5102 2 = "No" 5103 ; NOTE: Format EDOTH40L has been output. 5104 VALUE edoth40m (default=32) 5105 -1 = "Not in Universe" 5106 1 = "Yes" 5107 2 = "No" 5108 ; NOTE: Format EDOTH40M has been output. 5109 VALUE edoth40n (default=32) 5110 -1 = "Not in Universe" 5111 1 = "Yes" 5112 2 = "No" 5113 ; NOTE: Format EDOTH40N has been output. 5114 VALUE edoth40o (default=32) 5115 -1 = "Not in Universe" 5116 1 = "Yes" 5117 2 = "No" 5118 ; NOTE: Format EDOTH40O has been output. 5119 VALUE edoth40q (default=32) 5120 -1 = "Not in Universe" 5121 1 = "Yes" 5122 2 = "No" 5123 ; 98 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EDOTH40Q has been output. 5124 VALUE edoth40r (default=32) 5125 -1 = "Not in Universe" 5126 1 = "Yes" 5127 2 = "No" 5128 ; NOTE: Format EDOTH40R has been output. 5129 VALUE edoth40s (default=32) 5130 -1 = "Not in Universe" 5131 1 = "Yes" 5132 2 = "No" 5133 ; NOTE: Format EDOTH40S has been output. 5134 VALUE edoth41p (default=32) 5135 -1 = "Not in Universe" 5136 1 = "Yes" 5137 2 = "No" 5138 ; NOTE: Format EDOTH41P has been output. 5139 VALUE adid401l (default=32) 5140 0 = "Not imputed" 5141 1 = "Statistical imputation (hot deck)" 5142 2 = "Cold deck imputation" 5143 3 = "Logical imputation (derivation)" 5144 ; NOTE: Format ADID401L has been output. 5145 VALUE adid402l (default=32) 5146 0 = "Not imputed" 5147 1 = "Statistical imputation (hot deck)" 5148 2 = "Cold deck imputation" 5149 3 = "Logical imputation (derivation)" 5150 ; NOTE: Format ADID402L has been output. 5151 VALUE adid403l (default=32) 5152 0 = "Not imputed" 5153 1 = "Statistical imputation (hot deck)" 5154 2 = "Cold deck imputation" 5155 3 = "Logical imputation (derivation)" 5156 ; NOTE: Format ADID403L has been output. 5157 VALUE adid404l (default=32) 5158 0 = "Not imputed" 5159 1 = "Statistical imputation (hot deck)" 5160 2 = "Cold deck imputation" 5161 3 = "Logical imputation (derivation)" 5162 ; NOTE: Format ADID404L has been output. 5163 VALUE adid405l (default=32) 5164 0 = "Not imputed" 5165 1 = "Statistical imputation (hot deck)" 5166 2 = "Cold deck imputation" 5167 3 = "Logical imputation (derivation)" 5168 ; NOTE: Format ADID405L has been output. 5169 VALUE adid406l (default=32) 5170 0 = "Not imputed" 5171 1 = "Statistical imputation (hot deck)" 5172 2 = "Cold deck imputation" 99 The SAS System 15:07 Thursday, June 21, 2012 5173 3 = "Logical imputation (derivation)" 5174 ; NOTE: Format ADID406L has been output. 5175 VALUE adid407l (default=32) 5176 0 = "Not imputed" 5177 1 = "Statistical imputation (hot deck)" 5178 2 = "Cold deck imputation" 5179 3 = "Logical imputation (derivation)" 5180 ; NOTE: Format ADID407L has been output. 5181 VALUE adid408l (default=32) 5182 0 = "Not imputed" 5183 1 = "Statistical imputation (hot deck)" 5184 2 = "Cold deck imputation" 5185 3 = "Logical imputation (derivation)" 5186 ; NOTE: Format ADID408L has been output. 5187 VALUE adid409l (default=32) 5188 0 = "Not imputed" 5189 1 = "Statistical imputation (hot deck)" 5190 2 = "Cold deck imputation" 5191 3 = "Logical imputation (derivation)" 5192 ; NOTE: Format ADID409L has been output. 5193 VALUE adid410l (default=32) 5194 0 = "Not imputed" 5195 1 = "Statistical imputation (hot deck)" 5196 2 = "Cold deck imputation" 5197 3 = "Logical imputation (derivation)" 5198 ; NOTE: Format ADID410L has been output. 5199 VALUE esamepar (default=32) 5200 -1 = "Not in Universe" 5201 1 = "Yes" 5202 2 = "No" 5203 ; NOTE: Format ESAMEPAR has been output. 5204 VALUE asamepar (default=32) 5205 0 = "Not imputed" 5206 1 = "Statistical imputation (hot deck)" 5207 2 = "Cold deck imputation" 5208 3 = "Logical imputation (derivation)" 5209 ; NOTE: Format ASAMEPAR has been output. 5210 VALUE eynoag1r (default=32) 5211 -1 = "Not in Universe" 5212 1 = "Yes" 5213 2 = "No" 5214 ; NOTE: Format EYNOAG1R has been output. 5215 VALUE eynoag1k (default=32) 5216 -1 = "Not in Universe" 5217 1 = "Yes" 5218 2 = "No" 5219 ; NOTE: Format EYNOAG1K has been output. 5220 VALUE eynoag1l (default=32) 5221 -1 = "Not in Universe" 100 The SAS System 15:07 Thursday, June 21, 2012 5222 1 = "Yes" 5223 2 = "No" 5224 ; NOTE: Format EYNOAG1L has been output. 5225 VALUE eynoag1m (default=32) 5226 -1 = "Not in Universe" 5227 1 = "Yes" 5228 2 = "No" 5229 ; NOTE: Format EYNOAG1M has been output. 5230 VALUE eynoag1n (default=32) 5231 -1 = "Not in Universe" 5232 1 = "Yes" 5233 2 = "No" 5234 ; NOTE: Format EYNOAG1N has been output. 5235 VALUE eynoag1o (default=32) 5236 -1 = "Not in Universe" 5237 1 = "Yes" 5238 2 = "No" 5239 ; NOTE: Format EYNOAG1O has been output. 5240 VALUE eynoag1p (default=32) 5241 -1 = "Not in Universe" 5242 1 = "Yes" 5243 2 = "No" 5244 ; NOTE: Format EYNOAG1P has been output. 5245 VALUE eynoag1q (default=32) 5246 -1 = "Not in Universe" 5247 1 = "Yes" 5248 2 = "No" 5249 ; NOTE: Format EYNOAG1Q has been output. 5250 VALUE aynoag1r (default=32) 5251 0 = "Not imputed" 5252 1 = "Statistical imputation (hot deck)" 5253 2 = "Cold deck imputation" 5254 3 = "Logical imputation (derivation)" 5255 ; NOTE: Format AYNOAG1R has been output. 5256 VALUE ewherlvr (default=32) 5257 -1 = "Not in Universe" 5258 1 = "Same county or city" 5259 2 = "Same State (different county or" 5260 3 = "Different State" 5261 4 = "Other parent now deceased" 5262 5 = "Other" 5263 6 = "Unknown" 5264 ; NOTE: Format EWHERLVR has been output. 5265 VALUE awherlvr (default=32) 5266 0 = "Not imputed" 5267 1 = "Statistical imputation (hot deck)" 5268 2 = "Cold deck imputation" 5269 3 = "Logical imputation (derivation)" 5270 ; NOTE: Format AWHERLVR has been output. 101 The SAS System 15:07 Thursday, June 21, 2012 5271 VALUE evisagrr (default=32) 5272 -1 = "Not in Universe" 5273 1 = "Yes" 5274 2 = "No" 5275 ; NOTE: Format EVISAGRR has been output. 5276 VALUE avisagrr (default=32) 5277 0 = "Not imputed" 5278 1 = "Statistical imputation (hot deck)" 5279 2 = "Cold deck imputation" 5280 3 = "Logical imputation (derivation)" 5281 ; NOTE: Format AVISAGRR has been output. 5282 VALUE eamttm4r (default=32) 5283 -1 = "Not in Universe" 5284 ; NOTE: Format EAMTTM4R has been output. 5285 VALUE eamttm4k (default=32) 5286 -1 = "Not in Universe" 5287 ; NOTE: Format EAMTTM4K has been output. 5288 VALUE eamttm4l (default=32) 5289 -1 = "Not in Universe" 5290 ; NOTE: Format EAMTTM4L has been output. 5291 VALUE aamttm4r (default=32) 5292 0 = "Not imputed" 5293 1 = "Statistical imputation (hot deck)" 5294 2 = "Cold deck imputation" 5295 3 = "Logical imputation (derivation)" 5296 ; NOTE: Format AAMTTM4R has been output. 5297 VALUE eynoag2r (default=32) 5298 -1 = "Not in Universe" 5299 1 = "Yes" 5300 2 = "No" 5301 ; NOTE: Format EYNOAG2R has been output. 5302 VALUE eynoag2k (default=32) 5303 -1 = "Not in Universe" 5304 1 = "Yes" 5305 2 = "No" 5306 ; NOTE: Format EYNOAG2K has been output. 5307 VALUE eynoag2l (default=32) 5308 -1 = "Not in Universe" 5309 1 = "Yes" 5310 2 = "No" 5311 ; NOTE: Format EYNOAG2L has been output. 5312 VALUE eynoag2m (default=32) 5313 -1 = "Not in Universe" 5314 1 = "Yes" 5315 2 = "No" 5316 ; NOTE: Format EYNOAG2M has been output. 5317 VALUE eynoag2n (default=32) 5318 -1 = "Not in Universe" 102 The SAS System 15:07 Thursday, June 21, 2012 5319 1 = "Yes" 5320 2 = "No" 5321 ; NOTE: Format EYNOAG2N has been output. 5322 VALUE eynoag2o (default=32) 5323 -1 = "Not in Universe" 5324 1 = "Yes" 5325 2 = "No" 5326 ; NOTE: Format EYNOAG2O has been output. 5327 VALUE eynoag2p (default=32) 5328 -1 = "Not in Universe" 5329 1 = "Yes" 5330 2 = "No" 5331 ; NOTE: Format EYNOAG2P has been output. 5332 VALUE eynoag2q (default=32) 5333 -1 = "Not in Universe" 5334 1 = "Yes" 5335 2 = "No" 5336 ; NOTE: Format EYNOAG2Q has been output. 5337 VALUE aynoag2r (default=32) 5338 0 = "Not imputed" 5339 1 = "Statistical imputation (hot deck)" 5340 2 = "Cold deck imputation" 5341 3 = "Logical imputation (derivation)" 5342 ; NOTE: Format AYNOAG2R has been output. 5343 VALUE ewherlvl (default=32) 5344 -1 = "Not in Universe" 5345 1 = "Same county or city" 5346 2 = "Same State (different county or" 5347 3 = "Different State" 5348 4 = "Other parent now deceased" 5349 5 = "Other" 5350 6 = "Unknown" 5351 ; NOTE: Format EWHERLVL has been output. 5352 VALUE awherlvl (default=32) 5353 0 = "Not imputed" 5354 1 = "Statistical imputation (hot deck)" 5355 2 = "Cold deck imputation" 5356 3 = "Logical imputation (derivation)" 5357 ; NOTE: Format AWHERLVL has been output. 5358 VALUE evisagrk (default=32) 5359 -1 = "Not in Universe" 5360 1 = "Yes" 5361 2 = "No" 5362 ; NOTE: Format EVISAGRK has been output. 5363 VALUE avisagrk (default=32) 5364 0 = "Not imputed" 5365 1 = "Statistical imputation (hot deck)" 5366 2 = "Cold deck imputation" 5367 3 = "Logical imputation (derivation)" 5368 ; 103 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format AVISAGRK has been output. 5369 VALUE eamttm5r (default=32) 5370 -1 = "Not in Universe" 5371 ; NOTE: Format EAMTTM5R has been output. 5372 VALUE eamttm5k (default=32) 5373 -1 = "Not in Universe" 5374 ; NOTE: Format EAMTTM5K has been output. 5375 VALUE eamttm5l (default=32) 5376 -1 = "Not in Universe" 5377 ; NOTE: Format EAMTTM5L has been output. 5378 VALUE aamttm5r (default=32) 5379 0 = "Not imputed" 5380 1 = "Statistical imputation (hot deck)" 5381 2 = "Cold deck imputation" 5382 3 = "Logical imputation (derivation)" 5383 ; NOTE: Format AAMTTM5R has been output. 5384 VALUE epayrecv (default=32) 5385 -1 = "Not in Universe" 5386 1 = "Yes" 5387 2 = "No" 5388 ; NOTE: Format EPAYRECV has been output. 5389 VALUE apayrecv (default=32) 5390 0 = "Not imputed" 5391 1 = "Statistical imputation (hot deck)" 5392 2 = "Cold deck imputation" 5393 3 = "Logical imputation (derivation)" 5394 ; NOTE: Format APAYRECV has been output. 5395 VALUE tactrecv (default=32) 5396 0 = "None or not in universe" 5397 ; NOTE: Format TACTRECV has been output. 5398 VALUE aactrecv (default=32) 5399 0 = "Not imputed" 5400 1 = "Statistical imputation (hot deck)" 5401 2 = "Cold deck imputation" 5402 3 = "Logical imputation (derivation)" 5403 ; NOTE: Format AACTRECV has been output. 5404 VALUE eothitem (default=32) 5405 -1 = "Not in Universe" 5406 1 = "Yes" 5407 2 = "No" 5408 ; NOTE: Format EOTHITEM has been output. 5409 VALUE aothitem (default=32) 5410 0 = "Not imputed" 5411 1 = "Statistical imputation (hot deck)" 5412 2 = "Cold deck imputation" 5413 3 = "Logical imputation (derivation)" 5414 ; NOTE: Format AOTHITEM has been output. 5415 VALUE eagencol (default=32) 104 The SAS System 15:07 Thursday, June 21, 2012 5416 -1 = "Not in Universe" 5417 1 = "Yes" 5418 2 = "No" 5419 ; NOTE: Format EAGENCOL has been output. 5420 VALUE aagencol (default=32) 5421 0 = "Not imputed" 5422 1 = "Statistical imputation (hot deck)" 5423 2 = "Cold deck imputation" 5424 3 = "Logical imputation (derivation)" 5425 ; NOTE: Format AAGENCOL has been output. 5426 VALUE eagenall (default=32) 5427 -1 = "Not in Universe" 5428 1 = "Yes" 5429 2 = "No" 5430 ; NOTE: Format EAGENALL has been output. 5431 VALUE aagenall (default=32) 5432 0 = "Not imputed" 5433 1 = "Statistical imputation (hot deck)" 5434 2 = "Cold deck imputation" 5435 3 = "Logical imputation (derivation)" 5436 ; NOTE: Format AAGENALL has been output. 5437 VALUE tamtagen (default=32) 5438 0 = "Not In Universe" 5439 ; NOTE: Format TAMTAGEN has been output. 5440 VALUE aamtagen (default=32) 5441 0 = "Not imputed" 5442 1 = "Statistical imputation (hot deck)" 5443 2 = "Cold deck imputation" 5444 3 = "Logical imputation (derivation)" 5445 ; NOTE: Format AAMTAGEN has been output. 5446 VALUE easnunv (default=32) 5447 -1 = "Not in Universe" 5448 1 = "In universe" 5449 ; NOTE: Format EASNUNV has been output. 5450 VALUE esupkdyn (default=32) 5451 -1 = "Not in Universe" 5452 1 = "Yes" 5453 2 = "No" 5454 ; NOTE: Format ESUPKDYN has been output. 5455 VALUE asupkdyn (default=32) 5456 0 = "Not imputed" 5457 1 = "Statistical imputation (hot deck)" 5458 2 = "Cold deck imputation" 5459 3 = "Logical imputation (derivation)" 5460 ; NOTE: Format ASUPKDYN has been output. 5461 VALUE esuptypn (default=32) 5462 -1 = "Not in Universe" 5463 1 = "Yes" 5464 2 = "No" 105 The SAS System 15:07 Thursday, June 21, 2012 5465 ; NOTE: Format ESUPTYPN has been output. 5466 VALUE esuptypk (default=32) 5467 -1 = "Not in Universe" 5468 1 = "Yes" 5469 2 = "No" 5470 ; NOTE: Format ESUPTYPK has been output. 5471 VALUE esuptypl (default=32) 5472 -1 = "Not in Universe" 5473 1 = "Yes" 5474 2 = "No" 5475 ; NOTE: Format ESUPTYPL has been output. 5476 VALUE asuptyp (default=32) 5477 0 = "Not imputed" 5478 1 = "Statistical imputation (hot deck)" 5479 2 = "Cold deck imputation" 5480 3 = "Logical imputation (derivation)" 5481 ; NOTE: Format ASUPTYP has been output. 5482 VALUE tsupnkid (default=32) 5483 -1 = "Not in Universe" 5484 ; NOTE: Format TSUPNKID has been output. 5485 VALUE asupnkid (default=32) 5486 0 = "Not imputed" 5487 1 = "Statistical imputation (hot deck)" 5488 2 = "Cold deck imputation" 5489 3 = "Logical imputation (derivation)" 5490 ; NOTE: Format ASUPNKID has been output. 5491 VALUE tsupltad (default=32) 5492 -1 = "Not in Universe" 5493 ; NOTE: Format TSUPLTAD has been output. 5494 VALUE asupltad (default=32) 5495 0 = "Not imputed" 5496 1 = "Statistical imputation (hot deck)" 5497 2 = "Cold deck imputation" 5498 3 = "Logical imputation (derivation)" 5499 ; NOTE: Format ASUPLTAD has been output. 5500 VALUE esupagrm (default=32) 5501 -1 = "Not in Universe" 5502 1 = "Yes" 5503 2 = "No" 5504 ; NOTE: Format ESUPAGRM has been output. 5505 VALUE asupagrm (default=32) 5506 0 = "Not imputed" 5507 1 = "Statistical imputation (hot deck)" 5508 2 = "Cold deck imputation" 5509 3 = "Logical imputation (derivation)" 5510 ; NOTE: Format ASUPAGRM has been output. 5511 VALUE tsupnagr (default=32) 5512 -1 = "Not in Universe" 106 The SAS System 15:07 Thursday, June 21, 2012 5513 ; NOTE: Format TSUPNAGR has been output. 5514 VALUE asupnagr (default=32) 5515 0 = "Not imputed" 5516 1 = "Statistical imputation (hot deck)" 5517 2 = "Cold deck imputation" 5518 3 = "Logical imputation (derivation)" 5519 ; NOTE: Format ASUPNAGR has been output. 5520 VALUE esupagty (default=32) 5521 -1 = "Not in Universe" 5522 1 = "Voluntary written agreement" 5523 2 = "Court-ordered agreement" 5524 3 = "Other type of written agreement" 5525 4 = "Non-written agreement" 5526 ; NOTE: Format ESUPAGTY has been output. 5527 VALUE asupagty (default=32) 5528 0 = "Not imputed" 5529 1 = "Statistical imputation (hot deck)" 5530 2 = "Cold deck imputation" 5531 3 = "Logical imputation (derivation)" 5532 ; NOTE: Format ASUPAGTY has been output. 5533 VALUE esupagyr (default=32) 5534 -1 = "Not in Universe" 5535 ; NOTE: Format ESUPAGYR has been output. 5536 VALUE asupagyr (default=32) 5537 0 = "Not imputed" 5538 1 = "Statistical imputation (hot deck)" 5539 2 = "Cold deck imputation" 5540 3 = "Logical imputation (derivation)" 5541 ; NOTE: Format ASUPAGYR has been output. 5542 VALUE esupamtc (default=32) 5543 -1 = "Not in Universe" 5544 1 = "Yes" 5545 2 = "No" 5546 ; NOTE: Format ESUPAMTC has been output. 5547 VALUE asupamtc (default=32) 5548 0 = "Not imputed" 5549 1 = "Statistical imputation (hot deck)" 5550 2 = "Cold deck imputation" 5551 3 = "Logical imputation (derivation)" 5552 ; NOTE: Format ASUPAMTC has been output. 5553 VALUE esupyrch (default=32) 5554 -1 = "Not in Universe" 5555 ; NOTE: Format ESUPYRCH has been output. 5556 VALUE asupyrch (default=32) 5557 0 = "Not imputed" 5558 1 = "Statistical imputation (hot deck)" 5559 2 = "Cold deck imputation" 5560 3 = "Logical imputation (derivation)" 5561 ; 107 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format ASUPYRCH has been output. 5562 VALUE esupchag (default=32) 5563 -1 = "Not in Universe" 5564 1 = "Yes" 5565 2 = "No" 5566 ; NOTE: Format ESUPCHAG has been output. 5567 VALUE asupchag (default=32) 5568 0 = "Not imputed" 5569 1 = "Statistical imputation (hot deck)" 5570 2 = "Cold deck imputation" 5571 3 = "Logical imputation (derivation)" 5572 ; NOTE: Format ASUPCHAG has been output. 5573 VALUE esupstlp (default=32) 5574 -1 = "Not in Universe" 5575 1 = "Yes" 5576 2 = "No" 5577 ; NOTE: Format ESUPSTLP has been output. 5578 VALUE asupstlp (default=32) 5579 0 = "Not imputed" 5580 1 = "Statistical imputation (hot deck)" 5581 2 = "Cold deck imputation" 5582 3 = "Logical imputation (derivation)" 5583 ; NOTE: Format ASUPSTLP has been output. 5584 VALUE tsupampd (default=32) 5585 0 = "Not In Universe" 5586 ; NOTE: Format TSUPAMPD has been output. 5587 VALUE asupampd (default=32) 5588 0 = "Not imputed" 5589 1 = "Statistical imputation (hot deck)" 5590 2 = "Cold deck imputation" 5591 3 = "Logical imputation (derivation)" 5592 ; NOTE: Format ASUPAMPD has been output. 5593 VALUE esuphopy (default=32) 5594 -1 = "Not in Universe" 5595 1 = "Through employment related wage" 5596 2 = "Directly to the other parent" 5597 3 = "Directly to the court" 5598 4 = "Directly to a child support agency" 5599 5 = "By some other method" 5600 ; NOTE: Format ESUPHOPY has been output. 5601 VALUE asuphopy (default=32) 5602 0 = "Not imputed" 5603 1 = "Statistical imputation (hot deck)" 5604 2 = "Cold deck imputation" 5605 3 = "Logical imputation (derivation)" 5606 ; NOTE: Format ASUPHOPY has been output. 5607 VALUE esuphlty (default=32) 5608 -1 = "Not in Universe" 5609 1 = "Yes" 5610 2 = "No" 108 The SAS System 15:07 Thursday, June 21, 2012 5611 ; NOTE: Format ESUPHLTY has been output. 5612 VALUE esuphltk (default=32) 5613 -1 = "Not in Universe" 5614 1 = "Yes" 5615 2 = "No" 5616 ; NOTE: Format ESUPHLTK has been output. 5617 VALUE esuphltl (default=32) 5618 -1 = "Not in Universe" 5619 1 = "Yes" 5620 2 = "No" 5621 ; NOTE: Format ESUPHLTL has been output. 5622 VALUE esuphltm (default=32) 5623 -1 = "Not in Universe" 5624 1 = "Yes" 5625 2 = "No" 5626 ; NOTE: Format ESUPHLTM has been output. 5627 VALUE esuphltn (default=32) 5628 -1 = "Not in Universe" 5629 1 = "Yes" 5630 2 = "No" 5631 ; NOTE: Format ESUPHLTN has been output. 5632 VALUE esuphlto (default=32) 5633 -1 = "Not in Universe" 5634 1 = "Yes" 5635 2 = "No" 5636 ; NOTE: Format ESUPHLTO has been output. 5637 VALUE asuphlt (default=32) 5638 0 = "Not imputed" 5639 1 = "Statistical imputation (hot deck)" 5640 2 = "Cold deck imputation" 5641 3 = "Logical imputation (derivation)" 5642 ; NOTE: Format ASUPHLT has been output. 5643 VALUE esupcust (default=32) 5644 -1 = "Not in Universe" 5645 1 = "Joint legal and physical custody" 5646 2 = "Joint legal with mother physical" 5647 3 = "Joint Legal with father physical" 5648 4 = "Mother legal and physical custody" 5649 5 = "Father legal and physical custody" 5650 6 = "Split custody" 5651 7 = "Other-specify" 5652 ; NOTE: Format ESUPCUST has been output. 5653 VALUE asupcust (default=32) 5654 0 = "Not imputed" 5655 1 = "Statistical imputation (hot deck)" 5656 2 = "Cold deck imputation" 5657 3 = "Logical imputation (derivation)" 5658 ; NOTE: Format ASUPCUST has been output. 5659 VALUE esupsptm (default=32) 109 The SAS System 15:07 Thursday, June 21, 2012 5660 -1 = "Not in Universe" 5661 1 = "Yes" 5662 2 = "No" 5663 ; NOTE: Format ESUPSPTM has been output. 5664 VALUE asupsptm (default=32) 5665 0 = "Not imputed" 5666 1 = "Statistical imputation (hot deck)" 5667 2 = "Cold deck imputation" 5668 3 = "Logical imputation (derivation)" 5669 ; NOTE: Format ASUPSPTM has been output. 5670 VALUE esuptamm (default=32) 5671 -1 = "Not in Universe" 5672 ; NOTE: Format ESUPTAMM has been output. 5673 VALUE esuptamk (default=32) 5674 -1 = "Not in Universe" 5675 ; NOTE: Format ESUPTAMK has been output. 5676 VALUE esuptaml (default=32) 5677 -1 = "Not in Universe" 5678 ; NOTE: Format ESUPTAML has been output. 5679 VALUE asuptam (default=32) 5680 0 = "Not imputed" 5681 1 = "Statistical imputation (hot deck)" 5682 2 = "Cold deck imputation" 5683 3 = "Logical imputation (derivation)" 5684 ; NOTE: Format ASUPTAM has been output. 5685 VALUE esupotha (default=32) 5686 -1 = "Not in Universe" 5687 1 = "Yes" 5688 2 = "No" 5689 ; NOTE: Format ESUPOTHA has been output. 5690 VALUE asupotha (default=32) 5691 0 = "Not imputed" 5692 1 = "Statistical imputation (hot deck)" 5693 2 = "Cold deck imputation" 5694 3 = "Logical imputation (derivation)" 5695 ; NOTE: Format ASUPOTHA has been output. 5696 VALUE tsupamal (default=32) 5697 0 = "None or not in universe" 5698 ; NOTE: Format TSUPAMAL has been output. 5699 VALUE asupamal (default=32) 5700 0 = "Not imputed" 5701 1 = "Statistical imputation (hot deck)" 5702 2 = "Cold deck imputation" 5703 3 = "Logical imputation (derivation)" 5704 ; NOTE: Format ASUPAMAL has been output. 5705 VALUE esupwoag (default=32) 5706 -1 = "Not in Universe" 5707 1 = "Yes" 110 The SAS System 15:07 Thursday, June 21, 2012 5708 2 = "No" 5709 ; NOTE: Format ESUPWOAG has been output. 5710 VALUE asupwoag (default=32) 5711 0 = "Not imputed" 5712 1 = "Statistical imputation (hot deck)" 5713 2 = "Cold deck imputation" 5714 3 = "Logical imputation (derivation)" 5715 ; NOTE: Format ASUPWOAG has been output. 5716 VALUE tsupamad (default=32) 5717 0 = "Not In Universe" 5718 ; NOTE: Format TSUPAMAD has been output. 5719 VALUE asupamad (default=32) 5720 0 = "Not imputed" 5721 1 = "Statistical imputation (hot deck)" 5722 2 = "Cold deck imputation" 5723 3 = "Logical imputation (derivation)" 5724 ; NOTE: Format ASUPAMAD has been output. 5725 VALUE esuptmad (default=32) 5726 -1 = "Not in Universe" 5727 ; NOTE: Format ESUPTMAD has been output. 5728 VALUE esuptmak (default=32) 5729 -1 = "Not in Universe" 5730 ; NOTE: Format ESUPTMAK has been output. 5731 VALUE esuptmal (default=32) 5732 -1 = "Not in Universe" 5733 ; NOTE: Format ESUPTMAL has been output. 5734 VALUE asuptma (default=32) 5735 0 = "Not imputed" 5736 1 = "Statistical imputation (hot deck)" 5737 2 = "Cold deck imputation" 5738 3 = "Logical imputation (derivation)" 5739 ; NOTE: Format ASUPTMA has been output. 5740 VALUE esupotpy (default=32) 5741 -1 = "Not in Universe" 5742 1 = "Yes" 5743 2 = "No" 5744 ; NOTE: Format ESUPOTPY has been output. 5745 VALUE asupotpy (default=32) 5746 0 = "Not imputed" 5747 1 = "Statistical imputation (hot deck)" 5748 2 = "Cold deck imputation" 5749 3 = "Logical imputation (derivation)" 5750 ; NOTE: Format ASUPOTPY has been output. 5751 VALUE tsupotnp (default=32) 5752 -1 = "Not in Universe" 5753 ; NOTE: Format TSUPOTNP has been output. 5754 VALUE asupotnp (default=32) 111 The SAS System 15:07 Thursday, June 21, 2012 5755 0 = "Not imputed" 5756 1 = "Statistical imputation (hot deck)" 5757 2 = "Cold deck imputation" 5758 3 = "Logical imputation (derivation)" 5759 ; NOTE: Format ASUPOTNP has been output. 5760 VALUE esupotre (default=32) 5761 -1 = "Not in Universe" 5762 1 = "Parent" 5763 2 = "Spouse" 5764 3 = "Ex-spouse" 5765 4 = "Child under 21" 5766 5 = "Child over 21" 5767 6 = "Other relative" 5768 7 = "Not related" 5769 ; NOTE: Format ESUPOTRE has been output. 5770 VALUE asupotre (default=32) 5771 0 = "Not imputed" 5772 1 = "Statistical imputation (hot deck)" 5773 2 = "Cold deck imputation" 5774 3 = "Logical imputation (derivation)" 5775 ; NOTE: Format ASUPOTRE has been output. 5776 VALUE esupotlv (default=32) 5777 -1 = "Not in Universe" 5778 1 = "Private home or apartment" 5779 2 = "Nursing home" 5780 3 = "Someplace else" 5781 ; NOTE: Format ESUPOTLV has been output. 5782 VALUE asupotlv (default=32) 5783 0 = "Not imputed" 5784 1 = "Statistical imputation (hot deck)" 5785 2 = "Cold deck imputation" 5786 3 = "Logical imputation (derivation)" 5787 ; NOTE: Format ASUPOTLV has been output. 5788 VALUE tsupotam (default=32) 5789 0 = "Not In Universe" 5790 ; NOTE: Format TSUPOTAM has been output. 5791 VALUE asupotam (default=32) 5792 0 = "Not imputed" 5793 1 = "Statistical imputation (hot deck)" 5794 2 = "Cold deck imputation" 5795 3 = "Logical imputation (derivation)" 5796 ; NOTE: Format ASUPOTAM has been output. 5797 VALUE esupotrl (default=32) 5798 -1 = "Not in Universe" 5799 1 = "Parent" 5800 2 = "Spouse" 5801 3 = "Ex-spouse" 5802 4 = "Child under 21" 5803 5 = "Child over 21" 5804 6 = "Other relative" 5805 7 = "Not related" 112 The SAS System 15:07 Thursday, June 21, 2012 5806 ; NOTE: Format ESUPOTRL has been output. 5807 VALUE asupotrl (default=32) 5808 0 = "Not imputed" 5809 1 = "Statistical imputation (hot deck)" 5810 2 = "Cold deck imputation" 5811 3 = "Logical imputation (derivation)" 5812 ; NOTE: Format ASUPOTRL has been output. 5813 VALUE esupotli (default=32) 5814 -1 = "Not in Universe" 5815 1 = "Private home or apartment" 5816 2 = "Nursing home" 5817 3 = "Someplace else" 5818 ; NOTE: Format ESUPOTLI has been output. 5819 VALUE asupotli (default=32) 5820 0 = "Not imputed" 5821 1 = "Statistical imputation (hot deck)" 5822 2 = "Cold deck imputation" 5823 3 = "Logical imputation (derivation)" 5824 ; NOTE: Format ASUPOTLI has been output. 5825 VALUE tsupotpa (default=32) 5826 0 = "Not In Universe" 5827 ; NOTE: Format TSUPOTPA has been output. 5828 VALUE asupotpa (default=32) 5829 0 = "Not imputed" 5830 1 = "Statistical imputation (hot deck)" 5831 2 = "Cold deck imputation" 5832 3 = "Logical imputation (derivation)" 5833 ; NOTE: Format ASUPOTPA has been output. 5834 VALUE tsupotnt (default=32) 5835 0 = "Not In Universe" 5836 ; NOTE: Format TSUPOTNT has been output. 5837 VALUE asupotnt (default=32) 5838 0 = "Not imputed" 5839 1 = "Statistical imputation (hot deck)" 5840 2 = "Cold deck imputation" 5841 3 = "Logical imputation (derivation)" 5842 ; NOTE: Format ASUPOTNT has been output. 5843 VALUE eaadunv (default=32) 5844 -1 = "Not in Universe" 5845 1 = "In universe" 5846 ; NOTE: Format EAADUNV has been output. 5847 VALUE ehstat (default=32) 5848 -1 = "Not in Universe" 5849 1 = "Excellent" 5850 2 = "Very Good" 5851 3 = "Good" 5852 4 = "Fair" 5853 5 = "Poor" 5854 ; 113 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EHSTAT has been output. 5855 VALUE ahstat (default=32) 5856 0 = "Not imputed" 5857 1 = "Statistical imputation (hot deck)" 5858 2 = "Cold deck imputation" 5859 3 = "Logical imputation (derivation)" 5860 ; NOTE: Format AHSTAT has been output. 5861 VALUE ecane (default=32) 5862 -1 = "Not in Universe" 5863 1 = "Yes" 5864 2 = "No" 5865 ; NOTE: Format ECANE has been output. 5866 VALUE acane (default=32) 5867 0 = "Not imputed" 5868 1 = "Statistical imputation (hot deck)" 5869 2 = "Cold deck imputation" 5870 3 = "Logical imputation (derivation)" 5871 ; NOTE: Format ACANE has been output. 5872 VALUE ewchair (default=32) 5873 -1 = "Not in Universe" 5874 1 = "Yes" 5875 2 = "No" 5876 ; NOTE: Format EWCHAIR has been output. 5877 VALUE awchair (default=32) 5878 0 = "Not imputed" 5879 1 = "Statistical imputation (hot deck)" 5880 2 = "Cold deck imputation" 5881 3 = "Logical imputation (derivation)" 5882 ; NOTE: Format AWCHAIR has been output. 5883 VALUE ehearaid (default=32) 5884 -1 = "Not in Universe" 5885 1 = "Yes" 5886 2 = "No" 5887 ; NOTE: Format EHEARAID has been output. 5888 VALUE ahearaid (default=32) 5889 0 = "Not imputed" 5890 1 = "Statistical imputation (hot deck)" 5891 2 = "Cold deck imputation" 5892 3 = "Logical imputation (derivation)" 5893 ; NOTE: Format AHEARAID has been output. 5894 VALUE ecane6l (default=32) 5895 -1 = "Not in Universe" 5896 1 = "Yes" 5897 2 = "No" 5898 ; NOTE: Format ECANE6L has been output. 5899 VALUE acane6l (default=32) 5900 0 = "Not imputed" 5901 1 = "Statistical imputation (hot deck)" 5902 2 = "Cold deck imputation" 5903 3 = "Logical imputation (derivation)" 114 The SAS System 15:07 Thursday, June 21, 2012 5904 ; NOTE: Format ACANE6L has been output. 5905 VALUE eseedif (default=32) 5906 -1 = "Not in Universe" 5907 1 = "Yes" 5908 2 = "No" 5909 3 = "Person is Blind" 5910 ; NOTE: Format ESEEDIF has been output. 5911 VALUE aseedif (default=32) 5912 0 = "Not imputed" 5913 1 = "Statistical imputation (hot deck)" 5914 2 = "Cold deck imputation" 5915 3 = "Logical imputation (derivation)" 5916 ; NOTE: Format ASEEDIF has been output. 5917 VALUE eseenot (default=32) 5918 -1 = "Not in Universe" 5919 1 = "Yes" 5920 2 = "No" 5921 ; NOTE: Format ESEENOT has been output. 5922 VALUE aseenot (default=32) 5923 0 = "Not imputed" 5924 1 = "Statistical imputation (hot deck)" 5925 2 = "Cold deck imputation" 5926 3 = "Logical imputation (derivation)" 5927 ; NOTE: Format ASEENOT has been output. 5928 VALUE eheardif (default=32) 5929 -1 = "Not in Universe" 5930 1 = "Yes" 5931 2 = "No" 5932 3 = "Person is deaf" 5933 ; NOTE: Format EHEARDIF has been output. 5934 VALUE aheardif (default=32) 5935 0 = "Not imputed" 5936 1 = "Statistical imputation (hot deck)" 5937 2 = "Cold deck imputation" 5938 3 = "Logical imputation (derivation)" 5939 ; NOTE: Format AHEARDIF has been output. 5940 VALUE ehearnot (default=32) 5941 -1 = "Not in Universe" 5942 1 = "Yes" 5943 2 = "No" 5944 ; NOTE: Format EHEARNOT has been output. 5945 VALUE ahearnot (default=32) 5946 0 = "Not imputed" 5947 1 = "Statistical imputation (hot deck)" 5948 2 = "Cold deck imputation" 5949 3 = "Logical imputation (derivation)" 5950 ; NOTE: Format AHEARNOT has been output. 5951 VALUE espeechd (default=32) 5952 -1 = "Not in Universe" 115 The SAS System 15:07 Thursday, June 21, 2012 5953 1 = "Yes" 5954 2 = "No" 5955 ; NOTE: Format ESPEECHD has been output. 5956 VALUE aspeechd (default=32) 5957 0 = "Not imputed" 5958 1 = "Statistical imputation (hot deck)" 5959 2 = "Cold deck imputation" 5960 3 = "Logical imputation (derivation)" 5961 ; NOTE: Format ASPEECHD has been output. 5962 VALUE espeechc (default=32) 5963 -1 = "Not in Universe" 5964 1 = "Yes" 5965 2 = "No" 5966 ; NOTE: Format ESPEECHC has been output. 5967 VALUE aspeechc (default=32) 5968 0 = "Not imputed" 5969 1 = "Statistical imputation (hot deck)" 5970 2 = "Cold deck imputation" 5971 3 = "Logical imputation (derivation)" 5972 ; NOTE: Format ASPEECHC has been output. 5973 VALUE edif10l (default=32) 5974 -1 = "Not in Universe" 5975 1 = "Yes" 5976 2 = "No" 5977 ; NOTE: Format EDIF10L has been output. 5978 VALUE adif10l (default=32) 5979 0 = "Not imputed" 5980 1 = "Statistical imputation (hot deck)" 5981 2 = "Cold deck imputation" 5982 3 = "Logical imputation (derivation)" 5983 ; NOTE: Format ADIF10L has been output. 5984 VALUE ecant10l (default=32) 5985 -1 = "Not in Universe" 5986 1 = "Yes" 5987 2 = "No" 5988 ; NOTE: Format ECANT10L has been output. 5989 VALUE acant10l (default=32) 5990 0 = "Not imputed" 5991 1 = "Statistical imputation (hot deck)" 5992 2 = "Cold deck imputation" 5993 3 = "Logical imputation (derivation)" 5994 ; NOTE: Format ACANT10L has been output. 5995 VALUE edif25l (default=32) 5996 -1 = "Not in Universe" 5997 1 = "Yes" 5998 2 = "No" 5999 ; NOTE: Format EDIF25L has been output. 6000 VALUE adif25l (default=32) 6001 0 = "Not imputed" 116 The SAS System 15:07 Thursday, June 21, 2012 6002 1 = "Statistical imputation (hot deck)" 6003 2 = "Cold deck imputation" 6004 3 = "Logical imputation (derivation)" 6005 ; NOTE: Format ADIF25L has been output. 6006 VALUE ecant25l (default=32) 6007 -1 = "Not in Universe" 6008 1 = "Yes" 6009 2 = "No" 6010 ; NOTE: Format ECANT25L has been output. 6011 VALUE acant25l (default=32) 6012 0 = "Not imputed" 6013 1 = "Statistical imputation (hot deck)" 6014 2 = "Cold deck imputation" 6015 3 = "Logical imputation (derivation)" 6016 ; NOTE: Format ACANT25L has been output. 6017 VALUE epushd (default=32) 6018 -1 = "Not in Universe" 6019 1 = "Yes" 6020 2 = "No" 6021 ; NOTE: Format EPUSHD has been output. 6022 VALUE apushd (default=32) 6023 0 = "Not imputed" 6024 1 = "Statistical imputation (hot deck)" 6025 2 = "Cold deck imputation" 6026 3 = "Logical imputation (derivation)" 6027 ; NOTE: Format APUSHD has been output. 6028 VALUE epushc (default=32) 6029 -1 = "Not in Universe" 6030 1 = "Yes" 6031 2 = "No" 6032 ; NOTE: Format EPUSHC has been output. 6033 VALUE apushc (default=32) 6034 0 = "Not imputed" 6035 1 = "Statistical imputation (hot deck)" 6036 2 = "Cold deck imputation" 6037 3 = "Logical imputation (derivation)" 6038 ; NOTE: Format APUSHC has been output. 6039 VALUE estandd (default=32) 6040 -1 = "Not in Universe" 6041 1 = "Yes" 6042 2 = "No" 6043 ; NOTE: Format ESTANDD has been output. 6044 VALUE astandd (default=32) 6045 0 = "Not imputed" 6046 1 = "Statistical imputation (hot deck)" 6047 2 = "Cold deck imputation" 6048 3 = "Logical imputation (derivation)" 6049 ; NOTE: Format ASTANDD has been output. 6050 VALUE esitd (default=32) 117 The SAS System 15:07 Thursday, June 21, 2012 6051 -1 = "Not in Universe" 6052 1 = "Yes" 6053 2 = "No" 6054 ; NOTE: Format ESITD has been output. 6055 VALUE asitd (default=32) 6056 0 = "Not imputed" 6057 1 = "Statistical imputation (hot deck)" 6058 2 = "Cold deck imputation" 6059 3 = "Logical imputation (derivation)" 6060 ; NOTE: Format ASITD has been output. 6061 VALUE estoopd (default=32) 6062 -1 = "Not in Universe" 6063 1 = "Yes" 6064 2 = "No" 6065 ; NOTE: Format ESTOOPD has been output. 6066 VALUE astoopd (default=32) 6067 0 = "Not imputed" 6068 1 = "Statistical imputation (hot deck)" 6069 2 = "Cold deck imputation" 6070 3 = "Logical imputation (derivation)" 6071 ; NOTE: Format ASTOOPD has been output. 6072 VALUE ereachd (default=32) 6073 -1 = "Not in Universe" 6074 1 = "Yes" 6075 2 = "No" 6076 ; NOTE: Format EREACHD has been output. 6077 VALUE areachd (default=32) 6078 0 = "Not imputed" 6079 1 = "Statistical imputation (hot deck)" 6080 2 = "Cold deck imputation" 6081 3 = "Logical imputation (derivation)" 6082 ; NOTE: Format AREACHD has been output. 6083 VALUE egraspd (default=32) 6084 -1 = "Not in Universe" 6085 1 = "Yes" 6086 2 = "No" 6087 ; NOTE: Format EGRASPD has been output. 6088 VALUE agraspd (default=32) 6089 0 = "Not imputed" 6090 1 = "Statistical imputation (hot deck)" 6091 2 = "Cold deck imputation" 6092 3 = "Logical imputation (derivation)" 6093 ; NOTE: Format AGRASPD has been output. 6094 VALUE egraspc (default=32) 6095 -1 = "Not in Universe" 6096 1 = "Yes" 6097 2 = "No" 6098 ; NOTE: Format EGRASPC has been output. 6099 VALUE agraspc (default=32) 118 The SAS System 15:07 Thursday, June 21, 2012 6100 0 = "Not imputed" 6101 1 = "Statistical imputation (hot deck)" 6102 2 = "Cold deck imputation" 6103 3 = "Logical imputation (derivation)" 6104 ; NOTE: Format AGRASPC has been output. 6105 VALUE estairsd (default=32) 6106 -1 = "Not in Universe" 6107 1 = "Yes" 6108 2 = "No" 6109 ; NOTE: Format ESTAIRSD has been output. 6110 VALUE astairsd (default=32) 6111 0 = "Not imputed" 6112 1 = "Statistical imputation (hot deck)" 6113 2 = "Cold deck imputation" 6114 3 = "Logical imputation (derivation)" 6115 ; NOTE: Format ASTAIRSD has been output. 6116 VALUE estairsc (default=32) 6117 -1 = "Not in Universe" 6118 1 = "Yes" 6119 2 = "No" 6120 ; NOTE: Format ESTAIRSC has been output. 6121 VALUE astairsc (default=32) 6122 0 = "Not imputed" 6123 1 = "Statistical imputation (hot deck)" 6124 2 = "Cold deck imputation" 6125 3 = "Logical imputation (derivation)" 6126 ; NOTE: Format ASTAIRSC has been output. 6127 VALUE ewalkd (default=32) 6128 -1 = "Not in Universe" 6129 1 = "Yes" 6130 2 = "No" 6131 ; NOTE: Format EWALKD has been output. 6132 VALUE awalkd (default=32) 6133 0 = "Not imputed" 6134 1 = "Statistical imputation (hot deck)" 6135 2 = "Cold deck imputation" 6136 3 = "Logical imputation (derivation)" 6137 ; NOTE: Format AWALKD has been output. 6138 VALUE ewalkc (default=32) 6139 -1 = "Not in Universe" 6140 1 = "Yes" 6141 2 = "No" 6142 ; NOTE: Format EWALKC has been output. 6143 VALUE awalkc (default=32) 6144 0 = "Not imputed" 6145 1 = "Statistical imputation (hot deck)" 6146 2 = "Cold deck imputation" 6147 3 = "Logical imputation (derivation)" 6148 ; NOTE: Format AWALKC has been output. 119 The SAS System 15:07 Thursday, June 21, 2012 6149 VALUE eteled (default=32) 6150 -1 = "Not in Universe" 6151 1 = "Yes" 6152 2 = "No" 6153 ; NOTE: Format ETELED has been output. 6154 VALUE ateled (default=32) 6155 0 = "Not imputed" 6156 1 = "Statistical imputation (hot deck)" 6157 2 = "Cold deck imputation" 6158 3 = "Logical imputation (derivation)" 6159 ; NOTE: Format ATELED has been output. 6160 VALUE etelec (default=32) 6161 -1 = "Not in Universe" 6162 1 = "Yes" 6163 2 = "No" 6164 ; NOTE: Format ETELEC has been output. 6165 VALUE atelec (default=32) 6166 0 = "Not imputed" 6167 1 = "Statistical imputation (hot deck)" 6168 2 = "Cold deck imputation" 6169 3 = "Logical imputation (derivation)" 6170 ; NOTE: Format ATELEC has been output. 6171 VALUE eindif (default=32) 6172 -1 = "Not in Universe" 6173 1 = "Yes" 6174 2 = "No" 6175 ; NOTE: Format EINDIF has been output. 6176 VALUE aindif (default=32) 6177 0 = "Not imputed" 6178 1 = "Statistical imputation (hot deck)" 6179 2 = "Cold deck imputation" 6180 3 = "Logical imputation (derivation)" 6181 ; NOTE: Format AINDIF has been output. 6182 VALUE eoutdif (default=32) 6183 -1 = "Not in Universe" 6184 1 = "Yes" 6185 2 = "No" 6186 ; NOTE: Format EOUTDIF has been output. 6187 VALUE aoutdif (default=32) 6188 0 = "Not imputed" 6189 1 = "Statistical imputation (hot deck)" 6190 2 = "Cold deck imputation" 6191 3 = "Logical imputation (derivation)" 6192 ; NOTE: Format AOUTDIF has been output. 6193 VALUE ebeddif (default=32) 6194 -1 = "Not in Universe" 6195 1 = "Yes" 6196 2 = "No" 6197 ; NOTE: Format EBEDDIF has been output. 120 The SAS System 15:07 Thursday, June 21, 2012 6198 VALUE abeddif (default=32) 6199 0 = "Not imputed" 6200 1 = "Statistical imputation (hot deck)" 6201 2 = "Cold deck imputation" 6202 3 = "Logical imputation (derivation)" 6203 ; NOTE: Format ABEDDIF has been output. 6204 VALUE ebathdif (default=32) 6205 -1 = "Not in Universe" 6206 1 = "Yes" 6207 2 = "No" 6208 ; NOTE: Format EBATHDIF has been output. 6209 VALUE abathdif (default=32) 6210 0 = "Not imputed" 6211 1 = "Statistical imputation (hot deck)" 6212 2 = "Cold deck imputation" 6213 3 = "Logical imputation (derivation)" 6214 ; NOTE: Format ABATHDIF has been output. 6215 VALUE edressd (default=32) 6216 -1 = "Not in Universe" 6217 1 = "Yes" 6218 2 = "No" 6219 ; NOTE: Format EDRESSD has been output. 6220 VALUE adressd (default=32) 6221 0 = "Not imputed" 6222 1 = "Statistical imputation (hot deck)" 6223 2 = "Cold deck imputation" 6224 3 = "Logical imputation (derivation)" 6225 ; NOTE: Format ADRESSD has been output. 6226 VALUE ewalk2d (default=32) 6227 -1 = "Not in Universe" 6228 1 = "Yes" 6229 2 = "No" 6230 ; NOTE: Format EWALK2D has been output. 6231 VALUE awalk2d (default=32) 6232 0 = "Not imputed" 6233 1 = "Statistical imputation (hot deck)" 6234 2 = "Cold deck imputation" 6235 3 = "Logical imputation (derivation)" 6236 ; NOTE: Format AWALK2D has been output. 6237 VALUE eeatdif (default=32) 6238 -1 = "Not in Universe" 6239 1 = "Yes" 6240 2 = "No" 6241 ; NOTE: Format EEATDIF has been output. 6242 VALUE aeatdif (default=32) 6243 0 = "Not imputed" 6244 1 = "Statistical imputation (hot deck)" 6245 2 = "Cold deck imputation" 6246 3 = "Logical imputation (derivation)" 6247 ; 121 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format AEATDIF has been output. 6248 VALUE etoiletd (default=32) 6249 -1 = "Not in Universe" 6250 1 = "Yes" 6251 2 = "No" 6252 ; NOTE: Format ETOILETD has been output. 6253 VALUE atoiletd (default=32) 6254 0 = "Not imputed" 6255 1 = "Statistical imputation (hot deck)" 6256 2 = "Cold deck imputation" 6257 3 = "Logical imputation (derivation)" 6258 ; NOTE: Format ATOILETD has been output. 6259 VALUE emoneyd (default=32) 6260 -1 = "Not in Universe" 6261 1 = "Yes" 6262 2 = "No" 6263 ; NOTE: Format EMONEYD has been output. 6264 VALUE amoneyd (default=32) 6265 0 = "Not imputed" 6266 1 = "Statistical imputation (hot deck)" 6267 2 = "Cold deck imputation" 6268 3 = "Logical imputation (derivation)" 6269 ; NOTE: Format AMONEYD has been output. 6270 VALUE emealsd (default=32) 6271 -1 = "Not in Universe" 6272 1 = "Yes" 6273 2 = "No" 6274 ; NOTE: Format EMEALSD has been output. 6275 VALUE amealsd (default=32) 6276 0 = "Not imputed" 6277 1 = "Statistical imputation (hot deck)" 6278 2 = "Cold deck imputation" 6279 3 = "Logical imputation (derivation)" 6280 ; NOTE: Format AMEALSD has been output. 6281 VALUE ehworkd (default=32) 6282 -1 = "Not in Universe" 6283 1 = "Yes" 6284 2 = "No" 6285 ; NOTE: Format EHWORKD has been output. 6286 VALUE ahworkd (default=32) 6287 0 = "Not imputed" 6288 1 = "Statistical imputation (hot deck)" 6289 2 = "Cold deck imputation" 6290 3 = "Logical imputation (derivation)" 6291 ; NOTE: Format AHWORKD has been output. 6292 VALUE emedd (default=32) 6293 -1 = "Not in Universe" 6294 1 = "Yes" 6295 2 = "No" 6296 ; 122 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EMEDD has been output. 6297 VALUE amedd (default=32) 6298 0 = "Not imputed" 6299 1 = "Statistical imputation (hot deck)" 6300 2 = "Cold deck imputation" 6301 3 = "Logical imputation (derivation)" 6302 ; NOTE: Format AMEDD has been output. 6303 VALUE einhelp (default=32) 6304 -1 = "Not in Universe" 6305 1 = "Yes" 6306 2 = "No" 6307 ; NOTE: Format EINHELP has been output. 6308 VALUE ainhelp (default=32) 6309 0 = "Not imputed" 6310 1 = "Statistical imputation (hot deck)" 6311 2 = "Cold deck imputation" 6312 3 = "Logical imputation (derivation)" 6313 ; NOTE: Format AINHELP has been output. 6314 VALUE eouthelp (default=32) 6315 -1 = "Not in Universe" 6316 1 = "Yes" 6317 2 = "No" 6318 ; NOTE: Format EOUTHELP has been output. 6319 VALUE aouthelp (default=32) 6320 0 = "Not imputed" 6321 1 = "Statistical imputation (hot deck)" 6322 2 = "Cold deck imputation" 6323 3 = "Logical imputation (derivation)" 6324 ; NOTE: Format AOUTHELP has been output. 6325 VALUE ebedhelp (default=32) 6326 -1 = "Not in Universe" 6327 1 = "Yes" 6328 2 = "No" 6329 ; NOTE: Format EBEDHELP has been output. 6330 VALUE abedhelp (default=32) 6331 0 = "Not imputed" 6332 1 = "Statistical imputation (hot deck)" 6333 2 = "Cold deck imputation" 6334 3 = "Logical imputation (derivation)" 6335 ; NOTE: Format ABEDHELP has been output. 6336 VALUE ebathh (default=32) 6337 -1 = "Not in Universe" 6338 1 = "Yes" 6339 2 = "No" 6340 ; NOTE: Format EBATHH has been output. 6341 VALUE abathh (default=32) 6342 0 = "Not imputed" 6343 1 = "Statistical imputation (hot deck)" 6344 2 = "Cold deck imputation" 6345 3 = "Logical imputation (derivation)" 123 The SAS System 15:07 Thursday, June 21, 2012 6346 ; NOTE: Format ABATHH has been output. 6347 VALUE edressh (default=32) 6348 -1 = "Not in Universe" 6349 1 = "Yes" 6350 2 = "No" 6351 ; NOTE: Format EDRESSH has been output. 6352 VALUE adressh (default=32) 6353 0 = "Not imputed" 6354 1 = "Statistical imputation (hot deck)" 6355 2 = "Cold deck imputation" 6356 3 = "Logical imputation (derivation)" 6357 ; NOTE: Format ADRESSH has been output. 6358 VALUE ewalk2h (default=32) 6359 -1 = "Not in Universe" 6360 1 = "Yes" 6361 2 = "No" 6362 ; NOTE: Format EWALK2H has been output. 6363 VALUE awalk2h (default=32) 6364 0 = "Not imputed" 6365 1 = "Statistical imputation (hot deck)" 6366 2 = "Cold deck imputation" 6367 3 = "Logical imputation (derivation)" 6368 ; NOTE: Format AWALK2H has been output. 6369 VALUE eeathelp (default=32) 6370 -1 = "Not in Universe" 6371 1 = "Yes" 6372 2 = "No" 6373 ; NOTE: Format EEATHELP has been output. 6374 VALUE aeathelp (default=32) 6375 0 = "Not imputed" 6376 1 = "Statistical imputation (hot deck)" 6377 2 = "Cold deck imputation" 6378 3 = "Logical imputation (derivation)" 6379 ; NOTE: Format AEATHELP has been output. 6380 VALUE etoileth (default=32) 6381 -1 = "Not in Universe" 6382 1 = "Yes" 6383 2 = "No" 6384 ; NOTE: Format ETOILETH has been output. 6385 VALUE atoileth (default=32) 6386 0 = "Not imputed" 6387 1 = "Statistical imputation (hot deck)" 6388 2 = "Cold deck imputation" 6389 3 = "Logical imputation (derivation)" 6390 ; NOTE: Format ATOILETH has been output. 6391 VALUE emoneyh (default=32) 6392 -1 = "Not in Universe" 6393 1 = "Yes" 6394 2 = "No" 124 The SAS System 15:07 Thursday, June 21, 2012 6395 ; NOTE: Format EMONEYH has been output. 6396 VALUE amoneyh (default=32) 6397 0 = "Not imputed" 6398 1 = "Statistical imputation (hot deck)" 6399 2 = "Cold deck imputation" 6400 3 = "Logical imputation (derivation)" 6401 ; NOTE: Format AMONEYH has been output. 6402 VALUE emealsh (default=32) 6403 -1 = "Not in Universe" 6404 1 = "Yes" 6405 2 = "No" 6406 ; NOTE: Format EMEALSH has been output. 6407 VALUE amealsh (default=32) 6408 0 = "Not imputed" 6409 1 = "Statistical imputation (hot deck)" 6410 2 = "Cold deck imputation" 6411 3 = "Logical imputation (derivation)" 6412 ; NOTE: Format AMEALSH has been output. 6413 VALUE ehworkh (default=32) 6414 -1 = "Not in Universe" 6415 1 = "Yes" 6416 2 = "No" 6417 ; NOTE: Format EHWORKH has been output. 6418 VALUE ahworkh (default=32) 6419 0 = "Not imputed" 6420 1 = "Statistical imputation (hot deck)" 6421 2 = "Cold deck imputation" 6422 3 = "Logical imputation (derivation)" 6423 ; NOTE: Format AHWORKH has been output. 6424 VALUE emedh (default=32) 6425 -1 = "Not in Universe" 6426 1 = "Yes" 6427 2 = "No" 6428 ; NOTE: Format EMEDH has been output. 6429 VALUE amedh (default=32) 6430 0 = "Not imputed" 6431 1 = "Statistical imputation (hot deck)" 6432 2 = "Cold deck imputation" 6433 3 = "Logical imputation (derivation)" 6434 ; NOTE: Format AMEDH has been output. 6435 VALUE ehelperh (default=32) 6436 -1 = "Not in Universe" 6437 1 = "Son" 6438 2 = "Daughter" 6439 3 = "SPOUSE" 6440 4 = "Parent" 6441 5 = "Other relative" 6442 6 = "Friend or neighbor" 6443 7 = "Paid help" 6444 8 = "Other nonrelative" 125 The SAS System 15:07 Thursday, June 21, 2012 6445 9 = "Did not receive help" 6446 ; NOTE: Format EHELPERH has been output. 6447 VALUE ahelperh (default=32) 6448 0 = "Not imputed" 6449 1 = "Statistical imputation (hot deck)" 6450 2 = "Cold deck imputation" 6451 3 = "Logical imputation (derivation)" 6452 ; NOTE: Format AHELPERH has been output. 6453 VALUE ehhmembh (default=32) 6454 -3 = "Not a household member" 6455 -1 = "Not in Universe" 6456 ; NOTE: Format EHHMEMBH has been output. 6457 VALUE ahhmembh (default=32) 6458 0 = "Not imputed" 6459 1 = "Statistical imputation (hot deck)" 6460 2 = "Cold deck imputation" 6461 3 = "Logical imputation (derivation)" 6462 ; NOTE: Format AHHMEMBH has been output. 6463 VALUE ehelperk (default=32) 6464 -1 = "Not in Universe" 6465 1 = "No one else helped" 6466 2 = "Son" 6467 3 = "Daughter" 6468 4 = "Spouse" 6469 5 = "Parent" 6470 6 = "Other relative" 6471 7 = "Friend or neighbor" 6472 8 = "Paid help" 6473 9 = "Other nonrelative" 6474 ; NOTE: Format EHELPERK has been output. 6475 VALUE ahelperk (default=32) 6476 0 = "Not imputed" 6477 1 = "Statistical imputation (hot deck)" 6478 2 = "Cold deck imputation" 6479 3 = "Logical imputation (derivation)" 6480 ; NOTE: Format AHELPERK has been output. 6481 VALUE ehhmembk (default=32) 6482 -3 = "Not a household member" 6483 -1 = "Not in Universe" 6484 ; NOTE: Format EHHMEMBK has been output. 6485 VALUE ahhmembk (default=32) 6486 0 = "Not imputed" 6487 1 = "Statistical imputation (hot deck)" 6488 2 = "Cold deck imputation" 6489 3 = "Logical imputation (derivation)" 6490 ; NOTE: Format AHHMEMBK has been output. 6491 VALUE ehowlong (default=32) 6492 -1 = "Not in Universe" 6493 1 = "Less than 6 months" 6494 2 = "6 to 11 months" 126 The SAS System 15:07 Thursday, June 21, 2012 6495 3 = "1 to 2 years" 6496 4 = "3 to 5 years" 6497 5 = "More than 5 years" 6498 ; NOTE: Format EHOWLONG has been output. 6499 VALUE ahowlong (default=32) 6500 0 = "Not imputed" 6501 1 = "Statistical imputation (hot deck)" 6502 2 = "Cold deck imputation" 6503 3 = "Logical imputation (derivation)" 6504 ; NOTE: Format AHOWLONG has been output. 6505 VALUE epayhelp (default=32) 6506 -1 = "Not in Universe" 6507 1 = "Yes" 6508 2 = "No" 6509 ; NOTE: Format EPAYHELP has been output. 6510 VALUE apayhelp (default=32) 6511 0 = "Not imputed" 6512 1 = "Statistical imputation (hot deck)" 6513 2 = "Cold deck imputation" 6514 3 = "Logical imputation (derivation)" 6515 ; NOTE: Format APAYHELP has been output. 6516 VALUE tpayamt (default=32) 6517 0 = "None or not in universe" 6518 ; NOTE: Format TPAYAMT has been output. 6519 VALUE apayamt (default=32) 6520 0 = "Not imputed" 6521 1 = "Statistical imputation (hot deck)" 6522 2 = "Cold deck imputation" 6523 3 = "Logical imputation (derivation)" 6524 ; NOTE: Format APAYAMT has been output. 6525 VALUE econd1l (default=32) 6526 -1 = "Not in Universe" 6527 1 = "Alcohol or drug problem or" 6528 2 = "AIDS or AIDS Related Condition" 6529 3 = "Arthritis or rheumatism" 6530 4 = "Back or spine problems (including" 6531 5 = "Blindness or vision problems" 6532 6 = "Broken bone/fracture" 6533 7 = "Cancer" 6534 8 = "Cerebral palsy" 6535 9 = "Deafness or hearing problems" 6536 10 = "Diabetes" 6537 11 = "Epilepsy" 6538 12 = "Head or spinal cord injury" 6539 13 = "Heart trouble" 6540 14 = "Hernia or rupture" 6541 15 = "High blood pressure" 6542 16 = "Kidney problems" 6543 17 = "Learning disability" 6544 18 = "Lung or respiratory problems" 6545 19 = "Mental or emotional problem or" 6546 20 = "Mental retardation" 127 The SAS System 15:07 Thursday, June 21, 2012 6547 21 = "Missing legs, feet, arms, hands," 6548 22 = "Paralysis of any kind" 6549 23 = "Senility/Dementia/Alzheimer's" 6550 24 = "Speech Disorder" 6551 25 = "Stiffness or deformity of the" 6552 26 = "Stomach trouble(including ulcers," 6553 27 = "Stroke" 6554 28 = "Thyroid trouble or goiter" 6555 29 = "Tumor, cyst, or growth" 6556 30 = "Other" 6557 ; NOTE: Format ECOND1L has been output. 6558 VALUE acond1l (default=32) 6559 0 = "Not imputed" 6560 1 = "Statistical imputation (hot deck)" 6561 2 = "Cold deck imputation" 6562 3 = "Logical imputation (derivation)" 6563 ; NOTE: Format ACOND1L has been output. 6564 VALUE econd2l (default=32) 6565 -1 = "Not in universe or no second" 6566 1 = "Alcohol or drug problem or" 6567 2 = "AIDS or AIDS Related Condition" 6568 3 = "Arthritis or rheumatism" 6569 4 = "Back or spine problems (including" 6570 5 = "Blindness or vision problems" 6571 6 = "Broken bone/fracture" 6572 7 = "Cancer" 6573 8 = "Cerebral palsy" 6574 9 = "Deafness or hearing problems" 6575 10 = "Diabetes" 6576 11 = "Epilepsy" 6577 12 = "Head or spinal cord injury" 6578 13 = "Heart trouble" 6579 14 = "Hernia or rupture" 6580 15 = "High blood pressure" 6581 16 = "Kidney problems" 6582 17 = "Learning disability" 6583 18 = "Lung or respiratory problems" 6584 19 = "Mental or emotional problem or" 6585 20 = "Mental retardation" 6586 21 = "Missing legs, feet, arms, hands," 6587 22 = "Paralysis of any kind" 6588 23 = "Senility/Dementia/Alzheimer's" 6589 24 = "Speech Disorder" 6590 25 = "Stiffness or deformity of the" 6591 26 = "Stomach trouble (including" 6592 27 = "Stroke" 6593 28 = "Thyroid trouble or goiter" 6594 29 = "Tumor, cyst, or growth" 6595 30 = "Other" 6596 ; NOTE: Format ECOND2L has been output. 6597 VALUE econd3l (default=32) 6598 -1 = "Not in universe or no third" 6599 1 = "Alcohol or drug problem or" 6600 2 = "AIDS or AIDS Related Condition" 6601 3 = "Arthritis or rheumatism" 128 The SAS System 15:07 Thursday, June 21, 2012 6602 4 = "Back or spine problems (including" 6603 5 = "Blindness or vision problems" 6604 6 = "Broken bone/fracture" 6605 7 = "Cancer" 6606 8 = "Cerebral palsy" 6607 9 = "Deafness or hearing problems" 6608 10 = "Diabetes" 6609 11 = "Epilepsy" 6610 12 = "Head or spinal cord injury" 6611 13 = "Heart trouble" 6612 14 = "Hernia or rupture" 6613 15 = "High blood pressure" 6614 16 = "Kidney problems" 6615 17 = "Learning disability" 6616 18 = "Lung or respiratory problems" 6617 19 = "Mental or emotional problem or" 6618 20 = "Mental retardation" 6619 21 = "Missing legs, feet, arms, hands," 6620 22 = "Paralysis of any kind" 6621 23 = "Senility/Dementia/Alzheimer's" 6622 24 = "Speech Disorder" 6623 25 = "Stiffness or deformity of the" 6624 26 = "Stomach trouble (including" 6625 27 = "Stroke" 6626 28 = "Thyroid trouble or goiter" 6627 29 = "Tumor, cyst, or growth" 6628 30 = "Other" 6629 ; NOTE: Format ECOND3L has been output. 6630 VALUE econdpht (default=32) 6631 -1 = "Not in Universe" 6632 1 = "Alcohol or drug problem or" 6633 2 = "AIDS or AIDS Related Condition" 6634 3 = "Arthritis or rheumatism" 6635 4 = "Back or spine problems (including" 6636 5 = "Blindness or vision problems" 6637 6 = "Broken bone/fracture" 6638 7 = "Cancer" 6639 8 = "Cerebral palsy" 6640 9 = "Deafness or hearing problems" 6641 10 = "Diabetes" 6642 11 = "Epilepsy" 6643 12 = "Head or spinal cord injury" 6644 13 = "Heart trouble" 6645 14 = "Hernia or rupture" 6646 15 = "High blood pressure" 6647 16 = "Kidney problems" 6648 17 = "Learning disability" 6649 18 = "Lung or respiratory problems" 6650 19 = "Mental or emotional problem or" 6651 20 = "Mental retardation" 6652 21 = "Missing legs, feet, arms, hands," 6653 22 = "Paralysis of any kind" 6654 23 = "Senility/Dementia/Alzheimer's" 6655 24 = "Speech Disorder" 6656 25 = "Stiffness or deformity of the" 6657 26 = "Stomach trouble (including" 6658 27 = "Stroke" 129 The SAS System 15:07 Thursday, June 21, 2012 6659 28 = "Thyroid trouble or goiter" 6660 29 = "Tumor, cyst, or growth" 6661 30 = "Other" 6662 ; NOTE: Format ECONDPHT has been output. 6663 VALUE acondpht (default=32) 6664 0 = "Not imputed" 6665 1 = "Statistical imputation (hot deck)" 6666 2 = "Cold deck imputation" 6667 3 = "Logical imputation (derivation)" 6668 ; NOTE: Format ACONDPHT has been output. 6669 VALUE econdphk (default=32) 6670 -1 = "Not in universe or no second" 6671 1 = "Alcohol or drug problem or" 6672 2 = "AIDS or AIDS Related Condition" 6673 3 = "Arthritis or rheumatism" 6674 4 = "Back or spine problems (including" 6675 5 = "Blindness or vision problems" 6676 6 = "Broken bone/fracture" 6677 7 = "Cancer" 6678 8 = "Cerebral palsy" 6679 9 = "Deafness or hearing problems" 6680 10 = "Diabetes" 6681 11 = "Epilepsy" 6682 12 = "Head or spinal cord injury" 6683 13 = "Heart trouble" 6684 14 = "Hernia or rupture" 6685 15 = "High blood pressure" 6686 16 = "Kidney problems" 6687 17 = "Learning disability" 6688 18 = "Lung or respiratory problems" 6689 19 = "Mental or emotional problem or" 6690 20 = "Mental retardation" 6691 21 = "Missing legs, feet, arms, hands," 6692 22 = "Paralysis of any kind" 6693 23 = "Senility/Dementia/Alzheimer's" 6694 24 = "Speech Disorder" 6695 25 = "Stiffness or deformity of the" 6696 26 = "Stomach trouble (including" 6697 27 = "Stroke" 6698 28 = "Thyroid trouble or goiter" 6699 29 = "Tumor, cyst, or growth" 6700 30 = "Other" 6701 ; NOTE: Format ECONDPHK has been output. 6702 VALUE econdphl (default=32) 6703 -1 = "Not in universe or no third" 6704 1 = "Alcohol or drug problem or" 6705 2 = "AIDS or AIDS Related Condition" 6706 3 = "Arthritis or rheumatism" 6707 4 = "Back or spine problems (including" 6708 5 = "Blindness or vision problems" 6709 6 = "Broken bone/fracture" 6710 7 = "Cancer" 6711 8 = "Cerebral palsy" 6712 9 = "Deafness or hearing problems" 6713 10 = "Diabetes" 130 The SAS System 15:07 Thursday, June 21, 2012 6714 11 = "Epilepsy" 6715 12 = "Head or spinal cord injury" 6716 13 = "Heart trouble" 6717 14 = "Hernia or rupture" 6718 15 = "High blood pressure" 6719 16 = "Kidney problems" 6720 17 = "Learning disability" 6721 18 = "Lung or respiratory problems" 6722 19 = "Mental or emotional problem or" 6723 20 = "Mental retardation" 6724 21 = "Missing legs, feet, arms, hands," 6725 22 = "Paralysis of any kind" 6726 23 = "Senility/Dementia/Alzheimer's" 6727 24 = "Speech Disorder" 6728 25 = "Stiffness or deformity of the" 6729 26 = "Stomach trouble (including" 6730 27 = "Stroke" 6731 28 = "Thyroid trouble or goiter" 6732 29 = "Tumor, cyst, or growth" 6733 30 = "Other" 6734 ; NOTE: Format ECONDPHL has been output. 6735 VALUE emotorv (default=32) 6736 -1 = "Not in Universe" 6737 1 = "Yes" 6738 2 = "No" 6739 ; NOTE: Format EMOTORV has been output. 6740 VALUE amotorv (default=32) 6741 0 = "Not imputed" 6742 1 = "Statistical imputation (hot deck)" 6743 2 = "Cold deck imputation" 6744 3 = "Logical imputation (derivation)" 6745 ; NOTE: Format AMOTORV has been output. 6746 VALUE emain1l (default=32) 6747 -1 = "Not in Universe" 6748 1 = "Alcohol or drug problem or" 6749 2 = "AIDS or AIDS Related Condition" 6750 3 = "Arthritis or rheumatism" 6751 4 = "Back or spine problems (including" 6752 5 = "Blindness or vision problems" 6753 6 = "Broken bone/fracture" 6754 7 = "Cancer" 6755 8 = "Cerebral palsy" 6756 9 = "Deafness or hearing problems" 6757 10 = "Diabetes" 6758 11 = "Epilepsy" 6759 12 = "Head or spinal cord injury" 6760 13 = "Heart trouble" 6761 14 = "Hernia or rupture" 6762 15 = "High blood pressure" 6763 16 = "Kidney problems" 6764 17 = "Learning disability" 6765 18 = "Lung or respiratory problems" 6766 19 = "Mental or emotional problem or" 6767 20 = "Mental retardation" 6768 21 = "Missing legs, feet, arms, hands," 131 The SAS System 15:07 Thursday, June 21, 2012 6769 22 = "Paralysis of any kind" 6770 23 = "Senility/Dementia/Alzheimer's" 6771 24 = "Speech Disorder" 6772 25 = "Stiffness or deformity of the" 6773 26 = "Stomach trouble (including" 6774 27 = "Stroke" 6775 28 = "Thyroid trouble or goiter" 6776 29 = "Tumor, cyst, or growth" 6777 30 = "Other" 6778 ; NOTE: Format EMAIN1L has been output. 6779 VALUE amain1l (default=32) 6780 0 = "Not imputed" 6781 1 = "Statistical imputation (hot deck)" 6782 2 = "Cold deck imputation" 6783 3 = "Logical imputation (derivation)" 6784 ; NOTE: Format AMAIN1L has been output. 6785 VALUE tyear1l (default=32) 6786 -1 = "Not in Universe" 6787 ; NOTE: Format TYEAR1L has been output. 6788 VALUE ayear1l (default=32) 6789 0 = "Not imputed" 6790 1 = "Statistical imputation (hot deck)" 6791 2 = "Cold deck imputation" 6792 3 = "Logical imputation (derivation)" 6793 ; NOTE: Format AYEAR1L has been output. 6794 VALUE emonth1l (default=32) 6795 -1 = "Not in Universe" 6796 ; NOTE: Format EMONTH1L has been output. 6797 VALUE amonth1l (default=32) 6798 0 = "Not imputed" 6799 1 = "Statistical imputation (hot deck)" 6800 2 = "Cold deck imputation" 6801 3 = "Logical imputation (derivation)" 6802 ; NOTE: Format AMONTH1L has been output. 6803 VALUE elast12m (default=32) 6804 -1 = "Not in Universe" 6805 1 = "Yes" 6806 2 = "No" 6807 ; NOTE: Format ELAST12M has been output. 6808 VALUE alast12m (default=32) 6809 0 = "Not imputed" 6810 1 = "Statistical imputation (hot deck)" 6811 2 = "Cold deck imputation" 6812 3 = "Logical imputation (derivation)" 6813 ; NOTE: Format ALAST12M has been output. 6814 VALUE eldis (default=32) 6815 -1 = "Not in Universe" 6816 1 = "Yes" 6817 2 = "No" 6818 ; 132 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format ELDIS has been output. 6819 VALUE aldis (default=32) 6820 0 = "Not imputed" 6821 1 = "Statistical imputation (hot deck)" 6822 2 = "Cold deck imputation" 6823 3 = "Logical imputation (derivation)" 6824 ; NOTE: Format ALDIS has been output. 6825 VALUE emr (default=32) 6826 -1 = "Not in Universe" 6827 1 = "Yes" 6828 2 = "No" 6829 ; NOTE: Format EMR has been output. 6830 VALUE amr (default=32) 6831 0 = "Not imputed" 6832 1 = "Statistical imputation (hot deck)" 6833 2 = "Cold deck imputation" 6834 3 = "Logical imputation (derivation)" 6835 ; NOTE: Format AMR has been output. 6836 VALUE edevdis (default=32) 6837 -1 = "Not in Universe" 6838 1 = "Yes" 6839 2 = "No" 6840 ; NOTE: Format EDEVDIS has been output. 6841 VALUE adevdis (default=32) 6842 0 = "Not imputed" 6843 1 = "Statistical imputation (hot deck)" 6844 2 = "Cold deck imputation" 6845 3 = "Logical imputation (derivation)" 6846 ; NOTE: Format ADEVDIS has been output. 6847 VALUE ealz (default=32) 6848 -1 = "Not in Universe" 6849 1 = "Yes" 6850 2 = "No" 6851 ; NOTE: Format EALZ has been output. 6852 VALUE aalz (default=32) 6853 0 = "Not imputed" 6854 1 = "Statistical imputation (hot deck)" 6855 2 = "Cold deck imputation" 6856 3 = "Logical imputation (derivation)" 6857 ; NOTE: Format AALZ has been output. 6858 VALUE eotherm (default=32) 6859 -1 = "Not in Universe" 6860 1 = "Yes" 6861 2 = "No" 6862 ; NOTE: Format EOTHERM has been output. 6863 VALUE aotherm (default=32) 6864 0 = "Not imputed" 6865 1 = "Statistical imputation (hot deck)" 6866 2 = "Cold deck imputation" 6867 3 = "Logical imputation (derivation)" 133 The SAS System 15:07 Thursday, June 21, 2012 6868 ; NOTE: Format AOTHERM has been output. 6869 VALUE eanxious (default=32) 6870 -1 = "Not in Universe" 6871 1 = "Yes" 6872 2 = "No" 6873 ; NOTE: Format EANXIOUS has been output. 6874 VALUE aanxious (default=32) 6875 0 = "Not imputed" 6876 1 = "Statistical imputation (hot deck)" 6877 2 = "Cold deck imputation" 6878 3 = "Logical imputation (derivation)" 6879 ; NOTE: Format AANXIOUS has been output. 6880 VALUE esocial (default=32) 6881 -1 = "Not in Universe" 6882 1 = "Yes" 6883 2 = "No" 6884 ; NOTE: Format ESOCIAL has been output. 6885 VALUE asocial (default=32) 6886 0 = "Not imputed" 6887 1 = "Statistical imputation (hot deck)" 6888 2 = "Cold deck imputation" 6889 3 = "Logical imputation (derivation)" 6890 ; NOTE: Format ASOCIAL has been output. 6891 VALUE ectrate (default=32) 6892 -1 = "Not in Universe" 6893 1 = "Yes" 6894 2 = "No" 6895 ; NOTE: Format ECTRATE has been output. 6896 VALUE actrate (default=32) 6897 0 = "Not imputed" 6898 1 = "Statistical imputation (hot deck)" 6899 2 = "Cold deck imputation" 6900 3 = "Logical imputation (derivation)" 6901 ; NOTE: Format ACTRATE has been output. 6902 VALUE ecope (default=32) 6903 -1 = "Not in Universe" 6904 1 = "Yes" 6905 2 = "No" 6906 ; NOTE: Format ECOPE has been output. 6907 VALUE acope (default=32) 6908 0 = "Not imputed" 6909 1 = "Statistical imputation (hot deck)" 6910 2 = "Cold deck imputation" 6911 3 = "Logical imputation (derivation)" 6912 ; NOTE: Format ACOPE has been output. 6913 VALUE eintrfer (default=32) 6914 -1 = "Not in Universe" 6915 1 = "Yes" 6916 2 = "No" 134 The SAS System 15:07 Thursday, June 21, 2012 6917 ; NOTE: Format EINTRFER has been output. 6918 VALUE aintrfer (default=32) 6919 0 = "Not imputed" 6920 1 = "Statistical imputation (hot deck)" 6921 2 = "Cold deck imputation" 6922 3 = "Logical imputation (derivation)" 6923 ; NOTE: Format AINTRFER has been output. 6924 VALUE ejobdif (default=32) 6925 -1 = "Not in Universe" 6926 1 = "Yes" 6927 2 = "No" 6928 ; NOTE: Format EJOBDIF has been output. 6929 VALUE ajobdif (default=32) 6930 0 = "Not imputed" 6931 1 = "Statistical imputation (hot deck)" 6932 2 = "Cold deck imputation" 6933 3 = "Logical imputation (derivation)" 6934 ; NOTE: Format AJOBDIF has been output. 6935 VALUE ejobcant (default=32) 6936 -1 = "Not in Universe" 6937 1 = "Yes" 6938 2 = "No" 6939 ; NOTE: Format EJOBCANT has been output. 6940 VALUE ajobcant (default=32) 6941 0 = "Not imputed" 6942 1 = "Statistical imputation (hot deck)" 6943 2 = "Cold deck imputation" 6944 3 = "Logical imputation (derivation)" 6945 ; NOTE: Format AJOBCANT has been output. 6946 VALUE ehwrkdif (default=32) 6947 -1 = "Not in Universe" 6948 1 = "Yes" 6949 2 = "No" 6950 ; NOTE: Format EHWRKDIF has been output. 6951 VALUE ahwrkdif (default=32) 6952 0 = "Not imputed" 6953 1 = "Statistical imputation (hot deck)" 6954 2 = "Cold deck imputation" 6955 3 = "Logical imputation (derivation)" 6956 ; NOTE: Format AHWRKDIF has been output. 6957 VALUE ehwrkno (default=32) 6958 -1 = "Not in Universe" 6959 1 = "Yes" 6960 2 = "No" 6961 ; NOTE: Format EHWRKNO has been output. 6962 VALUE ahwrkno (default=32) 6963 0 = "Not imputed" 6964 1 = "Statistical imputation (hot deck)" 6965 2 = "Cold deck imputation" 135 The SAS System 15:07 Thursday, June 21, 2012 6966 3 = "Logical imputation (derivation)" 6967 ; NOTE: Format AHWRKNO has been output. 6968 VALUE econdw1l (default=32) 6969 -1 = "Not in Universe" 6970 1 = "Alcohol or drug problem or" 6971 2 = "AIDS or AIDS Related Condition" 6972 3 = "Arthritis or rheumatism" 6973 4 = "Back or spine problems (including" 6974 5 = "Blindness or vision problems" 6975 6 = "Broken bone/fracture" 6976 7 = "Cancer" 6977 8 = "Cerebral palsy" 6978 9 = "Deafness or hearing problems" 6979 10 = "Diabetes" 6980 11 = "Epilepsy" 6981 12 = "Head or spinal cord injury" 6982 13 = "Heart trouble" 6983 14 = "Hernia or rupture" 6984 15 = "High blood pressure" 6985 16 = "Kidney problems" 6986 17 = "Learning disability" 6987 18 = "Lung or respiratory problems" 6988 19 = "Mental or emotional problem or" 6989 20 = "Mental retardation" 6990 21 = "Missing legs, feet, arms, hands," 6991 22 = "Paralysis of any kind" 6992 23 = "Senility/Dementia/Alzheimer's" 6993 24 = "Speech Disorder" 6994 25 = "Stiffness or deformity of the" 6995 26 = "Stomach trouble (including" 6996 27 = "Stroke" 6997 28 = "Thyroid trouble or goiter" 6998 29 = "Tumor, cyst, or growth" 6999 30 = "Other" 7000 ; NOTE: Format ECONDW1L has been output. 7001 VALUE acondw1l (default=32) 7002 0 = "Not imputed" 7003 1 = "Statistical imputation (hot deck)" 7004 2 = "Cold deck imputation" 7005 3 = "Logical imputation (derivation)" 7006 ; NOTE: Format ACONDW1L has been output. 7007 VALUE econdw2l (default=32) 7008 -1 = "Not in universe or no second" 7009 1 = "Alcohol or drug problem or" 7010 2 = "AIDS or AIDS Related Condition" 7011 3 = "Arthritis or rheumatism" 7012 4 = "Back or spine problems (including" 7013 5 = "Blindness or vision problems" 7014 6 = "Broken bone/fracture" 7015 7 = "Cancer" 7016 8 = "Cerebral palsy" 7017 9 = "Deafness or hearing problems" 7018 10 = "Diabetes" 7019 11 = "Epilepsy" 7020 12 = "Head or spinal cord injury" 136 The SAS System 15:07 Thursday, June 21, 2012 7021 13 = "Heart trouble" 7022 14 = "Hernia or rupture" 7023 15 = "High blood pressure" 7024 16 = "Kidney problems" 7025 17 = "Learning disability" 7026 18 = "Lung or respiratory problems" 7027 19 = "Mental or emotional problem or" 7028 20 = "Mental retardation" 7029 21 = "Missing legs, feet, arms, hands," 7030 22 = "Paralysis of any kind" 7031 23 = "Senility/Dementia/Alzheimer's" 7032 24 = "Speech Disorder" 7033 25 = "Stiffness or deformity of the" 7034 26 = "Stomach trouble (including" 7035 27 = "Stroke" 7036 28 = "Thyroid trouble or goiter" 7037 29 = "Tumor, cyst, or growth" 7038 30 = "Other" 7039 ; NOTE: Format ECONDW2L has been output. 7040 VALUE econdw3l (default=32) 7041 -1 = "Not in universe or no third" 7042 1 = "Alcohol or drug problem or" 7043 2 = "AIDS or AIDS Related Condition" 7044 3 = "Arthritis or rheumatism" 7045 4 = "Back or spine problems (including" 7046 5 = "Blindness or vision problems" 7047 6 = "Broken bone/fracture" 7048 7 = "Cancer" 7049 8 = "Cerebral palsy" 7050 9 = "Deafness or hearing problems" 7051 10 = "Diabetes" 7052 11 = "Epilepsy" 7053 12 = "Head or spinal cord injury" 7054 13 = "Heart trouble" 7055 14 = "Hernia or rupture" 7056 15 = "High blood pressure" 7057 16 = "Kidney problems" 7058 17 = "Learning disability" 7059 18 = "Lung or respiratory problems" 7060 19 = "Mental or emotional problem or" 7061 20 = "Mental retardation" 7062 21 = "Missing legs, feet, arms, hands," 7063 22 = "Paralysis of any kind" 7064 23 = "Senility/Dementia/Alzheimer's" 7065 24 = "Speech Disorder" 7066 25 = "Stiffness or deformity of the" 7067 26 = "Stomach trouble (including" 7068 27 = "Stroke" 7069 28 = "Thyroid trouble or goiter" 7070 29 = "Tumor, cyst, or growth" 7071 30 = "Other" 7072 ; NOTE: Format ECONDW3L has been output. 7073 VALUE emain2l (default=32) 7074 -1 = "Not in Universe" 7075 1 = "Alcohol or drug problem or" 7076 2 = "AIDS or AIDS Related Condition" 137 The SAS System 15:07 Thursday, June 21, 2012 7077 3 = "Arthritis or rheumatism" 7078 4 = "Back or spine problems (including" 7079 5 = "Blindness or vision problems" 7080 6 = "Broken bone/fracture" 7081 7 = "Cancer" 7082 8 = "Cerebral palsy" 7083 9 = "Deafness or hearing problems" 7084 10 = "Diabetes" 7085 11 = "Epilepsy" 7086 12 = "Head or spinal cord injury" 7087 13 = "Heart trouble" 7088 14 = "Hernia or rupture" 7089 15 = "High blood pressure" 7090 16 = "Kidney problems" 7091 17 = "Learning disability" 7092 18 = "Lung or respiratory problems" 7093 19 = "Mental or emotional problem or" 7094 20 = "Mental retardation" 7095 21 = "Missing legs, feet, arms, hands," 7096 22 = "Paralysis of any kind" 7097 23 = "Senility/Dementia/Alzheimer's" 7098 24 = "Speech Disorder" 7099 25 = "Stiffness or deformity of the" 7100 26 = "Stomach trouble (including" 7101 27 = "Stroke" 7102 28 = "Thyroid trouble or goiter" 7103 29 = "Tumor, cyst, or growth" 7104 30 = "Other" 7105 ; NOTE: Format EMAIN2L has been output. 7106 VALUE amain2l (default=32) 7107 0 = "Not imputed" 7108 1 = "Statistical imputation (hot deck)" 7109 2 = "Cold deck imputation" 7110 3 = "Logical imputation (derivation)" 7111 ; NOTE: Format AMAIN2L has been output. 7112 VALUE eapplyss (default=32) 7113 -1 = "Not in Universe" 7114 1 = "Yes" 7115 2 = "No" 7116 ; NOTE: Format EAPPLYSS has been output. 7117 VALUE aapplyss (default=32) 7118 0 = "Not imputed" 7119 1 = "Statistical imputation (hot deck)" 7120 2 = "Cold deck imputation" 7121 3 = "Logical imputation (derivation)" 7122 ; NOTE: Format AAPPLYSS has been output. 7123 VALUE ecompute (default=32) 7124 -1 = "Not in Universe" 7125 1 = "Yes" 7126 2 = "No" 7127 ; NOTE: Format ECOMPUTE has been output. 7128 VALUE acompute (default=32) 7129 0 = "Not imputed" 138 The SAS System 15:07 Thursday, June 21, 2012 7130 1 = "Statistical imputation (hot deck)" 7131 2 = "Cold deck imputation" 7132 3 = "Logical imputation (derivation)" 7133 ; NOTE: Format ACOMPUTE has been output. 7134 VALUE ecmphome (default=32) 7135 -1 = "Not in Universe" 7136 1 = "Yes" 7137 2 = "No" 7138 ; NOTE: Format ECMPHOME has been output. 7139 VALUE acmphome (default=32) 7140 0 = "Not imputed" 7141 1 = "Statistical imputation (hot deck)" 7142 2 = "Cold deck imputation" 7143 3 = "Logical imputation (derivation)" 7144 ; NOTE: Format ACMPHOME has been output. 7145 VALUE ecmpwork (default=32) 7146 -1 = "Not in Universe" 7147 1 = "Yes" 7148 2 = "No" 7149 ; NOTE: Format ECMPWORK has been output. 7150 VALUE acmpwork (default=32) 7151 0 = "Not imputed" 7152 1 = "Statistical imputation (hot deck)" 7153 2 = "Cold deck imputation" 7154 3 = "Logical imputation (derivation)" 7155 ; NOTE: Format ACMPWORK has been output. 7156 VALUE ecmpschl (default=32) 7157 -1 = "Not in Universe" 7158 1 = "Yes" 7159 2 = "No" 7160 ; NOTE: Format ECMPSCHL has been output. 7161 VALUE acmpschl (default=32) 7162 0 = "Not imputed" 7163 1 = "Statistical imputation (hot deck)" 7164 2 = "Cold deck imputation" 7165 3 = "Logical imputation (derivation)" 7166 ; NOTE: Format ACMPSCHL has been output. 7167 VALUE eintrnet (default=32) 7168 -1 = "Not in Universe" 7169 1 = "Yes" 7170 2 = "No" 7171 ; NOTE: Format EINTRNET has been output. 7172 VALUE aintrnet (default=32) 7173 0 = "Not imputed" 7174 1 = "Statistical imputation (hot deck)" 7175 2 = "Cold deck imputation" 7176 3 = "Logical imputation (derivation)" 7177 ; NOTE: Format AINTRNET has been output. 7178 VALUE einthome (default=32) 139 The SAS System 15:07 Thursday, June 21, 2012 7179 -1 = "Not in Universe" 7180 1 = "Yes" 7181 2 = "No" 7182 ; NOTE: Format EINTHOME has been output. 7183 VALUE ainthome (default=32) 7184 0 = "Not imputed" 7185 1 = "Statistical imputation (hot deck)" 7186 2 = "Cold deck imputation" 7187 3 = "Logical imputation (derivation)" 7188 ; NOTE: Format AINTHOME has been output. 7189 VALUE eintwork (default=32) 7190 -1 = "Not in Universe" 7191 1 = "Yes" 7192 2 = "No" 7193 ; NOTE: Format EINTWORK has been output. 7194 VALUE aintwork (default=32) 7195 0 = "Not imputed" 7196 1 = "Statistical imputation (hot deck)" 7197 2 = "Cold deck imputation" 7198 3 = "Logical imputation (derivation)" 7199 ; NOTE: Format AINTWORK has been output. 7200 VALUE eintschl (default=32) 7201 -1 = "Not in Universe" 7202 1 = "Yes" 7203 2 = "No" 7204 ; NOTE: Format EINTSCHL has been output. 7205 VALUE aintschl (default=32) 7206 0 = "Not imputed" 7207 1 = "Statistical imputation (hot deck)" 7208 2 = "Cold deck imputation" 7209 3 = "Logical imputation (derivation)" 7210 ; NOTE: Format AINTSCHL has been output. 7211 VALUE eintlibr (default=32) 7212 -1 = "Not in Universe" 7213 1 = "Yes" 7214 2 = "No" 7215 ; NOTE: Format EINTLIBR has been output. 7216 VALUE aintlibr (default=32) 7217 0 = "Not imputed" 7218 1 = "Statistical imputation (hot deck)" 7219 2 = "Cold deck imputation" 7220 3 = "Logical imputation (derivation)" 7221 ; NOTE: Format AINTLIBR has been output. 7222 VALUE eintccen (default=32) 7223 -1 = "Not in Universe" 7224 1 = "Yes" 7225 2 = "No" 7226 ; NOTE: Format EINTCCEN has been output. 7227 VALUE aintccen (default=32) 140 The SAS System 15:07 Thursday, June 21, 2012 7228 0 = "Not imputed" 7229 1 = "Statistical imputation (hot deck)" 7230 2 = "Cold deck imputation" 7231 3 = "Logical imputation (derivation)" 7232 ; NOTE: Format AINTCCEN has been output. 7233 VALUE eintsome (default=32) 7234 -1 = "Not in Universe" 7235 1 = "Yes" 7236 2 = "No" 7237 ; NOTE: Format EINTSOME has been output. 7238 VALUE aintsome (default=32) 7239 0 = "Not imputed" 7240 1 = "Statistical imputation (hot deck)" 7241 2 = "Cold deck imputation" 7242 3 = "Logical imputation (derivation)" 7243 ; NOTE: Format AINTSOME has been output. 7244 VALUE eintothr (default=32) 7245 -1 = "Not in Universe" 7246 1 = "Yes" 7247 2 = "No" 7248 ; NOTE: Format EINTOTHR has been output. 7249 VALUE aintothr (default=32) 7250 0 = "Not imputed" 7251 1 = "Statistical imputation (hot deck)" 7252 2 = "Cold deck imputation" 7253 3 = "Logical imputation (derivation)" 7254 ; NOTE: Format AINTOTHR has been output. 7255 VALUE eicourse (default=32) 7256 -1 = "Not in Universe" 7257 1 = "Yes" 7258 2 = "No" 7259 ; NOTE: Format EICOURSE has been output. 7260 VALUE aicourse (default=32) 7261 0 = "Not imputed" 7262 1 = "Statistical imputation (hot deck)" 7263 2 = "Cold deck imputation" 7264 3 = "Logical imputation (derivation)" 7265 ; NOTE: Format AICOURSE has been output. 7266 VALUE eihealth (default=32) 7267 -1 = "Not in Universe" 7268 1 = "Yes" 7269 2 = "No" 7270 ; NOTE: Format EIHEALTH has been output. 7271 VALUE aihealth (default=32) 7272 0 = "Not imputed" 7273 1 = "Statistical imputation (hot deck)" 7274 2 = "Cold deck imputation" 7275 3 = "Logical imputation (derivation)" 7276 ; NOTE: Format AIHEALTH has been output. 141 The SAS System 15:07 Thursday, June 21, 2012 7277 VALUE eigovern (default=32) 7278 -1 = "Not in Universe" 7279 1 = "Yes" 7280 2 = "No" 7281 ; NOTE: Format EIGOVERN has been output. 7282 VALUE aigovern (default=32) 7283 0 = "Not imputed" 7284 1 = "Statistical imputation (hot deck)" 7285 2 = "Cold deck imputation" 7286 3 = "Logical imputation (derivation)" 7287 ; NOTE: Format AIGOVERN has been output. 7288 VALUE eisrchjb (default=32) 7289 -1 = "Not in Universe" 7290 1 = "Yes" 7291 2 = "No" 7292 ; NOTE: Format EISRCHJB has been output. 7293 VALUE aisrchjb (default=32) 7294 0 = "Not imputed" 7295 1 = "Statistical imputation (hot deck)" 7296 2 = "Cold deck imputation" 7297 3 = "Logical imputation (derivation)" 7298 ; NOTE: Format AISRCHJB has been output. 7299 VALUE ronline (default=32) 7300 -1 = "Not in Universe" 7301 1 = "Yes" 7302 2 = "No" 7303 ; NOTE: Format RONLINE has been output. 7304 VALUE aonline (default=32) 7305 0 = "Not imputed" 7306 1 = "Statistical imputation (hot deck)" 7307 2 = "Cold deck imputation" 7308 3 = "Logical imputation (derivation)" 7309 ; NOTE: Format AONLINE has been output. 7310 VALUE eintstil (default=32) 7311 -1 = "Not in Universe" 7312 1 = "Yes" 7313 2 = "No" 7314 ; NOTE: Format EINTSTIL has been output. 7315 VALUE aintstil (default=32) 7316 0 = "Not imputed" 7317 1 = "Statistical imputation (hot deck)" 7318 2 = "Cold deck imputation" 7319 3 = "Logical imputation (derivation)" 7320 ; NOTE: Format AINTSTIL has been output. 7321 VALUE rdisab (default=32) 7322 -1 = "Not in Universe" 7323 1 = "With a severe disability" 7324 2 = "With a non-severe disability" 7325 3 = "No disability" 7326 ; 142 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format RDISAB has been output. 7327 VALUE epcdunv (default=32) 7328 -1 = "Not in Universe" 7329 1 = "In universe" 7330 ; NOTE: Format EPCDUNV has been output. 7331 VALUE eddelay (default=32) 7332 -1 = "Not in Universe" 7333 1 = "Yes" 7334 2 = "No" 7335 ; NOTE: Format EDDELAY has been output. 7336 VALUE addelay (default=32) 7337 0 = "Not imputed" 7338 1 = "Statistical imputation (hot deck)" 7339 2 = "Cold deck imputation" 7340 3 = "Logical imputation (derivation)" 7341 ; NOTE: Format ADDELAY has been output. 7342 VALUE earmleg (default=32) 7343 -1 = "Not in Universe" 7344 1 = "Yes" 7345 2 = "No" 7346 ; NOTE: Format EARMLEG has been output. 7347 VALUE aarmleg (default=32) 7348 0 = "Not imputed" 7349 1 = "Statistical imputation (hot deck)" 7350 2 = "Cold deck imputation" 7351 3 = "Logical imputation (derivation)" 7352 ; NOTE: Format AARMLEG has been output. 7353 VALUE erunplay (default=32) 7354 -1 = "Not in Universe" 7355 1 = "Yes" 7356 2 = "No" 7357 ; NOTE: Format ERUNPLAY has been output. 7358 VALUE arunplay (default=32) 7359 0 = "Not imputed" 7360 1 = "Statistical imputation (hot deck)" 7361 2 = "Cold deck imputation" 7362 3 = "Logical imputation (derivation)" 7363 ; NOTE: Format ARUNPLAY has been output. 7364 VALUE eskoolwk (default=32) 7365 -1 = "Not in Universe" 7366 1 = "Yes" 7367 2 = "No" 7368 ; NOTE: Format ESKOOLWK has been output. 7369 VALUE askoolwk (default=32) 7370 0 = "Not imputed" 7371 1 = "Statistical imputation (hot deck)" 7372 2 = "Cold deck imputation" 7373 3 = "Logical imputation (derivation)" 7374 ; NOTE: Format ASKOOLWK has been output. 143 The SAS System 15:07 Thursday, June 21, 2012 7375 VALUE especed (default=32) 7376 -1 = "Not in Universe" 7377 1 = "Yes" 7378 2 = "No" 7379 ; NOTE: Format ESPECED has been output. 7380 VALUE aspeced (default=32) 7381 0 = "Not imputed" 7382 1 = "Statistical imputation (hot deck)" 7383 2 = "Cold deck imputation" 7384 3 = "Logical imputation (derivation)" 7385 ; NOTE: Format ASPECED has been output. 7386 VALUE espednow (default=32) 7387 -1 = "Not in Universe" 7388 1 = "Yes" 7389 2 = "No" 7390 ; NOTE: Format ESPEDNOW has been output. 7391 VALUE aspednow (default=32) 7392 0 = "Not imputed" 7393 1 = "Statistical imputation (hot deck)" 7394 2 = "Cold deck imputation" 7395 3 = "Logical imputation (derivation)" 7396 ; NOTE: Format ASPEDNOW has been output. 7397 VALUE elerndis (default=32) 7398 -1 = "Not in Universe" 7399 1 = "Yes" 7400 2 = "No" 7401 ; NOTE: Format ELERNDIS has been output. 7402 VALUE alerndis (default=32) 7403 0 = "Not imputed" 7404 1 = "Statistical imputation (hot deck)" 7405 2 = "Cold deck imputation" 7406 3 = "Logical imputation (derivation)" 7407 ; NOTE: Format ALERNDIS has been output. 7408 VALUE ekmr (default=32) 7409 -1 = "Not in Universe" 7410 1 = "Yes" 7411 2 = "No" 7412 ; NOTE: Format EKMR has been output. 7413 VALUE akmr (default=32) 7414 0 = "Not imputed" 7415 1 = "Statistical imputation (hot deck)" 7416 2 = "Cold deck imputation" 7417 3 = "Logical imputation (derivation)" 7418 ; NOTE: Format AKMR has been output. 7419 VALUE ekdevdis (default=32) 7420 -1 = "Not in Universe" 7421 1 = "Yes" 7422 2 = "No" 7423 ; NOTE: Format EKDEVDIS has been output. 144 The SAS System 15:07 Thursday, June 21, 2012 7424 VALUE akdevdis (default=32) 7425 0 = "Not imputed" 7426 1 = "Statistical imputation (hot deck)" 7427 2 = "Cold deck imputation" 7428 ; NOTE: Format AKDEVDIS has been output. 7429 VALUE eadhd (default=32) 7430 -1 = "Not in Universe" 7431 1 = "Yes" 7432 2 = "No" 7433 ; NOTE: Format EADHD has been output. 7434 VALUE aadhd (default=32) 7435 0 = "Not imputed" 7436 1 = "Statistical imputation (hot deck)" 7437 2 = "Cold deck imputation" 7438 3 = "Logical imputation (derivation)" 7439 ; NOTE: Format AADHD has been output. 7440 VALUE eotherdc (default=32) 7441 -1 = "Not in Universe" 7442 1 = "Yes" 7443 2 = "No" 7444 ; NOTE: Format EOTHERDC has been output. 7445 VALUE aotherdc (default=32) 7446 0 = "Not imputed" 7447 1 = "Statistical imputation (hot deck)" 7448 2 = "Cold deck imputation" 7449 3 = "Logical imputation (derivation)" 7450 ; NOTE: Format AOTHERDC has been output. 7451 VALUE eadhdmed (default=32) 7452 -1 = "Not in Universe" 7453 1 = "Yes" 7454 2 = "No" 7455 ; NOTE: Format EADHDMED has been output. 7456 VALUE aadhdmed (default=32) 7457 0 = "Not imputed" 7458 1 = "Statistical imputation (hot deck)" 7459 2 = "Cold deck imputation" 7460 3 = "Logical imputation (derivation)" 7461 ; NOTE: Format AADHDMED has been output. 7462 VALUE ekcane (default=32) 7463 -1 = "Not in Universe" 7464 1 = "Yes" 7465 2 = "No" 7466 ; NOTE: Format EKCANE has been output. 7467 VALUE akcane (default=32) 7468 0 = "Not imputed" 7469 1 = "Statistical imputation (hot deck)" 7470 2 = "Cold deck imputation" 7471 3 = "Logical imputation (derivation)" 7472 ; NOTE: Format AKCANE has been output. 145 The SAS System 15:07 Thursday, June 21, 2012 7473 VALUE ekwchair (default=32) 7474 -1 = "Not in Universe" 7475 1 = "Yes" 7476 2 = "No" 7477 ; NOTE: Format EKWCHAIR has been output. 7478 VALUE akwchair (default=32) 7479 0 = "Not imputed" 7480 1 = "Statistical imputation (hot deck)" 7481 2 = "Cold deck imputation" 7482 3 = "Logical imputation (derivation)" 7483 ; NOTE: Format AKWCHAIR has been output. 7484 VALUE ekhearad (default=32) 7485 -1 = "Not in Universe" 7486 1 = "Yes" 7487 2 = "No" 7488 ; NOTE: Format EKHEARAD has been output. 7489 VALUE akhearad (default=32) 7490 0 = "Not imputed" 7491 1 = "Statistical imputation (hot deck)" 7492 2 = "Cold deck imputation" 7493 3 = "Logical imputation (derivation)" 7494 ; NOTE: Format AKHEARAD has been output. 7495 VALUE ekcane6l (default=32) 7496 -1 = "Not in Universe" 7497 1 = "Yes" 7498 2 = "No" 7499 ; NOTE: Format EKCANE6L has been output. 7500 VALUE akcane6l (default=32) 7501 0 = "Not imputed" 7502 1 = "Statistical imputation (hot deck)" 7503 2 = "Cold deck imputation" 7504 3 = "Logical imputation (derivation)" 7505 ; NOTE: Format AKCANE6L has been output. 7506 VALUE ekseedif (default=32) 7507 -1 = "Not in Universe" 7508 1 = "Yes" 7509 2 = "No" 7510 3 = "Person is Blind" 7511 ; NOTE: Format EKSEEDIF has been output. 7512 VALUE akseedif (default=32) 7513 0 = "Not imputed" 7514 1 = "Statistical imputation (hot deck)" 7515 2 = "Cold deck imputation" 7516 3 = "Logical imputation (derivation)" 7517 ; NOTE: Format AKSEEDIF has been output. 7518 VALUE ekseenot (default=32) 7519 -1 = "Not in Universe" 7520 1 = "Yes" 7521 2 = "No" 7522 ; 146 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EKSEENOT has been output. 7523 VALUE akseenot (default=32) 7524 0 = "Not imputed" 7525 1 = "Statistical imputation (hot deck)" 7526 2 = "Cold deck imputation" 7527 3 = "Logical imputation (derivation)" 7528 ; NOTE: Format AKSEENOT has been output. 7529 VALUE ekheardf (default=32) 7530 -1 = "Not in Universe" 7531 1 = "Yes" 7532 2 = "No" 7533 3 = "Person is deaf" 7534 ; NOTE: Format EKHEARDF has been output. 7535 VALUE akheardf (default=32) 7536 0 = "Not imputed" 7537 1 = "Statistical imputation (hot deck)" 7538 2 = "Cold deck imputation" 7539 3 = "Logical imputation (derivation)" 7540 ; NOTE: Format AKHEARDF has been output. 7541 VALUE ekhearnt (default=32) 7542 -1 = "Not in Universe" 7543 1 = "Yes" 7544 2 = "No" 7545 ; NOTE: Format EKHEARNT has been output. 7546 VALUE akhearnt (default=32) 7547 0 = "Not imputed" 7548 1 = "Statistical imputation (hot deck)" 7549 2 = "Cold deck imputation" 7550 3 = "Logical imputation (derivation)" 7551 ; NOTE: Format AKHEARNT has been output. 7552 VALUE ekspechd (default=32) 7553 -1 = "Not in Universe" 7554 1 = "Yes" 7555 2 = "No" 7556 ; NOTE: Format EKSPECHD has been output. 7557 VALUE akspechd (default=32) 7558 0 = "Not imputed" 7559 1 = "Statistical imputation (hot deck)" 7560 2 = "Cold deck imputation" 7561 3 = "Logical imputation (derivation)" 7562 ; NOTE: Format AKSPECHD has been output. 7563 VALUE ekspechc (default=32) 7564 -1 = "Not in Universe" 7565 1 = "Yes" 7566 2 = "No" 7567 ; NOTE: Format EKSPECHC has been output. 7568 VALUE akspechc (default=32) 7569 0 = "Not imputed" 7570 1 = "Statistical imputation (hot deck)" 7571 2 = "Cold deck imputation" 147 The SAS System 15:07 Thursday, June 21, 2012 7572 3 = "Logical imputation (derivation)" 7573 ; NOTE: Format AKSPECHC has been output. 7574 VALUE esports (default=32) 7575 -1 = "Not in Universe" 7576 1 = "Yes" 7577 2 = "No" 7578 ; NOTE: Format ESPORTS has been output. 7579 VALUE asports (default=32) 7580 0 = "Not imputed" 7581 1 = "Statistical imputation (hot deck)" 7582 2 = "Cold deck imputation" 7583 3 = "Logical imputation (derivation)" 7584 ; NOTE: Format ASPORTS has been output. 7585 VALUE ekindif (default=32) 7586 -1 = "Not in Universe" 7587 1 = "Yes" 7588 2 = "No" 7589 ; NOTE: Format EKINDIF has been output. 7590 VALUE akindif (default=32) 7591 0 = "Not imputed" 7592 1 = "Statistical imputation (hot deck)" 7593 2 = "Cold deck imputation" 7594 3 = "Logical imputation (derivation)" 7595 ; NOTE: Format AKINDIF has been output. 7596 VALUE ekinhelp (default=32) 7597 -1 = "Not in Universe" 7598 1 = "Yes" 7599 2 = "No" 7600 ; NOTE: Format EKINHELP has been output. 7601 VALUE akinhelp (default=32) 7602 0 = "Not imputed" 7603 1 = "Statistical imputation (hot deck)" 7604 2 = "Cold deck imputation" 7605 3 = "Logical imputation (derivation)" 7606 ; NOTE: Format AKINHELP has been output. 7607 VALUE ekbeddif (default=32) 7608 -1 = "Not in Universe" 7609 1 = "Yes" 7610 2 = "No" 7611 ; NOTE: Format EKBEDDIF has been output. 7612 VALUE akbeddif (default=32) 7613 0 = "Not imputed" 7614 1 = "Statistical imputation (hot deck)" 7615 2 = "Cold deck imputation" 7616 3 = "Logical imputation (derivation)" 7617 ; NOTE: Format AKBEDDIF has been output. 7618 VALUE ekbedhlp (default=32) 7619 -1 = "Not in Universe" 7620 1 = "Yes" 148 The SAS System 15:07 Thursday, June 21, 2012 7621 2 = "No" 7622 ; NOTE: Format EKBEDHLP has been output. 7623 VALUE akbedhlp (default=32) 7624 0 = "Not imputed" 7625 1 = "Statistical imputation (hot deck)" 7626 2 = "Cold deck imputation" 7627 3 = "Logical imputation (derivation)" 7628 ; NOTE: Format AKBEDHLP has been output. 7629 VALUE ekbathdf (default=32) 7630 -1 = "Not in Universe" 7631 1 = "Yes" 7632 2 = "No" 7633 ; NOTE: Format EKBATHDF has been output. 7634 VALUE akbathdf (default=32) 7635 0 = "Not imputed" 7636 1 = "Statistical imputation (hot deck)" 7637 2 = "Cold deck imputation" 7638 3 = "Logical imputation (derivation)" 7639 ; NOTE: Format AKBATHDF has been output. 7640 VALUE ekbathh (default=32) 7641 -1 = "Not in Universe" 7642 1 = "Yes" 7643 2 = "No" 7644 ; NOTE: Format EKBATHH has been output. 7645 VALUE akbathh (default=32) 7646 0 = "Not imputed" 7647 1 = "Statistical imputation (hot deck)" 7648 2 = "Cold deck imputation" 7649 3 = "Logical imputation (derivation)" 7650 ; NOTE: Format AKBATHH has been output. 7651 VALUE ekdressd (default=32) 7652 -1 = "Not in Universe" 7653 1 = "Yes" 7654 2 = "No" 7655 ; NOTE: Format EKDRESSD has been output. 7656 VALUE akdressd (default=32) 7657 0 = "Not imputed" 7658 1 = "Statistical imputation (hot deck)" 7659 2 = "Cold deck imputation" 7660 3 = "Logical imputation (derivation)" 7661 ; NOTE: Format AKDRESSD has been output. 7662 VALUE ekdressh (default=32) 7663 -1 = "Not in Universe" 7664 1 = "Yes" 7665 2 = "No" 7666 ; NOTE: Format EKDRESSH has been output. 7667 VALUE akdressh (default=32) 7668 0 = "Not imputed" 7669 1 = "Statistical imputation (hot deck)" 149 The SAS System 15:07 Thursday, June 21, 2012 7670 2 = "Cold deck imputation" 7671 3 = "Logical imputation (derivation)" 7672 ; NOTE: Format AKDRESSH has been output. 7673 VALUE ekeatdif (default=32) 7674 -1 = "Not in Universe" 7675 1 = "Yes" 7676 2 = "No" 7677 ; NOTE: Format EKEATDIF has been output. 7678 VALUE akeatdif (default=32) 7679 0 = "Not imputed" 7680 1 = "Statistical imputation (hot deck)" 7681 2 = "Cold deck imputation" 7682 3 = "Logical imputation (derivation)" 7683 ; NOTE: Format AKEATDIF has been output. 7684 VALUE ekeathlp (default=32) 7685 -1 = "None or not in universe" 7686 1 = "Yes" 7687 2 = "No" 7688 ; NOTE: Format EKEATHLP has been output. 7689 VALUE akeathlp (default=32) 7690 0 = "Not imputed" 7691 1 = "Statistical imputation (hot deck)" 7692 2 = "Cold deck imputation" 7693 3 = "Logical imputation (derivation)" 7694 ; NOTE: Format AKEATHLP has been output. 7695 VALUE ektoiltd (default=32) 7696 -1 = "Not in Universe" 7697 1 = "Yes" 7698 2 = "No" 7699 ; NOTE: Format EKTOILTD has been output. 7700 VALUE aktoiltd (default=32) 7701 0 = "Not imputed" 7702 1 = "Statistical imputation (hot deck)" 7703 2 = "Cold deck imputation" 7704 3 = "Logical imputation (derivation)" 7705 ; NOTE: Format AKTOILTD has been output. 7706 VALUE ektoilth (default=32) 7707 -1 = "Not in Universe" 7708 1 = "Yes" 7709 2 = "No" 7710 ; NOTE: Format EKTOILTH has been output. 7711 VALUE aktoilth (default=32) 7712 0 = "Not imputed" 7713 1 = "Statistical imputation (hot deck)" 7714 2 = "Cold deck imputation" 7715 3 = "Logical imputation (derivation)" 7716 ; NOTE: Format AKTOILTH has been output. 7717 VALUE eksocial (default=32) 7718 -1 = "Not in Universe" 150 The SAS System 15:07 Thursday, June 21, 2012 7719 1 = "Yes" 7720 2 = "No" 7721 ; NOTE: Format EKSOCIAL has been output. 7722 VALUE aksocial (default=32) 7723 0 = "Not imputed" 7724 1 = "Statistical imputation (hot deck)" 7725 2 = "Cold deck imputation" 7726 3 = "Logical imputation (derivation)" 7727 ; NOTE: Format AKSOCIAL has been output. 7728 VALUE ekcond1l (default=32) 7729 -1 = "Not in Universe" 7730 1 = "Asthma" 7731 2 = "Attention deficit hyperactivity" 7732 3 = "Autism" 7733 4 = "Blindness or vision problems" 7734 5 = "Cancer" 7735 6 = "Cerebral Palsy" 7736 7 = "Deafness or hearing problems" 7737 8 = "Diabetes" 7738 9 = "Drug or alcohol problem or" 7739 10 = "Epilepsy or seizure disorder" 7740 11 = "Hay fever or other respiratory" 7741 12 = "Head or spinal cord injury" 7742 13 = "Heart trouble" 7743 14 = "Impairment or deformity of back," 7744 15 = "Impairment or deformity of arm," 7745 16 = "Learning disability" 7746 17 = "Mental or emotional problem or" 7747 18 = "Mental retardation" 7748 19 = "Missing legs, feet, arms, hands," 7749 20 = "Paralysis of Any Kind" 7750 21 = "Speech problems" 7751 22 = "Tonsillitis or repeated ear" 7752 23 = "Other" 7753 ; NOTE: Format EKCOND1L has been output. 7754 VALUE ekcond2l (default=32) 7755 -1 = "Not in universe or no second" 7756 1 = "Asthma" 7757 2 = "Attention deficit hyperactivity" 7758 3 = "Autism" 7759 4 = "Blindness or vision problems" 7760 5 = "Cancer" 7761 6 = "Cerebral Palsy" 7762 7 = "Deafness or hearing problems" 7763 8 = "Diabetes" 7764 9 = "Drug or alcohol problem or" 7765 10 = "Epilepsy or seizure disorder" 7766 11 = "Hay fever or other respiratory" 7767 12 = "Head or spinal cord injury" 7768 13 = "Heart trouble" 7769 14 = "Impairment or deformity of back," 7770 15 = "Impairment or deformity of arm," 7771 16 = "Learning disability" 7772 17 = "Mental or emotional problem or" 7773 18 = "Mental retardation" 151 The SAS System 15:07 Thursday, June 21, 2012 7774 19 = "Missing legs, feet, arms, hands," 7775 20 = "Paralysis of Any Kind" 7776 21 = "Speech problems" 7777 22 = "Tonsillitis or repeated ear" 7778 23 = "Other" 7779 ; NOTE: Format EKCOND2L has been output. 7780 VALUE ekcond3l (default=32) 7781 -1 = "Not in universe or no third" 7782 1 = "Asthma" 7783 2 = "Attention deficit hyperactivity" 7784 3 = "Autism" 7785 4 = "Blindness or vision problems" 7786 5 = "Cancer" 7787 6 = "Cerebral Palsy" 7788 7 = "Deafness or hearing problems" 7789 8 = "Diabetes" 7790 9 = "Drug or alcohol problem or" 7791 10 = "Epilepsy or seizure disorder" 7792 11 = "Hay fever or other respiratory" 7793 12 = "Head or spinal cord injury" 7794 13 = "Heart trouble" 7795 14 = "Impairment or deformity of back," 7796 15 = "Impairment or deformity of arm," 7797 16 = "Learning disability" 7798 17 = "Mental or emotional problem or" 7799 18 = "Mental retardation" 7800 19 = "Missing legs, feet, arms, hands," 7801 20 = "Paralysis of Any Kind" 7802 21 = "Speech problems" 7803 22 = "Tonsillitis or repeated ear" 7804 23 = "Other" 7805 ; NOTE: Format EKCOND3L has been output. 7806 VALUE akcond (default=32) 7807 0 = "Not imputed" 7808 1 = "Statistical imputation (hot deck)" 7809 2 = "Cold deck imputation" 7810 3 = "Logical imputation (derivation)" 7811 ; NOTE: Format AKCOND has been output. 7812 VALUE ekmotorv (default=32) 7813 -1 = "Not in Universe" 7814 1 = "Yes" 7815 2 = "No" 7816 ; NOTE: Format EKMOTORV has been output. 7817 VALUE akmotorv (default=32) 7818 0 = "Not imputed" 7819 1 = "Statistical imputation (hot deck)" 7820 2 = "Cold deck imputation" 7821 3 = "Logical imputation (derivation)" 7822 ; NOTE: Format AKMOTORV has been output. 7823 VALUE rkdisab (default=32) 7824 -1 = "Not in Universe" 7825 1 = "With a severe disability" 7826 2 = "With a nonsevere disability" 152 The SAS System 15:07 Thursday, June 21, 2012 7827 3 = "No disability" 7828 ; NOTE: Format RKDISAB has been output. 7829 VALUE eahbunv (default=32) 7830 -1 = "Not in Universe" 7831 1 = "In universe" 7832 ; NOTE: Format EAHBUNV has been output. 7833 VALUE ehealpla (default=32) 7834 -1 = "Not in Universe" 7835 1 = "Yes" 7836 2 = "No" 7837 ; NOTE: Format EHEALPLA has been output. 7838 VALUE ahealpla (default=32) 7839 0 = "Not imputed" 7840 1 = "Statistical imputation (hot deck)" 7841 2 = "Cold deck imputation" 7842 3 = "Logical imputation (derivation)" 7843 ; NOTE: Format AHEALPLA has been output. 7844 VALUE enotplan (default=32) 7845 -1 = "Not in Universe" 7846 1 = "Ineligible" 7847 2 = "Denied coverage" 7848 3 = "Chose not be covered" 7849 4 = "OTHER" 7850 ; NOTE: Format ENOTPLAN has been output. 7851 VALUE anotplan (default=32) 7852 0 = "Not imputed" 7853 1 = "Statistical imputation (hot deck)" 7854 2 = "Cold deck imputation" 7855 3 = "Logical imputation (derivation)" 7856 ; NOTE: Format ANOTPLAN has been output. 7857 VALUE enoelign (default=32) 7858 -1 = "Not in Universe" 7859 1 = "Yes" 7860 2 = "No" 7861 ; NOTE: Format ENOELIGN has been output. 7862 VALUE enoeligk (default=32) 7863 -1 = "Not in Universe" 7864 1 = "Yes" 7865 2 = "No" 7866 ; NOTE: Format ENOELIGK has been output. 7867 VALUE enoeligl (default=32) 7868 -1 = "Not in Universe" 7869 1 = "Yes" 7870 2 = "No" 7871 ; NOTE: Format ENOELIGL has been output. 7872 VALUE enoeligm (default=32) 7873 -1 = "Not in Universe" 7874 1 = "Yes" 7875 2 = "No" 153 The SAS System 15:07 Thursday, June 21, 2012 7876 ; NOTE: Format ENOELIGM has been output. 7877 VALUE anoelig (default=32) 7878 0 = "Not imputed" 7879 1 = "Statistical imputation (hot deck)" 7880 2 = "Cold deck imputation" 7881 3 = "Logical imputation (derivation)" 7882 ; NOTE: Format ANOELIG has been output. 7883 VALUE edencove (default=32) 7884 -1 = "Not in Universe" 7885 1 = "Turned Down based on pre-existing" 7886 2 = "Turned down based on age" 7887 3 = "Other" 7888 ; NOTE: Format EDENCOVE has been output. 7889 VALUE adencove (default=32) 7890 0 = "Not imputed" 7891 1 = "Statistical imputation (hot deck)" 7892 2 = "Cold deck imputation" 7893 3 = "Logical imputation (derivation)" 7894 ; NOTE: Format ADENCOVE has been output. 7895 VALUE enocov1l (default=32) 7896 -1 = "Not in Universe" 7897 1 = "Yes" 7898 2 = "No" 7899 ; NOTE: Format ENOCOV1L has been output. 7900 VALUE enocov2l (default=32) 7901 -1 = "Not in Universe" 7902 1 = "Yes" 7903 2 = "No" 7904 ; NOTE: Format ENOCOV2L has been output. 7905 VALUE enocov3l (default=32) 7906 -1 = "Not in Universe" 7907 1 = "Yes" 7908 2 = "No" 7909 ; NOTE: Format ENOCOV3L has been output. 7910 VALUE enocov4l (default=32) 7911 -1 = "Not in Universe" 7912 1 = "Yes" 7913 2 = "No" 7914 ; NOTE: Format ENOCOV4L has been output. 7915 VALUE enocov5l (default=32) 7916 -1 = "Not in Universe" 7917 1 = "Yes" 7918 2 = "No" 7919 ; NOTE: Format ENOCOV5L has been output. 7920 VALUE enocov6l (default=32) 7921 -1 = "Not in Universe" 7922 1 = "Yes" 7923 2 = "No" 7924 ; 154 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format ENOCOV6L has been output. 7925 VALUE enocov7l (default=32) 7926 -1 = "Not in Universe" 7927 1 = "Yes" 7928 2 = "No" 7929 ; NOTE: Format ENOCOV7L has been output. 7930 VALUE enocov8l (default=32) 7931 -1 = "Not in Universe" 7932 1 = "Yes" 7933 2 = "No" 7934 ; NOTE: Format ENOCOV8L has been output. 7935 VALUE enocov9l (default=32) 7936 -1 = "Not in Universe" 7937 1 = "Yes" 7938 2 = "No" 7939 ; NOTE: Format ENOCOV9L has been output. 7940 VALUE enocov1e (default=32) 7941 -1 = "Not in Universe" 7942 1 = "Yes" 7943 2 = "No" 7944 ; NOTE: Format ENOCOV1E has been output. 7945 VALUE anocov (default=32) 7946 0 = "Not imputed" 7947 1 = "Statistical imputation (hot deck)" 7948 2 = "Cold deck imputation" 7949 3 = "Logical imputation (derivation)" 7950 ; NOTE: Format ANOCOV has been output. 7951 VALUE eoffempv (default=32) 7952 -1 = "Not in Universe" 7953 1 = "Yes" 7954 2 = "No" 7955 ; NOTE: Format EOFFEMPV has been output. 7956 VALUE eoffempk (default=32) 7957 -1 = "Not in Universe" 7958 1 = "Yes" 7959 2 = "No" 7960 ; NOTE: Format EOFFEMPK has been output. 7961 VALUE eoffempl (default=32) 7962 -1 = "Not in Universe" 7963 1 = "Yes" 7964 2 = "No" 7965 ; NOTE: Format EOFFEMPL has been output. 7966 VALUE eoffempm (default=32) 7967 -1 = "Not in Universe" 7968 1 = "Yes" 7969 2 = "No" 7970 ; NOTE: Format EOFFEMPM has been output. 7971 VALUE eoffempn (default=32) 7972 -1 = "Not in Universe" 155 The SAS System 15:07 Thursday, June 21, 2012 7973 1 = "Yes" 7974 2 = "No" 7975 ; NOTE: Format EOFFEMPN has been output. 7976 VALUE aoffemp (default=32) 7977 0 = "Not imputed" 7978 1 = "Statistical imputation (hot deck)" 7979 2 = "Cold deck imputation" 7980 3 = "Logical imputation (derivation)" 7981 ; NOTE: Format AOFFEMP has been output. 7982 VALUE ewheheal (default=32) 7983 -1 = "Not in Universe" 7984 1 = "Spouse's group/employer plan" 7985 2 = "Other private group plan" 7986 3 = "An individually purchased policy" 7987 4 = "Other health insurance" 7988 ; NOTE: Format EWHEHEAL has been output. 7989 VALUE awheheal (default=32) 7990 0 = "Not imputed" 7991 1 = "Statistical imputation (hot deck)" 7992 2 = "Cold deck imputation" 7993 3 = "Logical imputation (derivation)" 7994 ; NOTE: Format AWHEHEAL has been output. 7995 VALUE ecovmemb (default=32) 7996 -1 = "Not in Universe" 7997 1 = "Yes" 7998 2 = "No" 7999 ; NOTE: Format ECOVMEMB has been output. 8000 VALUE acovmemb (default=32) 8001 0 = "Not imputed" 8002 1 = "Statistical imputation (hot deck)" 8003 2 = "Cold deck imputation" 8004 3 = "Logical imputation (derivation)" 8005 ; NOTE: Format ACOVMEMB has been output. 8006 VALUE ewhocovb (default=32) 8007 -1 = "Not in Universe" 8008 1 = "Yes" 8009 2 = "No" 8010 ; NOTE: Format EWHOCOVB has been output. 8011 VALUE ewhocovk (default=32) 8012 -1 = "Not in Universe" 8013 1 = "Yes" 8014 2 = "No" 8015 ; NOTE: Format EWHOCOVK has been output. 8016 VALUE ewhocovl (default=32) 8017 -1 = "Not in Universe" 8018 1 = "Yes" 8019 2 = "No" 8020 ; NOTE: Format EWHOCOVL has been output. 8021 VALUE ewhocovm (default=32) 156 The SAS System 15:07 Thursday, June 21, 2012 8022 -1 = "Not in Universe" 8023 1 = "Yes" 8024 2 = "No" 8025 ; NOTE: Format EWHOCOVM has been output. 8026 VALUE ewhocovn (default=32) 8027 -1 = "Not in Universe" 8028 1 = "Yes" 8029 2 = "No" 8030 ; NOTE: Format EWHOCOVN has been output. 8031 VALUE awhocov (default=32) 8032 0 = "Not imputed" 8033 1 = "Statistical imputation (hot deck)" 8034 2 = "Cold deck imputation" 8035 3 = "Logical imputation (derivation)" 8036 ; NOTE: Format AWHOCOV has been output. 8037 VALUE echpnm0v (default=32) 8038 -1 = "Not in Universe" 8039 ; NOTE: Format ECHPNM0V has been output. 8040 VALUE echcov0v (default=32) 8041 -1 = "Not in Universe" 8042 1 = "Child is covered by Medicaid" 8043 2 = "Child is covered by Medicare" 8044 3 = "Child is covered by other private" 8045 4 = "Child is covered by the group" 8046 5 = "Too costly to obtain coverage for" 8047 6 = "Plan did not cover pre-existing" 8048 7 = "Child is in good health" 8049 8 = "Child is covered by the group" 8050 9 = "Other reason" 8051 ; NOTE: Format ECHCOV0V has been output. 8052 VALUE achcov0v (default=32) 8053 0 = "Not imputed" 8054 1 = "Statistical imputation (hot deck)" 8055 2 = "Cold deck imputation" 8056 3 = "Logical imputation (derivation)" 8057 ; NOTE: Format ACHCOV0V has been output. 8058 VALUE echpnm0k (default=32) 8059 -1 = "Not in Universe" 8060 ; NOTE: Format ECHPNM0K has been output. 8061 VALUE echcov0k (default=32) 8062 -1 = "Not in Universe" 8063 1 = "Child is covered by Medicaid" 8064 2 = "Child is covered by Medicare" 8065 3 = "Child is covered by other private" 8066 4 = "Child is covered by the group" 8067 5 = "Too costly to obtain coverage for" 8068 6 = "Plan did not cover pre-existing" 8069 7 = "Child is in good health" 8070 8 = "Child is covered by the group" 8071 9 = "Other reason" 8072 ; 157 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format ECHCOV0K has been output. 8073 VALUE achcov0k (default=32) 8074 0 = "Not imputed" 8075 1 = "Statistical imputation (hot deck)" 8076 2 = "Cold deck imputation" 8077 3 = "Logical imputation (derivation)" 8078 ; NOTE: Format ACHCOV0K has been output. 8079 VALUE echpnm0l (default=32) 8080 -1 = "Not in Universe" 8081 ; NOTE: Format ECHPNM0L has been output. 8082 VALUE echcov0l (default=32) 8083 -1 = "Not in Universe" 8084 1 = "Child is covered by Medicaid" 8085 2 = "Child is covered by Medicare" 8086 3 = "Child is covered by other private" 8087 4 = "Child is covered by the group" 8088 5 = "Too costly to obtain coverage for" 8089 6 = "Plan did not cover pre-existing" 8090 7 = "Child is in good health" 8091 8 = "Child is covered by the group" 8092 9 = "Other reason" 8093 ; NOTE: Format ECHCOV0L has been output. 8094 VALUE achcov0l (default=32) 8095 0 = "Not imputed" 8096 1 = "Statistical imputation (hot deck)" 8097 2 = "Cold deck imputation" 8098 3 = "Logical imputation (derivation)" 8099 ; NOTE: Format ACHCOV0L has been output. 8100 VALUE echpnm0m (default=32) 8101 -1 = "Not in Universe" 8102 ; NOTE: Format ECHPNM0M has been output. 8103 VALUE echcov0m (default=32) 8104 -1 = "Not in Universe" 8105 1 = "Child is covered by Medicaid" 8106 2 = "Child is covered by Medicare" 8107 3 = "Child is covered by other private" 8108 4 = "Child is covered by the group" 8109 5 = "Too costly to obtain coverage for" 8110 6 = "Plan did not cover pre-existing" 8111 7 = "Child is in good health" 8112 8 = "Child is covered by the group" 8113 9 = "Other reason" 8114 ; NOTE: Format ECHCOV0M has been output. 8115 VALUE achcov0m (default=32) 8116 0 = "Not imputed" 8117 1 = "Statistical imputation (hot deck)" 8118 2 = "Cold deck imputation" 8119 3 = "Logical imputation (derivation)" 8120 ; NOTE: Format ACHCOV0M has been output. 8121 VALUE echpnm0n (default=32) 8122 -1 = "Not in Universe" 158 The SAS System 15:07 Thursday, June 21, 2012 8123 ; NOTE: Format ECHPNM0N has been output. 8124 VALUE echcov0n (default=32) 8125 -1 = "Not in Universe" 8126 1 = "Child is covered by Medicaid" 8127 2 = "Child is covered by Medicare" 8128 3 = "Child is covered by other private" 8129 4 = "Child is covered by the group" 8130 5 = "Too costly to obtain coverage for" 8131 6 = "Plan did not cover pre-existing" 8132 7 = "Child is in good health" 8133 8 = "Child is covered by the group" 8134 9 = "Other reason" 8135 ; NOTE: Format ECHCOV0N has been output. 8136 VALUE achcov0n (default=32) 8137 0 = "Not imputed" 8138 1 = "Statistical imputation (hot deck)" 8139 2 = "Cold deck imputation" 8140 3 = "Logical imputation (derivation)" 8141 ; NOTE: Format ACHCOV0N has been output. 8142 VALUE echpnm0o (default=32) 8143 -1 = "Not in Universe" 8144 ; NOTE: Format ECHPNM0O has been output. 8145 VALUE echcov0o (default=32) 8146 -1 = "Not in Universe" 8147 1 = "Child is covered by Medicaid" 8148 2 = "Child is covered by Medicare" 8149 3 = "Child is covered by other private" 8150 4 = "Child is covered by the group" 8151 5 = "Too costly to obtain coverage for" 8152 6 = "Plan did not cover pre-existing" 8153 7 = "Child is in good health" 8154 8 = "Child is covered by the group" 8155 9 = "Other reason" 8156 ; NOTE: Format ECHCOV0O has been output. 8157 VALUE achcov0o (default=32) 8158 0 = "Not imputed" 8159 1 = "Statistical imputation (hot deck)" 8160 2 = "Cold deck imputation" 8161 3 = "Logical imputation (derivation)" 8162 ; NOTE: Format ACHCOV0O has been output. 8163 VALUE echpnm0p (default=32) 8164 -1 = "Not in Universe" 8165 ; NOTE: Format ECHPNM0P has been output. 8166 VALUE echcov0p (default=32) 8167 -1 = "Not in Universe" 8168 1 = "Child is covered by Medicaid" 8169 2 = "Child is covered by Medicare" 8170 3 = "Child is covered by other private" 8171 4 = "Child is covered by the group" 8172 5 = "Too costly to obtain coverage for" 8173 6 = "Plan did not cover pre-existing" 159 The SAS System 15:07 Thursday, June 21, 2012 8174 7 = "Child is in good health" 8175 8 = "Child is covered by the group" 8176 9 = "Other reason" 8177 ; NOTE: Format ECHCOV0P has been output. 8178 VALUE achcov0p (default=32) 8179 0 = "Not imputed" 8180 1 = "Statistical imputation (hot deck)" 8181 2 = "Cold deck imputation" 8182 3 = "Logical imputation (derivation)" 8183 ; NOTE: Format ACHCOV0P has been output. 8184 VALUE tamtplan (default=32) 8185 0 = "None or not in universe" 8186 ; NOTE: Format TAMTPLAN has been output. 8187 VALUE aamtplan (default=32) 8188 0 = "Not imputed" 8189 1 = "Statistical imputation (hot deck)" 8190 2 = "Cold deck imputation" 8191 3 = "Logical imputation (derivation)" 8192 ; NOTE: Format AAMTPLAN has been output. 8193 VALUE etimplan (default=32) 8194 -1 = "Not in Universe" 8195 1 = "Weekly" 8196 2 = "Every two weeks" 8197 3 = "Twice monthly" 8198 4 = "Monthly" 8199 5 = "Semi-annually" 8200 6 = "Annually" 8201 7 = "Other" 8202 ; NOTE: Format ETIMPLAN has been output. 8203 VALUE atimplan (default=32) 8204 0 = "Not imputed" 8205 1 = "Statistical imputation (hot deck)" 8206 2 = "Cold deck imputation" 8207 3 = "Logical imputation (derivation)" 8208 ; NOTE: Format ATIMPLAN has been output. 8209 VALUE etaxplan (default=32) 8210 -1 = "Not in Universe" 8211 1 = "Yes" 8212 2 = "No" 8213 ; NOTE: Format ETAXPLAN has been output. 8214 VALUE ataxplan (default=32) 8215 0 = "Not imputed" 8216 1 = "Statistical imputation (hot deck)" 8217 2 = "Cold deck imputation" 8218 3 = "Logical imputation (derivation)" 8219 ; NOTE: Format ATAXPLAN has been output. 8220 VALUE epreminc (default=32) 8221 -1 = "Not in Universe" 8222 1 = "Yes" 8223 2 = "No" 160 The SAS System 15:07 Thursday, June 21, 2012 8224 ; NOTE: Format EPREMINC has been output. 8225 VALUE apreminc (default=32) 8226 0 = "Not imputed" 8227 1 = "Statistical imputation (hot deck)" 8228 2 = "Cold deck imputation" 8229 3 = "Logical imputation (derivation)" 8230 ; NOTE: Format APREMINC has been output. 8231 VALUE eleftpla (default=32) 8232 -1 = "Not in Universe" 8233 1 = "Until age 65 or Medicare" 8234 2 = "Less than 1 month" 8235 3 = "1 to 18 months" 8236 4 = "19 to 36 months" 8237 5 = "More than 36 months" 8238 6 = "For life" 8239 ; NOTE: Format ELEFTPLA has been output. 8240 VALUE aleftpla (default=32) 8241 0 = "Not imputed" 8242 1 = "Statistical imputation (hot deck)" 8243 2 = "Cold deck imputation" 8244 3 = "Logical imputation (derivation)" 8245 ; NOTE: Format ALEFTPLA has been output. 8246 VALUE eplanmed (default=32) 8247 -1 = "Not in Universe" 8248 1 = "Yes" 8249 2 = "No" 8250 ; NOTE: Format EPLANMED has been output. 8251 VALUE aplanmed (default=32) 8252 0 = "Not imputed" 8253 1 = "Statistical imputation (hot deck)" 8254 2 = "Cold deck imputation" 8255 3 = "Logical imputation (derivation)" 8256 ; NOTE: Format APLANMED has been output. 8257 VALUE eoppch1l (default=32) 8258 -1 = "Not in Universe" 8259 1 = "Yes" 8260 2 = "No" 8261 ; NOTE: Format EOPPCH1L has been output. 8262 VALUE eoppch2l (default=32) 8263 -1 = "Not in Universe" 8264 1 = "Yes" 8265 2 = "No" 8266 ; NOTE: Format EOPPCH2L has been output. 8267 VALUE eoppch3l (default=32) 8268 -1 = "Not in Universe" 8269 1 = "Yes" 8270 2 = "No" 8271 ; NOTE: Format EOPPCH3L has been output. 8272 VALUE eoppch4l (default=32) 161 The SAS System 15:07 Thursday, June 21, 2012 8273 -1 = "Not in Universe" 8274 1 = "Yes" 8275 2 = "No" 8276 ; NOTE: Format EOPPCH4L has been output. 8277 VALUE eoppch5l (default=32) 8278 -1 = "Not in Universe" 8279 1 = "Yes" 8280 2 = "No" 8281 ; NOTE: Format EOPPCH5L has been output. 8282 VALUE aoppch (default=32) 8283 0 = "Not imputed" 8284 1 = "Statistical imputation (hot deck)" 8285 2 = "Cold deck imputation" 8286 3 = "Logical imputation (derivation)" 8287 ; NOTE: Format AOPPCH has been output. 8288 VALUE ehashmo (default=32) 8289 -1 = "Not in Universe" 8290 1 = "Yes" 8291 2 = "No" 8292 ; NOTE: Format EHASHMO has been output. 8293 VALUE ahashmo (default=32) 8294 0 = "Not imputed" 8295 1 = "Statistical imputation (hot deck)" 8296 2 = "Cold deck imputation" 8297 3 = "Logical imputation (derivation)" 8298 ; NOTE: Format AHASHMO has been output. 8299 VALUE esigndoc (default=32) 8300 -1 = "Not in Universe" 8301 1 = "Yes" 8302 2 = "No" 8303 ; NOTE: Format ESIGNDOC has been output. 8304 VALUE asigndoc (default=32) 8305 0 = "Not imputed" 8306 1 = "Statistical imputation (hot deck)" 8307 2 = "Cold deck imputation" 8308 3 = "Logical imputation (derivation)" 8309 ; NOTE: Format ASIGNDOC has been output. 8310 VALUE ebookdoc (default=32) 8311 -1 = "Not in Universe" 8312 1 = "Yes" 8313 2 = "No" 8314 ; NOTE: Format EBOOKDOC has been output. 8315 VALUE abookdoc (default=32) 8316 0 = "Not imputed" 8317 1 = "Statistical imputation (hot deck)" 8318 2 = "Cold deck imputation" 8319 3 = "Logical imputation (derivation)" 8320 ; NOTE: Format ABOOKDOC has been output. 8321 VALUE ewhoref (default=32) 162 The SAS System 15:07 Thursday, June 21, 2012 8322 -1 = "Not in Universe" 8323 1 = "Yes" 8324 2 = "No" 8325 ; NOTE: Format EWHOREF has been output. 8326 VALUE awhoref (default=32) 8327 0 = "Not imputed" 8328 1 = "Statistical imputation (hot deck)" 8329 2 = "Cold deck imputation" 8330 3 = "Logical imputation (derivation)" 8331 ; NOTE: Format AWHOREF has been output. 8332 VALUE eoptions (default=32) 8333 -1 = "Not in Universe" 8334 1 = "Employer offers more than one" 8335 2 = "Respondent's plan is the only one" 8336 ; NOTE: Format EOPTIONS has been output. 8337 VALUE aoptions (default=32) 8338 0 = "Not imputed" 8339 1 = "Statistical imputation (hot deck)" 8340 2 = "Cold deck imputation" 8341 3 = "Logical imputation (derivation)" 8342 ; NOTE: Format AOPTIONS has been output. 8343 VALUE echoices (default=32) 8344 -1 = "Not in Universe" 8345 1 = "Yes" 8346 2 = "No" 8347 ; NOTE: Format ECHOICES has been output. 8348 VALUE achoices (default=32) 8349 0 = "Not imputed" 8350 1 = "Statistical imputation (hot deck)" 8351 2 = "Cold deck imputation" 8352 3 = "Logical imputation (derivation)" 8353 ; NOTE: Format ACHOICES has been output. 8354 VALUE echoicek (default=32) 8355 -1 = "Not in Universe" 8356 1 = "Yes" 8357 2 = "No" 8358 ; NOTE: Format ECHOICEK has been output. 8359 VALUE achoicek (default=32) 8360 0 = "Not imputed" 8361 1 = "Statistical imputation (hot deck)" 8362 2 = "Cold deck imputation" 8363 3 = "Logical imputation (derivation)" 8364 ; NOTE: Format ACHOICEK has been output. 8365 VALUE eempmate (default=32) 8366 -1 = "Not in Universe" 8367 1 = "Yes" 8368 2 = "No" 8369 ; NOTE: Format EEMPMATE has been output. 8370 VALUE aempmate (default=32) 163 The SAS System 15:07 Thursday, June 21, 2012 8371 0 = "Not imputed" 8372 1 = "Statistical imputation (hot deck)" 8373 2 = "Cold deck imputation" 8374 3 = "Logical imputation (derivation)" 8375 ; NOTE: Format AEMPMATE has been output. 8376 VALUE ematcomp (default=32) 8377 -1 = "Not in Universe" 8378 1 = "Yes" 8379 2 = "No" 8380 ; NOTE: Format EMATCOMP has been output. 8381 VALUE amatcomp (default=32) 8382 0 = "Not imputed" 8383 1 = "Statistical imputation (hot deck)" 8384 2 = "Cold deck imputation" 8385 3 = "Logical imputation (derivation)" 8386 ; NOTE: Format AMATCOMP has been output. 8387 VALUE econdnot (default=32) 8388 -1 = "Not in Universe" 8389 1 = "Yes" 8390 2 = "No" 8391 ; NOTE: Format ECONDNOT has been output. 8392 VALUE acondnot (default=32) 8393 0 = "Not imputed" 8394 1 = "Statistical imputation (hot deck)" 8395 2 = "Cold deck imputation" 8396 3 = "Logical imputation (derivation)" 8397 ; NOTE: Format ACONDNOT has been output. 8398 VALUE eofflong (default=32) 8399 -1 = "Not in Universe" 8400 1 = "Yes" 8401 2 = "No" 8402 ; NOTE: Format EOFFLONG has been output. 8403 VALUE aofflong (default=32) 8404 0 = "Not imputed" 8405 1 = "Statistical imputation (hot deck)" 8406 2 = "Cold deck imputation" 8407 3 = "Logical imputation (derivation)" 8408 ; NOTE: Format AOFFLONG has been output. 8409 VALUE ecovlong (default=32) 8410 -1 = "Not in Universe" 8411 1 = "Yes" 8412 2 = "No" 8413 ; NOTE: Format ECOVLONG has been output. 8414 VALUE acovlong (default=32) 8415 0 = "Not imputed" 8416 1 = "Statistical imputation (hot deck)" 8417 2 = "Cold deck imputation" 8418 3 = "Logical imputation (derivation)" 8419 ; NOTE: Format ACOVLONG has been output. 164 The SAS System 15:07 Thursday, June 21, 2012 8420 VALUE eempcost (default=32) 8421 -1 = "Not in Universe" 8422 1 = "All" 8423 2 = "Part" 8424 3 = "None" 8425 ; NOTE: Format EEMPCOST has been output. 8426 VALUE aempcost (default=32) 8427 0 = "Not imputed" 8428 1 = "Statistical imputation (hot deck)" 8429 2 = "Cold deck imputation" 8430 3 = "Logical imputation (derivation)" 8431 ; NOTE: Format AEMPCOST has been output. 8432 VALUE tamtlong (default=32) 8433 0 = "None or not in universe" 8434 ; NOTE: Format TAMTLONG has been output. 8435 VALUE aamtlong (default=32) 8436 0 = "Not imputed" 8437 1 = "Statistical imputation (hot deck)" 8438 2 = "Cold deck imputation" 8439 3 = "Logical imputation (derivation)" 8440 ; NOTE: Format AAMTLONG has been output. 8441 VALUE etimeamt (default=32) 8442 -1 = "Not in Universe" 8443 1 = "Weekly" 8444 2 = "Every two weeks" 8445 3 = "Twice monthly" 8446 4 = "Monthly" 8447 5 = "Semi-annually" 8448 6 = "Annually" 8449 7 = "Other" 8450 ; NOTE: Format ETIMEAMT has been output. 8451 VALUE atimeamt (default=32) 8452 0 = "Not imputed" 8453 1 = "Statistical imputation (hot deck)" 8454 2 = "Cold deck imputation" 8455 3 = "Logical imputation (derivation)" 8456 ; NOTE: Format ATIMEAMT has been output. 8457 VALUE eretheal (default=32) 8458 -1 = "Not in Universe" 8459 1 = "Yes" 8460 2 = "No" 8461 ; NOTE: Format ERETHEAL has been output. 8462 VALUE aretheal (default=32) 8463 0 = "Not imputed" 8464 1 = "Statistical imputation (hot deck)" 8465 2 = "Cold deck imputation" 8466 3 = "Logical imputation (derivation)" 8467 ; NOTE: Format ARETHEAL has been output. 8468 VALUE eretcont (default=32) 8469 -1 = "Not in Universe" 165 The SAS System 15:07 Thursday, June 21, 2012 8470 1 = "Yes" 8471 2 = "No" 8472 ; NOTE: Format ERETCONT has been output. 8473 VALUE aretcont (default=32) 8474 0 = "Not imputed" 8475 1 = "Statistical imputation (hot deck)" 8476 2 = "Cold deck imputation" 8477 3 = "Logical imputation (derivation)" 8478 ; NOTE: Format ARETCONT has been output. 8479 VALUE eretpays (default=32) 8480 -1 = "Not in Universe" 8481 1 = "All" 8482 2 = "Part" 8483 3 = "None" 8484 ; NOTE: Format ERETPAYS has been output. 8485 VALUE aretpays (default=32) 8486 0 = "Not imputed" 8487 1 = "Statistical imputation (hot deck)" 8488 2 = "Cold deck imputation" 8489 3 = "Logical imputation (derivation)" 8490 ; NOTE: Format ARETPAYS has been output. 8491 VALUE eretplan (default=32) 8492 -1 = "Not in Universe" 8493 1 = "Yes" 8494 2 = "No" 8495 ; NOTE: Format ERETPLAN has been output. 8496 VALUE aretplan (default=32) 8497 0 = "Not imputed" 8498 1 = "Statistical imputation (hot deck)" 8499 2 = "Cold deck imputation" 8500 3 = "Logical imputation (derivation)" 8501 ; NOTE: Format ARETPLAN has been output. 8502 VALUE ewhoplnn (default=32) 8503 -1 = "Not in Universe" 8504 1 = "Yes" 8505 2 = "No" 8506 ; NOTE: Format EWHOPLNN has been output. 8507 VALUE ewhoplnk (default=32) 8508 -1 = "Not in Universe" 8509 1 = "Yes" 8510 2 = "No" 8511 ; NOTE: Format EWHOPLNK has been output. 8512 VALUE ewhoplnl (default=32) 8513 -1 = "Not in Universe" 8514 1 = "Yes" 8515 2 = "No" 8516 ; NOTE: Format EWHOPLNL has been output. 8517 VALUE ewhoplnm (default=32) 8518 -1 = "Not in Universe" 166 The SAS System 15:07 Thursday, June 21, 2012 8519 1 = "Yes" 8520 2 = "No" 8521 ; NOTE: Format EWHOPLNM has been output. 8522 VALUE ewhoplno (default=32) 8523 -1 = "Not in Universe" 8524 1 = "Yes" 8525 2 = "No" 8526 ; NOTE: Format EWHOPLNO has been output. 8527 VALUE awhopln (default=32) 8528 0 = "Not imputed" 8529 1 = "Statistical imputation (hot deck)" 8530 2 = "Cold deck imputation" 8531 3 = "Logical imputation (derivation)" 8532 ; NOTE: Format AWHOPLN has been output. 8533 VALUE epaidjob (default=32) 8534 -1 = "Not in Universe" 8535 1 = "Yes" 8536 2 = "No" 8537 ; NOTE: Format EPAIDJOB has been output. 8538 VALUE apaidjob (default=32) 8539 0 = "Not imputed" 8540 1 = "Statistical imputation (hot deck)" 8541 2 = "Cold deck imputation" 8542 3 = "Logical imputation (derivation)" 8543 ; NOTE: Format APAIDJOB has been output. 8544 VALUE eformemp (default=32) 8545 -1 = "Not in Universe" 8546 1 = "Yes" 8547 2 = "No" 8548 ; NOTE: Format EFORMEMP has been output. 8549 VALUE aformemp (default=32) 8550 0 = "Not imputed" 8551 1 = "Statistical imputation (hot deck)" 8552 2 = "Cold deck imputation" 8553 3 = "Logical imputation (derivation)" 8554 ; NOTE: Format AFORMEMP has been output. 8555 VALUE elastcov (default=32) 8556 -1 = "Not in Universe" 8557 1 = "Yes" 8558 2 = "No" 8559 ; NOTE: Format ELASTCOV has been output. 8560 VALUE alastcov (default=32) 8561 0 = "Not imputed" 8562 1 = "Statistical imputation (hot deck)" 8563 2 = "Cold deck imputation" 8564 3 = "Logical imputation (derivation)" 8565 ; NOTE: Format ALASTCOV has been output. 8566 VALUE econleft (default=32) 8567 -1 = "Not in Universe" 167 The SAS System 15:07 Thursday, June 21, 2012 8568 1 = "Yes" 8569 2 = "No" 8570 ; NOTE: Format ECONLEFT has been output. 8571 VALUE aconleft (default=32) 8572 0 = "Not imputed" 8573 1 = "Statistical imputation (hot deck)" 8574 2 = "Cold deck imputation" 8575 3 = "Logical imputation (derivation)" 8576 ; NOTE: Format ACONLEFT has been output. 8577 VALUE econtret (default=32) 8578 -1 = "Not in Universe" 8579 1 = "COBRA" 8580 2 = "Retiree health benefit" 8581 ; NOTE: Format ECONTRET has been output. 8582 VALUE acontret (default=32) 8583 0 = "Not imputed" 8584 1 = "Statistical imputation (hot deck)" 8585 2 = "Cold deck imputation" 8586 3 = "Logical imputation (derivation)" 8587 ; NOTE: Format ACONTRET has been output. 8588 VALUE ewhyno1l (default=32) 8589 -1 = "Not in Universe" 8590 1 = "Yes" 8591 2 = "No" 8592 ; NOTE: Format EWHYNO1L has been output. 8593 VALUE ewhyno2l (default=32) 8594 -1 = "Not in Universe" 8595 1 = "Yes" 8596 2 = "No" 8597 ; NOTE: Format EWHYNO2L has been output. 8598 VALUE ewhyno3l (default=32) 8599 -1 = "Not in Universe" 8600 1 = "Yes" 8601 2 = "No" 8602 ; NOTE: Format EWHYNO3L has been output. 8603 VALUE ewhyno4l (default=32) 8604 -1 = "Not in Universe" 8605 1 = "Yes" 8606 2 = "No" 8607 ; NOTE: Format EWHYNO4L has been output. 8608 VALUE ewhyno5l (default=32) 8609 -1 = "Not in Universe" 8610 1 = "Yes" 8611 2 = "No" 8612 ; NOTE: Format EWHYNO5L has been output. 8613 VALUE ewhyno6l (default=32) 8614 -1 = "Not in Universe" 8615 1 = "Yes" 8616 2 = "No" 168 The SAS System 15:07 Thursday, June 21, 2012 8617 ; NOTE: Format EWHYNO6L has been output. 8618 VALUE ewhyno7l (default=32) 8619 -1 = "Not in Universe" 8620 1 = "Yes" 8621 2 = "No" 8622 ; NOTE: Format EWHYNO7L has been output. 8623 VALUE ewhyno8l (default=32) 8624 -1 = "Not in Universe" 8625 1 = "Yes" 8626 2 = "No" 8627 ; NOTE: Format EWHYNO8L has been output. 8628 VALUE ewhyno9l (default=32) 8629 -1 = "Not in Universe" 8630 1 = "Yes" 8631 2 = "No" 8632 ; NOTE: Format EWHYNO9L has been output. 8633 VALUE ewhyno1t (default=32) 8634 -1 = "Not in Universe" 8635 1 = "Yes" 8636 2 = "No" 8637 ; NOTE: Format EWHYNO1T has been output. 8638 VALUE ewhyno1k (default=32) 8639 -1 = "Not in Universe" 8640 1 = "Yes" 8641 2 = "No" 8642 ; NOTE: Format EWHYNO1K has been output. 8643 VALUE ewhyno1m (default=32) 8644 -1 = "Not in Universe" 8645 1 = "Yes" 8646 2 = "No" 8647 ; NOTE: Format EWHYNO1M has been output. 8648 VALUE ewhyno1n (default=32) 8649 -1 = "Not in Universe" 8650 1 = "Yes" 8651 2 = "No" 8652 ; NOTE: Format EWHYNO1N has been output. 8653 VALUE awhyno (default=32) 8654 0 = "Not imputed" 8655 1 = "Statistical imputation (hot deck)" 8656 2 = "Cold deck imputation" 8657 3 = "Logical imputation (derivation)" 8658 ; NOTE: Format AWHYNO has been output. 8659 VALUE tleftjob (default=32) 8660 -1 = "Not in Universe" 8661 ; NOTE: Format TLEFTJOB has been output. 8662 VALUE aleftjob (default=32) 8663 0 = "Not imputed" 8664 1 = "Statistical imputation (hot deck)" 169 The SAS System 15:07 Thursday, June 21, 2012 8665 2 = "Cold deck imputation" 8666 3 = "Logical imputation (derivation)" 8667 ; NOTE: Format ALEFTJOB has been output. 8668 VALUE eyearemp (default=32) 8669 -1 = "Not in Universe" 8670 ; NOTE: Format EYEAREMP has been output. 8671 VALUE ayearemp (default=32) 8672 0 = "Not imputed" 8673 1 = "Statistical imputation (hot deck)" 8674 2 = "Cold deck imputation" 8675 3 = "Logical imputation (derivation)" 8676 ; NOTE: Format AYEAREMP has been output. 8677 VALUE emnthemp (default=32) 8678 -1 = "Not in Universe" 8679 ; NOTE: Format EMNTHEMP has been output. 8680 VALUE amnthemp (default=32) 8681 0 = "Not imputed" 8682 1 = "Statistical imputation (hot deck)" 8683 2 = "Cold deck imputation" 8684 3 = "Logical imputation (derivation)" 8685 ; NOTE: Format AMNTHEMP has been output. 8686 VALUE ecovunio (default=32) 8687 -1 = "Not in Universe" 8688 1 = "Yes" 8689 2 = "No" 8690 ; NOTE: Format ECOVUNIO has been output. 8691 VALUE acovunio (default=32) 8692 0 = "Not imputed" 8693 1 = "Statistical imputation (hot deck)" 8694 2 = "Cold deck imputation" 8695 3 = "Logical imputation (derivation)" 8696 ; NOTE: Format ACOVUNIO has been output. 8697 VALUE thbind (default=32) 8698 -1 = "Not in Universe" 8699 1 = "Agriculture, forestry, fishing," 8700 2 = "Mining" 8701 3 = "Construction" 8702 4 = "Manufacturing" 8703 5 = "Wholesale trade" 8704 6 = "Retail Trade" 8705 7 = "Transportation and warehousing," 8706 8 = "Information" 8707 9 = "Finance, insurance, real estate," 8708 10 = "Professional, scientific," 8709 11 = "Educational Services, and Health" 8710 12 = "Arts, entertainment, recreation," 8711 13 = "Other services (except public" 8712 14 = "Public administration" 8713 15 = "Active duty military" 8714 9990 = "Unable to code" 8715 ; 170 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format THBIND has been output. 8716 VALUE thbocc (default=32) 8717 -1 = "Not in Universe" 8718 10 = "Chief executives (11-1011)" 8719 0020 = "General and operations managers" 8720 0040 = "Advertising and promotions" 8721 0050 = "Marketing and sales managers" 8722 0060 = "Public relations managers" 8723 100 = "Administrative services managers" 8724 0110 = "Computer and information systems" 8725 0120 = "Financial managers (11-3031)" 8726 0130 = "Human resources managers (11-3040)" 8727 0140 = "Industrial production" 8728 0150 = "Purchasing managers (11-3061)" 8729 160 = "Transportation, storage, and" 8730 200 = "Farm, ranch, and other" 8731 0210 = "Farmers and ranchers (11-9012)" 8732 0220 = "Construction managers (11-9021)" 8733 0230 = "Education administrators (11-9030)" 8734 0300 = "Engineering managers (11-9041)" 8735 0310 = "Food service managers (11-9051)" 8736 0320 = "Funeral directors (11-9061)" 8737 0330 = "Gaming managers (11-9071)" 8738 0340 = "Lodging managers (11-9081)" 8739 0350 = "Medical and health services" 8740 0360 = "Natural sciences managers" 8741 0410 = "Property, real estate, and" 8742 0420 = "Social and community service" 8743 0430 = "Managers, all other (11-9199)" 8744 0500 = "Agents and business managers of" 8745 0510 = "Purchasing agents and buyers," 8746 520 = "Wholesale and retail buyers," 8747 0530 = "Purchasing agents, except" 8748 0540 = "Claims adjusters, appraisers," 8749 0560 = "Compliance officers, except" 8750 0600 = "Cost estimators (13-1051)" 8751 0620 = "Human resources, training, and" 8752 0700 = "Logisticians (13-1081)" 8753 0710 = "Management analysts (13-1111)" 8754 0720 = "Meeting and convention planners" 8755 0730 = "Other business operations" 8756 0800 = "Accountants and auditors (13-2011)" 8757 0810 = "Appraisers and assessors of real" 8758 0820 = "Budget analysts (13-2031)" 8759 0830 = "Credit analysts (13-2041)" 8760 840 = "Financial analysts (13-2051)" 8761 0850 = "Personal financial advisors" 8762 0860 = "Insurance underwriters (13-2053)" 8763 0900 = "Financial examiners (13-2061)" 8764 0910 = "Loan counselors and officers" 8765 0930 = "Tax examiners, collectors, and" 8766 0940 = "Tax preparers (13-2082)" 8767 0950 = "Financial specialists, all other" 8768 1000 = "Computer scientists and systems" 8769 1010 = "Computer programmers (15-1021)" 8770 1020 = "Computer software engineers" 8771 1040 = "Computer support specialists" 8772 1060 = "Database administrators (15-1061)" 171 The SAS System 15:07 Thursday, June 21, 2012 8773 1100 = "Network and computer systems" 8774 1110 = "Network systems and data" 8775 1200 = "Actuaries (15-2011)" 8776 1210 = "Mathematicians (15-2021)" 8777 1220 = "Operations research analysts" 8778 1230 = "Statisticians (15-2041)" 8779 1240 = "Miscellaneous mathematical" 8780 1300 = "Architects, except naval (17-1010)" 8781 1310 = "Surveyors, cartographers, and" 8782 1320 = "Aerospace engineers (17-2011)" 8783 1330 = "Agricultural engineers (17-2021)" 8784 1340 = "Biomedical engineers (17-2031)" 8785 1350 = "Chemical engineers (17-2041)" 8786 1360 = "Civil engineers (17-2051)" 8787 1400 = "Computer hardware engineers" 8788 1410 = "Electrical and electronic" 8789 1420 = "Environmental engineers (17-2081)" 8790 1430 = "Industrial engineers, including" 8791 1440 = "Marine engineers and naval" 8792 1450 = "Materials engineers (17-2131)" 8793 1460 = "Mechanical engineers (17-2141)" 8794 1500 = "Mining and geological engineers," 8795 1510 = "Nuclear engineers (17-2161)" 8796 1520 = "Petroleum engineers (17-2171)" 8797 1530 = "Engineers, all other (17-2199)" 8798 1540 = "Drafters (17-3010)" 8799 1550 = "Engineering technicians, except" 8800 1560 = "Surveying and mapping technicians" 8801 1600 = "Agricultural and food scientists" 8802 1610 = "Biological scientists (19-1020)" 8803 1640 = "Conservation scientists and" 8804 1650 = "Medical scientists (19-1040)" 8805 1700 = "Astronomers and physicists" 8806 1710 = "Atmospheric and space scientists" 8807 1720 = "Chemists and materials scientists" 8808 1740 = "Environmental scientists and" 8809 1760 = "Physical scientists, all other" 8810 1800 = "Economists (19-3011)" 8811 1810 = "Market and survey researchers" 8812 1820 = "Psychologists (19-3030)" 8813 1830 = "Sociologists (19-3041)" 8814 1840 = "Urban and regional planners" 8815 1860 = "Miscellaneous social scientists" 8816 1900 = "Agricultural and food science" 8817 1910 = "Biological technicians (19-4021)" 8818 1920 = "Chemical technicians (19-4031)" 8819 1930 = "Geological and petroleum" 8820 1940 = "Nuclear technicians (19-4051)" 8821 1960 = "Other life, physical, and social" 8822 2000 = "Counselors (21-1010)" 8823 2010 = "Social workers (21-1020)" 8824 2020 = "Miscellaneous community and" 8825 2040 = "Clergy (21-2011)" 8826 2050 = "Directors, religious activities" 8827 2060 = "Religious workers, all other" 8828 2100 = "Lawyers (23-1011)" 8829 2140 = "Paralegals and legal assistants" 8830 2150 = "Miscellaneous legal support" 172 The SAS System 15:07 Thursday, June 21, 2012 8831 2200 = "Postsecondary teachers (25-1000)" 8832 2300 = "Preschool and kindergarten" 8833 2310 = "Elementary and middle school" 8834 2320 = "Secondary school teachers" 8835 2330 = "Special education teachers" 8836 2340 = "Other teachers and instructors" 8837 2400 = "Archivists, curators, and museum" 8838 2430 = "Librarians (25-4021)" 8839 2440 = "Library technicians (25-4031)" 8840 2540 = "Teacher assistants (25-9041)" 8841 2550 = "Other education, training, and" 8842 2600 = "Artists and related workers" 8843 2630 = "Designers (27-1020)" 8844 2700 = "Actors (27-2011)" 8845 2710 = "Producers and directors (27-2012)" 8846 2720 = "Athletes, coaches, umpires, and" 8847 2740 = "Dancers and choreographers" 8848 2750 = "Musicians, singers, and related" 8849 2760 = "Entertainers and performers," 8850 2800 = "Announcers (27-3010)" 8851 2810 = "News analysts, reporters and" 8852 2820 = "Public relations specialists" 8853 2830 = "Editors (27-3041)" 8854 2840 = "Technical writers (27-3042)" 8855 2850 = "Writers and authors (27-3043)" 8856 2860 = "Miscellaneous media and" 8857 2900 = "Broadcast and sound engineering" 8858 2910 = "Photographers (27-4021)" 8859 2920 = "Television, video, and motion" 8860 2960 = "Media and communication equipment" 8861 3000 = "Chiropractors (29-1011)" 8862 3010 = "Dentists (29-1020)" 8863 3030 = "Dietitians and nutritionists" 8864 3040 = "Optometrists (29-1041)" 8865 3050 = "Pharmacists (29-1051)" 8866 3060 = "Physicians and surgeons (29-1060)" 8867 3110 = "Physician assistants (29-1071)" 8868 3120 = "Podiatrists (29-1081)" 8869 3130 = "Registered nurses (29-1111)" 8870 3140 = "Audiologists (29-1121)" 8871 3150 = "Occupational therapists (29-1122)" 8872 3160 = "Physical therapists (29-1123)" 8873 3200 = "Radiation therapists (29-1124)" 8874 3210 = "Recreational therapists (29-1125)" 8875 3220 = "Respiratory therapists (29-1126)" 8876 3230 = "Speech-language pathologists" 8877 3240 = "Therapists, all other (29-1129)" 8878 3250 = "Veterinarians (29-1131)" 8879 3260 = "Health diagnosing and treating" 8880 3300 = "Clinical laboratory technologists" 8881 3310 = "Dental hygienists (29-2021)" 8882 3320 = "Diagnostic related technologists" 8883 3400 = "Emergency medical technicians and" 8884 3410 = "Health diagnosing and treating" 8885 3500 = "Licensed practical and licensed" 8886 3510 = "Medical records and health" 8887 3520 = "Opticians, dispensing (29-2081)" 8888 3530 = "Miscellaneous health" 173 The SAS System 15:07 Thursday, June 21, 2012 8889 3540 = "Other healthcare practitioners" 8890 3600 = "Nursing, psychiatric, and home" 8891 3610 = "Occupational therapist assistants" 8892 3620 = "Physical therapist assistants and" 8893 3630 = "Massage therapists (31-9011)" 8894 3640 = "Dental assistants (31-9091)" 8895 3650 = "Medical assistants and other" 8896 3700 = "First-line supervisors/managers" 8897 3710 = "First-line supervisors/managers" 8898 3720 = "First-line supervisors/managers" 8899 3730 = "Supervisors, protective service" 8900 3740 = "Fire fighters (33-2011)" 8901 3750 = "Fire inspectors (33-2020)" 8902 3800 = "Bailiffs, correctional officers," 8903 3820 = "Detectives and criminal" 8904 3830 = "Fish and game wardens (33-3031)" 8905 3840 = "Parking enforcement workers" 8906 3850 = "Police and sheriff's patrol" 8907 3860 = "Transit and railroad police" 8908 3900 = "Animal control workers (33-9011)" 8909 3910 = "Private detectives and" 8910 3920 = "Security guards and gaming" 8911 3940 = "Crossing guards (33-9091)" 8912 3950 = "Lifeguards and other protective" 8913 4000 = "Chefs and head cooks (35-1011)" 8914 4010 = "First-line supervisors/managers" 8915 4020 = "Cooks (35-2010)" 8916 4030 = "Food preparation workers (35-2021)" 8917 4040 = "Bartenders (35-3011)" 8918 4050 = "Combined food preparation and" 8919 4060 = "Counter attendants, cafeteria," 8920 4110 = "Waiters and waitresses (35-3031)" 8921 4120 = "Food servers, nonrestaurant" 8922 4130 = "Dining room and cafeteria" 8923 4140 = "Dishwashers (35-9021)" 8924 4150 = "Hosts and hostesses, restaurant," 8925 4160 = "Food preparation and serving" 8926 4200 = "First-line supervisors/managers" 8927 4210 = "First-line supervisors/managers" 8928 4220 = "Janitors and building cleaners" 8929 4230 = "Maids and housekeeping cleaners" 8930 4240 = "Pest control workers (37-2021)" 8931 4250 = "Grounds maintenance workers" 8932 4300 = "First-line supervisors/managers" 8933 4320 = "First-line supervisors/managers" 8934 4340 = "Animal trainers (39-2011)" 8935 4350 = "Nonfarm animal caretakers" 8936 4400 = "Gaming services workers (39-3010)" 8937 4410 = "Motion picture projectionists" 8938 4420 = "Ushers, lobby attendants, and" 8939 4430 = "Miscellaneous entertainment" 8940 4460 = "Funeral service workers (39-4000)" 8941 4500 = "Barbers (39-5011)" 8942 4510 = "Hairdressers, hairstylists, and" 8943 4520 = "Miscellaneous personal appearance" 8944 4530 = "Baggage porters, bellhops, and" 8945 4540 = "Tour and travel guides (39-6020)" 8946 4550 = "Transportation attendants" 174 The SAS System 15:07 Thursday, June 21, 2012 8947 4600 = "Child care workers (39-9011)" 8948 4610 = "Personal and home care aides" 8949 4620 = "Recreation and fitness workers" 8950 4640 = "Residential advisors (39-9041)" 8951 4650 = "Personal care and service" 8952 4700 = "First-line supervisors/managers" 8953 4710 = "First-line supervisors/managers" 8954 4720 = "Cashiers (41-2010)" 8955 4740 = "Counter and rental clerks" 8956 4750 = "Parts salespersons (41-2022)" 8957 4760 = "Retail salespersons (41-2031)" 8958 4800 = "Advertising sales agents (41-3011)" 8959 4810 = "Insurance sales agents (41-3021)" 8960 4820 = "Securities, commodities, and" 8961 4830 = "Travel agents (41-3041)" 8962 4840 = "Sales representatives, services," 8963 4850 = "Sales representatives, wholesale" 8964 4900 = "Models, demonstrators, and" 8965 4920 = "Real estate brokers and sales" 8966 4930 = "Sales engineers (41-9031)" 8967 4940 = "Telemarketers (41-9041)" 8968 4950 = "Door-to-door sales workers, news" 8969 4960 = "Sales and related workers, all" 8970 5000 = "First-line supervisors/managers" 8971 5010 = "Switchboard operators, including" 8972 5020 = "Telephone operators (43-2021)" 8973 5030 = "Communications equipment" 8974 5100 = "Bill and account collectors" 8975 5110 = "Billing and posting clerks and" 8976 5120 = "Bookkeeping, accounting, and" 8977 5130 = "Gaming cage workers (43-3041)" 8978 5140 = "Payroll and timekeeping clerks" 8979 5150 = "Procurement clerks (43-3061)" 8980 5160 = "Tellers (43-3071)" 8981 5200 = "Brokerage clerks (43-4011)" 8982 5210 = "Correspondence clerks (43-4021)" 8983 5220 = "Court, municipal, and license" 8984 5230 = "Credit authorizers, checkers, and" 8985 5240 = "Customer service representatives" 8986 5250 = "Eligibility interviewers," 8987 5260 = "File Clerks (43-4071)" 8988 5300 = "Hotel, motel, and resort desk" 8989 5310 = "Interviewers, except eligibility" 8990 5320 = "Library assistants, clerical" 8991 5330 = "Loan interviewers and clerks" 8992 5340 = "New accounts clerks (43-4141)" 8993 5350 = "Order clerks (43-4151)" 8994 5360 = "Human resources assistants," 8995 5400 = "Receptionists and information" 8996 5410 = "Reservation and transportation" 8997 5420 = "Information and record clerks," 8998 5500 = "Cargo and freight agents (43-5011)" 8999 5510 = "Couriers and messengers (43-5021)" 9000 5520 = "Dispatchers (43-5030)" 9001 5530 = "Meter readers, utilities (43-5041)" 9002 5540 = "Postal service clerks (43-5051)" 9003 5550 = "Postal service mail carriers" 9004 5560 = "Postal service mail sorters," 175 The SAS System 15:07 Thursday, June 21, 2012 9005 5600 = "Production, planning, and" 9006 5610 = "Shipping, receiving, and traffic" 9007 5620 = "Stock clerks and order fillers" 9008 5630 = "Weighers, measurers, checkers," 9009 5700 = "Secretaries and administrative" 9010 5800 = "Computer operators (43-9011)" 9011 5810 = "Data entry keyers (43-9021)" 9012 5820 = "Word processors and typists" 9013 5830 = "Desktop publishers (43-9031)" 9014 5840 = "Insurance claims and policy" 9015 5850 = "Mail clerks and mail machine" 9016 5860 = "Office clerks, general (43-9061)" 9017 5900 = "Office machine operators, except" 9018 5910 = "Proofreaders and copy markers" 9019 5920 = "Statistical assistants (43-9111)" 9020 5930 = "Office and administrative support" 9021 6000 = "First-line supervisors/managers" 9022 6010 = "Agricultural inspectors (45-2011)" 9023 6020 = "Animal breeders (45-2021)" 9024 6040 = "Graders and sorters, agricultural" 9025 6050 = "Miscellaneous agricultural" 9026 6100 = "Fishers and related fishing" 9027 6110 = "Hunters and trappers (45-3021)" 9028 6120 = "Forest and conservation workers" 9029 6130 = "Logging workers (45-4020)" 9030 6200 = "First-line supervisors/managers" 9031 6210 = "Boilermakers (47-2011)" 9032 6220 = "Brickmasons, blockmasons, and" 9033 6230 = "Carpenters (47-2031)" 9034 6240 = "Carpet, floor, and tile" 9035 6250 = "Cement masons, concrete" 9036 6260 = "Construction laborers (47-2061)" 9037 6300 = "Paving, surfacing, and tamping" 9038 6310 = "Pile-driver operators (47-2072)" 9039 6320 = "Operating engineers and other" 9040 6330 = "Drywall installers, ceiling tile" 9041 6350 = "Electricians (47-2111)" 9042 6360 = "Glaziers (47-2121)" 9043 6400 = "Insulation workers (47-2130)" 9044 6420 = "Painters, construction and" 9045 6430 = "Paperhangers (47-2142)" 9046 6440 = "Pipelayers, plumbers," 9047 6460 = "Plasterers and stucco masons" 9048 6500 = "Reinforcing iron and rebar" 9049 6510 = "Roofers (47-2181)" 9050 6520 = "Sheet metal workers (47-2211)" 9051 6530 = "Structural iron and steel workers" 9052 6600 = "Helpers, construction trades" 9053 6660 = "Construction and building" 9054 6700 = "Elevator installers and repairers" 9055 6710 = "Fence erectors (47-4031)" 9056 6720 = "Hazardous materials removal" 9057 6730 = "Highway maintenance workers" 9058 6740 = "Rail-track laying and maintenance" 9059 6750 = "Septic tank servicers and sewer" 9060 6760 = "Miscellaneous construction and" 9061 6800 = "Derrick, rotary drill, and" 9062 6820 = "Earth drillers, except oil and" 176 The SAS System 15:07 Thursday, June 21, 2012 9063 6830 = "Explosives workers, ordnance" 9064 6840 = "Mining machine operators (47-5040)" 9065 6910 = "Roof bolters, mining (47-5061)" 9066 6920 = "Roustabouts, oil and gas (47-5071)" 9067 6930 = "Helpers--extraction workers" 9068 6940 = "Other extraction workers (47-50XX)" 9069 7000 = "First-line supervisors/managers" 9070 7010 = "Computer, automated teller, and" 9071 7020 = "Radio and telecommunications" 9072 7030 = "Avionics technicians (49-2091)" 9073 7040 = "Electric motor, power tool, and" 9074 7050 = "Electrical and electronics" 9075 7100 = "Electrical and electronics" 9076 7110 = "Electronic equipment installers" 9077 7120 = "Electronic home entertainment" 9078 7130 = "Security and fire alarm systems" 9079 7140 = "Aircraft mechanics and service" 9080 7150 = "Automotive body and related" 9081 7160 = "Automotive glass installers and" 9082 7200 = "Automotive service technicians" 9083 7210 = "Bus and truck mechanics and" 9084 7220 = "Heavy vehicle and mobile" 9085 7240 = "Small engine mechanics (49-3050)" 9086 7260 = "Miscellaneous vehicle and mobile" 9087 7300 = "Control and valve installers and" 9088 7310 = "Heating, air conditioning, and" 9089 7320 = "Home appliance repairers (49-9031)" 9090 7330 = "Industrial and refractory" 9091 7340 = "Maintenance and repair workers," 9092 7350 = "Maintenance workers, machinery" 9093 7360 = "Millwrights (49-9044)" 9094 7410 = "Electrical power-line installers" 9095 7420 = "Telecommunications line" 9096 7430 = "Precision instrument and" 9097 7510 = "Coin, vending, and amusement" 9098 7520 = "Commercial divers (49-9092)" 9099 7540 = "Locksmiths and safe repairers" 9100 7550 = "Manufactured building and mobile" 9101 7560 = "Riggers (49-9096)" 9102 7600 = "Signal and track switch repairers" 9103 7610 = "Helpers--installation," 9104 7620 = "Other installation, maintenance," 9105 7700 = "First-line supervisors/managers" 9106 7710 = "Aircraft structure, surfaces," 9107 7720 = "Electrical, electronics, and" 9108 7730 = "Engine and other machine" 9109 7740 = "Structural metal fabricators and" 9110 7750 = "Miscellaneous assemblers and" 9111 7800 = "Bakers (51-3011)" 9112 7810 = "Butchers and other meat, poultry," 9113 7830 = "Food and tobacco roasting," 9114 7840 = "Food batchmakers (51-3092)" 9115 7850 = "Food cooking machine operators" 9116 7900 = "Computer control programmers and" 9117 7920 = "Extruding and drawing machine" 9118 7930 = "Forging machine setters," 9119 7940 = "Rolling machine setters," 9120 7950 = "Cutting, punching, and press" 177 The SAS System 15:07 Thursday, June 21, 2012 9121 7960 = "Drilling and boring machine tool" 9122 8000 = "Grinding, lapping, polishing, and" 9123 8010 = "Lathe and turning machine tool" 9124 8020 = "Milling and planing machine" 9125 8030 = "Machinists (51-4041)" 9126 8040 = "Metal furnace and kiln operators" 9127 8060 = "Model makers and patternmakers," 9128 8100 = "Molders and molding machine" 9129 8120 = "Multiple machine tool setters," 9130 8130 = "Tool and die makers (51-4111)" 9131 8140 = "Welding, soldering, and brazing" 9132 8150 = "Heat treating equipment setters," 9133 8160 = "Lay-out workers, metal and" 9134 8200 = "Plating and coating machine" 9135 8210 = "Tool grinders, filers, and" 9136 8220 = "Metalworkers and plastic workers," 9137 8230 = "Bookbinders and bindery workers" 9138 8240 = "Job printers (51-5021)" 9139 8250 = "Prepress technicians and workers" 9140 8260 = "Printing machine operators" 9141 8300 = "Laundry and dry-cleaning workers" 9142 8310 = "Pressers, textile, garment, and" 9143 8320 = "Sewing machine operators (51-6031)" 9144 8330 = "Shoe and leather workers and" 9145 8340 = "Shoe machine operators and" 9146 8350 = "Tailors, dressmakers, and sewers" 9147 8360 = "Textile bleaching and dyeing" 9148 8400 = "Textile cutting machine setters," 9149 8410 = "Textile knitting and weaving" 9150 8420 = "Textile winding, twisting, and" 9151 8430 = "Extruding and forming machine" 9152 8440 = "Fabric and apparel patternmakers" 9153 8450 = "Upholsterers (51-6093)" 9154 8460 = "Textile, apparel, and furnishings" 9155 8500 = "Cabinetmakers and bench" 9156 8510 = "Furniture finishers (51-7021)" 9157 8520 = "Model makers and patternmakers," 9158 8530 = "Sawing machine setters," 9159 8540 = "Woodworking machine setters," 9160 8550 = "Woodworkers, all other (51-7099)" 9161 8600 = "Power plant operators," 9162 8610 = "Stationary engineers and boiler" 9163 8620 = "Water and liquid waste treatment" 9164 8630 = "Miscellaneous plant and system" 9165 8640 = "Chemical processing machine" 9166 8650 = "Crushing, grinding, polishing," 9167 8710 = "Cutting workers (51-9030)" 9168 8720 = "Extruding, forming, pressing, and" 9169 8730 = "Furnace, kiln, oven, drier, and" 9170 8740 = "Inspectors, testers, sorters," 9171 8750 = "Jewelers and precious stone and" 9172 8760 = "Medical, dental, and ophthalmic" 9173 8800 = "Packaging and filling machine" 9174 8810 = "Painting workers (51-9120)" 9175 8830 = "Photographic process workers and" 9176 8840 = "Semiconductor processors (51-9141)" 9177 8850 = "Cementing and gluing machine" 9178 8860 = "Cleaning, washing, and metal" 178 The SAS System 15:07 Thursday, June 21, 2012 9179 8900 = "Cooling and freezing equipment" 9180 8910 = "Etchers and engravers (51-9194)" 9181 8920 = "Molders, shapers, and casters," 9182 8930 = "Paper goods machine setters," 9183 8940 = "Tire builders (51-9197)" 9184 8950 = "Helpers--production workers" 9185 8960 = "Production workers, all other" 9186 9000 = "Supervisors, transportation and" 9187 9030 = "Aircraft pilots and flight" 9188 9040 = "Air traffic controllers and" 9189 9110 = "Ambulance drivers and attendants," 9190 9120 = "Bus drivers (53-3020)" 9191 9130 = "Driver/sales workers and truck" 9192 9140 = "Taxi drivers and chauffeurs" 9193 9150 = "Motor vehicle operators, all" 9194 9200 = "Locomotive engineers and" 9195 9230 = "Railroad brake, signal, and" 9196 9240 = "Railroad conductors and" 9197 9260 = "Subway, streetcar, and other rail" 9198 9300 = "Sailors and marine oilers" 9199 9310 = "Ship and boat captains and" 9200 9330 = "Ship engineers (53-5031)" 9201 9340 = "Bridge and lock tenders (53-6011)" 9202 9350 = "Parking lot attendants (53-6021)" 9203 9360 = "Service station attendants" 9204 9410 = "Transportation inspectors" 9205 9420 = "Other transportation workers" 9206 9500 = "Conveyor operators and tenders" 9207 9510 = "Crane and tower operators" 9208 9520 = "Dredge, excavating, and loading" 9209 9560 = "Hoist and winch operators" 9210 9600 = "Industrial truck and tractor" 9211 9610 = "Cleaners of vehicles and" 9212 9620 = "Laborers and freight, stock, and" 9213 9630 = "Machine feeders and offbearers" 9214 9640 = "Packers and packagers, hand" 9215 9650 = "Pumping station operators" 9216 9720 = "Refuse and recyclable material" 9217 9730 = "Shuttle car operators (53-7111)" 9218 9740 = "Tank car, truck, and ship loaders" 9219 9750 = "Material moving workers, all" 9220 9840 = "Persons whose current labor force" 9221 9990 = "Unable to code" 9222 ; NOTE: Format THBOCC has been output. 9223 VALUE eempljob (default=32) 9224 -1 = "Not in Universe" 9225 1 = "A Government organization" 9226 2 = "A Private, For Profit, Company" 9227 3 = "A Non-Profit Organization," 9228 4 = "A family business or farm" 9229 ; NOTE: Format EEMPLJOB has been output. 9230 VALUE aempljob (default=32) 9231 0 = "Not imputed" 9232 1 = "Statistical imputation (hot deck)" 9233 2 = "Cold deck imputation" 9234 3 = "Logical imputation (derivation)" 179 The SAS System 15:07 Thursday, June 21, 2012 9235 ; NOTE: Format AEMPLJOB has been output. 9236 VALUE egovrnmt (default=32) 9237 -1 = "Not in Universe" 9238 1 = "Federal (civilian only)" 9239 2 = "State" 9240 3 = "Local (county, city, township)" 9241 4 = "Armed Forces (active duty only)" 9242 ; NOTE: Format EGOVRNMT has been output. 9243 VALUE agovrnmt (default=32) 9244 0 = "Not imputed" 9245 1 = "Statistical imputation (hot deck)" 9246 2 = "Cold deck imputation" 9247 3 = "Logical imputation (derivation)" 9248 ; NOTE: Format AGOVRNMT has been output. 9249 VALUE eemptype (default=32) 9250 -1 = "Not in Universe" 9251 1 = "Manufacturing" 9252 2 = "Wholesale trade" 9253 3 = "Retail trade" 9254 4 = "Service" 9255 5 = "Something else" 9256 ; NOTE: Format EEMPTYPE has been output. 9257 VALUE aemptype (default=32) 9258 0 = "Not imputed" 9259 1 = "Statistical imputation (hot deck)" 9260 2 = "Cold deck imputation" 9261 3 = "Logical imputation (derivation)" 9262 ; NOTE: Format AEMPTYPE has been output. 9263 VALUE tendsala (default=32) 9264 0 = "None or not in universe" 9265 ; NOTE: Format TENDSALA has been output. 9266 VALUE aendsala (default=32) 9267 0 = "Not imputed" 9268 1 = "Statistical imputation (hot deck)" 9269 2 = "Cold deck imputation" 9270 3 = "Logical imputation (derivation)" 9271 ; NOTE: Format AENDSALA has been output. 9272 VALUE temploca (default=32) 9273 -1 = "Not in Universe" 9274 1 = "Less than 25 employees" 9275 2 = "25 - 99 employees" 9276 3 = "100+ employees" 9277 ; NOTE: Format TEMPLOCA has been output. 9278 VALUE aemploca (default=32) 9279 0 = "Not imputed" 9280 1 = "Statistical imputation (hot deck)" 9281 2 = "Cold deck imputation" 9282 3 = "Logical imputation (derivation)" 9283 ; NOTE: Format AEMPLOCA has been output. 180 The SAS System 15:07 Thursday, June 21, 2012 9284 VALUE efewer2a (default=32) 9285 -1 = "Not in Universe" 9286 1 = "Yes" 9287 2 = "No" 9288 ; NOTE: Format EFEWER2A has been output. 9289 VALUE afewer2a (default=32) 9290 0 = "Not imputed" 9291 1 = "Statistical imputation (hot deck)" 9292 2 = "Cold deck imputation" 9293 3 = "Logical imputation (derivation)" 9294 ; NOTE: Format AFEWER2A has been output. 9295 VALUE eexmedic (default=32) 9296 -1 = "Not in Universe" 9297 1 = "Yes" 9298 2 = "No" 9299 ; NOTE: Format EEXMEDIC has been output. 9300 VALUE aexmedic (default=32) 9301 0 = "Not imputed" 9302 1 = "Statistical imputation (hot deck)" 9303 2 = "Cold deck imputation" 9304 3 = "Logical imputation (derivation)" 9305 ; NOTE: Format AEXMEDIC has been output. 9306 VALUE epostmed (default=32) 9307 -1 = "Not in Universe" 9308 1 = "Yes" 9309 2 = "No" 9310 ; NOTE: Format EPOSTMED has been output. 9311 VALUE apostmed (default=32) 9312 0 = "Not imputed" 9313 1 = "Statistical imputation (hot deck)" 9314 2 = "Cold deck imputation" 9315 3 = "Logical imputation (derivation)" 9316 ; NOTE: Format APOSTMED has been output. 9317 VALUE eawbunv (default=32) 9318 -1 = "Not in Universe" 9319 1 = "In universe" 9320 ; NOTE: Format EAWBUNV has been output. 9321 VALUE radwash (default=32) 9322 -1 = "Not in Universe" 9323 1 = "Yes" 9324 2 = "Not in home, but one is provided" 9325 3 = "No, no washing machine" 9326 ; NOTE: Format RADWASH has been output. 9327 VALUE aadwash (default=32) 9328 0 = "Not imputed" 9329 1 = "Statistical imputation (hot deck)" 9330 2 = "Cold deck imputation" 9331 3 = "Logical imputation (derivation)" 9332 ; NOTE: Format AADWASH has been output. 181 The SAS System 15:07 Thursday, June 21, 2012 9333 VALUE raddryr (default=32) 9334 -1 = "Not in Universe" 9335 1 = "Yes" 9336 2 = "Not in home, but one is provided" 9337 3 = "No, no clothes dryer" 9338 ; NOTE: Format RADDRYR has been output. 9339 VALUE aaddryr (default=32) 9340 0 = "Not imputed" 9341 1 = "Statistical imputation (hot deck)" 9342 2 = "Cold deck imputation" 9343 3 = "Logical imputation (derivation)" 9344 ; NOTE: Format AADDRYR has been output. 9345 VALUE eaddish (default=32) 9346 -1 = "Not in Universe" 9347 1 = "Yes" 9348 2 = "No, no dishwasher" 9349 ; NOTE: Format EADDISH has been output. 9350 VALUE aaddish (default=32) 9351 0 = "Not imputed" 9352 1 = "Statistical imputation (hot deck)" 9353 2 = "Cold deck imputation" 9354 3 = "Logical imputation (derivation)" 9355 ; NOTE: Format AADDISH has been output. 9356 VALUE eadrefr (default=32) 9357 -1 = "Not in Universe" 9358 1 = "Yes" 9359 2 = "No, no refrigerator" 9360 ; NOTE: Format EADREFR has been output. 9361 VALUE aadrefr (default=32) 9362 0 = "Not imputed" 9363 1 = "Statistical imputation (hot deck)" 9364 2 = "Cold deck imputation" 9365 3 = "Logical imputation (derivation)" 9366 ; NOTE: Format AADREFR has been output. 9367 VALUE eadfrz (default=32) 9368 -1 = "Not in Universe" 9369 1 = "Yes" 9370 2 = "No, no food freezer" 9371 ; NOTE: Format EADFRZ has been output. 9372 VALUE aadfrz (default=32) 9373 0 = "Not imputed" 9374 1 = "Statistical imputation (hot deck)" 9375 2 = "Cold deck imputation" 9376 3 = "Logical imputation (derivation)" 9377 ; NOTE: Format AADFRZ has been output. 9378 VALUE eadtelv (default=32) 9379 -1 = "Not in Universe" 9380 1 = "Yes" 9381 2 = "No color television" 9382 ; 182 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format EADTELV has been output. 9383 VALUE aadtelv (default=32) 9384 0 = "Not imputed" 9385 1 = "Statistical imputation (hot deck)" 9386 2 = "Cold deck imputation" 9387 3 = "Logical imputation (derivation)" 9388 ; NOTE: Format AADTELV has been output. 9389 VALUE eadstov (default=32) 9390 -1 = "Not in Universe" 9391 1 = "Yes" 9392 2 = "No, no stove" 9393 ; NOTE: Format EADSTOV has been output. 9394 VALUE aadstov (default=32) 9395 0 = "Not imputed" 9396 1 = "Statistical imputation (hot deck)" 9397 2 = "Cold deck imputation" 9398 3 = "Logical imputation (derivation)" 9399 ; NOTE: Format AADSTOV has been output. 9400 VALUE eadmicr (default=32) 9401 -1 = "Not in Universe" 9402 1 = "Yes" 9403 2 = "No, no microwave" 9404 ; NOTE: Format EADMICR has been output. 9405 VALUE aadmicr (default=32) 9406 0 = "Not imputed" 9407 1 = "Statistical imputation (hot deck)" 9408 2 = "Cold deck imputation" 9409 3 = "Logical imputation (derivation)" 9410 ; NOTE: Format AADMICR has been output. 9411 VALUE eadvcr (default=32) 9412 -1 = "Not in Universe" 9413 1 = "Yes" 9414 2 = "No, no VCR or DVD (or other video" 9415 ; NOTE: Format EADVCR has been output. 9416 VALUE aadvcr (default=32) 9417 0 = "Not imputed" 9418 1 = "Statistical imputation (hot deck)" 9419 2 = "Cold deck imputation" 9420 3 = "Logical imputation (derivation)" 9421 ; NOTE: Format AADVCR has been output. 9422 VALUE eadair (default=32) 9423 -1 = "Not in Universe" 9424 1 = "Yes" 9425 2 = "No, no air conditioning" 9426 ; NOTE: Format EADAIR has been output. 9427 VALUE aadair (default=32) 9428 0 = "Not imputed" 9429 1 = "Statistical imputation (hot deck)" 9430 2 = "Cold deck imputation" 9431 3 = "Logical imputation (derivation)" 183 The SAS System 15:07 Thursday, June 21, 2012 9432 ; NOTE: Format AADAIR has been output. 9433 VALUE eadcomp (default=32) 9434 -1 = "Not in Universe" 9435 1 = "Yes" 9436 2 = "No, no personal computer" 9437 ; NOTE: Format EADCOMP has been output. 9438 VALUE aadcomp (default=32) 9439 0 = "Not imputed" 9440 1 = "Statistical imputation (hot deck)" 9441 2 = "Cold deck imputation" 9442 3 = "Logical imputation (derivation)" 9443 ; NOTE: Format AADCOMP has been output. 9444 VALUE eadcell (default=32) 9445 -1 = "Not in Universe" 9446 1 = "Yes" 9447 2 = "No, no cell phone or mobile phone" 9448 ; NOTE: Format EADCELL has been output. 9449 VALUE aadcell (default=32) 9450 0 = "Not imputed" 9451 1 = "Statistical imputation (hot deck)" 9452 2 = "Cold deck imputation" 9453 3 = "Logical imputation (derivation)" 9454 ; NOTE: Format AADCELL has been output. 9455 VALUE radphon (default=32) 9456 -1 = "Not in Universe" 9457 1 = "Yes, phone in home" 9458 2 = "No phone in home, but can be" 9459 3 = "No phone in home, but can be" 9460 4 = "No phone in home, but can be" 9461 5 = "No, cannot be reached by telephone" 9462 ; NOTE: Format RADPHON has been output. 9463 VALUE aadphon (default=32) 9464 0 = "Not imputed" 9465 1 = "Statistical imputation (hot deck)" 9466 2 = "Cold deck imputation" 9467 3 = "Logical imputation (derivation)" 9468 ; NOTE: Format AADPHON has been output. 9469 VALUE tahroom (default=32) 9470 -1 = "Not in Universe" 9471 ; NOTE: Format TAHROOM has been output. 9472 VALUE aahroom (default=32) 9473 0 = "Not imputed" 9474 1 = "Statistical imputation (hot deck)" 9475 2 = "Cold deck imputation" 9476 3 = "Logical imputation (derivation)" 9477 ; NOTE: Format AAHROOM has been output. 9478 VALUE eahpest (default=32) 9479 -1 = "Not in Universe" 9480 1 = "Yes" 184 The SAS System 15:07 Thursday, June 21, 2012 9481 2 = "No" 9482 ; NOTE: Format EAHPEST has been output. 9483 VALUE eahleak (default=32) 9484 -1 = "Not in Universe" 9485 1 = "Yes" 9486 2 = "No" 9487 ; NOTE: Format EAHLEAK has been output. 9488 VALUE eahwind (default=32) 9489 -1 = "Not in Universe" 9490 1 = "Yes" 9491 2 = "No" 9492 ; NOTE: Format EAHWIND has been output. 9493 VALUE eahwire (default=32) 9494 -1 = "Not in Universe" 9495 1 = "Yes" 9496 2 = "No" 9497 ; NOTE: Format EAHWIRE has been output. 9498 VALUE eahplum (default=32) 9499 -1 = "Not in Universe" 9500 1 = "Yes" 9501 2 = "No" 9502 ; NOTE: Format EAHPLUM has been output. 9503 VALUE eahcrac (default=32) 9504 -1 = "Not in Universe" 9505 1 = "Yes" 9506 2 = "No" 9507 ; NOTE: Format EAHCRAC has been output. 9508 VALUE eahhole (default=32) 9509 -1 = "Not in Universe" 9510 1 = "Yes" 9511 2 = "No" 9512 ; NOTE: Format EAHHOLE has been output. 9513 VALUE aahouse (default=32) 9514 0 = "Not imputed" 9515 1 = "Statistical imputation (hot deck)" 9516 2 = "Cold deck imputation" 9517 3 = "Logical imputation (derivation)" 9518 ; NOTE: Format AAHOUSE has been output. 9519 VALUE eahrepr (default=32) 9520 -1 = "Not in Universe" 9521 1 = "Very satisfied" 9522 2 = "Somewhat satisfied" 9523 3 = "Somewhat dissatisfied" 9524 4 = "Very dissatisfied" 9525 5 = "Haven't lived here long enough to" 9526 ; NOTE: Format EAHREPR has been output. 9527 VALUE aahrepr (default=32) 9528 0 = "Not imputed" 9529 1 = "Statistical imputation (hot deck)" 185 The SAS System 15:07 Thursday, June 21, 2012 9530 2 = "Cold deck imputation" 9531 3 = "Logical imputation (derivation)" 9532 ; NOTE: Format AAHREPR has been output. 9533 VALUE eahspac (default=32) 9534 -1 = "Not in Universe" 9535 1 = "Very satisfied" 9536 2 = "Somewhat satisfied" 9537 3 = "Somewhat dissatisfied" 9538 4 = "Very dissatisfied" 9539 5 = "Haven't lived here long enough to" 9540 ; NOTE: Format EAHSPAC has been output. 9541 VALUE aahspac (default=32) 9542 0 = "Not imputed" 9543 1 = "Statistical imputation (hot deck)" 9544 2 = "Cold deck imputation" 9545 3 = "Logical imputation (derivation)" 9546 ; NOTE: Format AAHSPAC has been output. 9547 VALUE eahfurn (default=32) 9548 -1 = "Not in Universe" 9549 1 = "Very satisfied" 9550 2 = "Somewhat satisfied" 9551 3 = "Somewhat dissatisfied" 9552 4 = "Very dissatisfied" 9553 5 = "Haven't lived here long enough to" 9554 ; NOTE: Format EAHFURN has been output. 9555 VALUE aahfurn (default=32) 9556 0 = "Not imputed" 9557 1 = "Statistical imputation (hot deck)" 9558 2 = "Cold deck imputation" 9559 3 = "Logical imputation (derivation)" 9560 ; NOTE: Format AAHFURN has been output. 9561 VALUE eahwarm (default=32) 9562 -1 = "Not in Universe" 9563 1 = "Very satisfied" 9564 2 = "Somewhat satisfied" 9565 3 = "Somewhat dissatisfied" 9566 4 = "Very dissatisfied" 9567 5 = "Haven't lived here long enough to" 9568 ; NOTE: Format EAHWARM has been output. 9569 VALUE aahwarm (default=32) 9570 0 = "Not imputed" 9571 1 = "Statistical imputation (hot deck)" 9572 2 = "Cold deck imputation" 9573 3 = "Logical imputation (derivation)" 9574 ; NOTE: Format AAHWARM has been output. 9575 VALUE eahcool (default=32) 9576 -1 = "Not in Universe" 9577 1 = "Very satisfied" 9578 2 = "Somewhat satisfied" 9579 3 = "Somewhat dissatisfied" 9580 4 = "Very dissatisfied" 186 The SAS System 15:07 Thursday, June 21, 2012 9581 5 = "Haven't lived here long enough to" 9582 ; NOTE: Format EAHCOOL has been output. 9583 VALUE aahcool (default=32) 9584 0 = "Not imputed" 9585 1 = "Statistical imputation (hot deck)" 9586 2 = "Cold deck imputation" 9587 3 = "Logical imputation (derivation)" 9588 ; NOTE: Format AAHCOOL has been output. 9589 VALUE eahpriv (default=32) 9590 -1 = "Not in Universe" 9591 1 = "Very satisfied" 9592 2 = "Somewhat satisfied" 9593 3 = "Somewhat dissatisfied" 9594 4 = "Very dissatisfied" 9595 5 = "Haven't lived here long enough to" 9596 ; NOTE: Format EAHPRIV has been output. 9597 VALUE aahpriv (default=32) 9598 0 = "Not imputed" 9599 1 = "Statistical imputation (hot deck)" 9600 2 = "Cold deck imputation" 9601 3 = "Logical imputation (derivation)" 9602 ; NOTE: Format AAHPRIV has been output. 9603 VALUE eahsat (default=32) 9604 -1 = "Not in Universe" 9605 1 = "Very satisfied" 9606 2 = "Somewhat satisfied" 9607 3 = "Somewhat dissatisfied" 9608 4 = "Very dissatisfied" 9609 ; NOTE: Format EAHSAT has been output. 9610 VALUE aahsat (default=32) 9611 0 = "Not imputed" 9612 1 = "Statistical imputation (hot deck)" 9613 2 = "Cold deck imputation" 9614 3 = "Logical imputation (derivation)" 9615 ; NOTE: Format AAHSAT has been output. 9616 VALUE rahmove (default=32) 9617 -1 = "Not in Universe" 9618 1 = "Yes" 9619 2 = "No" 9620 ; NOTE: Format RAHMOVE has been output. 9621 VALUE aahmove (default=32) 9622 0 = "Not imputed" 9623 1 = "Statistical imputation (hot deck)" 9624 2 = "Cold deck imputation" 9625 3 = "Logical imputation (derivation)" 9626 ; NOTE: Format AAHMOVE has been output. 9627 VALUE eacwalk (default=32) 9628 -1 = "Not in Universe" 9629 1 = "Yes" 9630 2 = "No" 187 The SAS System 15:07 Thursday, June 21, 2012 9631 ; NOTE: Format EACWALK has been output. 9632 VALUE aacwalk (default=32) 9633 0 = "Not imputed" 9634 1 = "Statistical imputation (hot deck)" 9635 2 = "Cold deck imputation" 9636 3 = "Logical imputation (derivation)" 9637 ; NOTE: Format AACWALK has been output. 9638 VALUE eacstay (default=32) 9639 -1 = "Not in Universe" 9640 1 = "Stayed in our home at certain" 9641 2 = "Did not stay in home." 9642 ; NOTE: Format EACSTAY has been output. 9643 VALUE aacstay (default=32) 9644 0 = "Not imputed" 9645 1 = "Statistical imputation (hot deck)" 9646 2 = "Cold deck imputation" 9647 3 = "Logical imputation (derivation)" 9648 ; NOTE: Format AACSTAY has been output. 9649 VALUE eacwith (default=32) 9650 -1 = "Not in Universe" 9651 1 = "Has taken someone with." 9652 2 = "Did not take someone with." 9653 ; NOTE: Format EACWITH has been output. 9654 VALUE aacwith (default=32) 9655 0 = "Not imputed" 9656 1 = "Statistical imputation (hot deck)" 9657 2 = "Cold deck imputation" 9658 3 = "Logical imputation (derivation)" 9659 ; NOTE: Format AACWITH has been output. 9660 VALUE eacarry (default=32) 9661 -1 = "Not in Universe" 9662 1 = "Carried anything to protect self." 9663 2 = "Did not carry anything." 9664 ; NOTE: Format EACARRY has been output. 9665 VALUE aacarry (default=32) 9666 0 = "Not imputed" 9667 1 = "Statistical imputation (hot deck)" 9668 2 = "Cold deck imputation" 9669 3 = "Logical imputation (derivation)" 9670 ; NOTE: Format AACARRY has been output. 9671 VALUE eacnsaf (default=32) 9672 -1 = "Not in Universe" 9673 1 = "Very safe" 9674 2 = "Somewhat safe" 9675 3 = "Somewhat unsafe" 9676 4 = "Very unsafe" 9677 ; NOTE: Format EACNSAF has been output. 9678 VALUE aacnsaf (default=32) 9679 0 = "Not imputed" 188 The SAS System 15:07 Thursday, June 21, 2012 9680 1 = "Statistical imputation (hot deck)" 9681 2 = "Cold deck imputation" 9682 3 = "Logical imputation (derivation)" 9683 ; NOTE: Format AACNSAF has been output. 9684 VALUE eachsaf (default=32) 9685 -1 = "Not in Universe" 9686 1 = "Very safe" 9687 2 = "Somewhat safe" 9688 3 = "Somewhat unsafe" 9689 4 = "Very unsafe" 9690 ; NOTE: Format EACHSAF has been output. 9691 VALUE aachsaf (default=32) 9692 0 = "Not imputed" 9693 1 = "Statistical imputation (hot deck)" 9694 2 = "Cold deck imputation" 9695 3 = "Logical imputation (derivation)" 9696 ; NOTE: Format AACHSAF has been output. 9697 VALUE racwdog (default=32) 9698 -1 = "Not in Universe" 9699 1 = "Has dog to keep home safe from" 9700 2 = "Has dog, not to keep home safe" 9701 3 = "Does not have dog" 9702 ; NOTE: Format RACWDOG has been output. 9703 VALUE aacwdog (default=32) 9704 0 = "Not imputed" 9705 1 = "Statistical imputation (hot deck)" 9706 2 = "Cold deck imputation" 9707 3 = "Logical imputation (derivation)" 9708 ; NOTE: Format AACWDOG has been output. 9709 VALUE eacalrm (default=32) 9710 -1 = "Not in Universe" 9711 1 = "Yes" 9712 2 = "No" 9713 ; NOTE: Format EACALRM has been output. 9714 VALUE aacalrm (default=32) 9715 0 = "Not imputed" 9716 1 = "Statistical imputation (hot deck)" 9717 2 = "Cold deck imputation" 9718 3 = "Logical imputation (derivation)" 9719 ; NOTE: Format AACALRM has been output. 9720 VALUE racmove (default=32) 9721 -1 = "Not in Universe" 9722 1 = "Yes" 9723 2 = "No" 9724 ; NOTE: Format RACMOVE has been output. 9725 VALUE aacmove (default=32) 9726 0 = "Not imputed" 9727 1 = "Statistical imputation (hot deck)" 9728 2 = "Cold deck imputation" 9729 3 = "Logical imputation (derivation)" 189 The SAS System 15:07 Thursday, June 21, 2012 9730 ; NOTE: Format AACMOVE has been output. 9731 VALUE eantraf (default=32) 9732 -1 = "Not in Universe" 9733 1 = "Yes" 9734 2 = "No" 9735 ; NOTE: Format EANTRAF has been output. 9736 VALUE eanstrt (default=32) 9737 -1 = "Not in Universe" 9738 1 = "Yes" 9739 2 = "No" 9740 ; NOTE: Format EANSTRT has been output. 9741 VALUE eantrsh (default=32) 9742 -1 = "Not in Universe" 9743 1 = "Yes" 9744 2 = "No" 9745 ; NOTE: Format EANTRSH has been output. 9746 VALUE eanaban (default=32) 9747 -1 = "Not in Universe" 9748 1 = "Yes" 9749 2 = "No" 9750 ; NOTE: Format EANABAN has been output. 9751 VALUE eanind (default=32) 9752 -1 = "Not in Universe" 9753 1 = "Yes" 9754 2 = "No" 9755 ; NOTE: Format EANIND has been output. 9756 VALUE eanodor (default=32) 9757 -1 = "Not in Universe" 9758 1 = "Yes" 9759 2 = "No" 9760 ; NOTE: Format EANODOR has been output. 9761 VALUE aancond (default=32) 9762 0 = "Not imputed" 9763 1 = "Statistical imputation (hot deck)" 9764 2 = "Cold deck imputation" 9765 3 = "Logical imputation (derivation)" 9766 ; NOTE: Format AANCOND has been output. 9767 VALUE eanghbr (default=32) 9768 -1 = "Not in Universe" 9769 1 = "Very satisfied" 9770 2 = "Somewhat satisfied" 9771 3 = "Somewhat dissatisfied" 9772 4 = "Very dissatisfied" 9773 ; NOTE: Format EANGHBR has been output. 9774 VALUE aanghbr (default=32) 9775 0 = "Not imputed" 9776 1 = "Statistical imputation (hot deck)" 9777 2 = "Cold deck imputation" 9778 3 = "Logical imputation (derivation)" 190 The SAS System 15:07 Thursday, June 21, 2012 9779 ; NOTE: Format AANGHBR has been output. 9780 VALUE eansat (default=32) 9781 -1 = "Not in Universe" 9782 1 = "Very satisfied" 9783 2 = "Somewhat satisfied" 9784 3 = "Somewhat dissatisfied" 9785 4 = "Very dissatisfied" 9786 ; NOTE: Format EANSAT has been output. 9787 VALUE aansat (default=32) 9788 0 = "Not imputed" 9789 1 = "Statistical imputation (hot deck)" 9790 2 = "Cold deck imputation" 9791 3 = "Logical imputation (derivation)" 9792 ; NOTE: Format AANSAT has been output. 9793 VALUE ranmove (default=32) 9794 -1 = "Not in Universe" 9795 1 = "Yes" 9796 2 = "No" 9797 ; NOTE: Format RANMOVE has been output. 9798 VALUE aanmove (default=32) 9799 0 = "Not imputed" 9800 1 = "Statistical imputation (hot deck)" 9801 2 = "Cold deck imputation" 9802 3 = "Logical imputation (derivation)" 9803 ; NOTE: Format AANMOVE has been output. 9804 VALUE eapschl (default=32) 9805 -1 = "Not in Universe" 9806 1 = "Very satisfied" 9807 2 = "Somewhat satisfied" 9808 3 = "Somewhat dissatisfied" 9809 4 = "Very dissatisfied" 9810 ; NOTE: Format EAPSCHL has been output. 9811 VALUE aapschl (default=32) 9812 0 = "Not imputed" 9813 1 = "Statistical imputation (hot deck)" 9814 2 = "Cold deck imputation" 9815 3 = "Logical imputation (derivation)" 9816 ; NOTE: Format AAPSCHL has been output. 9817 VALUE eappriv (default=32) 9818 -1 = "Not in Universe" 9819 1 = "Yes" 9820 2 = "No" 9821 ; NOTE: Format EAPPRIV has been output. 9822 VALUE aappriv (default=32) 9823 0 = "Not imputed" 9824 1 = "Statistical imputation (hot deck)" 9825 2 = "Cold deck imputation" 9826 3 = "Logical imputation (derivation)" 9827 ; NOTE: Format AAPPRIV has been output. 191 The SAS System 15:07 Thursday, June 21, 2012 9828 VALUE eapmagn (default=32) 9829 -1 = "Not in Universe" 9830 1 = "Yes" 9831 2 = "No" 9832 ; NOTE: Format EAPMAGN has been output. 9833 VALUE aapmagn (default=32) 9834 0 = "Not imputed" 9835 1 = "Statistical imputation (hot deck)" 9836 2 = "Cold deck imputation" 9837 3 = "Logical imputation (derivation)" 9838 ; NOTE: Format AAPMAGN has been output. 9839 VALUE eappubs (default=32) 9840 -1 = "Not in Universe" 9841 1 = "Yes" 9842 2 = "No" 9843 ; NOTE: Format EAPPUBS has been output. 9844 VALUE aappubs (default=32) 9845 0 = "Not imputed" 9846 1 = "Statistical imputation (hot deck)" 9847 2 = "Cold deck imputation" 9848 3 = "Logical imputation (derivation)" 9849 ; NOTE: Format AAPPUBS has been output. 9850 VALUE eaphoms (default=32) 9851 -1 = "Not in Universe" 9852 1 = "Yes" 9853 2 = "No" 9854 ; NOTE: Format EAPHOMS has been output. 9855 VALUE aaphoms (default=32) 9856 0 = "Not imputed" 9857 1 = "Statistical imputation (hot deck)" 9858 2 = "Cold deck imputation" 9859 3 = "Logical imputation (derivation)" 9860 ; NOTE: Format AAPHOMS has been output. 9861 VALUE eapnosc (default=32) 9862 -1 = "Not in Universe" 9863 1 = "Yes" 9864 2 = "No" 9865 ; NOTE: Format EAPNOSC has been output. 9866 VALUE aapnosc (default=32) 9867 0 = "Not imputed" 9868 1 = "Statistical imputation (hot deck)" 9869 2 = "Cold deck imputation" 9870 3 = "Logical imputation (derivation)" 9871 ; NOTE: Format AAPNOSC has been output. 9872 VALUE eapdiff (default=32) 9873 -1 = "Not in Universe" 9874 1 = "Yes" 9875 2 = "No" 9876 ; NOTE: Format EAPDIFF has been output. 192 The SAS System 15:07 Thursday, June 21, 2012 9877 VALUE aapdiff (default=32) 9878 0 = "Not imputed" 9879 1 = "Statistical imputation (hot deck)" 9880 2 = "Cold deck imputation" 9881 3 = "Logical imputation (derivation)" 9882 ; NOTE: Format AAPDIFF has been output. 9883 VALUE eaphosp (default=32) 9884 -1 = "Not in Universe" 9885 1 = "Very satisfied" 9886 2 = "Somewhat satisfied" 9887 3 = "Somewhat dissatisfied" 9888 4 = "Very dissatisfied" 9889 5 = "Haven't lived here long enough to" 9890 ; NOTE: Format EAPHOSP has been output. 9891 VALUE aaphosp (default=32) 9892 0 = "Not imputed" 9893 1 = "Statistical imputation (hot deck)" 9894 2 = "Cold deck imputation" 9895 3 = "Logical imputation (derivation)" 9896 ; NOTE: Format AAPHOSP has been output. 9897 VALUE eapolic (default=32) 9898 -1 = "Not in Universe" 9899 1 = "Very satisfied" 9900 2 = "Somewhat satisfied" 9901 3 = "Somewhat dissatisfied" 9902 4 = "Very dissatisfied" 9903 5 = "Haven't lived here long enough to" 9904 ; NOTE: Format EAPOLIC has been output. 9905 VALUE aapolic (default=32) 9906 0 = "Not imputed" 9907 1 = "Statistical imputation (hot deck)" 9908 2 = "Cold deck imputation" 9909 3 = "Logical imputation (derivation)" 9910 ; NOTE: Format AAPOLIC has been output. 9911 VALUE eapfire (default=32) 9912 -1 = "Not in Universe" 9913 1 = "Very satisfied" 9914 2 = "Somewhat satisfied" 9915 3 = "Somewhat dissatisfied" 9916 4 = "Very dissatisfied" 9917 5 = "Haven't lived here long enough to" 9918 ; NOTE: Format EAPFIRE has been output. 9919 VALUE aapfire (default=32) 9920 0 = "Not imputed" 9921 1 = "Statistical imputation (hot deck)" 9922 2 = "Cold deck imputation" 9923 3 = "Logical imputation (derivation)" 9924 ; NOTE: Format AAPFIRE has been output. 9925 VALUE eaptran (default=32) 9926 -1 = "Not in Universe" 9927 1 = "Yes" 193 The SAS System 15:07 Thursday, June 21, 2012 9928 2 = "No" 9929 3 = "Not sure because you do not use" 9930 ; NOTE: Format EAPTRAN has been output. 9931 VALUE aaptran (default=32) 9932 0 = "Not imputed" 9933 1 = "Statistical imputation (hot deck)" 9934 2 = "Cold deck imputation" 9935 3 = "Logical imputation (derivation)" 9936 ; NOTE: Format AAPTRAN has been output. 9937 VALUE eapsat (default=32) 9938 -1 = "Not in Universe" 9939 1 = "Very satisfied" 9940 2 = "Somewhat satisfied" 9941 3 = "Somewhat dissatisfied" 9942 4 = "Very dissatisfied" 9943 ; NOTE: Format EAPSAT has been output. 9944 VALUE aapsat (default=32) 9945 0 = "Not imputed" 9946 1 = "Statistical imputation (hot deck)" 9947 2 = "Cold deck imputation" 9948 3 = "Logical imputation (derivation)" 9949 ; NOTE: Format AAPSAT has been output. 9950 VALUE rapmove (default=32) 9951 -1 = "Not in Universe" 9952 1 = "Yes" 9953 2 = "No" 9954 ; NOTE: Format RAPMOVE has been output. 9955 VALUE aapmove (default=32) 9956 0 = "Not imputed" 9957 1 = "Statistical imputation (hot deck)" 9958 2 = "Cold deck imputation" 9959 3 = "Logical imputation (derivation)" 9960 ; NOTE: Format AAPMOVE has been output. 9961 VALUE eabmeet (default=32) 9962 -1 = "Not in Universe" 9963 1 = "Yes" 9964 2 = "No" 9965 ; NOTE: Format EABMEET has been output. 9966 VALUE aabmeet (default=32) 9967 0 = "Not imputed" 9968 1 = "Statistical imputation (hot deck)" 9969 2 = "Cold deck imputation" 9970 3 = "Logical imputation (derivation)" 9971 ; NOTE: Format AABMEET has been output. 9972 VALUE eabrent (default=32) 9973 -1 = "Not in Universe" 9974 1 = "Yes" 9975 2 = "No" 9976 ; NOTE: Format EABRENT has been output. 194 The SAS System 15:07 Thursday, June 21, 2012 9977 VALUE aabrent (default=32) 9978 0 = "Not imputed" 9979 1 = "Statistical imputation (hot deck)" 9980 2 = "Cold deck imputation" 9981 3 = "Logical imputation (derivation)" 9982 ; NOTE: Format AABRENT has been output. 9983 VALUE rabrhlpt (default=32) 9984 -1 = "Not in Universe" 9985 1 = "Help received from this source" 9986 2 = "Help not received from this source" 9987 3 = "No help received from any source" 9988 ; NOTE: Format RABRHLPT has been output. 9989 VALUE rabrhlpk (default=32) 9990 -1 = "Not in Universe" 9991 1 = "Help received from this source" 9992 2 = "Help not received from this source" 9993 3 = "No help received from any source" 9994 ; NOTE: Format RABRHLPK has been output. 9995 VALUE rabrhlpl (default=32) 9996 -1 = "Not in Universe" 9997 1 = "Help received from this source" 9998 2 = "Help not received from this source" 9999 3 = "No help received from any source" 10000 ; NOTE: Format RABRHLPL has been output. 10001 VALUE rabrhlpm (default=32) 10002 -1 = "Not in Universe" 10003 1 = "Help received from this source" 10004 2 = "Help not received from this source" 10005 3 = "No help received from any source" 10006 ; NOTE: Format RABRHLPM has been output. 10007 VALUE rabrhlpn (default=32) 10008 -1 = "Not in Universe" 10009 1 = "Help received from this source" 10010 2 = "Help not received from this source" 10011 3 = "No help received from any source" 10012 ; NOTE: Format RABRHLPN has been output. 10013 VALUE aabrhlp (default=32) 10014 0 = "Not imputed" 10015 1 = "Statistical imputation (hot deck)" 10016 2 = "Cold deck imputation" 10017 3 = "Logical imputation (derivation)" 10018 ; NOTE: Format AABRHLP has been output. 10019 VALUE eabevct (default=32) 10020 -1 = "Not in Universe" 10021 1 = "Yes" 10022 2 = "No" 10023 ; NOTE: Format EABEVCT has been output. 10024 VALUE aabevct (default=32) 10025 0 = "Not imputed" 10026 1 = "Statistical imputation (hot deck)" 195 The SAS System 15:07 Thursday, June 21, 2012 10027 2 = "Cold deck imputation" 10028 3 = "Logical imputation (derivation)" 10029 ; NOTE: Format AABEVCT has been output. 10030 VALUE rabehlpt (default=32) 10031 -1 = "Not in Universe" 10032 1 = "Help received from this source" 10033 2 = "Help not received from this" 10034 3 = "No help received from any source" 10035 ; NOTE: Format RABEHLPT has been output. 10036 VALUE rabehlpk (default=32) 10037 -1 = "Not in Universe" 10038 1 = "Help received from this source" 10039 2 = "Help not received from this" 10040 3 = "No help received from any source" 10041 ; NOTE: Format RABEHLPK has been output. 10042 VALUE rabehlpl (default=32) 10043 -1 = "Not in Universe" 10044 1 = "Help received from this source" 10045 2 = "Help not received from this" 10046 3 = "No help received from any source" 10047 ; NOTE: Format RABEHLPL has been output. 10048 VALUE rabehlpm (default=32) 10049 -1 = "Not in Universe" 10050 1 = "Help received from this source" 10051 2 = "Help not received from this" 10052 3 = "No help received from any source" 10053 ; NOTE: Format RABEHLPM has been output. 10054 VALUE rabehlpn (default=32) 10055 -1 = "Not in Universe" 10056 1 = "Help received from this source" 10057 2 = "Help not received from this" 10058 3 = "No help received from any source" 10059 ; NOTE: Format RABEHLPN has been output. 10060 VALUE aabehlp (default=32) 10061 0 = "Not imputed" 10062 1 = "Statistical imputation (hot deck)" 10063 2 = "Cold deck imputation" 10064 3 = "Logical imputation (derivation)" 10065 ; NOTE: Format AABEHLP has been output. 10066 VALUE eabgas (default=32) 10067 -1 = "Not in Universe" 10068 1 = "Yes" 10069 2 = "No" 10070 ; NOTE: Format EABGAS has been output. 10071 VALUE aabgas (default=32) 10072 0 = "Not imputed" 10073 1 = "Statistical imputation (hot deck)" 10074 2 = "Cold deck imputation" 10075 3 = "Logical imputation (derivation)" 10076 ; 196 The SAS System 15:07 Thursday, June 21, 2012 NOTE: Format AABGAS has been output. 10077 VALUE rabghlps (default=32) 10078 -1 = "Not in Universe" 10079 1 = "Help received from this source" 10080 2 = "Help not received from this source" 10081 3 = "No help received from any source" 10082 ; NOTE: Format RABGHLPS has been output. 10083 VALUE rabghlpk (default=32) 10084 -1 = "Not in Universe" 10085 1 = "Help received from this source" 10086 2 = "Help not received from this source" 10087 3 = "No help received from any source" 10088 ; NOTE: Format RABGHLPK has been output. 10089 VALUE rabghlpl (default=32) 10090 -1 = "Not in Universe" 10091 1 = "Help received from this source" 10092 2 = "Help not received from this source" 10093 3 = "No help received from any source" 10094 ; NOTE: Format RABGHLPL has been output. 10095 VALUE rabghlpm (default=32) 10096 -1 = "Not in Universe" 10097 1 = "Help received from this source" 10098 2 = "Help not received from this source" 10099 3 = "No help received from any source" 10100 ; NOTE: Format RABGHLPM has been output. 10101 VALUE rabghlpn (default=32) 10102 -1 = "Not in Universe" 10103 1 = "Help received from this source" 10104 2 = "Help not received from this source" 10105 3 = "No help received from any source" 10106 ; NOTE: Format RABGHLPN has been output. 10107 VALUE aabghlp (default=32) 10108 0 = "Not imputed" 10109 1 = "Statistical imputation (hot deck)" 10110 2 = "Cold deck imputation" 10111 3 = "Logical imputation (derivation)" 10112 ; NOTE: Format AABGHLP has been output. 10113 VALUE eabcut (default=32) 10114 -1 = "Not in Universe" 10115 1 = "Yes" 10116 2 = "No" 10117 ; NOTE: Format EABCUT has been output. 10118 VALUE aabcut (default=32) 10119 0 = "Not imputed" 10120 1 = "Statistical imputation (hot deck)" 10121 2 = "Cold deck imputation" 10122 3 = "Logical imputation (derivation)" 10123 ; NOTE: Format AABCUT has been output. 10124 VALUE rabchlpt (default=32) 10125 -1 = "Not in Universe" 197 The SAS System 15:07 Thursday, June 21, 2012 10126 1 = "Help received from this source" 10127 2 = "Help not received from this source" 10128 3 = "No help received from any source" 10129 ; NOTE: Format RABCHLPT has been output. 10130 VALUE rabchlpk (default=32) 10131 -1 = "Not in Universe" 10132 1 = "Help received from this source" 10133 2 = "Help not received from this source" 10134 3 = "No help received from any source" 10135 ; NOTE: Format RABCHLPK has been output. 10136 VALUE rabchlpl (default=32) 10137 -1 = "Not in Universe" 10138 1 = "Help received from this source" 10139 2 = "Help not received from this source" 10140 3 = "No help received from any source" 10141 ; NOTE: Format RABCHLPL has been output. 10142 VALUE rabchlpm (default=32) 10143 -1 = "Not in Universe" 10144 1 = "Help received from this source" 10145 2 = "Help not received from this source" 10146 3 = "No help received from any source" 10147 ; NOTE: Format RABCHLPM has been output. 10148 VALUE rabchlpn (default=32) 10149 -1 = "Not in Universe" 10150 1 = "Help received from this source" 10151 2 = "Help not received from this source" 10152 3 = "No help received from any source" 10153 ; NOTE: Format RABCHLPN has been output. 10154 VALUE aabchlp (default=32) 10155 0 = "Not imputed" 10156 1 = "Statistical imputation (hot deck)" 10157 2 = "Cold deck imputation" 10158 3 = "Logical imputation (derivation)" 10159 ; NOTE: Format AABCHLP has been output. 10160 VALUE eabphon (default=32) 10161 -1 = "Not in Universe" 10162 1 = "Yes" 10163 2 = "No" 10164 ; NOTE: Format EABPHON has been output. 10165 VALUE aabphon (default=32) 10166 0 = "Not imputed" 10167 1 = "Statistical imputation (hot deck)" 10168 2 = "Cold deck imputation" 10169 3 = "Logical imputation (derivation)" 10170 ; NOTE: Format AABPHON has been output. 10171 VALUE rabphlpn (default=32) 10172 -1 = "Not in Universe" 10173 1 = "Help received from this source" 10174 2 = "Help not received from this source" 10175 3 = "No help received from any source" 198 The SAS System 15:07 Thursday, June 21, 2012 10176 ; NOTE: Format RABPHLPN has been output. 10177 VALUE rabphlpk (default=32) 10178 -1 = "Not in Universe" 10179 1 = "Help received from this source" 10180 2 = "Help not received from this source" 10181 3 = "No help received from any source" 10182 ; NOTE: Format RABPHLPK has been output. 10183 VALUE rabphlpl (default=32) 10184 -1 = "Not in Universe" 10185 1 = "Help received from this source" 10186 2 = "Help not received from this source" 10187 3 = "No help received from any source" 10188 ; NOTE: Format RABPHLPL has been output. 10189 VALUE rabphlpm (default=32) 10190 -1 = "Not in Universe" 10191 1 = "Help received from this source" 10192 2 = "Help not received from this source" 10193 3 = "No help received from any source" 10194 ; NOTE: Format RABPHLPM has been output. 10195 VALUE rabphlpo (default=32) 10196 -1 = "Not in Universe" 10197 1 = "Help received from this source" 10198 2 = "Help not received from this source" 10199 3 = "No help received from any source" 10200 ; NOTE: Format RABPHLPO has been output. 10201 VALUE aabphlp (default=32) 10202 0 = "Not imputed" 10203 1 = "Statistical imputation (hot deck)" 10204 2 = "Cold deck imputation" 10205 3 = "Logical imputation (derivation)" 10206 ; NOTE: Format AABPHLP has been output. 10207 VALUE eabdoct (default=32) 10208 -1 = "Not in Universe" 10209 1 = "Yes" 10210 2 = "No" 10211 ; NOTE: Format EABDOCT has been output. 10212 VALUE aabdoct (default=32) 10213 0 = "Not imputed" 10214 1 = "Statistical imputation (hot deck)" 10215 2 = "Cold deck imputation" 10216 3 = "Logical imputation (derivation)" 10217 ; NOTE: Format AABDOCT has been output. 10218 VALUE rabdhlpt (default=32) 10219 -1 = "Not in Universe" 10220 1 = "Help received from this source" 10221 2 = "Help not received from this source" 10222 3 = "No help received from any source" 10223 ; NOTE: Format RABDHLPT has been output. 10224 VALUE rabdhlpk (default=32) 199 The SAS System 15:07 Thursday, June 21, 2012 10225 -1 = "Not in Universe" 10226 1 = "Help received from this source" 10227 2 = "Help not received from this source" 10228 3 = "No help received from any source" 10229 ; NOTE: Format RABDHLPK has been output. 10230 VALUE rabdhlpl (default=32) 10231 -1 = "Not in Universe" 10232 1 = "Help received from this source" 10233 2 = "Help not received from this source" 10234 3 = "No help received from any source" 10235 ; NOTE: Format RABDHLPL has been output. 10236 VALUE rabdhlpm (default=32) 10237 -1 = "Not in Universe" 10238 1 = "Help received from this source" 10239 2 = "Help not received from this source" 10240 3 = "No help received from any source" 10241 ; NOTE: Format RABDHLPM has been output. 10242 VALUE rabdhlpn (default=32) 10243 -1 = "Not in Universe" 10244 1 = "Help received from this source" 10245 2 = "Help not received from this source" 10246 3 = "No help received from any source" 10247 ; NOTE: Format RABDHLPN has been output. 10248 VALUE aabdhlp (default=32) 10249 0 = "Not imputed" 10250 1 = "Statistical imputation (hot deck)" 10251 2 = "Cold deck imputation" 10252 3 = "Logical imputation (derivation)" 10253 ; NOTE: Format AABDHLP has been output. 10254 VALUE eabdent (default=32) 10255 -1 = "Not in Universe" 10256 1 = "Yes" 10257 2 = "No" 10258 ; NOTE: Format EABDENT has been output. 10259 VALUE aabdent (default=32) 10260 0 = "Not imputed" 10261 1 = "Statistical imputation (hot deck)" 10262 2 = "Cold deck imputation" 10263 3 = "Logical imputation (derivation)" 10264 ; NOTE: Format AABDENT has been output. 10265 VALUE rabthlpt (default=32) 10266 -1 = "Not in Universe" 10267 1 = "Help received from this source" 10268 2 = "Help not received from this source" 10269 3 = "No help received from any source" 10270 ; NOTE: Format RABTHLPT has been output. 10271 VALUE rabthlpk (default=32) 10272 -1 = "Not in Universe" 10273 1 = "Help received from this source" 10274 2 = "Help not received from this source" 200 The SAS System 15:07 Thursday, June 21, 2012 10275 3 = "No help received from any source" 10276 ; NOTE: Format RABTHLPK has been output. 10277 VALUE rabthlpl (default=32) 10278 -1 = "Not in Universe" 10279 1 = "Help received from this source" 10280 2 = "Help not received from this source" 10281 3 = "No help received from any source" 10282 ; NOTE: Format RABTHLPL has been output. 10283 VALUE rabthlpm (default=32) 10284 -1 = "Not in Universe" 10285 1 = "Help received from this source" 10286 2 = "Help not received from this source" 10287 3 = "No help received from any source" 10288 ; NOTE: Format RABTHLPM has been output. 10289 VALUE rabthlpn (default=32) 10290 -1 = "Not in Universe" 10291 1 = "Help received from this source" 10292 2 = "Help not received from this source" 10293 3 = "No help received from any source" 10294 ; NOTE: Format RABTHLPN has been output. 10295 VALUE aabthlp (default=32) 10296 0 = "Not imputed" 10297 1 = "Statistical imputation (hot deck)" 10298 2 = "Cold deck imputation" 10299 3 = "Logical imputation (derivation)" 10300 ; NOTE: Format AABTHLP has been output. 10301 VALUE eahlpfm (default=32) 10302 -1 = "Not in Universe" 10303 1 = "All of the help needed" 10304 2 = "Most of the help needed" 10305 3 = "Very little of the help needed" 10306 4 = "No help" 10307 ; NOTE: Format EAHLPFM has been output. 10308 VALUE aahlpfm (default=32) 10309 0 = "Not imputed" 10310 1 = "Statistical imputation (hot deck)" 10311 2 = "Cold deck imputation" 10312 3 = "Logical imputation (derivation)" 10313 ; NOTE: Format AAHLPFM has been output. 10314 VALUE eahlpfr (default=32) 10315 -1 = "Not in Universe" 10316 1 = "All of the help needed" 10317 2 = "Most of the help needed" 10318 3 = "Very little of the help needed" 10319 4 = "No help" 10320 ; NOTE: Format EAHLPFR has been output. 10321 VALUE aahlpfr (default=32) 10322 0 = "Not imputed" 10323 1 = "Statistical imputation (hot deck)" 10324 2 = "Cold deck imputation" 201 The SAS System 15:07 Thursday, June 21, 2012 10325 3 = "Logical imputation (derivation)" 10326 ; NOTE: Format AAHLPFR has been output. 10327 VALUE eahlpag (default=32) 10328 -1 = "Not in Universe" 10329 1 = "All of the help needed" 10330 2 = "Most of the help needed" 10331 3 = "Very little of the help needed" 10332 4 = "No help" 10333 ; NOTE: Format EAHLPAG has been output. 10334 VALUE aahlpag (default=32) 10335 0 = "Not imputed" 10336 1 = "Statistical imputation (hot deck)" 10337 2 = "Cold deck imputation" 10338 3 = "Logical imputation (derivation)" 10339 ; NOTE: Format AAHLPAG has been output. 10340 VALUE eafood1l (default=32) 10341 -1 = "Not in Universe" 10342 1 = "Enough of the kinds of food we" 10343 2 = "Enough but not always the kinds" 10344 3 = "Sometimes not enough to eat" 10345 4 = "Often not enough to eat" 10346 ; NOTE: Format EAFOOD1L has been output. 10347 VALUE aafood1l (default=32) 10348 0 = "Not imputed" 10349 1 = "Statistical imputation (hot deck)" 10350 2 = "Cold deck imputation" 10351 3 = "Logical imputation (derivation)" 10352 ; NOTE: Format AAFOOD1L has been output. 10353 VALUE eafdm1l (default=32) 10354 -1 = "Not in Universe" 10355 1 = "Yes, did not have enough to eat -" 10356 2 = "No, enough to eat" 10357 ; NOTE: Format EAFDM1L has been output. 10358 VALUE eafdm2l (default=32) 10359 -1 = "Not in Universe" 10360 1 = "Yes, did not have enough to eat -" 10361 2 = "No, enough to eat" 10362 ; NOTE: Format EAFDM2L has been output. 10363 VALUE eafdm3l (default=32) 10364 -1 = "Not in Universe" 10365 1 = "Yes, did not have enough to eat -" 10366 2 = "No, enough to eat" 10367 ; NOTE: Format EAFDM3L has been output. 10368 VALUE eafdm4l (default=32) 10369 -1 = "Not in Universe" 10370 1 = "Yes, did not have enough to eat -" 10371 2 = "No, enough to eat" 10372 ; NOTE: Format EAFDM4L has been output. 10373 VALUE eafdm5l (default=32) 202 The SAS System 15:07 Thursday, June 21, 2012 10374 -1 = "Not in Universe" 10375 1 = "Yes, did not have enough to eat -" 10376 2 = "No, enough to eat" 10377 ; NOTE: Format EAFDM5L has been output. 10378 VALUE aafdm (default=32) 10379 0 = "Not imputed" 10380 1 = "Statistical imputation (hot deck)" 10381 2 = "Cold deck imputation" 10382 3 = "Logical imputation (derivation)}" 10383 ; NOTE: Format AAFDM has been output. 10384 VALUE eaflast (default=32) 10385 -1 = "Not in Universe" 10386 1 = "Often true" 10387 2 = "Sometimes true" 10388 3 = "Never true" 10389 ; NOTE: Format EAFLAST has been output. 10390 VALUE aaflast (default=32) 10391 0 = "Not imputed" 10392 1 = "Statistical imputation (hot deck)" 10393 2 = "Cold deck imputation" 10394 3 = "Logical imputation (derivation)}" 10395 ; NOTE: Format AAFLAST has been output. 10396 VALUE eafbaln (default=32) 10397 -1 = "Not in Universe" 10398 1 = "Often true" 10399 2 = "Sometimes true" 10400 3 = "Never true" 10401 ; NOTE: Format EAFBALN has been output. 10402 VALUE aafbaln (default=32) 10403 0 = "Not imputed" 10404 1 = "Statistical imputation (hot deck)" 10405 2 = "Cold deck imputation" 10406 3 = "Logical imputation (derivation)" 10407 ; NOTE: Format AAFBALN has been output. 10408 VALUE eafchld (default=32) 10409 -1 = "Not in Universe" 10410 1 = "Often true" 10411 2 = "Sometimes true" 10412 3 = "Never true" 10413 ; NOTE: Format EAFCHLD has been output. 10414 VALUE aafchld (default=32) 10415 0 = "Not imputed" 10416 1 = "Statistical imputation (hot deck)" 10417 2 = "Cold deck imputation" 10418 3 = "Logical imputation (derivation)" 10419 ; NOTE: Format AAFCHLD has been output. 10420 VALUE eafskip (default=32) 10421 -1 = "Not in Universe" 10422 1 = "Yes" 10423 2 = "No" 203 The SAS System 15:07 Thursday, June 21, 2012 10424 ; NOTE: Format EAFSKIP has been output. 10425 VALUE aafskip (default=32) 10426 0 = "Not imputed" 10427 1 = "Statistical imputation (hot deck)" 10428 2 = "Cold deck imputation" 10429 3 = "Logical imputation (derivation)" 10430 ; NOTE: Format AAFSKIP has been output. 10431 VALUE eafless (default=32) 10432 -1 = "Not in Universe" 10433 1 = "Yes" 10434 2 = "No" 10435 ; NOTE: Format EAFLESS has been output. 10436 VALUE aafless (default=32) 10437 0 = "Not imputed" 10438 1 = "Statistical imputation (hot deck)" 10439 2 = "Cold deck imputation" 10440 3 = "Logical imputation (derivation)" 10441 ; NOTE: Format AAFLESS has been output. 10442 VALUE eafday (default=32) 10443 -1 = "Not in Universe" 10444 1 = "Yes" 10445 2 = "No" 10446 ; NOTE: Format EAFDAY has been output. 10447 VALUE aafday (default=32) 10448 0 = "Not imputed" 10449 1 = "Statistical imputation (hot deck)" 10450 2 = "Cold deck imputation" 10451 3 = "Logical imputation (derivation)" 10452 ; NOTE: Format AAFDAY has been output. 10453 NOTE: The data set LIBRARY.FSPPP08PUTM6 has 5354 observations and 21 variables. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.72 seconds cpu time 0.25 seconds 10454 proc print data=library.sippp08putm6 (obs=6); 10455 10456 10457 FORMAT 10458 spanel spanel. 10459 tfipsst tfipsst. 10460 eoutcome eoutcome. 10461 rfid2 rfid2l. 10462 epopstat epopstat. 10463 eppintvw eppintvw. 10464 eppmis4 eppmis4l. 10465 esex esex. 10466 erace erace. 10467 eorigin eorigin. 10468 errp errp. 204 The SAS System 15:07 Thursday, June 21, 2012 10469 tage tage. 10470 ems ems. 10471 epnspous epnspous. 10472 epnmom epnmom. 10473 epndad epndad. 10474 epnguard epnguard. 10475 rdesgpnt rdesgpnt. 10476 eeducate eeducate. 10477 sinthhid sinthhid. 10478 eacsunv eacsunv. 10479 ecskid01 ecskid0v. 10480 ecskid02 ecskid0k. 10481 ecskid03 ecskid0l. 10482 ecskid04 ecskid0m. 10483 ecskid05 ecskid0n. 10484 ecskid06 ecskid0o. 10485 ecskid07 ecskid0p. 10486 ecskid08 ecskid0q. 10487 ecskid09 ecskid0r. 10488 ecskid10 ecskid1v. 10489 eynoab01 eynoab0v. 10490 eynoab02 eynoab0k. 10491 eynoab03 eynoab0l. 10492 eynoab04 eynoab0m. 10493 eynoab05 eynoab0n. 10494 eynoab06 eynoab0o. 10495 eynoab07 eynoab0p. 10496 eynoab08 eynoab0q. 10497 eynoab09 eynoab0r. 10498 eynoab10 eynoab1v. 10499 aynoab aynoab. 10500 recrdflg recrdflg. 10501 ecsflg01 ecsflg0g. 10502 ecsflg02 ecsflg0k. 10503 ecsflg03 ecsflg0l. 10504 ecsflg04 ecsflg0m. 10505 ecsflg05 ecsflg0n. 10506 ecsflg06 ecsflg0o. 10507 ecsflg07 ecsflg0p. 10508 ecsflg08 ecsflg0q. 10509 ecsflg09 ecsflg0r. 10510 ecsflg10 ecsflg1g. 10511 acsflg acsflg. 10512 ranyagre ranyagre. 10513 tnumagr tnumagr. 10514 anumagr anumagr. 10515 etypeagr etypeagr. 10516 atypeagr atypeagr. 10517 efirsyr1 efirsyrr. 10518 afirsyr1 afirsyrr. 10519 tamtag11 tamtag1r. 10520 eamtag12 eamtag1r. 10521 aamtag11 aamtag1r. 10522 eevrchg1 eevrchgr. 10523 aevrchg1 aevrchgr. 10524 eyrchng1 eyrchngr. 10525 ayrchng1 ayrchngr. 10526 tamtcg11 tamtcg1r. 205 The SAS System 15:07 Thursday, June 21, 2012 10527 eamtcg12 eamtcg1r. 10528 aamtcg11 aamtcg1r. 10529 ewhochgd ewhochgd. 10530 awhochgd awhochgd. 10531 epaydue1 epaydued. 10532 apaydue1 apaydued. 10533 eynodue1 eynodued. 10534 aynodue1 aynodued. 10535 tamtsup1 tamtsupd. 10536 aamtsup1 aamtsupd. 10537 ehowrec1 ehowrecd. 10538 ahowrec1 ahowrecd. 10539 tactrec1 tactrecd. 10540 aactrec1 aactrecd. 10541 eallpay1 eallpayd. 10542 aallpay1 aallpayd. 10543 epaytim1 epaytimd. 10544 apaytim1 apaytimd. 10545 epayful1 epayfuld. 10546 apayful1 apayfuld. 10547 eduback1 edubackd. 10548 aduback1 adubackd. 10549 tdolbac1 tdolbacd. 10550 adolbac1 adolbacd. 10551 ebacowe1 ebacowed. 10552 abacowe1 abacowed. 10553 tamtowe1 tamtowed. 10554 aamtowe1 aamtowed. 10555 tbacrec1 tbacrecd. 10556 abacrec1 abacrecd. 10557 ehthag11 ehthag1d. 10558 ehthag12 ehthag1k. 10559 ehthag13 ehthag1l. 10560 ehthag14 ehthag1m. 10561 ehthag15 ehthag1n. 10562 ehthag16 ehthag1o. 10563 ahthag11 ahthag1d. 10564 ecustag1 ecustagd. 10565 acustag1 acustagd. 10566 espentm1 espentmd. 10567 aspentm1 aspentmd. 10568 esametm1 esametmd. 10569 asametm1 asametmd. 10570 eamttm11 eamttm1d. 10571 eamttm12 eamttm1k. 10572 eamttm13 eamttm1l. 10573 aamttm11 aamttm1d. 10574 ewherlv1 ewherlvd. 10575 awherlv1 awherlvd. 10576 estagre1 estagred. 10577 astagre1 astagred. 10578 ewhomov1 ewhomovd. 10579 awhomov1 awhomovd. 10580 efirsyr2 efirsyrd. 10581 afirsyr2 afirsyrd. 10582 tamtag21 tamtag2d. 10583 eamtag22 eamtag2d. 10584 aamtag21 aamtag2d. 206 The SAS System 15:07 Thursday, June 21, 2012 10585 eevrchg2 eevrchgd. 10586 aevrchg2 aevrchgd. 10587 eyrchng2 eyrchngd. 10588 ayrchng2 ayrchngd. 10589 tamtcg21 tamtcg2d. 10590 eamtcg22 eamtcg2d. 10591 aamtcg21 aamtcg2d. 10592 epaydue2 epayduek. 10593 apaydue2 apayduek. 10594 eynodue2 eynoduek. 10595 aynodue2 aynoduek. 10596 tamtsup2 tamtsupk. 10597 aamtsup2 aamtsupk. 10598 tactrec2 tactreck. 10599 aactrec2 aactreck. 10600 eallpay2 eallpayk. 10601 aallpay2 aallpayk. 10602 epaytim2 epaytimk. 10603 apaytim2 apaytimk. 10604 epayful2 epayfulk. 10605 apayful2 apayfulk. 10606 eduback2 edubackk. 10607 aduback2 adubackk. 10608 tdolbac2 tdolback. 10609 adolbac2 adolback. 10610 ebacowe2 ebacowek. 10611 abacowe2 abacowek. 10612 tamtowe2 tamtowek. 10613 aamtowe2 aamtowek. 10614 tbacrec2 tbacreck. 10615 abacrec2 abacreck. 10616 ehltag21 ehltag2d. 10617 ehltag22 ehltag2k. 10618 ehltag23 ehltag2l. 10619 ehltag24 ehltag2m. 10620 ehltag25 ehltag2n. 10621 ehltag26 ehltag2o. 10622 ahltag21 ahltag2d. 10623 ecustag2 ecustagk. 10624 acustag2 acustagk. 10625 espentm2 espentmk. 10626 aspentm2 aspentmk. 10627 esametm2 esametmk. 10628 asametm2 asametmk. 10629 eamttm21 eamttm2d. 10630 eamttm22 eamttm2k. 10631 eamttm23 eamttm2l. 10632 aamttm21 aamttm2d. 10633 edcrt101 edcrt10d. 10634 edcrt102 edcrt10k. 10635 edcrt103 edcrt10l. 10636 edcrt104 edcrt10m. 10637 edcrt105 edcrt10n. 10638 edcrt106 edcrt10o. 10639 edcrt107 edcrt10p. 10640 edcrt108 edcrt10q. 10641 edcrt109 edcrt10r. 10642 edcrt110 edcrt11d. 207 The SAS System 15:07 Thursday, June 21, 2012 10643 edtes101 edtes10d. 10644 edtes102 edtes10k. 10645 edtes103 edtes10l. 10646 edtes104 edtes10m. 10647 edtes105 edtes10n. 10648 edtes106 edtes10o. 10649 edtes107 edtes10p. 10650 edtes108 edtes10q. 10651 edtes109 edtes10r. 10652 edtes110 edtes11d. 10653 edcer101 edcer10d. 10654 edcer102 edcer10k. 10655 edcer103 edcer10l. 10656 edcer104 edcer10m. 10657 edcer105 edcer10n. 10658 edcer106 edcer10o. 10659 edcer107 edcer10p. 10660 edcer108 edcer10q. 10661 edcer109 edcer10r. 10662 edcer110 edcer11d. 10663 edsig101 edsig10d. 10664 edsig102 edsig10k. 10665 edsig103 edsig10l. 10666 edsig104 edsig10m. 10667 edsig105 edsig10n. 10668 edsig106 edsig10o. 10669 edsig107 edsig10p. 10670 edsig108 edsig10q. 10671 edsig109 edsig10r. 10672 edsig110 edsig11d. 10673 edoth101 edoth10d. 10674 edoth102 edoth10k. 10675 edoth103 edoth10l. 10676 edoth104 edoth10m. 10677 edoth105 edoth10n. 10678 edoth106 edoth10o. 10679 edoth107 edoth10p. 10680 edoth108 edoth10q. 10681 edoth109 edoth10r. 10682 edoth110 edoth11d. 10683 adid101 adid101l. 10684 edmar1 edmar1l. 10685 admar1 admar1l. 10686 edcrt201 edcrt20d. 10687 edcrt202 edcrt20k. 10688 edcrt203 edcrt20l. 10689 edcrt204 edcrt20m. 10690 edcrt205 edcrt20n. 10691 edcrt206 edcrt20o. 10692 edcrt207 edcrt20p. 10693 edcrt208 edcrt20q. 10694 edcrt209 edcrt20r. 10695 edcrt210 edcrt21d. 10696 edtes201 edtes20d. 10697 edtes202 edtes20k. 10698 edtes203 edtes20l. 10699 edtes204 edtes20m. 10700 edtes205 edtes20n. 208 The SAS System 15:07 Thursday, June 21, 2012 10701 edtes206 edtes20o. 10702 edtes207 edtes20p. 10703 edtes208 edtes20q. 10704 edtes209 edtes20r. 10705 edtes210 edtes21d. 10706 edcer201 edcer20d. 10707 edcer202 edcer20k. 10708 edcer203 edcer20l. 10709 edcer204 edcer20m. 10710 edcer205 edcer20n. 10711 edcer206 edcer20o. 10712 edcer207 edcer20p. 10713 edcer208 edcer20q. 10714 edcer209 edcer20r. 10715 edcer210 edcer21d. 10716 edsig201 edsig20d. 10717 edsig202 edsig20k. 10718 edsig203 edsig20l. 10719 edsig204 edsig20m. 10720 edsig205 edsig20n. 10721 edsig206 edsig20o. 10722 edsig207 edsig20p. 10723 edsig208 edsig20q. 10724 edsig209 edsig20r. 10725 edsig210 edsig21d. 10726 edoth201 edoth20d. 10727 edoth202 edoth20k. 10728 edoth203 edoth20l. 10729 edoth204 edoth20m. 10730 edoth205 edoth20n. 10731 edoth206 edoth20o. 10732 edoth207 edoth20p. 10733 edoth208 edoth20q. 10734 edoth209 edoth20r. 10735 edoth210 edoth21d. 10736 adid201 adid201l. 10737 eynevwr1 eynevwrd. 10738 eynevwr2 eynevwrk. 10739 eynevwr3 eynevwrl. 10740 eynevwr4 eynevwrm. 10741 eynevwr5 eynevwrn. 10742 eynevwr6 eynevwro. 10743 eynevwr7 eynevwrp. 10744 eynevwr8 eynevwrq. 10745 aynevwr1 aynevwrd. 10746 ewherlv2 ewherlvk. 10747 awherlv2 awherlvk. 10748 estagre2 estagrek. 10749 astagre2 astagrek. 10750 ewhomov2 ewhomovk. 10751 awhomov2 awhomovk. 10752 tamtag31 tamtag3d. 10753 eamtag32 eamtag3d. 10754 aamtag31 aamtag3d. 10755 tactrec3 tactrecl. 10756 aactrec3 aactrecl. 10757 epubsupp epubsupp. 10758 apubsupp apubsupp. 209 The SAS System 15:07 Thursday, June 21, 2012 10759 elastask elastask. 10760 alastask alastask. 10761 etypask1 etypaskk. 10762 etypask2 etypaskl. 10763 etypask3 etypaskm. 10764 etypask4 etypaskn. 10765 etypask5 etypasko. 10766 etypask6 etypaskp. 10767 etypask7 etypaskq. 10768 atypask atypask. 10769 ehelpsyn ehelpsyn. 10770 ahelpsyn ahelpsyn. 10771 etyphlp1 etyphlpn. 10772 etyphlp2 etyphlpk. 10773 etyphlp3 etyphlpl. 10774 etyphlp4 etyphlpm. 10775 etyphlp5 etyphlpo. 10776 etyphlp6 etyphlpp. 10777 etyphlp7 etyphlpq. 10778 atyphlp atyphlp. 10779 edcrt301 edcrt30p. 10780 edcrt302 edcrt30k. 10781 edcrt303 edcrt30l. 10782 edcrt304 edcrt30m. 10783 edcrt305 edcrt30n. 10784 edcrt306 edcrt30o. 10785 edcrt307 edcrt30q. 10786 edcrt308 edcrt30r. 10787 edcrt309 edcrt30s. 10788 edcrt310 edcrt31p. 10789 edtes301 edtes30p. 10790 edtes302 edtes30k. 10791 edtes303 edtes30l. 10792 edtes304 edtes30m. 10793 edtes305 edtes30n. 10794 edtes306 edtes30o. 10795 edtes307 edtes30q. 10796 edtes308 edtes30r. 10797 edtes309 edtes30s. 10798 edtes310 edtes31p. 10799 edcer301 edcer30p. 10800 edcer302 edcer30k. 10801 edcer303 edcer30l. 10802 edcer304 edcer30m. 10803 edcer305 edcer30n. 10804 edcer306 edcer30o. 10805 edcer307 edcer30q. 10806 edcer308 edcer30r. 10807 edcer309 edcer30s. 10808 edcer310 edcer31p. 10809 edsig301 edsig30p. 10810 edsig302 edsig30k. 10811 edsig303 edsig30l. 10812 edsig304 edsig30m. 10813 edsig305 edsig30n. 10814 edsig306 edsig30o. 10815 edsig307 edsig30q. 10816 edsig308 edsig30r. 210 The SAS System 15:07 Thursday, June 21, 2012 10817 edsig309 edsig30s. 10818 edsig310 edsig31p. 10819 edoth301 edoth30p. 10820 edoth302 edoth30k. 10821 edoth303 edoth30l. 10822 edoth304 edoth30m. 10823 edoth305 edoth30n. 10824 edoth306 edoth30o. 10825 edoth307 edoth30q. 10826 edoth308 edoth30r. 10827 edoth309 edoth30s. 10828 edoth310 edoth31p. 10829 adid301 adid301l. 10830 edmar201 edmar20p. 10831 admar201 admar20p. 10832 edmar202 edmar20k. 10833 admar202 admar20k. 10834 edmar203 edmar20l. 10835 admar203 admar20l. 10836 edmar204 edmar20m. 10837 admar204 admar20m. 10838 edmar205 edmar20n. 10839 admar205 admar20n. 10840 edmar206 edmar20o. 10841 admar206 admar20o. 10842 edmar207 edmar20q. 10843 admar207 admar20q. 10844 edmar208 edmar20r. 10845 admar208 admar20r. 10846 edmar209 edmar20s. 10847 admar209 admar20s. 10848 edmar210 edmar21p. 10849 admar210 admar21p. 10850 esame01 esame01l. 10851 asame01 asame01l. 10852 esame02 esame02l. 10853 asame02 asame02l. 10854 esame03 esame03l. 10855 asame03 asame03l. 10856 esame04 esame04l. 10857 asame04 asame04l. 10858 esame05 esame05l. 10859 asame05 asame05l. 10860 esame06 esame06l. 10861 asame06 asame06l. 10862 esame07 esame07l. 10863 asame07 asame07l. 10864 esame08 esame08l. 10865 asame08 asame08l. 10866 esame09 esame09l. 10867 asame09 asame09l. 10868 esame10 esame10l. 10869 asame10 asame10l. 10870 edcrt401 edcrt40p. 10871 edcrt402 edcrt40k. 10872 edcrt403 edcrt40l. 10873 edcrt404 edcrt40m. 10874 edcrt405 edcrt40n. 211 The SAS System 15:07 Thursday, June 21, 2012 10875 edcrt406 edcrt40o. 10876 edcrt407 edcrt40q. 10877 edcrt408 edcrt40r. 10878 edcrt409 edcrt40s. 10879 edcrt410 edcrt41p. 10880 edtes401 edtes40p. 10881 edtes402 edtes40k. 10882 edtes403 edtes40l. 10883 edtes404 edtes40m. 10884 edtes405 edtes40n. 10885 edtes406 edtes40o. 10886 edtes407 edtes40q. 10887 edtes408 edtes40r. 10888 edtes409 edtes40s. 10889 edtes410 edtes41p. 10890 edcer401 edcer40p. 10891 edcer402 edcer40k. 10892 edcer403 edcer40l. 10893 edcer404 edcer40m. 10894 edcer405 edcer40n. 10895 edcer406 edcer40o. 10896 edcer407 edcer40q. 10897 edcer408 edcer40r. 10898 edcer409 edcer40s. 10899 edcer410 edcer41p. 10900 edsig401 edsig40p. 10901 edsig402 edsig40k. 10902 edsig403 edsig40l. 10903 edsig404 edsig40m. 10904 edsig405 edsig40n. 10905 edsig406 edsig40o. 10906 edsig407 edsig40q. 10907 edsig408 edsig40r. 10908 edsig409 edsig40s. 10909 edsig410 edsig41p. 10910 edoth401 edoth40p. 10911 edoth402 edoth40k. 10912 edoth403 edoth40l. 10913 edoth404 edoth40m. 10914 edoth405 edoth40n. 10915 edoth406 edoth40o. 10916 edoth407 edoth40q. 10917 edoth408 edoth40r. 10918 edoth409 edoth40s. 10919 edoth410 edoth41p. 10920 adid401 adid401l. 10921 adid402 adid402l. 10922 adid403 adid403l. 10923 adid404 adid404l. 10924 adid405 adid405l. 10925 adid406 adid406l. 10926 adid407 adid407l. 10927 adid408 adid408l. 10928 adid409 adid409l. 10929 adid410 adid410l. 10930 esamepar esamepar. 10931 asamepar asamepar. 10932 eynoag11 eynoag1r. 212 The SAS System 15:07 Thursday, June 21, 2012 10933 eynoag12 eynoag1k. 10934 eynoag13 eynoag1l. 10935 eynoag14 eynoag1m. 10936 eynoag15 eynoag1n. 10937 eynoag16 eynoag1o. 10938 eynoag17 eynoag1p. 10939 eynoag18 eynoag1q. 10940 aynoag11 aynoag1r. 10941 ewherlv3 ewherlvr. 10942 awherlv3 awherlvr. 10943 evisagr1 evisagrr. 10944 avisagr1 avisagrr. 10945 eamttm41 eamttm4r. 10946 eamttm42 eamttm4k. 10947 eamttm43 eamttm4l. 10948 aamttm41 aamttm4r. 10949 eynoag21 eynoag2r. 10950 eynoag22 eynoag2k. 10951 eynoag23 eynoag2l. 10952 eynoag24 eynoag2m. 10953 eynoag25 eynoag2n. 10954 eynoag26 eynoag2o. 10955 eynoag27 eynoag2p. 10956 eynoag28 eynoag2q. 10957 aynoag21 aynoag2r. 10958 ewherlv4 ewherlvl. 10959 awherlv4 awherlvl. 10960 evisagr2 evisagrk. 10961 avisagr2 avisagrk. 10962 eamttm51 eamttm5r. 10963 eamttm52 eamttm5k. 10964 eamttm53 eamttm5l. 10965 aamttm51 aamttm5r. 10966 epayrecv epayrecv. 10967 apayrecv apayrecv. 10968 tactrec4 tactrecv. 10969 aactrec4 aactrecv. 10970 eothitem eothitem. 10971 aothitem aothitem. 10972 eagencol eagencol. 10973 aagencol aagencol. 10974 eagenall eagenall. 10975 aagenall aagenall. 10976 tamtagen tamtagen. 10977 aamtagen aamtagen. 10978 easnunv easnunv. 10979 esupkdyn esupkdyn. 10980 asupkdyn asupkdyn. 10981 esuptyp1 esuptypn. 10982 esuptyp2 esuptypk. 10983 esuptyp3 esuptypl. 10984 asuptyp asuptyp. 10985 tsupnkid tsupnkid. 10986 asupnkid asupnkid. 10987 tsupltad tsupltad. 10988 asupltad asupltad. 10989 esupagrm esupagrm. 10990 asupagrm asupagrm. 213 The SAS System 15:07 Thursday, June 21, 2012 10991 tsupnagr tsupnagr. 10992 asupnagr asupnagr. 10993 esupagty esupagty. 10994 asupagty asupagty. 10995 esupagyr esupagyr. 10996 asupagyr asupagyr. 10997 esupamtc esupamtc. 10998 asupamtc asupamtc. 10999 esupyrch esupyrch. 11000 asupyrch asupyrch. 11001 esupchag esupchag. 11002 asupchag asupchag. 11003 esupstlp esupstlp. 11004 asupstlp asupstlp. 11005 tsupampd tsupampd. 11006 asupampd asupampd. 11007 esuphopy esuphopy. 11008 asuphopy asuphopy. 11009 esuphlt1 esuphlty. 11010 esuphlt2 esuphltk. 11011 esuphlt3 esuphltl. 11012 esuphlt4 esuphltm. 11013 esuphlt5 esuphltn. 11014 esuphlt6 esuphlto. 11015 asuphlt asuphlt. 11016 esupcust esupcust. 11017 asupcust asupcust. 11018 esupsptm esupsptm. 11019 asupsptm asupsptm. 11020 esuptam1 esuptamm. 11021 esuptam2 esuptamk. 11022 esuptam3 esuptaml. 11023 asuptam asuptam. 11024 esupotha esupotha. 11025 asupotha asupotha. 11026 tsupamal tsupamal. 11027 asupamal asupamal. 11028 esupwoag esupwoag. 11029 asupwoag asupwoag. 11030 tsupamad tsupamad. 11031 asupamad asupamad. 11032 esuptma1 esuptmad. 11033 esuptma2 esuptmak. 11034 esuptma3 esuptmal. 11035 asuptma asuptma. 11036 esupotpy esupotpy. 11037 asupotpy asupotpy. 11038 tsupotnp tsupotnp. 11039 asupotnp asupotnp. 11040 esupotre esupotre. 11041 asupotre asupotre. 11042 esupotlv esupotlv. 11043 asupotlv asupotlv. 11044 tsupotam tsupotam. 11045 asupotam asupotam. 11046 esupotrl esupotrl. 11047 asupotrl asupotrl. 11048 esupotli esupotli. 214 The SAS System 15:07 Thursday, June 21, 2012 11049 asupotli asupotli. 11050 tsupotpa tsupotpa. 11051 asupotpa asupotpa. 11052 tsupotnt tsupotnt. 11053 asupotnt asupotnt. 11054 eaadunv eaadunv. 11055 ehstat ehstat. 11056 ahstat ahstat. 11057 ecane ecane. 11058 acane acane. 11059 ewchair ewchair. 11060 awchair awchair. 11061 ehearaid ehearaid. 11062 ahearaid ahearaid. 11063 ecane6 ecane6l. 11064 acane6 acane6l. 11065 eseedif eseedif. 11066 aseedif aseedif. 11067 eseenot eseenot. 11068 aseenot aseenot. 11069 eheardif eheardif. 11070 aheardif aheardif. 11071 ehearnot ehearnot. 11072 ahearnot ahearnot. 11073 espeechd espeechd. 11074 aspeechd aspeechd. 11075 espeechc espeechc. 11076 aspeechc aspeechc. 11077 edif10 edif10l. 11078 adif10 adif10l. 11079 ecant10 ecant10l. 11080 acant10 acant10l. 11081 edif25 edif25l. 11082 adif25 adif25l. 11083 ecant25 ecant25l. 11084 acant25 acant25l. 11085 epushd epushd. 11086 apushd apushd. 11087 epushc epushc. 11088 apushc apushc. 11089 estandd estandd. 11090 astandd astandd. 11091 esitd esitd. 11092 asitd asitd. 11093 estoopd estoopd. 11094 astoopd astoopd. 11095 ereachd ereachd. 11096 areachd areachd. 11097 egraspd egraspd. 11098 agraspd agraspd. 11099 egraspc egraspc. 11100 agraspc agraspc. 11101 estairsd estairsd. 11102 astairsd astairsd. 11103 estairsc estairsc. 11104 astairsc astairsc. 11105 ewalkd ewalkd. 11106 awalkd awalkd. 215 The SAS System 15:07 Thursday, June 21, 2012 11107 ewalkc ewalkc. 11108 awalkc awalkc. 11109 eteled eteled. 11110 ateled ateled. 11111 etelec etelec. 11112 atelec atelec. 11113 eindif eindif. 11114 aindif aindif. 11115 eoutdif eoutdif. 11116 aoutdif aoutdif. 11117 ebeddif ebeddif. 11118 abeddif abeddif. 11119 ebathdif ebathdif. 11120 abathdif abathdif. 11121 edressd edressd. 11122 adressd adressd. 11123 ewalk2d ewalk2d. 11124 awalk2d awalk2d. 11125 eeatdif eeatdif. 11126 aeatdif aeatdif. 11127 etoiletd etoiletd. 11128 atoiletd atoiletd. 11129 emoneyd emoneyd. 11130 amoneyd amoneyd. 11131 emealsd emealsd. 11132 amealsd amealsd. 11133 ehworkd ehworkd. 11134 ahworkd ahworkd. 11135 emedd emedd. 11136 amedd amedd. 11137 einhelp einhelp. 11138 ainhelp ainhelp. 11139 eouthelp eouthelp. 11140 aouthelp aouthelp. 11141 ebedhelp ebedhelp. 11142 abedhelp abedhelp. 11143 ebathh ebathh. 11144 abathh abathh. 11145 edressh edressh. 11146 adressh adressh. 11147 ewalk2h ewalk2h. 11148 awalk2h awalk2h. 11149 eeathelp eeathelp. 11150 aeathelp aeathelp. 11151 etoileth etoileth. 11152 atoileth atoileth. 11153 emoneyh emoneyh. 11154 amoneyh amoneyh. 11155 emealsh emealsh. 11156 amealsh amealsh. 11157 ehworkh ehworkh. 11158 ahworkh ahworkh. 11159 emedh emedh. 11160 amedh amedh. 11161 ehelper1 ehelperh. 11162 ahelper1 ahelperh. 11163 ehhmemb1 ehhmembh. 11164 ahhmemb1 ahhmembh. 216 The SAS System 15:07 Thursday, June 21, 2012 11165 ehelper2 ehelperk. 11166 ahelper2 ahelperk. 11167 ehhmemb2 ehhmembk. 11168 ahhmemb2 ahhmembk. 11169 ehowlong ehowlong. 11170 ahowlong ahowlong. 11171 epayhelp epayhelp. 11172 apayhelp apayhelp. 11173 tpayamt tpayamt. 11174 apayamt apayamt. 11175 econd1 econd1l. 11176 acond1 acond1l. 11177 econd2 econd2l. 11178 econd3 econd3l. 11179 econdph1 econdpht. 11180 acondph1 acondpht. 11181 econdph2 econdphk. 11182 econdph3 econdphl. 11183 emotorv emotorv. 11184 amotorv amotorv. 11185 emain1 emain1l. 11186 amain1 amain1l. 11187 tyear1 tyear1l. 11188 ayear1 ayear1l. 11189 emonth1 emonth1l. 11190 amonth1 amonth1l. 11191 elast12m elast12m. 11192 alast12m alast12m. 11193 eldis eldis. 11194 aldis aldis. 11195 emr emr. 11196 amr amr. 11197 edevdis edevdis. 11198 adevdis adevdis. 11199 ealz ealz. 11200 aalz aalz. 11201 eotherm eotherm. 11202 aotherm aotherm. 11203 eanxious eanxious. 11204 aanxious aanxious. 11205 esocial esocial. 11206 asocial asocial. 11207 ectrate ectrate. 11208 actrate actrate. 11209 ecope ecope. 11210 acope acope. 11211 eintrfer eintrfer. 11212 aintrfer aintrfer. 11213 ejobdif ejobdif. 11214 ajobdif ajobdif. 11215 ejobcant ejobcant. 11216 ajobcant ajobcant. 11217 ehwrkdif ehwrkdif. 11218 ahwrkdif ahwrkdif. 11219 ehwrkno ehwrkno. 11220 ahwrkno ahwrkno. 11221 econdw1 econdw1l. 11222 acondw1 acondw1l. 217 The SAS System 15:07 Thursday, June 21, 2012 11223 econdw2 econdw2l. 11224 econdw3 econdw3l. 11225 emain2 emain2l. 11226 amain2 amain2l. 11227 eapplyss eapplyss. 11228 aapplyss aapplyss. 11229 ecompute ecompute. 11230 acompute acompute. 11231 ecmphome ecmphome. 11232 acmphome acmphome. 11233 ecmpwork ecmpwork. 11234 acmpwork acmpwork. 11235 ecmpschl ecmpschl. 11236 acmpschl acmpschl. 11237 eintrnet eintrnet. 11238 aintrnet aintrnet. 11239 einthome einthome. 11240 ainthome ainthome. 11241 eintwork eintwork. 11242 aintwork aintwork. 11243 eintschl eintschl. 11244 aintschl aintschl. 11245 eintlibr eintlibr. 11246 aintlibr aintlibr. 11247 eintccen eintccen. 11248 aintccen aintccen. 11249 eintsome eintsome. 11250 aintsome aintsome. 11251 eintothr eintothr. 11252 aintothr aintothr. 11253 eicourse eicourse. 11254 aicourse aicourse. 11255 eihealth eihealth. 11256 aihealth aihealth. 11257 eigovern eigovern. 11258 aigovern aigovern. 11259 eisrchjb eisrchjb. 11260 aisrchjb aisrchjb. 11261 ronline ronline. 11262 aonline aonline. 11263 eintstil eintstil. 11264 aintstil aintstil. 11265 rdisab rdisab. 11266 epcdunv epcdunv. 11267 eddelay eddelay. 11268 addelay addelay. 11269 earmleg earmleg. 11270 aarmleg aarmleg. 11271 erunplay erunplay. 11272 arunplay arunplay. 11273 eskoolwk eskoolwk. 11274 askoolwk askoolwk. 11275 especed especed. 11276 aspeced aspeced. 11277 espednow espednow. 11278 aspednow aspednow. 11279 elerndis elerndis. 11280 alerndis alerndis. 218 The SAS System 15:07 Thursday, June 21, 2012 11281 ekmr ekmr. 11282 akmr akmr. 11283 ekdevdis ekdevdis. 11284 akdevdis akdevdis. 11285 eadhd eadhd. 11286 aadhd aadhd. 11287 eotherdc eotherdc. 11288 aotherdc aotherdc. 11289 eadhdmed eadhdmed. 11290 aadhdmed aadhdmed. 11291 ekcane ekcane. 11292 akcane akcane. 11293 ekwchair ekwchair. 11294 akwchair akwchair. 11295 ekhearad ekhearad. 11296 akhearad akhearad. 11297 ekcane6 ekcane6l. 11298 akcane6 akcane6l. 11299 ekseedif ekseedif. 11300 akseedif akseedif. 11301 ekseenot ekseenot. 11302 akseenot akseenot. 11303 ekheardf ekheardf. 11304 akheardf akheardf. 11305 ekhearnt ekhearnt. 11306 akhearnt akhearnt. 11307 ekspechd ekspechd. 11308 akspechd akspechd. 11309 ekspechc ekspechc. 11310 akspechc akspechc. 11311 esports esports. 11312 asports asports. 11313 ekindif ekindif. 11314 akindif akindif. 11315 ekinhelp ekinhelp. 11316 akinhelp akinhelp. 11317 ekbeddif ekbeddif. 11318 akbeddif akbeddif. 11319 ekbedhlp ekbedhlp. 11320 akbedhlp akbedhlp. 11321 ekbathdf ekbathdf. 11322 akbathdf akbathdf. 11323 ekbathh ekbathh. 11324 akbathh akbathh. 11325 ekdressd ekdressd. 11326 akdressd akdressd. 11327 ekdressh ekdressh. 11328 akdressh akdressh. 11329 ekeatdif ekeatdif. 11330 akeatdif akeatdif. 11331 ekeathlp ekeathlp. 11332 akeathlp akeathlp. 11333 ektoiltd ektoiltd. 11334 aktoiltd aktoiltd. 11335 ektoilth ektoilth. 11336 aktoilth aktoilth. 11337 eksocial eksocial. 11338 aksocial aksocial. 219 The SAS System 15:07 Thursday, June 21, 2012 11339 ekcond1 ekcond1l. 11340 ekcond2 ekcond2l. 11341 ekcond3 ekcond3l. 11342 akcond akcond. 11343 ekmotorv ekmotorv. 11344 akmotorv akmotorv. 11345 rkdisab rkdisab. 11346 eahbunv eahbunv. 11347 ehealpla ehealpla. 11348 ahealpla ahealpla. 11349 enotplan enotplan. 11350 anotplan anotplan. 11351 enoelig1 enoelign. 11352 enoelig2 enoeligk. 11353 enoelig3 enoeligl. 11354 enoelig4 enoeligm. 11355 anoelig anoelig. 11356 edencove edencove. 11357 adencove adencove. 11358 enocov1 enocov1l. 11359 enocov2 enocov2l. 11360 enocov3 enocov3l. 11361 enocov4 enocov4l. 11362 enocov5 enocov5l. 11363 enocov6 enocov6l. 11364 enocov7 enocov7l. 11365 enocov8 enocov8l. 11366 enocov9 enocov9l. 11367 enocov10 enocov1e. 11368 anocov anocov. 11369 eoffemp1 eoffempv. 11370 eoffemp2 eoffempk. 11371 eoffemp3 eoffempl. 11372 eoffemp4 eoffempm. 11373 eoffemp5 eoffempn. 11374 aoffemp aoffemp. 11375 ewheheal ewheheal. 11376 awheheal awheheal. 11377 ecovmemb ecovmemb. 11378 acovmemb acovmemb. 11379 ewhocov1 ewhocovb. 11380 ewhocov2 ewhocovk. 11381 ewhocov3 ewhocovl. 11382 ewhocov4 ewhocovm. 11383 ewhocov5 ewhocovn. 11384 awhocov awhocov. 11385 echpnm01 echpnm0v. 11386 echcov01 echcov0v. 11387 achcov01 achcov0v. 11388 echpnm02 echpnm0k. 11389 echcov02 echcov0k. 11390 achcov02 achcov0k. 11391 echpnm03 echpnm0l. 11392 echcov03 echcov0l. 11393 achcov03 achcov0l. 11394 echpnm04 echpnm0m. 11395 echcov04 echcov0m. 11396 achcov04 achcov0m. 220 The SAS System 15:07 Thursday, June 21, 2012 11397 echpnm05 echpnm0n. 11398 echcov05 echcov0n. 11399 achcov05 achcov0n. 11400 echpnm06 echpnm0o. 11401 echcov06 echcov0o. 11402 achcov06 achcov0o. 11403 echpnm07 echpnm0p. 11404 echcov07 echcov0p. 11405 achcov07 achcov0p. 11406 tamtplan tamtplan. 11407 aamtplan aamtplan. 11408 etimplan etimplan. 11409 atimplan atimplan. 11410 etaxplan etaxplan. 11411 ataxplan ataxplan. 11412 epreminc epreminc. 11413 apreminc apreminc. 11414 eleftpla eleftpla. 11415 aleftpla aleftpla. 11416 eplanmed eplanmed. 11417 aplanmed aplanmed. 11418 eoppch1 eoppch1l. 11419 eoppch2 eoppch2l. 11420 eoppch3 eoppch3l. 11421 eoppch4 eoppch4l. 11422 eoppch5 eoppch5l. 11423 aoppch aoppch. 11424 ehashmo ehashmo. 11425 ahashmo ahashmo. 11426 esigndoc esigndoc. 11427 asigndoc asigndoc. 11428 ebookdoc ebookdoc. 11429 abookdoc abookdoc. 11430 ewhoref ewhoref. 11431 awhoref awhoref. 11432 eoptions eoptions. 11433 aoptions aoptions. 11434 echoice1 echoices. 11435 achoice1 achoices. 11436 echoice2 echoicek. 11437 achoice2 achoicek. 11438 eempmate eempmate. 11439 aempmate aempmate. 11440 ematcomp ematcomp. 11441 amatcomp amatcomp. 11442 econdnot econdnot. 11443 acondnot acondnot. 11444 eofflong eofflong. 11445 aofflong aofflong. 11446 ecovlong ecovlong. 11447 acovlong acovlong. 11448 eempcost eempcost. 11449 aempcost aempcost. 11450 tamtlong tamtlong. 11451 aamtlong aamtlong. 11452 etimeamt etimeamt. 11453 atimeamt atimeamt. 11454 eretheal eretheal. 221 The SAS System 15:07 Thursday, June 21, 2012 11455 aretheal aretheal. 11456 eretcont eretcont. 11457 aretcont aretcont. 11458 eretpays eretpays. 11459 aretpays aretpays. 11460 eretplan eretplan. 11461 aretplan aretplan. 11462 ewhopln1 ewhoplnn. 11463 ewhopln2 ewhoplnk. 11464 ewhopln3 ewhoplnl. 11465 ewhopln4 ewhoplnm. 11466 ewhopln5 ewhoplno. 11467 awhopln awhopln. 11468 epaidjob epaidjob. 11469 apaidjob apaidjob. 11470 eformemp eformemp. 11471 aformemp aformemp. 11472 elastcov elastcov. 11473 alastcov alastcov. 11474 econleft econleft. 11475 aconleft aconleft. 11476 econtret econtret. 11477 acontret acontret. 11478 ewhyno1 ewhyno1l. 11479 ewhyno2 ewhyno2l. 11480 ewhyno3 ewhyno3l. 11481 ewhyno4 ewhyno4l. 11482 ewhyno5 ewhyno5l. 11483 ewhyno6 ewhyno6l. 11484 ewhyno7 ewhyno7l. 11485 ewhyno8 ewhyno8l. 11486 ewhyno9 ewhyno9l. 11487 ewhyno10 ewhyno1t. 11488 ewhyno11 ewhyno1k. 11489 ewhyno12 ewhyno1m. 11490 ewhyno13 ewhyno1n. 11491 awhyno awhyno. 11492 tleftjob tleftjob. 11493 aleftjob aleftjob. 11494 eyearemp eyearemp. 11495 ayearemp ayearemp. 11496 emnthemp emnthemp. 11497 amnthemp amnthemp. 11498 ecovunio ecovunio. 11499 acovunio acovunio. 11500 thbind thbind. 11501 thbocc thbocc. 11502 eempljob eempljob. 11503 aempljob aempljob. 11504 egovrnmt egovrnmt. 11505 agovrnmt agovrnmt. 11506 eemptype eemptype. 11507 aemptype aemptype. 11508 tendsala tendsala. 11509 aendsala aendsala. 11510 temploca temploca. 11511 aemploca aemploca. 11512 efewer20 efewer2a. 222 The SAS System 15:07 Thursday, June 21, 2012 11513 afewer20 afewer2a. 11514 eexmedic eexmedic. 11515 aexmedic aexmedic. 11516 epostmed epostmed. 11517 apostmed apostmed. 11518 eawbunv eawbunv. 11519 radwash radwash. 11520 aadwash aadwash. 11521 raddryr raddryr. 11522 aaddryr aaddryr. 11523 eaddish eaddish. 11524 aaddish aaddish. 11525 eadrefr eadrefr. 11526 aadrefr aadrefr. 11527 eadfrz eadfrz. 11528 aadfrz aadfrz. 11529 eadtelv eadtelv. 11530 aadtelv aadtelv. 11531 eadstov eadstov. 11532 aadstov aadstov. 11533 eadmicr eadmicr. 11534 aadmicr aadmicr. 11535 eadvcr eadvcr. 11536 aadvcr aadvcr. 11537 eadair eadair. 11538 aadair aadair. 11539 eadcomp eadcomp. 11540 aadcomp aadcomp. 11541 eadcell eadcell. 11542 aadcell aadcell. 11543 radphon radphon. 11544 aadphon aadphon. 11545 tahroom tahroom. 11546 aahroom aahroom. 11547 eahpest eahpest. 11548 eahleak eahleak. 11549 eahwind eahwind. 11550 eahwire eahwire. 11551 eahplum eahplum. 11552 eahcrac eahcrac. 11553 eahhole eahhole. 11554 aahouse aahouse. 11555 eahrepr eahrepr. 11556 aahrepr aahrepr. 11557 eahspac eahspac. 11558 aahspac aahspac. 11559 eahfurn eahfurn. 11560 aahfurn aahfurn. 11561 eahwarm eahwarm. 11562 aahwarm aahwarm. 11563 eahcool eahcool. 11564 aahcool aahcool. 11565 eahpriv eahpriv. 11566 aahpriv aahpriv. 11567 eahsat eahsat. 11568 aahsat aahsat. 11569 rahmove rahmove. 11570 aahmove aahmove. 223 The SAS System 15:07 Thursday, June 21, 2012 11571 eacwalk eacwalk. 11572 aacwalk aacwalk. 11573 eacstay eacstay. 11574 aacstay aacstay. 11575 eacwith eacwith. 11576 aacwith aacwith. 11577 eacarry eacarry. 11578 aacarry aacarry. 11579 eacnsaf eacnsaf. 11580 aacnsaf aacnsaf. 11581 eachsaf eachsaf. 11582 aachsaf aachsaf. 11583 racwdog racwdog. 11584 aacwdog aacwdog. 11585 eacalrm eacalrm. 11586 aacalrm aacalrm. 11587 racmove racmove. 11588 aacmove aacmove. 11589 eantraf eantraf. 11590 eanstrt eanstrt. 11591 eantrsh eantrsh. 11592 eanaban eanaban. 11593 eanind eanind. 11594 eanodor eanodor. 11595 aancond aancond. 11596 eanghbr eanghbr. 11597 aanghbr aanghbr. 11598 eansat eansat. 11599 aansat aansat. 11600 ranmove ranmove. 11601 aanmove aanmove. 11602 eapschl eapschl. 11603 aapschl aapschl. 11604 eappriv eappriv. 11605 aappriv aappriv. 11606 eapmagn eapmagn. 11607 aapmagn aapmagn. 11608 eappubs eappubs. 11609 aappubs aappubs. 11610 eaphoms eaphoms. 11611 aaphoms aaphoms. 11612 eapnosc eapnosc. 11613 aapnosc aapnosc. 11614 eapdiff eapdiff. 11615 aapdiff aapdiff. 11616 eaphosp eaphosp. 11617 aaphosp aaphosp. 11618 eapolic eapolic. 11619 aapolic aapolic. 11620 eapfire eapfire. 11621 aapfire aapfire. 11622 eaptran eaptran. 11623 aaptran aaptran. 11624 eapsat eapsat. 11625 aapsat aapsat. 11626 rapmove rapmove. 11627 aapmove aapmove. 11628 eabmeet eabmeet. 224 The SAS System 15:07 Thursday, June 21, 2012 11629 aabmeet aabmeet. 11630 eabrent eabrent. 11631 aabrent aabrent. 11632 rabrhlp1 rabrhlpt. 11633 rabrhlp2 rabrhlpk. 11634 rabrhlp3 rabrhlpl. 11635 rabrhlp4 rabrhlpm. 11636 rabrhlp5 rabrhlpn. 11637 aabrhlp aabrhlp. 11638 eabevct eabevct. 11639 aabevct aabevct. 11640 rabehlp1 rabehlpt. 11641 rabehlp2 rabehlpk. 11642 rabehlp3 rabehlpl. 11643 rabehlp4 rabehlpm. 11644 rabehlp5 rabehlpn. 11645 aabehlp aabehlp. 11646 eabgas eabgas. 11647 aabgas aabgas. 11648 rabghlp1 rabghlps. 11649 rabghlp2 rabghlpk. 11650 rabghlp3 rabghlpl. 11651 rabghlp4 rabghlpm. 11652 rabghlp5 rabghlpn. 11653 aabghlp aabghlp. 11654 eabcut eabcut. 11655 aabcut aabcut. 11656 rabchlp1 rabchlpt. 11657 rabchlp2 rabchlpk. 11658 rabchlp3 rabchlpl. 11659 rabchlp4 rabchlpm. 11660 rabchlp5 rabchlpn. 11661 aabchlp aabchlp. 11662 eabphon eabphon. 11663 aabphon aabphon. 11664 rabphlp1 rabphlpn. 11665 rabphlp2 rabphlpk. 11666 rabphlp3 rabphlpl. 11667 rabphlp4 rabphlpm. 11668 rabphlp5 rabphlpo. 11669 aabphlp aabphlp. 11670 eabdoct eabdoct. 11671 aabdoct aabdoct. 11672 rabdhlp1 rabdhlpt. 11673 rabdhlp2 rabdhlpk. 11674 rabdhlp3 rabdhlpl. 11675 rabdhlp4 rabdhlpm. 11676 rabdhlp5 rabdhlpn. 11677 aabdhlp aabdhlp. 11678 eabdent eabdent. 11679 aabdent aabdent. 11680 rabthlp1 rabthlpt. 11681 rabthlp2 rabthlpk. 11682 rabthlp3 rabthlpl. 11683 rabthlp4 rabthlpm. 11684 rabthlp5 rabthlpn. 11685 aabthlp aabthlp. 11686 eahlpfm eahlpfm. 225 The SAS System 15:07 Thursday, June 21, 2012 11687 aahlpfm aahlpfm. 11688 eahlpfr eahlpfr. 11689 aahlpfr aahlpfr. 11690 eahlpag eahlpag. 11691 aahlpag aahlpag. 11692 eafood1 eafood1l. 11693 aafood1 aafood1l. 11694 eafdm1 eafdm1l. 11695 eafdm2 eafdm2l. 11696 eafdm3 eafdm3l. 11697 eafdm4 eafdm4l. 11698 eafdm5 eafdm5l. 11699 aafdm aafdm. 11700 eaflast eaflast. 11701 aaflast aaflast. 11702 eafbaln eafbaln. 11703 aafbaln aafbaln. 11704 eafchld eafchld. 11705 aafchld aafchld. 11706 eafskip eafskip. 11707 aafskip aafskip. 11708 eafless eafless. 11709 aafless aafless. 11710 eafday eafday. 11711 aafday aafday. 11712 ; NOTE: There were 6 observations read from the data set LIBRARY.SIPPP08PUTM6. NOTE: The PROCEDURE PRINT printed pages 1-33. NOTE: PROCEDURE PRINT used (Total process time): real time 0.40 seconds cpu time 0.37 seconds 11713 proc contents data=library.sippp08putm6; 11714 11715 ** Copyright 2011 shared by the National Bureau of Economic Research and Jean Roth ; 11716 11717 ** National Bureau of Economic Research. ; 11718 ** 1050 Massachusetts Avenue ; 11719 ** Cambridge, MA 02138 ; 11720 ** jroth@nber.org ; 11721 11722 ** This program and all programs referenced in it are free software. You ; 11723 ** can redistribute the program or modify it under the terms of the GNU ; 11724 ** General Public License as published by the Free Software Foundation; 11725 ** either version 2 of the License, or (at your option) any later version. ; 11726 11727 ** This program is distributed in the hope that it will be useful, ; 11728 ** but WITHOUT ANY WARRANTY, without even the implied warranty of ; 11729 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; 11730 ** GNU General Public License for more details. ; 11731 11732 ** You should have received a copy of the GNU General Public License ; 11733 ** along with this program, if not, write to the Free Software ; 11734 ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. ; NOTE: The PROCEDURE CONTENTS printed pages 34-58. NOTE: PROCEDURE CONTENTS used (Total process time): 226 The SAS System 15:07 Thursday, June 21, 2012 real time 0.01 seconds cpu time 0.01 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 8.13 seconds cpu time 4.14 seconds