1 The SAS System 11:54 Thursday, June 7, 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.32-38-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.20 seconds cpu time 0.03 seconds 1 *options obs=100 ; 2 options nocenter ; 3 4 **------------------------------------------------; 5 ** by Jean Roth Thu Jun 7 11:54:08 EDT 2012 6 ** This program reads the 2008 SIPP Wave 8 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/p08putm8.zip "; 24 25 * The following line should contain the name of the SAS dataset ; 26 2 The SAS System 11:54 Thursday, June 7, 2012 27 %let dataset = sippp08putm8 ; 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 epwsunv length=3 label="WS: Universe indicator."; 70 attrib ewsempct length=3 label="WS: Number of employers"; 71 attrib awsempct length=3 label="WS: Allocation flag for EWSEMPCT"; 72 attrib ewseno1 length=3 label="WS: Employer Number"; 73 attrib ewsbno1 length=3 label="WS: Business Number"; 74 attrib ewseno2 length=3 label="WS: Employer Number"; 75 attrib ewsbno2 length=3 label="WS: Business Number"; 76 attrib ewshrs1 length=3 label="WS: Number of hours worked per day in job1"; 77 attrib awshrs1 length=3 label="WS: Allocation flag for EWSHRS1"; 78 attrib ewsdys1 length=3 label="WS: Days a week worked in job1"; 79 attrib awsdys1 length=3 label="WS: Allocation flag for EWSDY1"; 80 attrib ewsday11 length=3 label="WS: Worked Sundays in job 1"; 81 attrib awsday11 length=3 label="WS: Allocation flag for EWSDAY11"; 82 attrib ewsday12 length=3 label="WS: Worked Mondays in job 1"; 83 attrib awsday12 length=3 label="WS: Allocation flag for EWSDAY12"; 84 attrib ewsday13 length=3 label="WS: Worked Tuesdays in job 1"; 3 The SAS System 11:54 Thursday, June 7, 2012 85 attrib awsday13 length=3 label="WS: Allocation flag for EWSDAY13"; 86 attrib ewsday14 length=3 label="WS: Worked Wednesdays in job 1"; 87 attrib awsday14 length=3 label="WS: Allocation flag for EWSDAY14"; 88 attrib ewsday15 length=3 label="WS: Worked Thursdays in job 1"; 89 attrib awsday15 length=3 label="WS: Allocation flag for EWSDAY15"; 90 attrib ewsday16 length=3 label="WS: Worked Fridays in job 1"; 91 attrib awsday16 length=3 label="WS: Allocation flag for EWSDAY16"; 92 attrib ewsday17 length=3 label="WS: Worked Saturdays in job 1"; 93 attrib awsday17 length=3 label="WS: Allocation flag for EWSDAY17"; 94 attrib ewsbeg1 length=4 label="WS: Time of day work began in job 1"; 95 attrib awsbeg1 length=3 label="WS: Allocation flag for EWSBEG1"; 96 attrib ewsbegm1 length=3 label="WS: AM/PM Marker for time of day work began"; 97 attrib awsbegm1 length=3 label="WS: Allocation flag for EWSBEGM1"; 98 attrib ewsend1 length=4 label="WS: Time of day work ended in job 1"; 99 attrib awsend1 length=3 label="WS: Allocation flag for EWSEND1"; 100 attrib ewsendm1 length=3 label="WS: AM/PM Marker for time work ended in job 1"; 101 attrib awsendm1 length=3 label="WS: Allocation flag for EWSENDM1"; 102 attrib ewshmwk1 length=3 label="WS: Worked only at home in job 1"; 103 attrib awshmwk1 length=3 label="WS: Allocation flag for EWSHMWK1"; 104 attrib ewsdy11 length=3 label="WS: Worked at home on Sundays in job1"; 105 attrib awsdy11 length=3 label="WS: Allocation flag for EWSDY11"; 106 attrib ewsdy12 length=3 label="WS: Worked at home on Mondays in job1"; 107 attrib awsdy12 length=3 label="WS: Allocation flag for EWSDY12"; 108 attrib ewsdy13 length=3 label="WS: Worked at home on Tuesdays in job1"; 109 attrib awsdy13 length=3 label="WS: Allocation flag for EWSDY13"; 110 attrib ewsdy14 length=3 label="WS: Worked at home on Wednesdays in job1"; 111 attrib awsdy14 length=3 label="WS: Allocation flag for EWSDY14"; 112 attrib ewsdy15 length=3 label="WS: Worked at home on Thursdays in job1"; 113 attrib awsdy15 length=3 label="WS: Allocation flag for EWSDY15"; 114 attrib ewsdy16 length=3 label="WS: Worked at home on Fridays in job1"; 115 attrib awsdy16 length=3 label="WS: Allocation flag for EWSDY16"; 116 attrib ewsdy17 length=3 label="WS: Worked at home on Saturdays in job1"; 117 attrib awsdy17 length=3 label="WS: Allocation flag for EWSDY17"; 118 attrib ewsjob1 length=3 label="WS: Type of schedule work for job 1"; 119 attrib awsjob1 length=3 label="WS: Allocation flag for EWSJOB1"; 120 attrib ewsmnr1 length=3 label="WS: Reason for type of work schedule- job 1"; 121 attrib awsmnr1 length=3 label="WS: Allocation flag for EWSMNR1"; 122 attrib ewshrs2 length=3 label="WS: Number of hours per day in job2"; 123 attrib awshrs2 length=3 label="WS: Allocation flag for EWSHRS2"; 124 attrib ewsdys2 length=3 label="WS: Days a week worked in job2"; 125 attrib awsdys2 length=3 label="WS: Allocation flag for EWSDY2"; 126 attrib ewsday21 length=3 label="WS: Worked Sundays in job 2"; 127 attrib awsday21 length=3 label="WS: Allocation flag for EWSDAY21"; 128 attrib ewsday22 length=3 label="WS: Worked Mondays in job 2"; 129 attrib awsday22 length=3 label="WS: Allocation flag for EWSDAY22"; 130 attrib ewsday23 length=3 label="WS: Worked Tuesdays in job 2"; 131 attrib awsday23 length=3 label="WS: Allocation flag for EWSDAY23"; 132 attrib ewsday24 length=3 label="WS: Worked Wednesdays in job 2"; 133 attrib awsday24 length=3 label="WS: Allocation flag for EWSDAY24"; 134 attrib ewsday25 length=3 label="WS: Worked Thursdays in job 2"; 135 attrib awsday25 length=3 label="WS: Allocation flag for EWSDAY25"; 136 attrib ewsday26 length=3 label="WS: Worked Fridays in job 2"; 137 attrib awsday26 length=3 label="WS: Allocation flag for EWSDAY26"; 138 attrib ewsday27 length=3 label="WS: Worked Saturdays in job 2"; 139 attrib awsday27 length=3 label="WS: Allocation flag for EWSDAY27"; 140 attrib ewsbeg2 length=4 label="WS: Time of day began work in job 2"; 141 attrib awsbeg2 length=3 label="WS: Allocation flag for EWSBEG2"; 142 attrib ewsbegm2 length=3 label="WS: AM/PM Marker for time of day work began"; 4 The SAS System 11:54 Thursday, June 7, 2012 143 attrib awsbegm2 length=3 label="WS: Allocation flag for EWSBEGM2"; 144 attrib ewsend2 length=4 label="WS: Time of day work ended in job 2"; 145 attrib awsend2 length=3 label="WS: Allocation flag for EWSEND2"; 146 attrib ewsendm2 length=3 label="WS: AM/PM Marker for time work ended in job 2"; 147 attrib awsendm2 length=3 label="WS: Allocation flag for EWSENDM2"; 148 attrib ewshmwk2 length=3 label="WS: Worked only at home in job 2"; 149 attrib awshmwk2 length=3 label="WS: Allocation flag for EWSHMWK2"; 150 attrib ewsdy21 length=3 label="WS: Worked at home on Sundays in job2"; 151 attrib awsdy21 length=3 label="WS: Allocation flag for EWSDY21"; 152 attrib ewsdy22 length=3 label="WS: Worked at home on Mondays in job2"; 153 attrib awsdy22 length=3 label="WS: Allocation flag for EWSDY22"; 154 attrib ewsdy23 length=3 label="WS: Worked at home on Tuesdays in job2"; 155 attrib awsdy23 length=3 label="WS: Allocation flag for EWSDY23"; 156 attrib ewsdy24 length=3 label="WS: Worked at home on Wednesdays in job2"; 157 attrib awsdy24 length=3 label="WS: Allocation flag for EWSDY24"; 158 attrib ewsdy25 length=3 label="WS: Worked at home on Thursdays in job2"; 159 attrib awsdy25 length=3 label="WS: Allocation flag for EWSDY25"; 160 attrib ewsdy26 length=3 label="WS: Worked at home on Fridays in job2"; 161 attrib awsdy26 length=3 label="WS: Allocation flag for EWSDY26"; 162 attrib ewsdy27 length=3 label="WS: Worked at home on Saturdays in job2"; 163 attrib awsdy27 length=3 label="WS: Allocation flag for EWSDY27"; 164 attrib ewsjob2 length=3 label="WS: Type of schedule work for job 2"; 165 attrib awsjob2 length=3 label="WS: Allocation flag for EWSJOB2"; 166 attrib ewsmnr2 length=3 label="WS: Reason for type of work schedule- job 2"; 167 attrib awsmnr2 length=3 label="WS: Allocation flag for EWSMNR2"; 168 attrib eccunv length=3 label="CC: Universe indicator."; 169 attrib ehrwksch length=3 label="CC: Hours per week spent in school"; 170 attrib ahrwksch length=3 label="CC: Allocation flag for EHRWKSCH"; 171 attrib rrhrswk length=3 label="CC: Recoded hours worked or attended school"; 172 attrib ehrwkjob length=3 label="CC: Hours spent looking for a job"; 173 attrib ahrwkjob length=3 label="CC: Allocation flag for EHRWKJOB"; 174 attrib eccpnuma length=$4 label="CC: Person number of YOUNGEST child"; 175 attrib eccpnumb length=$4 label="CC: Person number of 2nd YOUNGEST child"; 176 attrib eccpnumc length=$4 label="CC: Person number of 3rd YOUNGEST child"; 177 attrib eccpnumd length=$4 label="CC: Person number of 4th YOUNGEST child"; 178 attrib eccpnume length=$4 label="CC: Person number of 5th YOUNGEST child"; 179 attrib eccagea length=3 label="CC: Age of the YOUNGEST child"; 180 attrib eccageb length=3 label="CC: Age of the 2nd YOUNGEST child"; 181 attrib eccagec length=3 label="CC: Age of the 3rd YOUNGEST child"; 182 attrib eccaged length=3 label="CC: Age of the 4th YOUNGEST child"; 183 attrib eccagee length=3 label="CC: Age of the 5th YOUNGEST child"; 184 attrib eckd01a length=3 label="CC: Arrangement of other parent or stepparent"; 185 attrib eckd01b length=3 label="CC: Arrangement of other parent or stepparent"; 186 attrib eckd01c length=3 label="CC: Arrangement of other parent or stepparent"; 187 attrib eckd01d length=3 label="CC: Arrangement of other parent or stepparent"; 188 attrib eckd01e length=3 label="CC: Arrangement of other parent or stepparent"; 189 attrib eckd02a length=3 label="CC: Arrangement of parent or guardian"; 190 attrib eckd02b length=3 label="CC: Arrangement of parent or guardian"; 191 attrib eckd02c length=3 label="CC: Arrangement of parent or guardian"; 192 attrib eckd02d length=3 label="CC: Arrangement of parent or guardian"; 193 attrib eckd02e length=3 label="CC: Arrangement of parent or guardian"; 194 attrib eckd03a length=3 label="CC: Arrangement of sibling age 15 or older"; 195 attrib eckd03b length=3 label="CC: Arrangement of sibling age 15 or older"; 196 attrib eckd03c length=3 label="CC: Arrangement of sibling age 15 or older"; 197 attrib eckd03d length=3 label="CC: Arrangement of sibling age 15 or older"; 198 attrib eckd03e length=3 label="CC: Arrangement of sibling age 15 or older"; 199 attrib eckd04a length=3 label="CC: Arrangement of sibling under age 15"; 200 attrib eckd04b length=3 label="CC: Arrangement of sibling under age 15"; 5 The SAS System 11:54 Thursday, June 7, 2012 201 attrib eckd04c length=3 label="CC: Arrangement of sibling under age 15"; 202 attrib eckd04d length=3 label="CC: Arrangement of sibling under age 15"; 203 attrib eckd04e length=3 label="CC: Arrangement of sibling under age 15"; 204 attrib eckd05a length=3 label="CC: Arrangement of grandparent"; 205 attrib eckd05b length=3 label="CC: Arrangement of grandparent"; 206 attrib eckd05c length=3 label="CC: Arrangement of grandparent"; 207 attrib eckd05d length=3 label="CC: Arrangement of grandparent"; 208 attrib eckd05e length=3 label="CC: Arrangement of grandparent"; 209 attrib eckd06a length=3 label="CC: Arrangement of any other relative"; 210 attrib eckd06b length=3 label="CC: Arrangement of any other relative"; 211 attrib eckd06c length=3 label="CC: Arrangement of any other relative"; 212 attrib eckd06d length=3 label="CC: Arrangement of any other relative"; 213 attrib eckd06e length=3 label="CC: Arrangement of any other relative"; 214 attrib eckd07a length=3 label="CC: Arrangement of family day care provider"; 215 attrib eckd07b length=3 label="CC: Arrangement of family day care provider"; 216 attrib eckd07c length=3 label="CC: Arrangement of family day care provider"; 217 attrib eckd07d length=3 label="CC: Arrangement of family day care provider"; 218 attrib eckd07e length=3 label="CC: Arrangement of family day care provider"; 219 attrib eckd08a length=3 label="CC: Arrangement of child or day care center"; 220 attrib eckd08b length=3 label="CC: Arrangement of child or day care center"; 221 attrib eckd08c length=3 label="CC: Arrangement of child or day care center"; 222 attrib eckd08d length=3 label="CC: Arrangement of child or day care center"; 223 attrib eckd08e length=3 label="CC: Arrangement of child or day care center"; 224 attrib eckd09a length=3 label="CC: Arrangement of nursery or preschool"; 225 attrib eckd09b length=3 label="CC: Arrangement of nursery or preschool"; 226 attrib eckd09c length=3 label="CC: Arrangement of nursery or preschool"; 227 attrib eckd09d length=3 label="CC: Arrangement of nursery or preschool"; 228 attrib eckd09e length=3 label="CC: Arrangement of nursery or preschool"; 229 attrib eckd10a length=3 label="CC: Arrangement of Head Start program"; 230 attrib eckd10b length=3 label="CC: Arrangement of Head Start program"; 231 attrib eckd10c length=3 label="CC: Arrangement of Head Start program"; 232 attrib eckd10d length=3 label="CC: Arrangement of Head Start program"; 233 attrib eckd10e length=3 label="CC: Arrangement of Head Start program"; 234 attrib eckd11a length=3 label="CC: Arrangement of a non-relative"; 235 attrib eckd11b length=3 label="CC: Arrangement of a non-relative"; 236 attrib eckd11c length=3 label="CC: Arrangement of a non-relative"; 237 attrib eckd11d length=3 label="CC: Arrangement of a non-relative"; 238 attrib eckd11e length=3 label="CC: Arrangement of a non-relative"; 239 attrib accarea length=3 label="CC: Allocation flag for the YOUNGEST child"; 240 attrib accareb length=3 label="CC: Allocation flag for the 2nd YOUNGEST child"; 241 attrib accarec length=3 label="CC: Allocation flag for the 3rd YOUNGEST child"; 242 attrib accared length=3 label="CC: Allocation flag for the 4th YOUNGEST child"; 243 attrib accaree length=3 label="CC: Allocation flag for the 5th YOUNGEST child"; 244 attrib ewhepara length=3 label="CC: Place other parent cared for YOUNGEST"; 245 attrib awhepara length=3 label="CC: Allocation flag for EWHEPARA"; 246 attrib ewheparb length=3 label="CC: Place other parent cared for 2nd YOUNGEST"; 247 attrib awheparb length=3 label="CC: Allocation flag for EWHEPARB"; 248 attrib ewheparc length=3 label="CC: Place other parent cared for 3rd YOUNGEST"; 249 attrib awheparc length=3 label="CC: Allocation flag for EWHEPARC"; 250 attrib ewhepard length=3 label="CC: Place other parent cared for 4th YOUNGEST"; 251 attrib awhepard length=3 label="CC: Allocation flag for EWHEPARD"; 252 attrib ewhepare length=3 label="CC: Place other parent cared for 5th YOUNGEST"; 253 attrib awhepare length=3 label="CC: Allocation flag for EWHEPARE"; 254 attrib eparhr1a length=3 label="CC: Hours other parent cared for YOUNGEST"; 255 attrib aparhr1a length=3 label="CC: Allocation flag for EPARHR1A"; 256 attrib eparhr1b length=3 label="CC: Hours other parent cared for 2nd YOUNGEST"; 257 attrib aparhr1b length=3 label="CC: Allocation flag for EPARHR1B"; 258 attrib eparhr1c length=3 label="CC: Hours other parent cared for 3rd YOUNGEST"; 6 The SAS System 11:54 Thursday, June 7, 2012 259 attrib aparhr1c length=3 label="CC: Allocation flag for EPARHR1C"; 260 attrib eparhr1d length=3 label="CC: Hours other parent cared for 4th YOUNGEST"; 261 attrib aparhr1d length=3 label="CC: Allocation flag for EPARHR1D"; 262 attrib eparhr1e length=3 label="CC: Hours other parent cared for 5th YOUNGEST"; 263 attrib aparhr1e length=3 label="CC: Allocation flag for EPARHR1E"; 264 attrib eparhr2a length=3 label="CC: Hours other parent cared for YOUNGEST"; 265 attrib aparhr2a length=3 label="CC: Allocation flag for EPARHR2A"; 266 attrib eparhr2b length=3 label="CC: Hours other parent cared for 2nd YOUNGEST"; 267 attrib aparhr2b length=3 label="CC: Allocation flag for EPARHR2B"; 268 attrib eparhr2c length=3 label="CC: Hours other parent cared for 3rd YOUNGEST"; 269 attrib aparhr2c length=3 label="CC: Allocation flag for EPARHR2C"; 270 attrib eparhr2d length=3 label="CC: Hours other parent cared for 4th YOUNGEST"; 271 attrib aparhr2d length=3 label="CC: Allocation flag for EPARHR2D"; 272 attrib eparhr2e length=3 label="CC: Hours other parent cared for 5th YOUNGEST"; 273 attrib aparhr2e length=3 label="CC: Allocation flag for EPARHR2E"; 274 attrib ewhselfa length=3 label="CC: Place the parent cared for the YOUNGEST"; 275 attrib awhselfa length=3 label="CC: Allocation flag for EWHSELFA"; 276 attrib ewhselfb length=3 label="CC: Place the parent cared for the 2nd"; 277 attrib awhselfb length=3 label="CC: Allocation flag for EWHSELFB"; 278 attrib ewhselfc length=3 label="CC: Place the parent cared for the 3rd"; 279 attrib awhselfc length=3 label="CC: Allocation flag for EWHSELFC"; 280 attrib ewhselfd length=3 label="CC: Place the parent cared for the 4th"; 281 attrib awhselfd length=3 label="CC: Allocation flag for EWHSELFD"; 282 attrib ewhselfe length=3 label="CC: Place the parent cared for the 5th"; 283 attrib awhselfe length=3 label="CC: Allocation flag for EWHSELFE"; 284 attrib eselfhra length=3 label="CC: Work hours parent cared for YOUNGEST child"; 285 attrib aselfhra length=3 label="CC: Allocation flag for ESELFHRA"; 286 attrib eselfhrb length=3 label="CC: Work hours parent cared for 2nd YOUNGEST"; 287 attrib aselfhrb length=3 label="CC: Allocation flag for ESELFHRB"; 288 attrib eselfhrc length=3 label="CC: Work hours parent cared for 3rd YOUNGEST"; 289 attrib aselfhrc length=3 label="CC: Allocation flag for ESELFHRC"; 290 attrib eselfhrd length=3 label="CC: Work hours parent cared for 4th YOUNGEST"; 291 attrib aselfhrd length=3 label="CC: Allocation flag for ESELFHRD"; 292 attrib eselfhre length=3 label="CC: Work hours parent cared for 5th YOUNGEST"; 293 attrib aselfhre length=3 label="CC: Allocation flag for ESELFHRE"; 294 attrib ewhsb15a length=3 label="CC: Place sibling age 15+ cared for YOUNGEST"; 295 attrib awhsb15a length=3 label="CC: Allocation flag for EWHSB15A"; 296 attrib ewhsb15b length=3 label="CC: Place sibling age 15+ cared for 2nd"; 297 attrib awhsb15b length=3 label="CC: Allocation flag for EWHSB15B"; 298 attrib ewhsb15c length=3 label="CC: Place sibling age 15+ cared for 3rd"; 299 attrib awhsb15c length=3 label="CC: Allocation flag for EWHSB15C"; 300 attrib ewhsb15d length=3 label="CC: Place sibling age 15+ cared for 4th"; 301 attrib awhsb15d length=3 label="CC: Allocation flag for EWHSB15D"; 302 attrib ewhsb15e length=3 label="CC: Place sibling age 15+ cared for 5th"; 303 attrib awhsb15e length=3 label="CC: Allocation flag for EWHSB15E"; 304 attrib ewhsbhra length=3 label="CC: Hours sibling age 15+ cared for YOUNGEST"; 305 attrib awhsbhra length=3 label="CC: Allocation flag for EWHSBHRA"; 306 attrib ewhsbhrb length=3 label="CC: Hours sibling age 15+ cared for 2nd"; 307 attrib awhsbhrb length=3 label="CC: Allocation flag for EWHSBHRB"; 308 attrib ewhsbhrc length=3 label="CC: Hours sibling age 15+ cared for 3rd"; 309 attrib awhsbhrc length=3 label="CC: Allocation flag for EWHSBHRC"; 310 attrib ewhsbhrd length=3 label="CC: Hours sibling age 15+ cared for 4th"; 311 attrib awhsbhrd length=3 label="CC: Allocation flag for EWHSBHRD"; 312 attrib ewhsbhre length=3 label="CC: Hours sibling age 15+ cared for 5th"; 313 attrib awhsbhre length=3 label="CC: Allocation flag for EWHSBHRE"; 314 attrib ehrsb15a length=3 label="CC: Work hours sibling age 15+ cared for"; 315 attrib ahrsb15a length=3 label="CC: Allocation flag for EHRSB15A"; 316 attrib ehrsb15b length=3 label="CC: Work hours sibling age 15+ cared for 2nd"; 7 The SAS System 11:54 Thursday, June 7, 2012 317 attrib ahrsb15b length=3 label="CC: Allocation flag for EHRSB15B"; 318 attrib ehrsb15c length=3 label="CC: Work hours sibling age 15+ cared for 3rd"; 319 attrib ahrsb15c length=3 label="CC: Allocation flag for EHRSB15C"; 320 attrib ehrsb15d length=3 label="CC: Work hours sibling age 15+ cared for 4th"; 321 attrib ahrsb15d length=3 label="CC: Allocation flag for EHRSB15D"; 322 attrib ehrsb15e length=3 label="CC: Work hours sibling age 15+ cared for 5th"; 323 attrib ahrsb15e length=3 label="CC: Allocation flag for EHRSB15E"; 324 attrib ewhsb14a length=3 label="CC: Place the sibling cared for the YOUNGEST"; 325 attrib awhsb14a length=3 label="CC: Allocation flag for EWHSB14A"; 326 attrib ewhsb14b length=3 label="CC: Place the sibling cared for the 2nd"; 327 attrib awhsb14b length=3 label="CC: Allocation flag for EWHSB14B"; 328 attrib ewhsb14c length=3 label="CC: Place the sibling cared for the 3rd"; 329 attrib awhsb14c length=3 label="CC: Allocation flag for EWHSB14C"; 330 attrib ewhsb14d length=3 label="CC: Place the sibling cared for the 4th"; 331 attrib awhsb14d length=3 label="CC: Allocation flag for EWHSB14D"; 332 attrib ewhsb14e length=3 label="CC: Place the sibling cared for the 5th"; 333 attrib awhsb14e length=3 label="CC: Allocation flag for EWHSB14E"; 334 attrib esb14hra length=3 label="CC: Hours the sibling cared for the YOUNGEST"; 335 attrib asb14hra length=3 label="CC: Allocation flag for ESB14HRA"; 336 attrib esb14hrb length=3 label="CC: Hours the sibling cared for 2nd YOUNGEST"; 337 attrib asb14hrb length=3 label="CC: Allocation flag for ESB14HRB"; 338 attrib esb14hrc length=3 label="CC: Hours the sibling cared for 3rd YOUNGEST"; 339 attrib asb14hrc length=3 label="CC: Allocation flag for ESB14HRC"; 340 attrib esb14hrd length=3 label="CC: Hours the sibling cared for 4th YOUNGEST"; 341 attrib asb14hrd length=3 label="CC: Allocation flag for ESB14HRD"; 342 attrib esb14hre length=3 label="CC: Hours the sibling cared for 5th YOUNGEST"; 343 attrib asb14hre length=3 label="CC: Allocation flag for ESB14HRE"; 344 attrib ehrsb14a length=3 label="CC: Work hours sibling cared for the YOUNGEST"; 345 attrib ahrsb14a length=3 label="CC: Allocation flag for EHRSB14A"; 346 attrib ehrsb14b length=3 label="CC: Work hours sibling cared for 2nd YOUNGEST"; 347 attrib ahrsb14b length=3 label="CC: Allocation flag for EHRSB14B"; 348 attrib ehrsb14c length=3 label="CC: Work hours sibling cared for 3rd YOUNGEST"; 349 attrib ahrsb14c length=3 label="CC: Allocation flag for EHRSB14C"; 350 attrib ehrsb14d length=3 label="CC: Work hours sibling cared for 4th YOUNGEST"; 351 attrib ahrsb14d length=3 label="CC: Allocation flag for EHRSB14D"; 352 attrib ehrsb14e length=3 label="CC: Work hours sibling cared for 5th YOUNGEST"; 353 attrib ahrsb14e length=3 label="CC: Allocation flag for EHRSB14E"; 354 attrib ewhgrana length=3 label="CC: Place grandparent cared for YOUNGEST child"; 355 attrib awhgrana length=3 label="CC: Allocation flag for EWHGRANA"; 356 attrib ewhgranb length=3 label="CC: Place grandparent cared for 2nd YOUNGEST"; 357 attrib awhgranb length=3 label="CC: Allocation flag for EWHGRANB"; 358 attrib ewhgranc length=3 label="CC: Place grandparent cared for 3rd YOUNGEST"; 359 attrib awhgranc length=3 label="CC: Allocation flag for EWHGRANC"; 360 attrib ewhgrand length=3 label="CC: Place grandparent cared for 4th YOUNGEST"; 361 attrib awhgrand length=3 label="CC: Allocation flag for EWHGRAND"; 362 attrib ewhgrane length=3 label="CC: Place grandparent cared for 5th YOUNGEST"; 363 attrib awhgrane length=3 label="CC: Allocation flag for EWHGRANE"; 364 attrib egranhra length=3 label="CC: Hours the grandparent cared for YOUNGEST"; 365 attrib agranhra length=3 label="CC: Allocation flag for EGRANHRA"; 366 attrib egranhrb length=3 label="CC: Hours grandparent cared for 2nd YOUNGEST"; 367 attrib agranhrb length=3 label="CC: Allocation flag for EGRANHRB"; 368 attrib egranhrc length=3 label="CC: Hours grandparent cared for 3rd YOUNGEST"; 369 attrib agranhrc length=3 label="CC: Allocation flag for EGRANHRC"; 370 attrib egranhrd length=3 label="CC: Hours grandparent cared for 4th YOUNGEST"; 371 attrib agranhrd length=3 label="CC: Allocation flag for EGRANHRD"; 372 attrib egranhre length=3 label="CC: Hours grandparent cared for 5th YOUNGEST"; 373 attrib agranhre length=3 label="CC: Allocation flag for EGRANHRE"; 374 attrib ehrgrana length=3 label="CC: Work hours grandparent cared for YOUNGEST"; 8 The SAS System 11:54 Thursday, June 7, 2012 375 attrib ahrgrana length=3 label="CC: Allocation flag for EHRGRANA"; 376 attrib ehrgranb length=3 label="CC: Work hours grandparent cared for 2nd"; 377 attrib ahrgranb length=3 label="CC: Allocation flag for EHRGRANB"; 378 attrib ehrgranc length=3 label="CC: Work hours grandparent cared for 3rd"; 379 attrib ahrgranc length=3 label="CC: Allocation flag for EHRGRANC"; 380 attrib ehrgrand length=3 label="CC: Work hours grandparent cared for 4th"; 381 attrib ahrgrand length=3 label="CC: Allocation flag for EHRGRAND"; 382 attrib ehrgrane length=3 label="CC: Work hours grandparent cared for 5th"; 383 attrib ahrgrane length=3 label="CC: Allocation flag for EHRGRANE"; 384 attrib epaygraa length=3 label="CC: Paid grandparent to care for the YOUNGEST"; 385 attrib apaygraa length=3 label="CC: Allocation flag for EPAYGRAA"; 386 attrib epaygrab length=3 label="CC: Paid grandparent to care for the 2nd"; 387 attrib apaygrab length=3 label="CC: Allocation flag for EPAYGRAB"; 388 attrib epaygrac length=3 label="CC: Paid grandparent to care for the 3rd"; 389 attrib apaygrac length=3 label="CC: Allocation flag for EPAYGRAC"; 390 attrib epaygrad length=3 label="CC: Paid grandparent to care for the 4th"; 391 attrib apaygrad length=3 label="CC: Allocation flag for EPAYGRAD"; 392 attrib epaygrae length=3 label="CC: Paid grandparent to care for the 5th"; 393 attrib apaygrae length=3 label="CC: Allocation flag for EPAYGRAE"; 394 attrib tamtgraa length=3 label="CC: Amount grandparent paid to watch YOUNGEST"; 395 attrib aamtgraa length=3 label="CC: Allocation flag for TAMTGRAA"; 396 attrib tamtgrab length=3 label="CC: Amount grandparent paid to watch 2nd"; 397 attrib aamtgrab length=3 label="CC: Allocation flag for TAMTGRAB"; 398 attrib tamtgrac length=3 label="CC: Amount grandparent paid to watch 3rd"; 399 attrib aamtgrac length=3 label="CC: Allocation flag for TAMTGRAC"; 400 attrib tamtgrad length=3 label="CC: Amount grandparent paid to watch 4th"; 401 attrib aamtgrad length=3 label="CC: Allocation flag for TAMTGRAD"; 402 attrib tamtgrae length=3 label="CC: Amount grandparent paid to watch 5th"; 403 attrib aamtgrae length=3 label="CC: Allocation flag for TAMTGRAE"; 404 attrib ewhrelaa length=3 label="CC: Place other relative cared for YOUNGEST"; 405 attrib awhrelaa length=3 label="CC: Allocation flag for EWHRELAA"; 406 attrib ewhrelab length=3 label="CC: Place other relative cared for 2nd"; 407 attrib awhrelab length=3 label="CC: Allocation flag for EWHRELAB"; 408 attrib ewhrelac length=3 label="CC: Place other relative cared for 3rd"; 409 attrib awhrelac length=3 label="CC: Allocation flag for EWHRELAC"; 410 attrib ewhrelad length=3 label="CC: Place other relative cared for 4th"; 411 attrib awhrelad length=3 label="CC: Allocation flag for EWHRELAD"; 412 attrib ewhrelae length=3 label="CC: Place other relative cared for 5th"; 413 attrib awhrelae length=3 label="CC: Allocation flag for EWHRELAE"; 414 attrib erelhr1a length=3 label="CC: Hours relative cared for the YOUNGEST"; 415 attrib arelhr1a length=3 label="CC: Allocation flag for ERELHR1A"; 416 attrib erelhr1b length=3 label="CC: Hours relative cared for the 2nd YOUNGEST"; 417 attrib arelhr1b length=3 label="CC: Allocation flag for ERELHR1B"; 418 attrib erelhr1c length=3 label="CC: Hours relative cared for the 3rd YOUNGEST"; 419 attrib arelhr1c length=3 label="CC: Allocation flag for ERELHR1C"; 420 attrib erelhr1d length=3 label="CC: Hours relative cared for the 4th YOUNGEST"; 421 attrib arelhr1d length=3 label="CC: Allocation flag for ERELHR1D"; 422 attrib erelhr1e length=3 label="CC: Hours relative cared for the 5th YOUNGEST"; 423 attrib arelhr1e length=3 label="CC: Allocation flag for ERELHR1E"; 424 attrib erelhr2a length=3 label="CC: Work hours relative cared for the"; 425 attrib arelhr2a length=3 label="CC: Allocation flag for ERELHR2A"; 426 attrib erelhr2b length=3 label="CC: Work hours relative cared for the 2nd"; 427 attrib arelhr2b length=3 label="CC: Allocation flag for ERELHR2B"; 428 attrib erelhr2c length=3 label="CC: Work hours relative cared for 3rd"; 429 attrib arelhr2c length=3 label="CC: Allocation flag for ERELHR2C"; 430 attrib erelhr2d length=3 label="CC: Work hours relative cared for 4th"; 431 attrib arelhr2d length=3 label="CC: Allocation flag for ERELHR2D"; 432 attrib erelhr2e length=3 label="CC: Work hours relative cared for 5th"; 9 The SAS System 11:54 Thursday, June 7, 2012 433 attrib arelhr2e length=3 label="CC: Allocation flag for ERELHR2E"; 434 attrib epayrela length=3 label="CC: Paid other relative to care for the"; 435 attrib apayrela length=3 label="CC: Allocation flag for EPAYRELA"; 436 attrib epayrelb length=3 label="CC: Paid other relative to care for 2nd"; 437 attrib apayrelb length=3 label="CC: Allocation flag for EPAYRELB"; 438 attrib epayrelc length=3 label="CC: Paid other relative to care for 3rd"; 439 attrib apayrelc length=3 label="CC: Allocation flag for EPAYRELC"; 440 attrib epayreld length=3 label="CC: Paid other relative to care for 4th"; 441 attrib apayreld length=3 label="CC: Allocation flag for EPAYRELD"; 442 attrib epayrele length=3 label="CC: Paid other relative to care for 5th"; 443 attrib apayrele length=3 label="CC: Allocation flag for EPAYRELE"; 444 attrib tamtrela length=3 label="CC: Amount relative paid to watch YOUNGEST"; 445 attrib aamtrela length=3 label="CC: Allocation flag for TAMTRELA"; 446 attrib tamtrelb length=3 label="CC: Amount relative paid to watch 2nd"; 447 attrib aamtrelb length=3 label="CC: Allocation flag for TAMTRELB"; 448 attrib tamtrelc length=3 label="CC: Amount relative paid to watch 3rd"; 449 attrib aamtrelc length=3 label="CC: Allocation flag for TAMTRELC"; 450 attrib tamtreld length=3 label="CC: Amount relative paid to watch 4th"; 451 attrib aamtreld length=3 label="CC: Allocation flag for TAMTRELD"; 452 attrib tamtrele length=3 label="CC: Amount relative paid to watch 5th"; 453 attrib aamtrele length=3 label="CC: Allocation flag for TAMTRELE"; 454 attrib ehrfam1a length=3 label="CC: Hours YOUNGEST child spent in family day"; 455 attrib ahrfam1a length=3 label="CC: Allocation flag for EHRFAM1A"; 456 attrib ehrfam1b length=3 label="CC: Hours 2nd YOUNGEST child spent in family"; 457 attrib ahrfam1b length=3 label="CC: Allocation flag for EHRFAM1B"; 458 attrib ehrfam1c length=3 label="CC: Hours 3rd YOUNGEST child spent in family"; 459 attrib ahrfam1c length=3 label="CC: Allocation flag for EHRFAM1C"; 460 attrib ehrfam1d length=3 label="CC: Hours 4th YOUNGEST child spent in family"; 461 attrib ahrfam1d length=3 label="CC: Allocation flag for EHRFAM1D"; 462 attrib ehrfam1e length=3 label="CC: Hours 5th YOUNGEST child spent in family"; 463 attrib ahrfam1e length=3 label="CC: Allocation flag for EHRFAM1E"; 464 attrib ehrfam2a length=3 label="CC: Work hours YOUNGEST child spent in family"; 465 attrib ahrfam2a length=3 label="CC: Allocation flag for EHRFAM2A"; 466 attrib ehrfam2b length=3 label="CC: Work hrs 2nd YOUNGEST child spent in"; 467 attrib ahrfam2b length=3 label="CC: Allocation flag for EHRFAM2B"; 468 attrib ehrfam2c length=3 label="CC: Work hrs 3rd YOUNGEST child spent in"; 469 attrib ahrfam2c length=3 label="CC: Allocation flag for EHRFAM2C"; 470 attrib ehrfam2d length=3 label="CC: Work hrs 4th YOUNGEST child spent in"; 471 attrib ahrfam2d length=3 label="CC: Allocation flag for EHRFAM2D"; 472 attrib ehrfam2e length=3 label="CC: Work hrs 5th YOUNGEST child spent in"; 473 attrib ahrfam2e length=3 label="CC: Allocation flag for EHRFAM2E"; 474 attrib epayfama length=3 label="CC: Paid for family day care for YOUNGEST"; 475 attrib apayfama length=3 label="CC: Allocation flag for EPAYFAMA"; 476 attrib epayfamb length=3 label="CC: Paid for family day care for 2nd YOUNGEST"; 477 attrib apayfamb length=3 label="CC: Allocation flag for EPAYFAMB"; 478 attrib epayfamc length=3 label="CC: Paid for family day care for 3rd YOUNGEST"; 479 attrib apayfamc length=3 label="CC: Allocation flag for EPAYFAMC"; 480 attrib epayfamd length=3 label="CC: Paid for family day care for 4th YOUNGEST"; 481 attrib apayfamd length=3 label="CC: Allocation flag for EPAYFAMD"; 482 attrib epayfame length=3 label="CC: Paid for family day care for 5th YOUNGEST"; 483 attrib apayfame length=3 label="CC: Allocation flag for EPAYFAME"; 484 attrib tamtfama length=3 label="CC: Amount paid family day care for YOUNGEST"; 485 attrib aamtfama length=3 label="CC: Allocation flag for TAMTFAMA"; 486 attrib tamtfamb length=3 label="CC: Amount paid family day care for 2nd"; 487 attrib aamtfamb length=3 label="CC: Allocation flag for TAMTFAMB"; 488 attrib tamtfamc length=3 label="CC: Amount paid family day care for 3rd"; 489 attrib aamtfamc length=3 label="CC: Allocation flag for TAMTFAMC"; 490 attrib tamtfamd length=3 label="CC: Amount paid family day care for 4th"; 10 The SAS System 11:54 Thursday, June 7, 2012 491 attrib aamtfamd length=3 label="CC: Allocation flag for TAMTFAMD"; 492 attrib tamtfame length=3 label="CC: Amount paid family day care for 5th"; 493 attrib aamtfame length=3 label="CC: Allocation flag for TAMTFAME"; 494 attrib ewhdayca length=3 label="CC: Place day care cared for YOUNGEST child"; 495 attrib awhdayca length=3 label="CC: Allocation flag for EWHDAYCA"; 496 attrib ewhdaycb length=3 label="CC: Place day care cared for 2nd YOUNGEST"; 497 attrib awhdaycb length=3 label="CC: Allocation flag for EWHDAYCB"; 498 attrib ewhdaycc length=3 label="CC: Place day care cared for 3rd YOUNGEST"; 499 attrib awhdaycc length=3 label="CC: Allocation flag for EWHDAYCC"; 500 attrib ewhdaycd length=3 label="CC: Place day care cared for 4th YOUNGEST"; 501 attrib awhdaycd length=3 label="CC: Allocation flag for EWHDAYCD"; 502 attrib ewhdayce length=3 label="CC: Place day care cared for 5th YOUNGEST"; 503 attrib awhdayce length=3 label="CC: Allocation flag for EWHDAYCE"; 504 attrib edayhrsa length=3 label="CC: Weekly hours YOUNGEST child was in day"; 505 attrib adayhrsa length=3 label="CC: Allocation flag for EDAYHRSA"; 506 attrib edayhrsb length=3 label="CC: Weekly hours 2nd YOUNGEST child was in"; 507 attrib adayhrsb length=3 label="CC: Allocation flag for EDAYHRSB"; 508 attrib edayhrsc length=3 label="CC: Weekly hours 3rd YOUNGEST child was in"; 509 attrib adayhrsc length=3 label="CC: Allocation flag for EDAYHRSC"; 510 attrib edayhrsd length=3 label="CC: Weekly hours 4th YOUNGEST child was in"; 511 attrib adayhrsd length=3 label="CC: Allocation flag for EDAYHRSD"; 512 attrib edayhrse length=3 label="CC: Weekly hours 5th YOUNGEST child was in"; 513 attrib adayhrse length=3 label="CC: Allocation flag for EDAYHRSE"; 514 attrib ehrdayca length=3 label="CC: Work hours the YOUNGEST child was at day"; 515 attrib ahrdayca length=3 label="CC: Allocation flag for EHRDAYCA"; 516 attrib ehrdaycb length=3 label="CC: Work hours the 2nd YOUNGEST child was at"; 517 attrib ahrdaycb length=3 label="CC: Allocation flag for EHRDAYCB"; 518 attrib ehrdaycc length=3 label="CC: Work hours the 3rd YOUNGEST child was at"; 519 attrib ahrdaycc length=3 label="CC: Allocation flag for EHRDAYCC"; 520 attrib ehrdaycd length=3 label="CC: Work hours the 4th YOUNGEST child was at"; 521 attrib ahrdaycd length=3 label="CC: Allocation flag for EHRDAYCD"; 522 attrib ehrdayce length=3 label="CC: Work hours the 5th YOUNGEST child was at"; 523 attrib ahrdayce length=3 label="CC: Allocation flag for EHRDAYCE"; 524 attrib epaydaya length=3 label="CC: Paid day care center to care for YOUNGEST"; 525 attrib apaydaya length=3 label="CC: Allocation flag for EPAYDAYA"; 526 attrib epaydayb length=3 label="CC: Paid day care center to care for 2nd"; 527 attrib apaydayb length=3 label="CC: Allocation flag for EPAYDAYB"; 528 attrib epaydayc length=3 label="CC: Paid day care center to care for 3rd"; 529 attrib apaydayc length=3 label="CC: Allocation flag for EPAYDAYC"; 530 attrib epaydayd length=3 label="CC: Paid day care center to care for 4th"; 531 attrib apaydayd length=3 label="CC: Allocation flag for EPAYDAYD"; 532 attrib epaydaye length=3 label="CC: Paid day care center to care for 5th"; 533 attrib apaydaye length=3 label="CC: Allocation flag for EPAYDAYE"; 534 attrib tamtdaya length=3 label="CC: Amount paid for day care for YOUNGEST"; 535 attrib aamtdaya length=3 label="CC: Allocation flag for TAMTDAYA"; 536 attrib tamtdayb length=3 label="CC: Amount paid for day care for 2nd YOUNGEST"; 537 attrib aamtdayb length=3 label="CC: Allocation flag for TAMTDAYB"; 538 attrib tamtdayc length=3 label="CC: Amount paid for day care for 3rd YOUNGEST"; 539 attrib aamtdayc length=3 label="CC: Allocation flag for TAMTDAYC"; 540 attrib tamtdayd length=3 label="CC: Amount paid for day care for 4th YOUNGEST"; 541 attrib aamtdayd length=3 label="CC: Allocation flag for TAMTDAYD"; 542 attrib tamtdaye length=3 label="CC: Amount paid for day care for 5th YOUNGEST"; 543 attrib aamtdaye length=3 label="CC: Allocation flag for TAMTDAYE"; 544 attrib ewhnursa length=3 label="CC: Place of nursery school for YOUNGEST child"; 545 attrib awhnursa length=3 label="CC: Allocation flag for EWHNURSA"; 546 attrib ewhnursb length=3 label="CC: Place of nursery school for 2nd YOUNGEST"; 547 attrib awhnursb length=3 label="CC: Allocation flag for EWHNURSB"; 548 attrib ewhnursc length=3 label="CC: Place of nursery school for 3rd YOUNGEST"; 11 The SAS System 11:54 Thursday, June 7, 2012 549 attrib awhnursc length=3 label="CC: Allocation flag for EWHNURSC"; 550 attrib ewhnursd length=3 label="CC: Place of nursery school for 4th YOUNGEST"; 551 attrib awhnursd length=3 label="CC: Allocation flag for EWHNURSD"; 552 attrib ewhnurse length=3 label="CC: Place of nursery school for 5th YOUNGEST"; 553 attrib awhnurse length=3 label="CC: Allocation flag for EWHNURSE"; 554 attrib enurhrsa length=3 label="CC: Hours the YOUNGEST child attended nursery"; 555 attrib anurhrsa length=3 label="CC: Allocation flag for ENURHRSA"; 556 attrib enurhrsb length=3 label="CC: Hours 2nd YOUNGEST child attended nursery"; 557 attrib anurhrsb length=3 label="CC: Allocation flag for ENURHRSB"; 558 attrib enurhrsc length=3 label="CC: Hours 3rd YOUNGEST child attended nursery"; 559 attrib anurhrsc length=3 label="CC: Allocation flag for ENURHRSC"; 560 attrib enurhrsd length=3 label="CC: Hours 4th YOUNGEST child attended nursery"; 561 attrib anurhrsd length=3 label="CC: Allocation flag for ENURHRSD"; 562 attrib enurhrse length=3 label="CC: Hours 5th YOUNGEST child attended nursery"; 563 attrib anurhrse length=3 label="CC: Allocation flag for ENURHRSE"; 564 attrib ehrnursa length=3 label="CC: Work hours YOUNGEST child spent at"; 565 attrib ahrnursa length=3 label="CC: Allocation flag for EHRNURSA"; 566 attrib ehrnursb length=3 label="CC: Work hours 2nd YOUNGEST child spent at"; 567 attrib ahrnursb length=3 label="CC: Allocation flag for EHRNURSB"; 568 attrib ehrnursc length=3 label="CC: Work hours 3rd YOUNGEST child spent at"; 569 attrib ahrnursc length=3 label="CC: Allocation flag for EHRNURSC"; 570 attrib ehrnursd length=3 label="CC: Work hours 4th YOUNGEST child spent at"; 571 attrib ahrnursd length=3 label="CC: Allocation flag for EHRNURSD"; 572 attrib ehrnurse length=3 label="CC: Work hours 5th YOUNGEST child spent at"; 573 attrib ahrnurse length=3 label="CC: Allocation flag for EHRNURSE"; 574 attrib epaynura length=3 label="CC: Paid nursery school to care for YOUNGEST"; 575 attrib apaynura length=3 label="CC: Allocation flag for EPAYNURA"; 576 attrib epaynurb length=3 label="CC: Paid nursery school to care for 2nd"; 577 attrib apaynurb length=3 label="CC: Allocation flag for EPAYNURB"; 578 attrib epaynurc length=3 label="CC: Paid nursery school to care for 3rd"; 579 attrib apaynurc length=3 label="CC: Allocation flag for EPAYNURC"; 580 attrib epaynurd length=3 label="CC: Paid nursery school to care for 4th"; 581 attrib apaynurd length=3 label="CC: Allocation flag for EPAYNURD"; 582 attrib epaynure length=3 label="CC: Paid nursery school to care for 5th"; 583 attrib apaynure length=3 label="CC: Allocation flag for EPAYNURE"; 584 attrib tamtnura length=3 label="CC: Amount paid for YOUNGEST child's nursery"; 585 attrib aamtnura length=3 label="CC: Allocation flag for TAMTNURA"; 586 attrib tamtnurb length=3 label="CC: Amount paid for 2nd YOUNGEST child's"; 587 attrib aamtnurb length=3 label="CC: Allocation flag for TAMTNURB"; 588 attrib tamtnurc length=3 label="CC: Amount paid for 3rd YOUNGEST child's"; 589 attrib aamtnurc length=3 label="CC: Allocation flag for TAMTNURC"; 590 attrib tamtnurd length=3 label="CC: Amount paid for 4th YOUNGEST child's"; 591 attrib aamtnurd length=3 label="CC: Allocation flag for TAMTNURD"; 592 attrib tamtnure length=3 label="CC: Amount paid for 5th YOUNGEST child's"; 593 attrib aamtnure length=3 label="CC: Allocation flag for TAMTNURE"; 594 attrib eheadhra length=3 label="CC: Hours YOUNGEST child attended Head Start"; 595 attrib aheadhra length=3 label="CC: Allocation flag for EHEADHRA"; 596 attrib eheadhrb length=3 label="CC: Hours 2nd YOUNGEST child attended Head"; 597 attrib aheadhrb length=3 label="CC: Allocation flag for EHEADHRB"; 598 attrib eheadhrc length=3 label="CC: Hours 3rd YOUNGEST child attended Head"; 599 attrib aheadhrc length=3 label="CC: Allocation flag for EHEADHRC"; 600 attrib eheadhrd length=3 label="CC: Hours 4th YOUNGEST child attended Head"; 601 attrib aheadhrd length=3 label="CC: Allocation flag for EHEADHRD"; 602 attrib eheadhre length=3 label="CC: Hours 5th YOUNGEST child attended Head"; 603 attrib aheadhre length=3 label="CC: Allocation flag for EHEADHRE"; 604 attrib ehrstara length=3 label="CC: Work hours YOUNGEST child attended Head"; 605 attrib ahrstara length=3 label="CC: Allocation flag for EHRSTARA"; 606 attrib ehrstarb length=3 label="CC: Work hours 2nd YOUNGEST child attended"; 12 The SAS System 11:54 Thursday, June 7, 2012 607 attrib ahrstarb length=3 label="CC: Allocation flag for EHRSTARB"; 608 attrib ehrstarc length=3 label="CC: Work hours 3rd YOUNGEST child attended"; 609 attrib ahrstarc length=3 label="CC: Allocation flag for EHRSTARC"; 610 attrib ehrstard length=3 label="CC: Work hours 4th YOUNGEST child attended"; 611 attrib ahrstard length=3 label="CC: Allocation flag for EHRSTARD"; 612 attrib ehrstare length=3 label="CC: Work hours 5th YOUNGEST child attended"; 613 attrib ahrstare length=3 label="CC: Allocation flag for EHRSTARE"; 614 attrib epaystaa length=3 label="CC: Paid Head Start for YOUNGEST child"; 615 attrib apaystaa length=3 label="CC: Allocation flag for EPAYSTAA"; 616 attrib epaystab length=3 label="CC: Paid Head Start for 2nd YOUNGEST child"; 617 attrib apaystab length=3 label="CC: Allocation flag for EPAYSTAB"; 618 attrib epaystac length=3 label="CC: Paid Head Start for 3rd YOUNGEST child"; 619 attrib apaystac length=3 label="CC: Allocation flag for EPAYSTAC"; 620 attrib epaystad length=3 label="CC: Paid Head Start for 4th YOUNGEST child"; 621 attrib apaystad length=3 label="CC: Allocation flag for EPAYSTAD"; 622 attrib epaystae length=3 label="CC: Paid Head Start for 5th YOUNGEST child"; 623 attrib apaystae length=3 label="CC: Allocation flag for EPAYSTAE"; 624 attrib tamtstaa length=3 label="CC: Amount paid to Head Start for YOUNGEST"; 625 attrib aamtstaa length=3 label="CC: Allocation flag for TAMTSTAA"; 626 attrib tamtstab length=3 label="CC: Amount paid to Head Start for 2nd"; 627 attrib aamtstab length=3 label="CC: Allocation flag for TAMTSTAB"; 628 attrib tamtstac length=3 label="CC: Amount paid to Head Start for 3rd"; 629 attrib aamtstac length=3 label="CC: Allocation flag for TAMTSTAC"; 630 attrib tamtstad length=3 label="CC: Amount paid to Head Start for 4th"; 631 attrib aamtstad length=3 label="CC: Allocation flag for TAMTSTAD"; 632 attrib tamtstae length=3 label="CC: Amount paid to Head Start for 5th"; 633 attrib aamtstae length=3 label="CC: Allocation flag for TAMTSTAE"; 634 attrib ewhothea length=3 label="CC: Place YOUNGEST child was cared for by"; 635 attrib awhothea length=3 label="CC: Allocation flag for EWHOTHEA"; 636 attrib ewhotheb length=3 label="CC: Place 2nd YOUNGEST was cared for by"; 637 attrib awhotheb length=3 label="CC: Allocation flag for EWHOTHEB"; 638 attrib ewhothec length=3 label="CC: Place 3rd YOUNGEST was cared for by"; 639 attrib awhothec length=3 label="CC: Allocation flag for EWHOTHEC"; 640 attrib ewhothed length=3 label="CC: Place 4th YOUNGEST was cared for by"; 641 attrib awhothed length=3 label="CC: Allocation flag for EWHOTHED"; 642 attrib ewhothee length=3 label="CC: Place 5th YOUNGEST was cared for by"; 643 attrib awhothee length=3 label="CC: Allocation flag for EWHOTHEE"; 644 attrib eothehra length=3 label="CC: Hours the non-relative cared for YOUNGEST"; 645 attrib aothehra length=3 label="CC: Allocation flag for EOTHEHRA"; 646 attrib eothehrb length=3 label="CC: Hours non-relative cared for 2nd YOUNGEST"; 647 attrib aothehrb length=3 label="CC: Allocation flag for EOTHEHRB"; 648 attrib eothehrc length=3 label="CC: Hours non-relative cared for 3rd YOUNGEST"; 649 attrib aothehrc length=3 label="CC: Allocation flag for EOTHEHRC"; 650 attrib eothehrd length=3 label="CC: Hours non-relative cared for 4th YOUNGEST"; 651 attrib aothehrd length=3 label="CC: Allocation flag for EOTHEHRD"; 652 attrib eothehre length=3 label="CC: Hours non-relative cared for 5th YOUNGEST"; 653 attrib aothehre length=3 label="CC: Allocation flag for EOTHEHRE"; 654 attrib ehrothea length=3 label="CC: Work hours non-relative care for YOUNGEST"; 655 attrib ahrothea length=3 label="CC: Allocation flag for EHROTHEA"; 656 attrib ehrotheb length=3 label="CC: Work hours non-relative care for 2nd"; 657 attrib ahrotheb length=3 label="CC: Allocation flag for EHROTHEB"; 658 attrib ehrothec length=3 label="CC: Work hours non-relative cared for 3rd"; 659 attrib ahrothec length=3 label="CC: Allocation flag for EHROTHEC"; 660 attrib ehrothed length=3 label="CC: Work hours non-relative cared for 4th"; 661 attrib ahrothed length=3 label="CC: Allocation flag for EHROTHED"; 662 attrib ehrothee length=3 label="CC: Work hours non-relative cared for 5th"; 663 attrib ahrothee length=3 label="CC: Allocation flag for EHROTHEE"; 664 attrib epayotha length=3 label="CC: Paid non-relative to care for YOUNGEST"; 13 The SAS System 11:54 Thursday, June 7, 2012 665 attrib apayotha length=3 label="CC: Allocation flag for EPAYOTHA"; 666 attrib epayothb length=3 label="CC: Paid non-relative to care for 2nd"; 667 attrib apayothb length=3 label="CC: Allocation flag for EPAYOTHB"; 668 attrib epayothc length=3 label="CC: Paid non-relative to care for 3rd"; 669 attrib apayothc length=3 label="CC: Allocation flag for EPAYOTHC"; 670 attrib epayothd length=3 label="CC: Paid non-relative to care for 4th"; 671 attrib apayothd length=3 label="CC: Allocation flag for EPAYOTHD"; 672 attrib epayothe length=3 label="CC: Paid non-relative to care for 5th"; 673 attrib apayothe length=3 label="CC: Allocation flag for EPAYOTHE"; 674 attrib tamtotha length=3 label="CC: Amount paid to non-relative to care for"; 675 attrib aamtotha length=3 label="CC: Allocation flag for TAMTOTHA"; 676 attrib tamtothb length=3 label="CC: Amount paid to non-relative to care for"; 677 attrib aamtothb length=3 label="CC: Allocation flag for TAMTOTHB"; 678 attrib tamtothc length=3 label="CC: Amount paid to non-relative to care for"; 679 attrib aamtothc length=3 label="CC: Allocation flag for TAMTOTHC"; 680 attrib tamtothd length=3 label="CC: Amount paid to non-relative to care for"; 681 attrib aamtothd length=3 label="CC: Allocation flag for TAMTOTHD"; 682 attrib tamtothe length=3 label="CC: Amount paid to non-relative to care for"; 683 attrib aamtothe length=3 label="CC: Allocation flag for TAMTOTHE"; 684 attrib eschoowa length=3 label="CC: YOUNGEST child attended school last month"; 685 attrib aschoowa length=3 label="CC: Allocation flag for ESCHOOWA"; 686 attrib eschoowb length=3 label="CC: 2nd YOUNGEST child attended school last"; 687 attrib aschoowb length=3 label="CC: Allocation flag for ESCHOOWB"; 688 attrib eschoowc length=3 label="CC: 3rd YOUNGEST child attended school last"; 689 attrib aschoowc length=3 label="CC: Allocation flag for ESCHOOWC"; 690 attrib eschoowd length=3 label="CC: 4th YOUNGEST child attended school last"; 691 attrib aschoowd length=3 label="CC: Allocation flag for ESCHOOWD"; 692 attrib eschoowe length=3 label="CC: 5th YOUNGEST child attended school last"; 693 attrib aschoowe length=3 label="CC: Allocation flag for ESCHOOWE"; 694 attrib ehrschwa length=3 label="CC: Hours per week YOUNGEST child was in"; 695 attrib ahrschwa length=3 label="CC: Allocation flag for EHRSCHWA"; 696 attrib ehrschwb length=3 label="CC: Hours per week 2nd YOUNGEST child was in"; 697 attrib ahrschwb length=3 label="CC: Allocation flag for EHRSCHWB"; 698 attrib ehrschwc length=3 label="CC: Hours per week 3rd YOUNGEST child was in"; 699 attrib ahrschwc length=3 label="CC: Allocation flag for EHRSCHWC"; 700 attrib ehrschwd length=3 label="CC: Hours per week 4th YOUNGEST child was in"; 701 attrib ahrschwd length=3 label="CC: Allocation flag for EHRSCHWD"; 702 attrib ehrschwe length=3 label="CC: Hours per week 5th YOUNGEST child was in"; 703 attrib ahrschwe length=3 label="CC: Allocation flag for EHRSCHWE"; 704 attrib ehrschoa length=3 label="CC: Work hours YOUNGEST child was in school"; 705 attrib ahrschoa length=3 label="CC: Allocation flag for EHRSCHOA"; 706 attrib ehrschob length=3 label="CC: Work hours 2nd YOUNGEST child was in"; 707 attrib ahrschob length=3 label="CC: Allocation flag for EHRSCHOB"; 708 attrib ehrschoc length=3 label="CC: Work hours 3rd YOUNGEST child was in"; 709 attrib ahrschoc length=3 label="CC: Allocation flag for EHRSCHOC"; 710 attrib ehrschod length=3 label="CC: Work hours 4th YOUNGEST child was in"; 711 attrib ahrschod length=3 label="CC: Allocation flag for EHRSCHOD"; 712 attrib ehrschoe length=3 label="CC: Work hours 5th YOUNGEST child was in"; 713 attrib ahrschoe length=3 label="CC: Allocation flag for EHRSCHOE"; 714 attrib eselfcaa length=3 label="CC: YOUNGEST child cared for self"; 715 attrib aselfcaa length=3 label="CC: Allocation flag for ESELFCAA"; 716 attrib eselfcab length=3 label="CC: 2nd YOUNGEST child cared for self"; 717 attrib aselfcab length=3 label="CC: Allocation flag for ESELFCAB"; 718 attrib eselfcac length=3 label="CC: 3rd YOUNGEST child cared for self"; 719 attrib aselfcac length=3 label="CC: Allocation flag for ESELFCAC"; 720 attrib eselfcad length=3 label="CC: 4th YOUNGEST child cared for self"; 721 attrib aselfcad length=3 label="CC: Allocation flag for ESELFCAD"; 722 attrib eselfcae length=3 label="CC: 5th YOUNGEST child cared for self"; 14 The SAS System 11:54 Thursday, June 7, 2012 723 attrib aselfcae length=3 label="CC: Allocation flag for ESELFCAE"; 724 attrib ekidhr1a length=3 label="CC: Hours per week YOUNGEST child cared for"; 725 attrib akidhr1a length=3 label="CC: Allocation flag for EKIDHR1A"; 726 attrib ekidhr1b length=3 label="CC: Hours per week 2nd YOUNGEST child cared"; 727 attrib akidhr1b length=3 label="CC: Allocation flag for EKIDHR1B"; 728 attrib ekidhr1c length=3 label="CC: Hours per week 3rd YOUNGEST child cared"; 729 attrib akidhr1c length=3 label="CC: Allocation flag for EKIDHR1C"; 730 attrib ekidhr1d length=3 label="CC: Hours per week 4th YOUNGEST child cared"; 731 attrib akidhr1d length=3 label="CC: Allocation flag for EKIDHR1D"; 732 attrib ekidhr1e length=3 label="CC: Hours per week 5th YOUNGEST child cared"; 733 attrib akidhr1e length=3 label="CC: Allocation flag for EKIDHR1E"; 734 attrib ekidhr2a length=3 label="CC: Work hours YOUNGEST child cared for self"; 735 attrib akidhr2a length=3 label="CC: Allocation flag for EKIDHR2A"; 736 attrib ekidhr2b length=3 label="CC: Work hours 2nd YOUNGEST child cared for"; 737 attrib akidhr2b length=3 label="CC: Allocation flag for EKIDHR2B"; 738 attrib ekidhr2c length=3 label="CC: Work hours 3rd YOUNGEST child cared for"; 739 attrib akidhr2c length=3 label="CC: Allocation flag for EKIDHR2C"; 740 attrib ekidhr2d length=3 label="CC: Work hours 4th YOUNGEST child cared for"; 741 attrib akidhr2d length=3 label="CC: Allocation flag for EKIDHR2D"; 742 attrib ekidhr2e length=3 label="CC: Work hours 5th YOUNGEST child cared for"; 743 attrib akidhr2e length=3 label="CC: Allocation flag for EKIDHR2E"; 744 attrib edaychaa length=3 label="CC: Any change in child care for YOUNGEST"; 745 attrib adaychaa length=3 label="CC: Allocation flag for EDAYCHAA"; 746 attrib edaychab length=3 label="CC: Any change in child care for 2nd YOUNGEST"; 747 attrib adaychab length=3 label="CC: Allocation flag for EDAYCHAB"; 748 attrib edaychac length=3 label="CC: Any change in child care for 3rd YOUNGEST"; 749 attrib adaychac length=3 label="CC: Allocation flag for EDAYCHAC"; 750 attrib edaychad length=3 label="CC: Any change in child care for 4th YOUNGEST"; 751 attrib adaychad length=3 label="CC: Allocation flag for EDAYCHAD"; 752 attrib edaychae length=3 label="CC: Any change in child care for 5th YOUNGEST"; 753 attrib adaychae length=3 label="CC: Allocation flag for EDAYCHAE"; 754 attrib epayhela length=3 label="CC: Anyone help pay for YOUNGEST child's care"; 755 attrib apayhela length=3 label="CC: Allocation flag for EPAYHELA"; 756 attrib epayhelb length=3 label="CC: Anyone help pay for 2nd YOUNGEST child's"; 757 attrib apayhelb length=3 label="CC: Allocation flag for EPAYHELB"; 758 attrib epayhelc length=3 label="CC: Anyone help pay for 3rd YOUNGEST child's"; 759 attrib apayhelc length=3 label="CC: Allocation flag for EPAYHELC"; 760 attrib epayheld length=3 label="CC: Anyone help pay for 4th YOUNGEST child's"; 761 attrib apayheld length=3 label="CC: Allocation flag for EPAYHELD"; 762 attrib epayhele length=3 label="CC: Anyone help pay for 5th YOUNGEST child's"; 763 attrib apayhele length=3 label="CC: Allocation flag for EPAYHELE"; 764 attrib ewhopa1a length=3 label="CC: Government helped pay for YOUNGEST"; 765 attrib ewhopa2a length=3 label="CC: Other parent helped pay for YOUNGEST"; 766 attrib ewhopa3a length=3 label="CC: Employer helped pay for YOUNGEST child's"; 767 attrib ewhopa4a length=3 label="CC: Someone else helped pay for YOUNGEST"; 768 attrib awhopaa length=3 label="CC: Allocation flag for EWHOPA1A-EWHOPA4A"; 769 attrib ewhopa1b length=3 label="CC: Government helped pay for 2nd YOUNGEST"; 770 attrib ewhopa2b length=3 label="CC: Other parent helped pay 2nd YOUNGEST"; 771 attrib ewhopa3b length=3 label="CC: Employer helped pay for 2nd YOUNGEST"; 772 attrib ewhopa4b length=3 label="CC: Someone else helped pay 2nd YOUNGEST"; 773 attrib awhopab length=3 label="CC: Allocation flag for EWHOPA1B-EWHOPA4B"; 774 attrib ewhopa1c length=3 label="CC: Government helped pay for 3rd YOUNGEST"; 775 attrib ewhopa2c length=3 label="CC: Other parent helped pay 3rd YOUNGEST"; 776 attrib ewhopa3c length=3 label="CC: Employer helped pay 3rd YOUNGEST child's"; 777 attrib ewhopa4c length=3 label="CC: Someone else helped pay 3rd YOUNGEST"; 778 attrib awhopac length=3 label="CC: Allocation flag for EWHOPA1C-EWHOPA4C"; 779 attrib ewhopa1d length=3 label="CC: Government helped pay for 4th YOUNGEST"; 780 attrib ewhopa2d length=3 label="CC: Other parent helped pay 4th YOUNGEST"; 15 The SAS System 11:54 Thursday, June 7, 2012 781 attrib ewhopa3d length=3 label="CC: Employer helped pay 4th YOUNGEST child's"; 782 attrib ewhopa4d length=3 label="CC: Someone else helped pay 4th YOUNGEST"; 783 attrib awhopad length=3 label="CC: Allocation flag for EWHOPA1D-EWHOPA4D"; 784 attrib ewhopa1e length=3 label="CC: Government helped pay for 5th YOUNGEST"; 785 attrib ewhopa2e length=3 label="CC: Other parent helped pay 5th YOUNGEST"; 786 attrib ewhopa3e length=3 label="CC: Employer helped pay for 5th YOUNGEST"; 787 attrib ewhopa4e length=3 label="CC: Someone else helped pay 5th YOUNGEST"; 788 attrib awhopae length=3 label="CC: Allocation flag for EWHOPA1E-EWHOPA4E"; 789 attrib esatisa length=3 label="CC: Satisfied with care of YOUNGEST child"; 790 attrib esatisb length=3 label="CC: Satisfied with care of 2nd YOUNGEST child"; 791 attrib esatisc length=3 label="CC: Satisfied with care of 3rd YOUNGEST child"; 792 attrib esatisd length=3 label="CC: Satisfied with care of 4th YOUNGEST child"; 793 attrib esatise length=3 label="CC: Satisfied with care of 5th YOUNGEST child"; 794 attrib elista length=3 label="CC: On waiting list for care for YOUNGEST"; 795 attrib alista length=3 label="CC: Allocation flag for ELISTA"; 796 attrib elistb length=3 label="CC: On waiting list for care for 2nd YOUNGEST"; 797 attrib alistb length=3 label="CC: Allocation flag for ELISTB"; 798 attrib elistc length=3 label="CC: On waiting list for care for 3rd YOUNGEST"; 799 attrib alistc length=3 label="CC: Allocation flag for ELISTC"; 800 attrib elistd length=3 label="CC: On waiting list for care for 4th YOUNGEST"; 801 attrib alistd length=3 label="CC: Allocation flag for ELISTD"; 802 attrib eliste length=3 label="CC: On waiting list for care for 5th YOUNGEST"; 803 attrib aliste length=3 label="CC: Allocation flag for ELISTE"; 804 attrib eccunv2 length=3 label="CC: Universe indicator."; 805 attrib eccpnumf length=$4 label="CC: Person number of the youngest child 6-14"; 806 attrib eccpnumg length=$4 label="CC: Person number of the 2nd YOUNGEST child"; 807 attrib eccpnumh length=$4 label="CC: Person number of the 3rd YOUNGEST child"; 808 attrib eccpnumi length=$4 label="CC: Person number of the 4th YOUNGEST child"; 809 attrib eccpnumj length=$4 label="CC: Person number of the 5th YOUNGEST child"; 810 attrib eccagef length=3 label="CC: Age of the YOUNGEST child 6-14"; 811 attrib eccageg length=3 label="CC: Age of the 2nd YOUNGEST child 6-14"; 812 attrib eccageh length=3 label="CC: Age of the 3rd YOUNGEST child 6-14"; 813 attrib eccagei length=3 label="CC: Age of the 4th YOUNGEST child 6-14"; 814 attrib eccagej length=3 label="CC: Age of the 5th YOUNGEST child 6-14"; 815 attrib eckd01f length=3 label="CC: Arrangement of the other parent or"; 816 attrib eckd01g length=3 label="CC: Arrangement of the other parent or"; 817 attrib eckd01h length=3 label="CC: Arrangement of the other parent or"; 818 attrib eckd01i length=3 label="CC: Arrangement of the other parent or"; 819 attrib eckd01j length=3 label="CC: Arrangement of the other parent or"; 820 attrib eckd02f length=3 label="CC: Arrangement of parent or guardian"; 821 attrib eckd02g length=3 label="CC: Arrangement of parent or guardian"; 822 attrib eckd02h length=3 label="CC: Arrangement of parent or guardian"; 823 attrib eckd02i length=3 label="CC: Arrangement of parent or guardian"; 824 attrib eckd02j length=3 label="CC: Arrangement of parent or guardian"; 825 attrib eckd03f length=3 label="CC: Arrangement of sibling age 15 or older"; 826 attrib eckd03g length=3 label="CC: Arrangement of sibling age 15 or older"; 827 attrib eckd03h length=3 label="CC: Arrangement of sibling age 15 or older"; 828 attrib eckd03i length=3 label="CC: Arrangement of sibling age 15 or older"; 829 attrib eckd03j length=3 label="CC: Arrangement of sibling age 15 or older"; 830 attrib eckd04f length=3 label="CC: Arrangement of sibling under age 15"; 831 attrib eckd04g length=3 label="CC: Arrangement of sibling under age 15"; 832 attrib eckd04h length=3 label="CC: Arrangement of sibling under age 15"; 833 attrib eckd04i length=3 label="CC: Arrangement of sibling under age 15"; 834 attrib eckd04j length=3 label="CC: Arrangement of sibling under age 15"; 835 attrib eckd05f length=3 label="CC: Arrangement of grandparent"; 836 attrib eckd05g length=3 label="CC: Arrangement of grandparent"; 837 attrib eckd05h length=3 label="CC: Arrangement of grandparent"; 838 attrib eckd05i length=3 label="CC: Arrangement of grandparent"; 16 The SAS System 11:54 Thursday, June 7, 2012 839 attrib eckd05j length=3 label="CC: Arrangement of grandparent"; 840 attrib eckd06f length=3 label="CC: Arrangement of any other relative"; 841 attrib eckd06g length=3 label="CC: Arrangement of any other relative"; 842 attrib eckd06h length=3 label="CC: Arrangement of any other relative"; 843 attrib eckd06i length=3 label="CC: Arrangement of any other relative"; 844 attrib eckd06j length=3 label="CC: Arrangement of any other relative"; 845 attrib eckd07f length=3 label="CC: Arrangement of family day care provider"; 846 attrib eckd07g length=3 label="CC: Arrangement of family day care provider"; 847 attrib eckd07h length=3 label="CC: Arrangement of family day care provider"; 848 attrib eckd07i length=3 label="CC: Arrangement of family day care provider"; 849 attrib eckd07j length=3 label="CC: Arrangement of family day care provider"; 850 attrib eckd08f length=3 label="CC: Arrangement of child or day care center"; 851 attrib eckd08g length=3 label="CC: Arrangement of child or day care center"; 852 attrib eckd08h length=3 label="CC: Arrangement of child or day care center"; 853 attrib eckd08i length=3 label="CC: Arrangement of child or day care center"; 854 attrib eckd08j length=3 label="CC: Arrangement of child or day care center"; 855 attrib eckd09f length=3 label="CC: Arrangement of organized sports"; 856 attrib eckd09g length=3 label="CC: Arrangement of organized sports"; 857 attrib eckd09h length=3 label="CC: Arrangement of organized sports"; 858 attrib eckd09i length=3 label="CC: Arrangement of organized sports"; 859 attrib eckd09j length=3 label="CC: Arrangement of organized sports"; 860 attrib eckd10f length=3 label="CC: Arrangement of lessons"; 861 attrib eckd10g length=3 label="CC: Arrangement of lessons"; 862 attrib eckd10h length=3 label="CC: Arrangement of lessons"; 863 attrib eckd10i length=3 label="CC: Arrangement of lessons"; 864 attrib eckd10j length=3 label="CC: Arrangement of lessons"; 865 attrib eckd11f length=3 label="CC: Arrangement of clubs"; 866 attrib eckd11g length=3 label="CC: Arrangement of clubs"; 867 attrib eckd11h length=3 label="CC: Arrangement of clubs"; 868 attrib eckd11i length=3 label="CC: Arrangement of clubs"; 869 attrib eckd11j length=3 label="CC: Arrangement of clubs"; 870 attrib eckd12f length=3 label="CC: Arrangement of before or after school"; 871 attrib eckd12g length=3 label="CC: Arrangement of before or after school"; 872 attrib eckd12h length=3 label="CC: Arrangement of before or after school"; 873 attrib eckd12i length=3 label="CC: Arrangement of before or after school"; 874 attrib eckd12j length=3 label="CC: Arrangement of before or after school"; 875 attrib eckd13f length=3 label="CC: Arrangement of a non-relative"; 876 attrib eckd13g length=3 label="CC: Arrangement of a non-relative"; 877 attrib eckd13h length=3 label="CC: Arrangement of a non-relative"; 878 attrib eckd13i length=3 label="CC: Arrangement of a non-relative"; 879 attrib eckd13j length=3 label="CC: Arrangement of a non-relative"; 880 attrib accaref length=3 label="CC: Allocation flag for the YOUNGEST child"; 881 attrib accareg length=3 label="CC: Allocation flag for the 2nd YOUNGEST child"; 882 attrib accareh length=3 label="CC: Allocation flag for the 3rd YOUNGEST child"; 883 attrib accarei length=3 label="CC: Allocation flag for the 4th YOUNGEST child"; 884 attrib accarej length=3 label="CC: Allocation flag for the 5th YOUNGEST child"; 885 attrib ewheparf length=3 label="CC: Place other parent cared for YOUNGEST"; 886 attrib awheparf length=3 label="CC: Allocation flag for EWHEPARF"; 887 attrib ewheparg length=3 label="CC: Place other parent cared for 2nd YOUNGEST"; 888 attrib awheparg length=3 label="CC: Allocation flag for EWHEPARG"; 889 attrib ewheparh length=3 label="CC: Place other parent cared for 3rd YOUNGEST"; 890 attrib awheparh length=3 label="CC: Allocation flag for EWHEPARH"; 891 attrib ewhepari length=3 label="CC: Place other parent cared for 4th YOUNGEST"; 892 attrib awhepari length=3 label="CC: Allocation flag for EWHEPARI"; 893 attrib ewheparj length=3 label="CC: Place other parent cared for 5th YOUNGEST"; 894 attrib awheparj length=3 label="CC: Allocation flag for EWHEPARJ"; 895 attrib eparhr1f length=3 label="CC: Hours other parent cared for YOUNGEST"; 896 attrib aparhr1f length=3 label="CC: Allocation flag for EPARHR1F"; 17 The SAS System 11:54 Thursday, June 7, 2012 897 attrib eparhr1g length=3 label="CC: Hours other parent cared for 2nd YOUNGEST"; 898 attrib aparhr1g length=3 label="CC: Allocation flag for EPARHR1G"; 899 attrib eparhr1h length=3 label="CC: Hours other parent cared for 3rd YOUNGEST"; 900 attrib aparhr1h length=3 label="CC: Allocation flag for EPARHR1H"; 901 attrib eparhr1i length=3 label="CC: Hours other parent cared for 4th YOUNGEST"; 902 attrib aparhr1i length=3 label="CC: Allocation flag for EPARHR1I"; 903 attrib eparhr1j length=3 label="CC: Hours other parent cared for 5th YOUNGEST"; 904 attrib aparhr1j length=3 label="CC: Allocation flag for EPARHR1J"; 905 attrib eparhr2f length=3 label="CC: Work hours other parent cared for"; 906 attrib aparhr2f length=3 label="CC: Allocation flag for EPARHR2F"; 907 attrib eparhr2g length=3 label="CC: Work hours other parent cared for 2nd"; 908 attrib aparhr2g length=3 label="CC: Allocation flag for EPARHR2G"; 909 attrib eparhr2h length=3 label="CC: Work hours other parent cared for 3rd"; 910 attrib aparhr2h length=3 label="CC: Allocation flag for EPARHR2H"; 911 attrib eparhr2i length=3 label="CC: Work hours other parent cared for 4th"; 912 attrib aparhr2i length=3 label="CC: Allocation flag for EPARHR2I"; 913 attrib eparhr2j length=3 label="CC: Work hours other parent cared for 5th"; 914 attrib aparhr2j length=3 label="CC: Allocation flag for EPARHR2J"; 915 attrib ewhselff length=3 label="CC: Place parent cared for the YOUNGEST child"; 916 attrib awhselff length=3 label="CC: Allocation flag for EWHSELFF"; 917 attrib ewhselfg length=3 label="CC: Place parent cared for the 2nd YOUNGEST"; 918 attrib awhselfg length=3 label="CC: Allocation flag for EWHSELFG"; 919 attrib ewhselfh length=3 label="CC: Place parent cared for the 3rd YOUNGEST"; 920 attrib awhselfh length=3 label="CC: Allocation flag for EWHSELFH"; 921 attrib ewhselfi length=3 label="CC: Place parent cared for the 4th YOUNGEST"; 922 attrib awhselfi length=3 label="CC: Allocation flag for EWHSELFI"; 923 attrib ewhselfj length=3 label="CC: Place parent cared for the 5th YOUNGEST"; 924 attrib awhselfj length=3 label="CC: Allocation flag for EWHSELFJ"; 925 attrib eselfhrf length=3 label="CC: Work hours parent cared for YOUNGEST child"; 926 attrib aselfhrf length=3 label="CC: Allocation flag for ESELFHRF"; 927 attrib eselfhrg length=3 label="CC: Work hours parent cared for 2nd YOUNGEST"; 928 attrib aselfhrg length=3 label="CC: Allocation flag for ESELFHRG"; 929 attrib eselfhrh length=3 label="CC: Work hours parent cared for 3rd YOUNGEST"; 930 attrib aselfhrh length=3 label="CC: Allocation flag for ESELFHRH"; 931 attrib eselfhri length=3 label="CC: Work hours parent cared for 4th YOUNGEST"; 932 attrib aselfhri length=3 label="CC: Allocation flag for ESELFHRI"; 933 attrib eselfhrj length=3 label="CC: Work hours parent cared for 5th YOUNGEST"; 934 attrib aselfhrj length=3 label="CC: Allocation flag for ESELFHRJ"; 935 attrib ewhsb15f length=3 label="CC: Place sibling age 15+ cared for YOUNGEST"; 936 attrib awhsb15f length=3 label="CC: Allocation flag for EWHSB15F"; 937 attrib ewhsb15g length=3 label="CC: Place sibling age 15+ cared for 2nd"; 938 attrib awhsb15g length=3 label="CC: Allocation flag for EWHSB15G"; 939 attrib ewhsb15h length=3 label="CC: Place sibling age 15+ cared for 3rd"; 940 attrib awhsb15h length=3 label="CC: Allocation flag for EWHSB15H"; 941 attrib ewhsb15i length=3 label="CC: Place sibling age 15+ cared for 4th"; 942 attrib awhsb15i length=3 label="CC: Allocation flag for EWHSB15I"; 943 attrib ewhsb15j length=3 label="CC: Place sibling age 15+ cared for 5th"; 944 attrib awhsb15j length=3 label="CC: Allocation flag for EWHSB15J"; 945 attrib ewhsbhrf length=3 label="CC: Hours sibling age 15+ cared for YOUNGEST"; 946 attrib awhsbhrf length=3 label="CC: Allocation flag for EWHSBHRF"; 947 attrib ewhsbhrg length=3 label="CC: Hours sibling age 15+ cared for 2nd"; 948 attrib awhsbhrg length=3 label="CC: Allocation flag for EWHSBHRG"; 949 attrib ewhsbhrh length=3 label="CC: Hours sibling age 15+ cared for 3rd"; 950 attrib awhsbhrh length=3 label="CC: Allocation flag for EWHSBHRH"; 951 attrib ewhsbhri length=3 label="CC: Hours sibling age 15+ cared for 4th"; 952 attrib awhsbhri length=3 label="CC: Allocation flag for EWHSBHRI"; 953 attrib ewhsbhrj length=3 label="CC: Hours sibling age 15+ cared for 5th"; 954 attrib awhsbhrj length=3 label="CC: Allocation flag for EWHSBHRJ"; 18 The SAS System 11:54 Thursday, June 7, 2012 955 attrib ehrsb15f length=3 label="CC: Work hours sibling age 15+ cared for"; 956 attrib ahrsb15f length=3 label="CC: Allocation flag for EHRSB15F"; 957 attrib ehrsb15g length=3 label="CC: Work hours sibling age 15+ cared for 2nd"; 958 attrib ahrsb15g length=3 label="CC: Allocation flag for EHRSB15G"; 959 attrib ehrsb15h length=3 label="CC: Work hours sibling age 15+ cared for 3rd"; 960 attrib ahrsb15h length=3 label="CC: Allocation flag for EHRSB15H"; 961 attrib ehrsb15i length=3 label="CC: Work hours sibling age 15+ cared for 4th"; 962 attrib ahrsb15i length=3 label="CC: Allocation flag for EHRSB15I"; 963 attrib ehrsb15j length=3 label="CC: Work hours sibling age 15+ cared for 5th"; 964 attrib ahrsb15j length=3 label="CC: Allocation flag for EHRSB15J"; 965 attrib ewhsb14f length=3 label="CC: Place sibling cared for YOUNGEST child"; 966 attrib awhsb14f length=3 label="CC: Allocation flag for EWHSB14F"; 967 attrib ewhsb14g length=3 label="CC: Place sibling cared for 2nd YOUNGEST child"; 968 attrib awhsb14g length=3 label="CC: Allocation flag for EWHSB14G"; 969 attrib ewhsb14h length=3 label="CC: Place sibling cared for 3rd YOUNGEST child"; 970 attrib awhsb14h length=3 label="CC: Allocation flag for EWHSB14H"; 971 attrib ewhsb14i length=3 label="CC: Place sibling cared for 4th YOUNGEST child"; 972 attrib awhsb14i length=3 label="CC: Allocation flag for EWHSB14I"; 973 attrib ewhsb14j length=3 label="CC: Place sibling cared for 5th YOUNGEST child"; 974 attrib awhsb14j length=3 label="CC: Allocation flag for EWHSB14J"; 975 attrib esb14hrf length=3 label="CC: Hours sibling cared for YOUNGEST child"; 976 attrib asb14hrf length=3 label="CC: Allocation flag for ESB14HRF"; 977 attrib esb14hrg length=3 label="CC: Hours sibling cared for 2nd YOUNGEST child"; 978 attrib asb14hrg length=3 label="CC: Allocation flag for ESB14HRG"; 979 attrib esb14hrh length=3 label="CC: Hours sibling cared for 3rd YOUNGEST child"; 980 attrib asb14hrh length=3 label="CC: Allocation flag for ESB14HRH"; 981 attrib esb14hri length=3 label="CC: Hours sibling cared for 4th YOUNGEST child"; 982 attrib asb14hri length=3 label="CC: Allocation flag for ESB14HRI"; 983 attrib esb14hrj length=3 label="CC: Hours sibling cared for 5th YOUNGEST child"; 984 attrib asb14hrj length=3 label="CC: Allocation flag for ESB14HRJ"; 985 attrib ehrsb14f length=3 label="CC: Work hours sibling cared for YOUNGEST"; 986 attrib ahrsb14f length=3 label="CC: Allocation flag for EHRSB14F"; 987 attrib ehrsb14g length=3 label="CC: Work hours sibling cared for 2nd YOUNGEST"; 988 attrib ahrsb14g length=3 label="CC: Allocation flag for EHRSB14G"; 989 attrib ehrsb14h length=3 label="CC: Work hours sibling cared for 3rd YOUNGEST"; 990 attrib ahrsb14h length=3 label="CC: Allocation flag for EHRSB14H"; 991 attrib ehrsb14i length=3 label="CC: Work hours sibling cared for 4th YOUNGEST"; 992 attrib ahrsb14i length=3 label="CC: Allocation flag for EHRSB14I"; 993 attrib ehrsb14j length=3 label="CC: Work hours sibling cared for 5th YOUNGEST"; 994 attrib ahrsb14j length=3 label="CC: Allocation flag for EHRSB14J"; 995 attrib ewhgranf length=3 label="CC: Place the grandparent cared for the"; 996 attrib awhgranf length=3 label="CC: Allocation flag for EWHGRANF"; 997 attrib ewhgrang length=3 label="CC: Place the grandparent cared for 2nd"; 998 attrib awhgrang length=3 label="CC: Allocation flag for EWHGRANG"; 999 attrib ewhgranh length=3 label="CC: Place the grandparent cared for 3rd"; 1000 attrib awhgranh length=3 label="CC: Allocation flag for EWHGRANH"; 1001 attrib ewhgrani length=3 label="CC: Place the grandparent cared for 4th"; 1002 attrib awhgrani length=3 label="CC: Allocation flag for EWHGRANI"; 1003 attrib ewhgranj length=3 label="CC: Place the grandparent cared for 5th"; 1004 attrib awhgranj length=3 label="CC: Allocation flag for EWHGRANE"; 1005 attrib egranhrf length=3 label="CC: Hours the grandparent cared for YOUNGEST"; 1006 attrib agranhrf length=3 label="CC: Allocation flag for EGRANHRF"; 1007 attrib egranhrg length=3 label="CC: Hours the grandparent cared for 2nd"; 1008 attrib agranhrg length=3 label="CC: Allocation flag for EGRANHRG"; 1009 attrib egranhrh length=3 label="CC: Hours the grandparent cared for 3rd"; 1010 attrib agranhrh length=3 label="CC: Allocation flag for EGRANHRH"; 1011 attrib egranhri length=3 label="CC: Hours the grandparent cared for 4th"; 1012 attrib agranhri length=3 label="CC: Allocation flag for EGRANHRI"; 19 The SAS System 11:54 Thursday, June 7, 2012 1013 attrib egranhrj length=3 label="CC: Hours the grandparent cared for 5th"; 1014 attrib agranhrj length=3 label="CC: Allocation flag for EGRANHRJ"; 1015 attrib ehrgranf length=3 label="CC: Work hours grandparent cared for YOUNGEST"; 1016 attrib ahrgranf length=3 label="CC: Allocation flag for EHRGRANF"; 1017 attrib ehrgrang length=3 label="CC: Work hours grandparent cared for 2nd"; 1018 attrib ahrgrang length=3 label="CC: Allocation flag for EHRGRANG"; 1019 attrib ehrgranh length=3 label="CC: Work hours grandparent cared for 3rd"; 1020 attrib ahrgranh length=3 label="CC: Allocation flag for EHRGRANH"; 1021 attrib ehrgrani length=3 label="CC: Work hours grandparent cared for 4th"; 1022 attrib ahrgrani length=3 label="CC: Allocation flag for EHRGRANI"; 1023 attrib ehrgranj length=3 label="CC: Work hours grandparent cared for 5th"; 1024 attrib ahrgranj length=3 label="CC: Allocation flag for EHRGRANJ"; 1025 attrib epaygraf length=3 label="CC: Paid grandparent to care for the YOUNGEST"; 1026 attrib apaygraf length=3 label="CC: Allocation flag for EPAYGRAF"; 1027 attrib epaygrag length=3 label="CC: Paid grandparent to care for the 2nd"; 1028 attrib apaygrag length=3 label="CC: Allocation flag for EPAYGRAG"; 1029 attrib epaygrah length=3 label="CC: Paid grandparent to care for the 3rd"; 1030 attrib apaygrah length=3 label="CC: Allocation flag for EPAYGRAH"; 1031 attrib epaygrai length=3 label="CC: Paid grandparent to care for 4th YOUNGEST"; 1032 attrib apaygrai length=3 label="CC: Allocation flag for EPAYGRAI"; 1033 attrib epaygraj length=3 label="CC: Paid grandparent to care for 5th YOUNGEST"; 1034 attrib apaygraj length=3 label="CC: Allocation flag for EPAYGRAJ"; 1035 attrib tamtgraf length=3 label="CC: Amount grandparent paid to watch YOUNGEST"; 1036 attrib aamtgraf length=3 label="CC: Allocation flag for TAMTGRAF"; 1037 attrib tamtgrag length=3 label="CC: Amount grandparent paid to watch 2nd"; 1038 attrib aamtgrag length=3 label="CC: Allocation flag for TAMTGRAG"; 1039 attrib tamtgrah length=3 label="CC: Amount grandparent paid to watch 3rd"; 1040 attrib aamtgrah length=3 label="CC: Allocation flag for TAMTGRAH"; 1041 attrib tamtgrai length=3 label="CC: Amount grandparent paid to watch 4th"; 1042 attrib aamtgrai length=3 label="CC: Allocation flag for TAMTGRAI"; 1043 attrib tamtgraj length=3 label="CC: Amount grandparent paid to watch 5th"; 1044 attrib aamtgraj length=3 label="CC: Allocation flag for TAMTGRAJ"; 1045 attrib ewhrelaf length=3 label="CC: Place other relative cared for YOUNGEST"; 1046 attrib awhrelaf length=3 label="CC: Allocation flag for EWHRELAF"; 1047 attrib ewhrelag length=3 label="CC: Place other relative cared for 2nd"; 1048 attrib awhrelag length=3 label="CC: Allocation flag for EWHRELAG"; 1049 attrib ewhrelah length=3 label="CC: Place other relative cared for 3rd"; 1050 attrib awhrelah length=3 label="CC: Allocation flag for EWHRELAH"; 1051 attrib ewhrelai length=3 label="CC: Place other relative cared for 4th"; 1052 attrib awhrelai length=3 label="CC: Allocation flag for EWHRELAI"; 1053 attrib ewhrelaj length=3 label="CC: Place other relative cared for 5th"; 1054 attrib awhrelaj length=3 label="CC: Allocation flag for EWHRELAJ"; 1055 attrib erelhr1f length=3 label="CC: Work hours other relative cared for"; 1056 attrib arelhr1f length=3 label="CC: Allocation flag for ERELHR1F"; 1057 attrib erelhr1g length=3 label="CC: Work hours other relative cared for 2nd"; 1058 attrib arelhr1g length=3 label="CC: Allocation flag for ERELHR1G"; 1059 attrib erelhr1h length=3 label="CC: Work hours other relative cared for 3rd"; 1060 attrib arelhr1h length=3 label="CC: Allocation flag for ERELHR1H"; 1061 attrib erelhr1i length=3 label="CC: Work hours other relative cared for 4th"; 1062 attrib arelhr1i length=3 label="CC: Allocation flag for ERELHR1I"; 1063 attrib erelhr1j length=3 label="CC: Work hours other relative cared for 5th"; 1064 attrib arelhr1j length=3 label="CC: Allocation flag for ERELHR1J"; 1065 attrib erelhr2f length=3 label="CC: Work hours relative cared for YOUNGEST"; 1066 attrib arelhr2f length=3 label="CC: Allocation flag for ERELHR2F"; 1067 attrib erelhr2g length=3 label="CC: Work hours relative cared for 2nd"; 1068 attrib arelhr2g length=3 label="CC: Allocation flag for ERELHR2G"; 1069 attrib erelhr2h length=3 label="CC: Work hours relative cared for 3rd"; 1070 attrib arelhr2h length=3 label="CC: Allocation flag for ERELHR2H"; 20 The SAS System 11:54 Thursday, June 7, 2012 1071 attrib erelhr2i length=3 label="CC: Work hours relative cared for 4th"; 1072 attrib arelhr2i length=3 label="CC: Allocation flag for ERELHR2I"; 1073 attrib erelhr2j length=3 label="CC: Work hours relative cared for 5th"; 1074 attrib arelhr2j length=3 label="CC: Allocation flag for ERELHR2J"; 1075 attrib epayrelf length=3 label="CC: Paid other relative to care for YOUNGEST"; 1076 attrib apayrelf length=3 label="CC: Allocation flag for EPAYRELF"; 1077 attrib epayrelg length=3 label="CC: Paid other relative to care for 2nd"; 1078 attrib apayrelg length=3 label="CC: Allocation flag for EPAYRELG"; 1079 attrib epayrelh length=3 label="CC: Paid other relative to care for 3rd"; 1080 attrib apayrelh length=3 label="CC: Allocation flag for EPAYRELH"; 1081 attrib epayreli length=3 label="CC: Paid other relative to care for 4th"; 1082 attrib apayreli length=3 label="CC: Allocation flag for EPAYRELI"; 1083 attrib epayrelj length=3 label="CC: Paid other relative to care for 5th"; 1084 attrib apayrelj length=3 label="CC: Allocation flag for EPAYRELJ"; 1085 attrib tamtrelf length=3 label="CC: Amount relative paid to watch YOUNGEST"; 1086 attrib aamtrelf length=3 label="CC: Allocation flag for TAMTRELF"; 1087 attrib tamtrelg length=3 label="CC: Amount relative paid to watch 2nd"; 1088 attrib aamtrelg length=3 label="CC: Allocation flag for TAMTRELG"; 1089 attrib tamtrelh length=3 label="CC: Amount relative paid to watch 3rd"; 1090 attrib aamtrelh length=3 label="CC: Allocation flag for TAMTRELH"; 1091 attrib tamtreli length=3 label="CC: Amount relative paid to watch 4th"; 1092 attrib aamtreli length=3 label="CC: Allocation flag for TAMTRELI"; 1093 attrib tamtrelj length=3 label="CC: Amount relative paid to watch 5th"; 1094 attrib aamtrelj length=3 label="CC: Allocation flag for TAMTRELJ"; 1095 attrib ehrfam1f length=3 label="CC: Hours YOUNGEST child spent in family day"; 1096 attrib ahrfam1f length=3 label="CC: Allocation flag for EHRFAM1F"; 1097 attrib ehrfam1g length=3 label="CC: Hours 2nd YOUNGEST child spent in family"; 1098 attrib ahrfam1g length=3 label="CC: Allocation flag for EHRFAM1G"; 1099 attrib ehrfam1h length=3 label="CC: Hours 3rd YOUNGEST child spent in family"; 1100 attrib ahrfam1h length=3 label="CC: Allocation flag for EHRFAM1H"; 1101 attrib ehrfam1i length=3 label="CC: Hours 4th YOUNGEST child spent in family"; 1102 attrib ahrfam1i length=3 label="CC: Allocation flag for EHRFAM1I"; 1103 attrib ehrfam1j length=3 label="CC: Hours 5th YOUNGEST child spent in family"; 1104 attrib ahrfam1j length=3 label="CC: Allocation flag for EHRFAM1J"; 1105 attrib ehrfam2f length=3 label="CC: Work hours YOUNGEST child spent in family"; 1106 attrib ahrfam2f length=3 label="CC: Allocation flag for EHRFAM2F"; 1107 attrib ehrfam2g length=3 label="CC: Work hrs 2nd YOUNGEST child spent in"; 1108 attrib ahrfam2g length=3 label="CC: Allocation flag for EHRFAM2G"; 1109 attrib ehrfam2h length=3 label="CC: Work hrs 3rd YOUNGEST child spent in"; 1110 attrib ahrfam2h length=3 label="CC: Allocation flag for EHRFAM2H"; 1111 attrib ehrfam2i length=3 label="CC: Work hrs 4th YOUNGEST child spent in"; 1112 attrib ahrfam2i length=3 label="CC: Allocation flag for EHRFAM2I"; 1113 attrib ehrfam2j length=3 label="CC: Work hrs 5th YOUNGEST child spent in"; 1114 attrib ahrfam2j length=3 label="CC: Allocation flag for EHRFAM2J"; 1115 attrib epayfamf length=3 label="CC: Paid for family day care for YOUNGEST"; 1116 attrib apayfamf length=3 label="CC: Allocation flag for EPAYFAMF"; 1117 attrib epayfamg length=3 label="CC: Paid for family day care for 2nd YOUNGEST"; 1118 attrib apayfamg length=3 label="CC: Allocation flag for EPAYFAMG"; 1119 attrib epayfamh length=3 label="CC: Paid for family day care for 3rd YOUNGEST"; 1120 attrib apayfamh length=3 label="CC: Allocation flag for EPAYFAMH"; 1121 attrib epayfami length=3 label="CC: Paid for family day care for 4th YOUNGEST"; 1122 attrib apayfami length=3 label="CC: Allocation flag for EPAYFAMI"; 1123 attrib epayfamj length=3 label="CC: Paid for family day care for 5th YOUNGEST"; 1124 attrib apayfamj length=3 label="CC: Allocation flag for EPAYFAMJ"; 1125 attrib tamtfamf length=3 label="CC: Amount paid family day care for YOUNGEST"; 1126 attrib aamtfamf length=3 label="CC: Allocation flag for TAMTFAMF"; 1127 attrib tamtfamg length=3 label="CC: Amount paid family day care for 2nd"; 1128 attrib aamtfamg length=3 label="CC: Allocation flag for TAMTFAMG"; 21 The SAS System 11:54 Thursday, June 7, 2012 1129 attrib tamtfamh length=3 label="CC: Amount paid family day care for 3rd"; 1130 attrib aamtfamh length=3 label="CC: Allocation flag for TAMTFAMH"; 1131 attrib tamtfami length=3 label="CC: Amount paid family day care for 4th"; 1132 attrib aamtfami length=3 label="CC: Allocation flag for TAMTFAMI"; 1133 attrib tamtfamj length=3 label="CC: Amount paid family day care for 5th"; 1134 attrib aamtfamj length=3 label="CC: Allocation flag for TAMTFAMJ"; 1135 attrib ewhdaycf length=3 label="CC: Place day care cared for YOUNGEST child"; 1136 attrib awhdaycf length=3 label="CC: Allocation flag for EWHDAYCF"; 1137 attrib ewhdaycg length=3 label="CC: Place day care cared for 2nd YOUNGEST"; 1138 attrib awhdaycg length=3 label="CC: Allocation flag for EWHDAYCG"; 1139 attrib ewhdaych length=3 label="CC: Place day care cared for 3rd YOUNGEST"; 1140 attrib awhdaych length=3 label="CC: Allocation flag for EWHDAYCH"; 1141 attrib ewhdayci length=3 label="CC: Place day care cared for 4th YOUNGEST"; 1142 attrib awhdayci length=3 label="CC: Allocation flag for EWHDAYCI"; 1143 attrib ewhdaycj length=3 label="CC: Place day care cared for 5th YOUNGEST"; 1144 attrib awhdaycj length=3 label="CC: Allocation flag for EWHDAYCJ"; 1145 attrib edayhrsf length=3 label="CC: Weekly hours YOUNGEST child was in day"; 1146 attrib adayhrsf length=3 label="CC: Allocation flag for EDAYHRSF"; 1147 attrib edayhrsg length=3 label="CC: Weekly hours 2nd YOUNGEST child was in"; 1148 attrib adayhrsg length=3 label="CC: Allocation flag for EDAYHRSG"; 1149 attrib edayhrsh length=3 label="CC: Weekly hours 3rd YOUNGEST child was in"; 1150 attrib adayhrsh length=3 label="CC: Allocation flag for EDAYHRSH"; 1151 attrib edayhrsi length=3 label="CC: Weekly hours 4th YOUNGEST child was in"; 1152 attrib adayhrsi length=3 label="CC: Allocation flag for EDAYHRSI"; 1153 attrib edayhrsj length=3 label="CC: Weekly hours 5th YOUNGEST child was in"; 1154 attrib adayhrsj length=3 label="CC: Allocation flag for EDAYHRSJ"; 1155 attrib ehrdaycf length=3 label="CC: Work hours YOUNGEST child was at day care"; 1156 attrib ahrdaycf length=3 label="CC: Allocation flag for EHRDAYCF"; 1157 attrib ehrdaycg length=3 label="CC: Work hours 2nd YOUNGEST child was at day"; 1158 attrib ahrdaycg length=3 label="CC: Allocation flag for EHRDAYCG"; 1159 attrib ehrdaych length=3 label="CC: Work hours 3rd YOUNGEST child was at day"; 1160 attrib ahrdaych length=3 label="CC: Allocation flag for EHRDAYCH"; 1161 attrib ehrdayci length=3 label="CC: Work hours 4th YOUNGEST child was at day"; 1162 attrib ahrdayci length=3 label="CC: Allocation flag for EHRDAYCI"; 1163 attrib ehrdaycj length=3 label="CC: Work hours 5th YOUNGEST child was at day"; 1164 attrib ahrdaycj length=3 label="CC: Allocation flag for EHRDAYCJ"; 1165 attrib epaydayf length=3 label="CC: Paid day care center to care for YOUNGEST"; 1166 attrib apaydayf length=3 label="CC: Allocation flag for EPAYDAYF"; 1167 attrib epaydayg length=3 label="CC: Paid day care center to care for 2nd"; 1168 attrib apaydayg length=3 label="CC: Allocation flag for EPAYDAYG"; 1169 attrib epaydayh length=3 label="CC: Paid day care center to care for 3rd"; 1170 attrib apaydayh length=3 label="CC: Allocation flag for EPAYDAYH"; 1171 attrib epaydayi length=3 label="CC: Paid day care center to care for 4th"; 1172 attrib apaydayi length=3 label="CC: Allocation flag for EPAYDAYI"; 1173 attrib epaydayj length=3 label="CC: Paid day care center to care for 5th"; 1174 attrib apaydayj length=3 label="CC: Allocation flag for EPAYDAYJ"; 1175 attrib tamtdayf length=3 label="CC: Amount paid for day care for YOUNGEST"; 1176 attrib aamtdayf length=3 label="CC: Allocation flag for TAMTDAYF"; 1177 attrib tamtdayg length=3 label="CC: Amount paid for day care for 2nd YOUNGEST"; 1178 attrib aamtdayg length=3 label="CC: Allocation flag for TAMTDAYG"; 1179 attrib tamtdayh length=3 label="CC: Amount paid for day care for 3rd YOUNGEST"; 1180 attrib aamtdayh length=3 label="CC: Allocation flag for TAMTDAYH"; 1181 attrib tamtdayi length=3 label="CC: Amount paid for day care for 4th YOUNGEST"; 1182 attrib aamtdayi length=3 label="CC: Allocation flag for TAMTDAYI"; 1183 attrib tamtdayj length=3 label="CC: Amount paid for day care for 5th YOUNGEST"; 1184 attrib aamtdayj length=3 label="CC: Allocation flag for TAMTDAYJ"; 1185 attrib ewhsporf length=3 label="CC: Place the YOUNGEST child participated in"; 1186 attrib awhsporf length=3 label="CC: Allocation flag for EWHSPORF"; 22 The SAS System 11:54 Thursday, June 7, 2012 1187 attrib ewhsporg length=3 label="CC: Place the 2nd YOUNGEST child participated"; 1188 attrib awhsporg length=3 label="CC: Allocation flag for EWHSPORG"; 1189 attrib ewhsporh length=3 label="CC: Place the 3rd YOUNGEST child participated"; 1190 attrib awhsporh length=3 label="CC: Allocation flag for EWHSPORH"; 1191 attrib ewhspori length=3 label="CC: Place the 4th YOUNGEST child participated"; 1192 attrib awhspori length=3 label="CC: Allocation flag for EWHSPORI"; 1193 attrib ewhsporj length=3 label="CC: Place the 5th YOUNGEST child participated"; 1194 attrib awhsporj length=3 label="CC: Allocation flag for EWHSPORJ"; 1195 attrib ehsportf length=3 label="CC: Hours the YOUNGEST child participated in"; 1196 attrib ahsportf length=3 label="CC: Allocation flag for EHSPORTF"; 1197 attrib ehsportg length=3 label="CC: Hours the 2nd YOUNGEST child participated"; 1198 attrib ahsportg length=3 label="CC: Allocation flag for EHSPORTG"; 1199 attrib ehsporth length=3 label="CC: Hours the 3rd YOUNGEST child participated"; 1200 attrib ahsporth length=3 label="CC: Allocation flag for EHSPORTH"; 1201 attrib ehsporti length=3 label="CC: Hours the 4th YOUNGEST child participated"; 1202 attrib ahsporti length=3 label="CC: Allocation flag for EHSPORTI"; 1203 attrib ehsportj length=3 label="CC: Hours the 5th YOUNGEST child participated"; 1204 attrib ahsportj length=3 label="CC: Allocation flag for EHSPORTJ"; 1205 attrib ehrsporf length=3 label="CC: Work hours YOUNGEST child participated in"; 1206 attrib ahrsporf length=3 label="CC: Allocation flag for EHRSPORF"; 1207 attrib ehrsporg length=3 label="CC: Work hours 2nd YOUNGEST child"; 1208 attrib ahrsporg length=3 label="CC: Allocation flag for EHRSPORG"; 1209 attrib ehrsporh length=3 label="CC: Work hours 3rd YOUNGEST child"; 1210 attrib ahrsporh length=3 label="CC: Allocation flag for EHRSPORH"; 1211 attrib ehrspori length=3 label="CC: Work hours 4th YOUNGEST child"; 1212 attrib ahrspori length=3 label="CC: Allocation flag for EHRSPORI"; 1213 attrib ehrsporj length=3 label="CC: Work hours 5th YOUNGEST child"; 1214 attrib ahrsporj length=3 label="CC: Allocation flag for EHRSPORJ"; 1215 attrib epayspof length=3 label="CC: Paid for YOUNGEST child to play sports"; 1216 attrib apayspof length=3 label="CC: Allocation flag for EPAYSPOF"; 1217 attrib epayspog length=3 label="CC: Paid for 2nd YOUNGEST child to play sports"; 1218 attrib apayspog length=3 label="CC: Allocation flag for EPAYSPOG"; 1219 attrib epayspoh length=3 label="CC: Paid for 3rd YOUNGEST child to play sports"; 1220 attrib apayspoh length=3 label="CC: Allocation flag for EPAYSPOH"; 1221 attrib epayspoi length=3 label="CC: Paid for 4th YOUNGEST child to play sports"; 1222 attrib apayspoi length=3 label="CC: Allocation flag for EPAYSPOI"; 1223 attrib epayspoj length=3 label="CC: Paid for 5th YOUNGEST child to play sports"; 1224 attrib apayspoj length=3 label="CC: Allocation flag for EPAYSPOJ"; 1225 attrib tamtspof length=3 label="CC: Amount paid for the YOUNGEST child to"; 1226 attrib aamtspof length=3 label="CC: Allocation flag for TAMTSPOF"; 1227 attrib tamtspog length=3 label="CC: Amount paid for the 2nd YOUNGEST to play"; 1228 attrib aamtspog length=3 label="CC: Allocation flag for TAMTSPOG"; 1229 attrib tamtspoh length=3 label="CC: Amount paid for the 3rd YOUNGEST to play"; 1230 attrib aamtspoh length=3 label="CC: Allocation flag for TAMTSPOH"; 1231 attrib tamtspoi length=3 label="CC: Amount paid for the 4th YOUNGEST to play"; 1232 attrib aamtspoi length=3 label="CC: Allocation flag for TAMTSPOI"; 1233 attrib tamtspoj length=3 label="CC: Amount paid for the 5th YOUNGEST to play"; 1234 attrib aamtspoj length=3 label="CC: Allocation flag for TAMTSPOJ"; 1235 attrib ewhlessf length=3 label="CC: Place where the YOUNGEST child took"; 1236 attrib awhlessf length=3 label="CC: Allocation flag for EWHLESSF"; 1237 attrib ewhlessg length=3 label="CC: Place where the 2nd YOUNGEST child took"; 1238 attrib awhlessg length=3 label="CC: Allocation flag for EWHLESSG"; 1239 attrib ewhlessh length=3 label="CC: Place where the 3rd YOUNGEST child took"; 1240 attrib awhlessh length=3 label="CC: Allocation flag for EWHLESSH"; 1241 attrib ewhlessi length=3 label="CC: Place where the 4th YOUNGEST child took"; 1242 attrib awhlessi length=3 label="CC: Allocation flag for EWHLESSI"; 1243 attrib ewhlessj length=3 label="CC: Place where the 5th YOUNGEST child took"; 1244 attrib awhlessj length=3 label="CC: Allocation flag for EWHLESSJ"; 23 The SAS System 11:54 Thursday, June 7, 2012 1245 attrib ehrles1f length=3 label="CC: Hours the YOUNGEST child took lessons"; 1246 attrib ahrles1f length=3 label="CC: Allocation flag for EHRLES1F"; 1247 attrib ehrles1g length=3 label="CC: Hours the 2nd YOUNGEST child took lessons"; 1248 attrib ahrles1g length=3 label="CC: Allocation flag for EHRLES1G"; 1249 attrib ehrles1h length=3 label="CC: Hours the 3rd YOUNGEST child took lessons"; 1250 attrib ahrles1h length=3 label="CC: Allocation flag for EHRLES1H"; 1251 attrib ehrles1i length=3 label="CC: Hours the 4th YOUNGEST child took lessons"; 1252 attrib ahrles1i length=3 label="CC: Allocation flag for EHRLES1I"; 1253 attrib ehrles1j length=3 label="CC: Hours the 5th YOUNGEST child took lessons"; 1254 attrib ahrles1j length=3 label="CC: Allocation flag for EHRLES1J"; 1255 attrib ehrles2f length=3 label="CC: Work hours YOUNGEST child took lessons"; 1256 attrib ahrles2f length=3 label="CC: Allocation flag for EHRLES2F"; 1257 attrib ehrles2g length=3 label="CC: Work hours 2nd YOUNGEST child took lessons"; 1258 attrib ahrles2g length=3 label="CC: Allocation flag for EHRLES2G"; 1259 attrib ehrles2h length=3 label="CC: Work hours 3rd YOUNGEST child took lessons"; 1260 attrib ahrles2h length=3 label="CC: Allocation flag for EHRLES2H"; 1261 attrib ehrles2i length=3 label="CC: Work hours 4th YOUNGEST child took lessons"; 1262 attrib ahrles2i length=3 label="CC: Allocation flag for EHRLES2I"; 1263 attrib ehrles2j length=3 label="CC: Work hours 5th YOUNGEST child took lessons"; 1264 attrib ahrles2j length=3 label="CC: Allocation flag for EHRLES2J"; 1265 attrib epaylesf length=3 label="CC: Paid for YOUNGEST child to take lessons"; 1266 attrib apaylesf length=3 label="CC: Allocation flag for EPAYLESF"; 1267 attrib epaylesg length=3 label="CC: Paid for 2nd YOUNGEST child to take"; 1268 attrib apaylesg length=3 label="CC: Allocation flag for EPAYLESG"; 1269 attrib epaylesh length=3 label="CC: Paid for 3rd YOUNGEST child to take"; 1270 attrib apaylesh length=3 label="CC: Allocation flag for EPAYLESH"; 1271 attrib epaylesi length=3 label="CC: Paid for the 4th YOUNGEST child to take"; 1272 attrib apaylesi length=3 label="CC: Allocation flag for EPAYLESI"; 1273 attrib epaylesj length=3 label="CC: Paid for 5th YOUNGEST child to take"; 1274 attrib apaylesj length=3 label="CC: Allocation flag for EPAYLESJ"; 1275 attrib tamtlesf length=3 label="CC: Amount paid for the YOUNGEST child's"; 1276 attrib aamtlesf length=3 label="CC: Allocation flag for TAMTLESF"; 1277 attrib tamtlesg length=3 label="CC: Amount paid for the 2nd YOUNGEST child's"; 1278 attrib aamtlesg length=3 label="CC: Allocation flag for TAMTLESG"; 1279 attrib tamtlesh length=3 label="CC: Amount paid for the 3rd YOUNGEST child's"; 1280 attrib aamtlesh length=3 label="CC: Allocation flag for TAMTLESH"; 1281 attrib tamtlesi length=3 label="CC: Amount paid for the 4th YOUNGEST child's"; 1282 attrib aamtlesi length=3 label="CC: Allocation flag for TAMTLESI"; 1283 attrib tamtlesj length=3 label="CC: Amount paid for the 5th YOUNGEST child's"; 1284 attrib aamtlesj length=3 label="CC: Allocation flag for TAMTLESJ"; 1285 attrib ewhclubf length=3 label="CC: Place of YOUNGEST child's club meetings"; 1286 attrib awhclubf length=3 label="CC: Allocation flag for EWHCLUBF"; 1287 attrib ewhclubg length=3 label="CC: Place of 2nd YOUNGEST child's club"; 1288 attrib awhclubg length=3 label="CC: Allocation flag for EWHCLUBG"; 1289 attrib ewhclubh length=3 label="CC: Place of 3rd YOUNGEST child's club"; 1290 attrib awhclubh length=3 label="CC: Allocation flag for EWHCLUBH"; 1291 attrib ewhclubi length=3 label="CC: Place of 4th YOUNGEST child's club"; 1292 attrib awhclubi length=3 label="CC: Allocation flag for EWHCLUBI"; 1293 attrib ewhclubj length=3 label="CC: Place of 5th YOUNGEST child's club"; 1294 attrib awhclubj length=3 label="CC: Allocation flag for EWHCLUBJ"; 1295 attrib eclubhrf length=3 label="CC: Hours YOUNGEST child spent at club"; 1296 attrib aclubhrf length=3 label="CC: Allocation flag for ECLUBHRF"; 1297 attrib eclubhrg length=3 label="CC: Hours 2nd YOUNGEST child spent at club"; 1298 attrib aclubhrg length=3 label="CC: Allocation flag for ECLUBHRG"; 1299 attrib eclubhrh length=3 label="CC: Hours 3rd YOUNGEST child spent at club"; 1300 attrib aclubhrh length=3 label="CC: Allocation flag for ECLUBHRH"; 1301 attrib eclubhri length=3 label="CC: Hours 4th YOUNGEST child spent at club"; 1302 attrib aclubhri length=3 label="CC: Allocation flag for ECLUBHRI"; 24 The SAS System 11:54 Thursday, June 7, 2012 1303 attrib eclubhrj length=3 label="CC: Hours 5th YOUNGEST child spent at club"; 1304 attrib aclubhrj length=3 label="CC: Allocation flag for ECLUBHRJ"; 1305 attrib ehrclubf length=3 label="CC: Work hours YOUNGEST child was at club"; 1306 attrib ahrclubf length=3 label="CC: Allocation flag for EHRCLUBF"; 1307 attrib ehrclubg length=3 label="CC: Work hours 2nd YOUNGEST child was at club"; 1308 attrib ahrclubg length=3 label="CC: Allocation flag for EHRCLUBG"; 1309 attrib ehrclubh length=3 label="CC: Work hours 3rd YOUNGEST child was at club"; 1310 attrib ahrclubh length=3 label="CC: Allocation flag for EHRCLUBH"; 1311 attrib ehrclubi length=3 label="CC: Work hours 4th YOUNGEST child was at club"; 1312 attrib ahrclubi length=3 label="CC: Allocation flag for EHRCLUBI"; 1313 attrib ehrclubj length=3 label="CC: Work hours 5th YOUNGEST child was at club"; 1314 attrib ahrclubj length=3 label="CC: Allocation flag for EHRCLUBJ"; 1315 attrib epaycluf length=3 label="CC: Paid for YOUNGEST child to belong to a"; 1316 attrib apaycluf length=3 label="CC: Allocation flag for EPAYCLUF"; 1317 attrib epayclug length=3 label="CC: Paid for 2nd YOUNGEST child to belong to"; 1318 attrib apayclug length=3 label="CC: Allocation flag for EPAYCLUG"; 1319 attrib epaycluh length=3 label="CC: Paid for 3rd YOUNGEST child to belong to"; 1320 attrib apaycluh length=3 label="CC: Allocation flag for EPAYCLUH"; 1321 attrib epayclui length=3 label="CC: Paid for 4th YOUNGEST child to belong to"; 1322 attrib apayclui length=3 label="CC: Allocation flag for EPAYCLUI"; 1323 attrib epaycluj length=3 label="CC: Paid for 5th YOUNGEST child to belong to"; 1324 attrib apaycluj length=3 label="CC: Allocation flag for EPAYCLUJ"; 1325 attrib tamtcluf length=3 label="CC: Amount paid for YOUNGEST child to be in a"; 1326 attrib aamtcluf length=3 label="CC: Allocation flag for TAMTCLUF"; 1327 attrib tamtclug length=3 label="CC: Amount paid for 2nd YOUNGEST child to be"; 1328 attrib aamtclug length=3 label="CC: Allocation flag for TAMTCLUG"; 1329 attrib tamtcluh length=3 label="CC: Amount paid for 3rd YOUNGEST child to be"; 1330 attrib aamtcluh length=3 label="CC: Allocation flag for TAMTCLUH"; 1331 attrib tamtclui length=3 label="CC: Amount paid for 4th YOUNGEST child to be"; 1332 attrib aamtclui length=3 label="CC: Allocation flag for TAMTCLUI"; 1333 attrib tamtcluj length=3 label="CC: Amount paid for 5th YOUNGEST child to be"; 1334 attrib aamtcluj length=3 label="CC: Allocation flag for TAMTCLUJ"; 1335 attrib ewhschof length=3 label="CC: Place of YOUNGEST child's after school"; 1336 attrib awhschof length=3 label="CC: Allocation flag for EWHSCHOF"; 1337 attrib ewhschog length=3 label="CC: Place of 2nd YOUNGEST child's after"; 1338 attrib awhschog length=3 label="CC: Allocation flag for EWHSCHOG"; 1339 attrib ewhschoh length=3 label="CC: Place of 3rd YOUNGEST child's after"; 1340 attrib awhschoh length=3 label="CC: Allocation flag for EWHSCHOH"; 1341 attrib ewhschoi length=3 label="CC: Place of 4th YOUNGEST child's after"; 1342 attrib awhschoi length=3 label="CC: Allocation flag for EWHSCHOI"; 1343 attrib ewhschoj length=3 label="CC: Place of 5th YOUNGEST child's after"; 1344 attrib awhschoj length=3 label="CC: Allocation flag for EWHSCHOJ"; 1345 attrib ehscho1f length=3 label="CC: Hours YOUNGEST child spent in after"; 1346 attrib ahscho1f length=3 label="CC: Allocation flag for EHSCHO1F"; 1347 attrib ehscho1g length=3 label="CC: Hours 2nd YOUNGEST child spent in after"; 1348 attrib ahscho1g length=3 label="CC: Allocation flag for EHSCHO1G"; 1349 attrib ehscho1h length=3 label="CC: Hours 3rd YOUNGEST child spent in after"; 1350 attrib ahscho1h length=3 label="CC: Allocation flag for EHSCHO1H"; 1351 attrib ehscho1i length=3 label="CC: Hours 4th YOUNGEST child spent in after"; 1352 attrib ahscho1i length=3 label="CC: Allocation flag for EHSCHO1I"; 1353 attrib ehscho1j length=3 label="CC: Hours 5th YOUNGEST child spent in after"; 1354 attrib ahscho1j length=3 label="CC: Allocation flag for EHSCHO1J"; 1355 attrib ehrsch2f length=3 label="CC: Work hours YOUNGEST child in after school"; 1356 attrib ahrsch2f length=3 label="CC: Allocation flag for EHRSCH2F"; 1357 attrib ehrsch2g length=3 label="CC: Work hours 2nd YOUNGEST child in after"; 1358 attrib ahrsch2g length=3 label="CC: Allocation flag for EHRSCH2G"; 1359 attrib ehrsch2h length=3 label="CC: Work hours 3rd YOUNGEST child in after"; 1360 attrib ahrsch2h length=3 label="CC: Allocation flag for EHRSCH2H"; 25 The SAS System 11:54 Thursday, June 7, 2012 1361 attrib ehrsch2i length=3 label="CC: Work hours 4th YOUNGEST child in after"; 1362 attrib ahrsch2i length=3 label="CC: Allocation flag for EHRSCH2I"; 1363 attrib ehrsch2j length=3 label="CC: Work hours 5th YOUNGEST child in after"; 1364 attrib ahrsch2j length=3 label="CC: Allocation flag for EHRSCH2J"; 1365 attrib epayschf length=3 label="CC: Paid for YOUNGEST child's after school"; 1366 attrib apayschf length=3 label="CC: Allocation flag for EPAYSCHF"; 1367 attrib epayschg length=3 label="CC: Paid for 2nd YOUNGEST child's after"; 1368 attrib apayschg length=3 label="CC: Allocation flag for EPAYSCHG"; 1369 attrib epayschh length=3 label="CC: Paid for 3rd YOUNGEST child's after"; 1370 attrib apayschh length=3 label="CC: Allocation flag for EPAYSCHH"; 1371 attrib epayschi length=3 label="CC: Paid for 4th YOUNGEST child's after"; 1372 attrib apayschi length=3 label="CC: Allocation flag for EPAYSCHI"; 1373 attrib epayschj length=3 label="CC: Paid for 5th YOUNGEST child's after"; 1374 attrib apayschj length=3 label="CC: Allocation flag for EPAYSCHJ"; 1375 attrib tamtschf length=3 label="CC: Amount paid for YOUNGEST child's after"; 1376 attrib aamtschf length=3 label="CC: Allocation flag for TAMTSCHF"; 1377 attrib tamtschg length=3 label="CC: Amt paid for 2nd YOUNGEST child's after"; 1378 attrib aamtschg length=3 label="CC: Allocation flag for TAMTSCHG"; 1379 attrib tamtschh length=3 label="CC: Amt paid for 3rd YOUNGEST child's after"; 1380 attrib aamtschh length=3 label="CC: Allocation flag for TAMTSCHH"; 1381 attrib tamtschi length=3 label="CC: Amt paid for 4th YOUNGEST child's after"; 1382 attrib aamtschi length=3 label="CC: Allocation flag for TAMTSCHI"; 1383 attrib tamtschj length=3 label="CC: Amt paid for 5th YOUNGEST child's after"; 1384 attrib aamtschj length=3 label="CC: Allocation flag for TAMTSCHJ"; 1385 attrib ewhothef length=3 label="CC: Place non-relative cared for the YOUNGEST"; 1386 attrib awhothef length=3 label="CC: Allocation flag for EWHOTHEF"; 1387 attrib ewhotheg length=3 label="CC: Place non-relative cared for the 2nd"; 1388 attrib awhotheg length=3 label="CC: Allocation flag for EWHOTHEG"; 1389 attrib ewhotheh length=3 label="CC: Place non-relative cared for the 3rd"; 1390 attrib awhotheh length=3 label="CC: Allocation flag for EWHOTHEH"; 1391 attrib ewhothei length=3 label="CC: Place non-relative cared for the 4th"; 1392 attrib awhothei length=3 label="CC: Allocation flag for EWHOTHEI"; 1393 attrib ewhothej length=3 label="CC: Place non-relative cared for the 5th"; 1394 attrib awhothej length=3 label="CC: Allocation flag for EWHOTHEJ"; 1395 attrib eothehrf length=3 label="CC: Hours non-relative cared for YOUNGEST"; 1396 attrib aothehrf length=3 label="CC: Allocation flag for EOTHEHRF"; 1397 attrib eothehrg length=3 label="CC: Hours non-relative cared for 2nd YOUNGEST"; 1398 attrib aothehrg length=3 label="CC: Allocation flag for EOTHEHRG"; 1399 attrib eothehrh length=3 label="CC: Hours non-relative cared for 3rd YOUNGEST"; 1400 attrib aothehrh length=3 label="CC: Allocation flag for EOTHEHRH"; 1401 attrib eothehri length=3 label="CC: Hours non-relative cared for 4th YOUNGEST"; 1402 attrib aothehri length=3 label="CC: Allocation flag for EOTHEHRI"; 1403 attrib eothehrj length=3 label="CC: Hours non-relative cared for 5th YOUNGEST"; 1404 attrib aothehrj length=3 label="CC: Allocation flag for EOTHEHRJ"; 1405 attrib ehrothef length=3 label="CC: Work hours non-relative cared for"; 1406 attrib ahrothef length=3 label="CC: Allocation flag for EHROTHEF"; 1407 attrib ehrotheg length=3 label="CC: Work hours non-relative cared for 2nd"; 1408 attrib ahrotheg length=3 label="CC: Allocation flag for EHROTHEG"; 1409 attrib ehrotheh length=3 label="CC: Work hours non-relative cared for 3rd"; 1410 attrib ahrotheh length=3 label="CC: Allocation flag for EHROTHEH"; 1411 attrib ehrothei length=3 label="CC: Work hours non-relative cared for 4th"; 1412 attrib ahrothei length=3 label="CC: Allocation flag for EHROTHEI"; 1413 attrib ehrothej length=3 label="CC: Work hours non-relative cared for 5th"; 1414 attrib ahrothej length=3 label="CC: Allocation flag for EHROTHEJ"; 1415 attrib epayothf length=3 label="CC: Paid non-relative to care for YOUNGEST"; 1416 attrib apayothf length=3 label="CC: Allocation flag for EPAYOTHF"; 1417 attrib epayothg length=3 label="CC: Paid non-relative to care for 2nd"; 1418 attrib apayothg length=3 label="CC: Allocation flag for EPAYOTHG"; 26 The SAS System 11:54 Thursday, June 7, 2012 1419 attrib epayothh length=3 label="CC: Paid non-relative to care for 3rd"; 1420 attrib apayothh length=3 label="CC: Allocation flag for EPAYOTHH"; 1421 attrib epayothi length=3 label="CC: Paid non-relative to care for 4th"; 1422 attrib apayothi length=3 label="CC: Allocation flag for EPAYOTHI"; 1423 attrib epayothj length=3 label="CC: Paid non-relative to care for 5th"; 1424 attrib apayothj length=3 label="CC: Allocation flag for EPAYOTHJ"; 1425 attrib tamtothf length=3 label="CC: Amount paid non-relative to care for"; 1426 attrib aamtothf length=3 label="CC: Allocation flag for TAMTOTHF"; 1427 attrib tamtothg length=3 label="CC: Amount paid non-relative to care for 2nd"; 1428 attrib aamtothg length=3 label="CC: Allocation flag for TAMTOTHG"; 1429 attrib tamtothh length=3 label="CC: Amount paid non-relative to care for 3rd"; 1430 attrib aamtothh length=3 label="CC: Allocation flag for TAMTOTHH"; 1431 attrib tamtothi length=3 label="CC: Amount paid non-relative to care for 4th"; 1432 attrib aamtothi length=3 label="CC: Allocation flag for TAMTOTHI"; 1433 attrib tamtothj length=3 label="CC: Amount paid non-relative to care for 5th"; 1434 attrib aamtothj length=3 label="CC: Allocation flag for TAMTOTHJ"; 1435 attrib eschoowf length=3 label="CC: YOUNGEST child attended school last month"; 1436 attrib aschoowf length=3 label="CC: Allocation flag for ESCHOOWF"; 1437 attrib eschoowg length=3 label="CC: 2nd YOUNGEST child attended school last"; 1438 attrib aschoowg length=3 label="CC: Allocation flag for ESCHOOWG"; 1439 attrib eschoowh length=3 label="CC: 3rd YOUNGEST child attended school last"; 1440 attrib aschoowh length=3 label="CC: Allocation flag for ESCHOOWH"; 1441 attrib eschoowi length=3 label="CC: 4th YOUNGEST child attended school last"; 1442 attrib aschoowi length=3 label="CC: Allocation flag for ESCHOOWI"; 1443 attrib eschoowj length=3 label="CC: 5th YOUNGEST child attended school last"; 1444 attrib aschoowj length=3 label="CC: Allocation flag for ESCHOOWJ"; 1445 attrib ehrschwf length=3 label="CC: Hours per week YOUNGEST child was in"; 1446 attrib ahrschwf length=3 label="CC: Allocation flag for EHRSCHWF"; 1447 attrib ehrschwg length=3 label="CC: Hours per week 2nd YOUNGEST child was in"; 1448 attrib ahrschwg length=3 label="CC: Allocation flag for EHRSCHWG"; 1449 attrib ehrschwh length=3 label="CC: Hours per week 3rd YOUNGEST child was in"; 1450 attrib ahrschwh length=3 label="CC: Allocation flag for EHRSCHWH"; 1451 attrib ehrschwi length=3 label="CC: Hours per week 4th YOUNGEST child was in"; 1452 attrib ahrschwi length=3 label="CC: Allocation flag for EHRSCHWI"; 1453 attrib ehrschwj length=3 label="CC: Hours per week 5th YOUNGEST child was in"; 1454 attrib ahrschwj length=3 label="CC: Allocation flag for EHRSCHWJ"; 1455 attrib ehrschof length=3 label="CC: Work hours YOUNGEST child was in school"; 1456 attrib ahrschof length=3 label="CC: Allocation flag for EHRSCHOF"; 1457 attrib ehrschog length=3 label="CC: Work hours 2nd YOUNGEST child was in"; 1458 attrib ahrschog length=3 label="CC: Allocation flag for EHRSCHOG"; 1459 attrib ehrschoh length=3 label="CC: Work hours 3rd YOUNGEST child was in"; 1460 attrib ahrschoh length=3 label="CC: Allocation flag for EHRSCHOH"; 1461 attrib ehrschoi length=3 label="CC: Work hours 4th YOUNGEST child was in"; 1462 attrib ahrschoi length=3 label="CC: Allocation flag for EHRSCHOI"; 1463 attrib ehrschoj length=3 label="CC: Work hours 5th YOUNGEST child was in"; 1464 attrib ahrschoj length=3 label="CC: Allocation flag for EHRSCHOJ"; 1465 attrib eselfcaf length=3 label="CC: YOUNGEST child cared for self"; 1466 attrib aselfcaf length=3 label="CC: Allocation flag for ESELFCAF"; 1467 attrib eselfcag length=3 label="CC: 2nd YOUNGEST child cared for self"; 1468 attrib aselfcag length=3 label="CC: Allocation flag for ESELFCAG"; 1469 attrib eselfcah length=3 label="CC: 3rd YOUNGEST child cared for self"; 1470 attrib aselfcah length=3 label="CC: Allocation flag for ESELFCAH"; 1471 attrib eselfcai length=3 label="CC: 4th YOUNGEST child cared for self"; 1472 attrib aselfcai length=3 label="CC: Allocation flag for ESELFCAI"; 1473 attrib eselfcaj length=3 label="CC: 5th YOUNGEST child cared for self"; 1474 attrib aselfcaj length=3 label="CC: Allocation flag for ESELFCAJ"; 1475 attrib ekidhr1f length=3 label="CC: Hours per week YOUNGEST child cared for"; 1476 attrib akidhr1f length=3 label="CC: Allocation flag for EKIDHR1F"; 27 The SAS System 11:54 Thursday, June 7, 2012 1477 attrib ekidhr1g length=3 label="CC: Hours per week 2nd YOUNGEST child cared"; 1478 attrib akidhr1g length=3 label="CC: Allocation flag for EKIDHR1G"; 1479 attrib ekidhr1h length=3 label="CC: Hours per week 3rd YOUNGEST child cared"; 1480 attrib akidhr1h length=3 label="CC: Allocation flag for EKIDHR1H"; 1481 attrib ekidhr1i length=3 label="CC: Hours per week 4th YOUNGEST child cared"; 1482 attrib akidhr1i length=3 label="CC: Allocation flag for EKIDHR1I"; 1483 attrib ekidhr1j length=3 label="CC: Hours per week 5th YOUNGEST child cared"; 1484 attrib akidhr1j length=3 label="CC: Allocation flag for EKIDHR1J"; 1485 attrib ekidhr2f length=3 label="CC: Work hours YOUNGEST child cared for self"; 1486 attrib akidhr2f length=3 label="CC: Allocation flag for EKIDHR2F"; 1487 attrib ekidhr2g length=3 label="CC: Work hours 2nd YOUNGEST child cared for"; 1488 attrib akidhr2g length=3 label="CC: Allocation flag for EKIDHR2G"; 1489 attrib ekidhr2h length=3 label="CC: Work hours 3rd YOUNGEST child cared for"; 1490 attrib akidhr2h length=3 label="CC: Allocation flag for EKIDHR2H"; 1491 attrib ekidhr2i length=3 label="CC: Work hours 4th YOUNGEST child cared for"; 1492 attrib akidhr2i length=3 label="CC: Allocation flag for EKIDHR2I"; 1493 attrib ekidhr2j length=3 label="CC: Work hours 5th YOUNGEST child cared for"; 1494 attrib akidhr2j length=3 label="CC: Allocation flag for EKIDHR2J"; 1495 attrib edaychaf length=3 label="CC: Any change in child care for YOUNGEST"; 1496 attrib adaychaf length=3 label="CC: Allocation flag for EDAYCHAF"; 1497 attrib edaychag length=3 label="CC: Any change in child care for 2nd YOUNGEST"; 1498 attrib adaychag length=3 label="CC: Allocation flag for EDAYCHAG"; 1499 attrib edaychah length=3 label="CC: Any change in child care for 3rd YOUNGEST"; 1500 attrib adaychah length=3 label="CC: Allocation flag for EDAYCHAH"; 1501 attrib edaychai length=3 label="CC: Any change in child care for 4th YOUNGEST"; 1502 attrib adaychai length=3 label="CC: Allocation flag for EDAYCHAI"; 1503 attrib edaychaj length=3 label="CC: Any change in child care for 5th YOUNGEST"; 1504 attrib adaychaj length=3 label="CC: Allocation flag for EDAYCHAJ"; 1505 attrib epayhelf length=3 label="CC: Anyone help pay for YOUNGEST child's care"; 1506 attrib apayhelf length=3 label="CC: Allocation flag for EPAYHELF"; 1507 attrib epayhelg length=3 label="CC: Anyone help pay for 2nd YOUNGEST child's"; 1508 attrib apayhelg length=3 label="CC: Allocation flag for EPAYHELG"; 1509 attrib epayhelh length=3 label="CC: Anyone help pay for 3rd YOUNGEST child's"; 1510 attrib apayhelh length=3 label="CC: Allocation flag for EPAYHELH"; 1511 attrib epayheli length=3 label="CC: Anyone help pay for 4th YOUNGEST child's"; 1512 attrib apayheli length=3 label="CC: Allocation flag for EPAYHELI"; 1513 attrib epayhelj length=3 label="CC: Anyone help pay for 5th YOUNGEST child's"; 1514 attrib apayhelj length=3 label="CC: Allocation flag for EPAYHELJ"; 1515 attrib ewhopa1f length=3 label="CC: Government helped pay for YOUNGEST"; 1516 attrib ewhopa2f length=3 label="CC: Other parent helped pay for YOUNGEST"; 1517 attrib ewhopa3f length=3 label="CC: Employer helped pay for YOUNGEST child's"; 1518 attrib ewhopa4f length=3 label="CC: Someone else helped pay for YOUNGEST"; 1519 attrib awhopaf length=3 label="CC: Allocation flag for EWHOPA1F-EWHOPA4F"; 1520 attrib ewhopa1g length=3 label="CC: Government helped pay 2nd YOUNGEST"; 1521 attrib ewhopa2g length=3 label="CC: Other parent helped pay 2nd YOUNGEST"; 1522 attrib ewhopa3g length=3 label="CC: Employer helped pay 2nd YOUNGEST child's"; 1523 attrib ewhopa4g length=3 label="CC: Someone else helped pay 2nd YOUNGEST"; 1524 attrib awhopag length=3 label="CC: Allocation flag for EWHOPA1G-EWHOPA4G"; 1525 attrib ewhopa1h length=3 label="CC: Government helped pay 3rd YOUNGEST"; 1526 attrib ewhopa2h length=3 label="CC: Other parent helped pay 3rd YOUNGEST"; 1527 attrib ewhopa3h length=3 label="CC: Employer helped pay 3rd YOUNGEST child's"; 1528 attrib ewhopa4h length=3 label="CC: Someone else helped pay 3rd YOUNGEST"; 1529 attrib awhopah length=3 label="CC: Allocation flag for EWHOPA1H-EWHOPA4H"; 1530 attrib ewhopa1i length=3 label="CC: Government helped pay 4th YOUNGEST"; 1531 attrib ewhopa2i length=3 label="CC: Other parent helped pay 4th YOUNGEST"; 1532 attrib ewhopa3i length=3 label="CC: Employer helped pay 4th YOUNGEST child's"; 1533 attrib ewhopa4i length=3 label="CC: Someone else helped pay 4th YOUNGEST"; 1534 attrib awhopai length=3 label="CC: Allocation flag for EWHOPA1I-EWHOPA4I"; 28 The SAS System 11:54 Thursday, June 7, 2012 1535 attrib ewhopa1j length=3 label="CC: Government helped pay 5th YOUNGEST"; 1536 attrib ewhopa2j length=3 label="CC: Other parent helped pay 5th YOUNGEST"; 1537 attrib ewhopa3j length=3 label="CC: Employer helped pay 5th YOUNGEST child's"; 1538 attrib ewhopa4j length=3 label="CC: Someone else helped pay 5th YOUNGEST"; 1539 attrib awhopaj length=3 label="CC: Allocation flag for EWHOPA1J-EWHOPA4J"; 1540 attrib esatisf length=3 label="CC: Satisfied with care of YOUNGEST child"; 1541 attrib esatisg length=3 label="CC: Satisfied with care of 2nd YOUNGEST child"; 1542 attrib esatish length=3 label="CC: Satisfied with care of 3rd YOUNGEST child"; 1543 attrib esatisi length=3 label="CC: Satisfied with care of 4th YOUNGEST child"; 1544 attrib esatisj length=3 label="CC: Satisfied with care of 5th YOUNGEST child"; 1545 attrib elistf length=3 label="CC: On waiting list for care for YOUNGEST"; 1546 attrib alistf length=3 label="CC: Allocation flag for ELISTF"; 1547 attrib elistg length=3 label="CC: On waiting list for care for 2nd YOUNGEST"; 1548 attrib alistg length=3 label="CC: Allocation flag for ELISTG"; 1549 attrib elisth length=3 label="CC: On waiting list for care for 3rd YOUNGEST"; 1550 attrib alisth length=3 label="CC: Allocation flag for ELISTH"; 1551 attrib elisti length=3 label="CC: On waiting list for care for 4th YOUNGEST"; 1552 attrib alisti length=3 label="CC: Allocation flag for ELISTI"; 1553 attrib elistj length=3 label="CC: On waiting list for care for 5th YOUNGEST"; 1554 attrib alistj length=3 label="CC: Allocation flag for ELISTJ"; 1555 attrib eworkmor length=3 label="CC: Child care problems hinder more time at"; 1556 attrib aworkmor length=3 label="CC: Allocation flag for EWORKMOR"; 1557 attrib etiamt01 length=3 label="CC: Time lost last month due to child care"; 1558 attrib atiamt01 length=3 label="CC: Allocation flag for ETIAMT01"; 1559 attrib etiamt02 length=3 label="CC: Unit of time lost because of child care"; 1560 attrib atiamt02 length=3 label="CC: Allocation flag for ETIAMT02"; 1561 attrib eairunv length=3 label="AIR: Universe indicator."; 1562 attrib iothrbus length=3 label="AIR: Own and operate other business in 2010"; 1563 attrib iownbs04 length=3 label="AIR: Own and operate business in 2010"; 1564 attrib ibsform1 length=3 label="AIR: Form of business/practice"; 1565 attrib ibsloct1 length=3 label="AIR: Location of business"; 1566 attrib iprtown1 length=3 label="AIR: Part owner lives in this HH"; 1567 attrib iownrs11 length=4 label="AIR: First other HH member owner"; 1568 attrib iownrs12 length=4 label="AIR: Second other HH member owner"; 1569 attrib ihhown1 length=3 label="AIR: Business owned only by members of HH"; 1570 attrib rpcnthh1 length=3 label="AIR: Percentage of business owned by HH"; 1571 attrib rpctown1 length=3 label="AIR: Percentage of business owned in own name"; 1572 attrib tgrsrcp1 length=4 label="AIR: Gross receipts of business in 2010"; 1573 attrib ttotexp1 length=4 label="AIR: Total expenses of business in 2010"; 1574 attrib tnetinc1 length=4 label="AIR: Net income from business in 2010-profit"; 1575 attrib tnetinc2 length=4 label="AIR: Net income from business in 2010-loss"; 1576 attrib iothinc1 length=3 label="AIR: Whether first owner received net income"; 1577 attrib tnetin12 length=4 label="AIR: Net income, first other HH owner-profit"; 1578 attrib tnetin13 length=4 label="AIR: Net income, first other HH owner-loss"; 1579 attrib tnetin22 length=4 label="AIR: Net income, second other HH owner-profit"; 1580 attrib tnetin23 length=4 label="AIR: Net income, second other HH owner-loss"; 1581 attrib ibsform2 length=3 label="AIR: Form of business/practice"; 1582 attrib ibsloct2 length=3 label="AIR: Location of business"; 1583 attrib iprtown2 length=3 label="AIR: Whether other HH members were part owners"; 1584 attrib iownrs21 length=4 label="AIR: Which other HH members part-owners-"; 1585 attrib iownrs22 length=4 label="AIR: Which other HH members part-owners-"; 1586 attrib ihhown2 length=3 label="AIR: Business owned by members of HH"; 1587 attrib rpcnthh2 length=3 label="AIR: Percentage of business owned by HH member"; 1588 attrib rpctown2 length=3 label="AIR: Percentage of business owned in own name"; 1589 attrib tgrsrcp2 length=4 label="AIR: Gross receipts of second business in 2010"; 1590 attrib ttotexp2 length=4 label="AIR: Total expenses of second business in 2010"; 1591 attrib tnetinc3 length=4 label="AIR: Net income of second business in"; 1592 attrib tnetinc4 length=4 label="AIR: Net income of second business in"; 29 The SAS System 11:54 Thursday, June 7, 2012 1593 attrib iothinc2 length=3 label="AIR: Other income in 2010"; 1594 attrib tnetin32 length=4 label="AIR: Net income, first other HH owner-profit"; 1595 attrib tnetin33 length=4 label="AIR: Net income, first other HH owner-loss"; 1596 attrib tnetin42 length=4 label="AIR: Net income, second other HH owner-profit"; 1597 attrib tothinc3 length=4 label="AIR: Net income from other business-profit"; 1598 attrib tothinc4 length=4 label="AIR: Net income from other business-loss"; 1599 attrib iirayn length=3 label="AIR: Whether retirement account is in ... name"; 1600 attrib iiracont length=3 label="AIR: Whether tax-deduct contributions made to"; 1601 attrib ttaxcont length=4 label="AIR: Amount of tax-deduct contributions made"; 1602 attrib iirawdl length=3 label="AIR: Whether withdrawals were made from IRA"; 1603 attrib tamtira length=4 label="AIR: Amount withdrawn from IRAs in 2010"; 1604 attrib tiraearn length=4 label="AIR: Amount IRA account in own name earned in"; 1605 attrib iiratyp1 length=3 label="AIR: Assets in IRA accounts-CD or Savings Cert"; 1606 attrib iiratyp2 length=3 label="AIR: Assets in IRA accounts-Money Market Funds"; 1607 attrib iiratyp3 length=3 label="AIR: Assets in IRA accounts-U.S. Govt."; 1608 attrib iiratyp4 length=3 label="AIR: Assets in IRA accounts-Municipal or"; 1609 attrib iiratyp5 length=3 label="AIR: Assets in IRA accounts-U.S. Savings Bonds"; 1610 attrib iiratyp6 length=3 label="AIR: Assets in IRA accounts-Stocks or Mutual"; 1611 attrib iiratyp7 length=3 label="AIR: Assets in IRA accounts-Other assets"; 1612 attrib ikeoghyn length=3 label="AIR: Whether ... has a Keogh account"; 1613 attrib ikeoghcn length=3 label="AIR: Whether tax-deduct contributions made to"; 1614 attrib ttxkeogh length=4 label="AIR: Amount of tax-deduct contributions to"; 1615 attrib ikeoghwd length=3 label="AIR: Whether withdrawals were made from Keogh"; 1616 attrib tatkeogh length=4 label="AIR: Amount withdrawn from Keogh accounts in"; 1617 attrib tkeogher length=4 label="AIR: Amount Keogh accounts in own name earned"; 1618 attrib ikeohtp1 length=3 label="AIR: Assets in Keogh-CD or Savings"; 1619 attrib ikeohtp2 length=3 label="AIR: Assets in Keogh-Money Market Funds"; 1620 attrib ikeohtp3 length=3 label="AIR: Assets in Keogh-U.S. Govt. Securities"; 1621 attrib ikeohtp4 length=3 label="AIR: Assets in Keogh-Municipal or Corp. Bonds"; 1622 attrib ikeohtp5 length=3 label="AIR: Assets in Keogh-U.S. Savings Bonds"; 1623 attrib ikeohtp6 length=3 label="AIR: Assets in Keogh-Stocks or Mutual Funds"; 1624 attrib ikeohtp7 length=3 label="AIR: Assets in Keogh-Other assets"; 1625 attrib ithrftyn length=3 label="AIR: Whether employee involved in thrift/401k"; 1626 attrib tthftcnt length=4 label="AIR: Amount contributed to 401k/403b/thrift"; 1627 attrib ithftwdl length=3 label="AIR: Were withdrawals made from thrift/401k"; 1628 attrib tthftamt length=4 label="AIR: Amount withdrawn from 401k/403b/thrift"; 1629 attrib tthftern length=4 label="AIR: Amount of earnings from 401k/403b/thrift"; 1630 attrib ithftyp1 length=3 label="AIR: Assets in 401k,403b,thrift plan-Money"; 1631 attrib ithftyp2 length=3 label="AIR: Assets in 401k,403b,thrift"; 1632 attrib ithftyp3 length=3 label="AIR: Assets in 401k,403b plan-Municipal or"; 1633 attrib ithftyp4 length=3 label="AIR: Assets in 401k,403b,thrift -Stocks or"; 1634 attrib ithftyp5 length=3 label="AIR: Assets in 401k,403b,thrift plan-Other"; 1635 attrib eatxunv length=3 label="TAX: Universe indicator."; 1636 attrib itaxflyn length=3 label="TAX: Whether ... filed Federal income tax for"; 1637 attrib itaxcopy length=3 label="TAX: Whether ... has a copy of tax form or"; 1638 attrib tfilstat length=3 label="TAX: Filing status on 2009 Federal tax return"; 1639 attrib ttotexmp length=3 label="TAX: Number of exemptions claimed on return"; 1640 attrib iexemp01 length=4 label="TAX: First person claimed as an exemption"; 1641 attrib iexemp02 length=4 label="TAX: Second person claimed as an exemption"; 1642 attrib iexemp03 length=4 label="TAX: Third person claimed as an exemption"; 1643 attrib iexemp04 length=4 label="TAX: Fourth person claimed as an exemption"; 1644 attrib iexemp05 length=4 label="TAX: Fifth person claimed as an exemption"; 1645 attrib iexmpout length=3 label="TAX: Number of persons claimed as an exemption"; 1646 attrib iexnmout length=3 label="TAX: Number of persons claimed as an exemption"; 1647 attrib ioutrl01 length=3 label="TAX: First person's relationship"; 1648 attrib ioutrl02 length=3 label="TAX: Second person's relationship"; 1649 attrib ioutrl03 length=3 label="TAX: Third person's relationship"; 1650 attrib ioutrl04 length=3 label="TAX: Fourth person's relationship"; 30 The SAS System 11:54 Thursday, June 7, 2012 1651 attrib ioutrl05 length=3 label="TAX: Fifth person's relationship"; 1652 attrib ioutrl06 length=3 label="TAX: Sixth person's relationship"; 1653 attrib ioutrl07 length=3 label="TAX: Seventh person's relationship"; 1654 attrib ioutrl08 length=3 label="TAX: Eighth person's relationship"; 1655 attrib ioutrl09 length=3 label="TAX: Ninth person's relationship"; 1656 attrib ioutrl10 length=3 label="TAX: Tenth person's relationship"; 1657 attrib ifilform length=3 label="TAX: Form 1040 filed"; 1658 attrib ischeda length=3 label="TAX: Schedule A filed with 2009 tax return"; 1659 attrib ischedd length=3 label="TAX: Schedule D filed with 2009 tax return"; 1660 attrib tamtdedt length=3 label="TAX: Amount of itemized deductions for 2009"; 1661 attrib iccexpen length=3 label="TAX: Child and dependent care expense credit"; 1662 attrib tccamt length=3 label="TAX: Amt of child or dependent care expense"; 1663 attrib icarex01 length=4 label="TAX: First child and dependent care expense"; 1664 attrib icarex02 length=4 label="TAX: Second child and dependent care expense"; 1665 attrib icarex03 length=4 label="TAX: Third child and dependent care expense"; 1666 attrib icarex04 length=4 label="TAX: Fourth child and dependent care expense"; 1667 attrib icarex05 length=4 label="TAX: Fifth child and dependent care expense"; 1668 attrib icarex06 length=4 label="TAX: Sixth child and dependent care expense"; 1669 attrib icarex07 length=4 label="TAX: Seventh child and dependent care expense"; 1670 attrib icarex08 length=4 label="TAX: Eighth child and dependent care expense"; 1671 attrib icarex09 length=4 label="TAX: Ninth child and dependent care expense"; 1672 attrib icarex10 length=4 label="TAX: Tenth child and dependent care expense"; 1673 attrib icarex11 length=4 label="TAX: Eleventh child and dependent care"; 1674 attrib icarex12 length=4 label="TAX: Twelfth child and dependent care expense"; 1675 attrib icarex13 length=4 label="TAX: Thirteenth child and dependent care"; 1676 attrib icarex14 length=4 label="TAX: Fourteenth child and dependent care"; 1677 attrib icarex15 length=4 label="TAX: Fifteenth child and dependent care"; 1678 attrib icarex16 length=4 label="TAX: Sixteenth child and dependent care"; 1679 attrib icarex17 length=4 label="TAX: Seventeeth child and dependent care"; 1680 attrib icarex18 length=4 label="TAX: Eighteenth child and dependent care"; 1681 attrib icarex19 length=4 label="TAX: Nineteenth child and dependent care"; 1682 attrib icarex20 length=4 label="TAX: Twentieth child and dependent care"; 1683 attrib icarex21 length=4 label="TAX: 21st child and dependent care expense"; 1684 attrib icarex22 length=4 label="TAX: 22nd child and dependent care expense"; 1685 attrib icarex23 length=4 label="TAX: 23rd child and dependent care expense"; 1686 attrib icarex24 length=4 label="TAX: 24th child and dependent care expense"; 1687 attrib icarex25 length=4 label="TAX: 25th child and dependent care expense"; 1688 attrib icarex26 length=4 label="TAX: 26th child and dependent care expense"; 1689 attrib icarex27 length=4 label="TAX: 27th child and dependent care expense"; 1690 attrib icarex28 length=4 label="TAX: 28th child and dependent care expense"; 1691 attrib icarex29 length=4 label="TAX: 29th child and dependent care expense"; 1692 attrib icarex30 length=4 label="TAX: Thirtieth child and dependent care"; 1693 attrib idsabcrd length=3 label="TAX: Credit claimed for elderly or disabled"; 1694 attrib tsapgain length=3 label="TAX: Amt capital gains or losses from"; 1695 attrib tadjincm length=3 label="TAX: Adjusted gross income in 2009"; 1696 attrib tnettax length=3 label="TAX: Net tax liability in 2009"; 1697 attrib ierndcrd length=3 label="TAX: Whether earned income credit was claimed"; 1698 attrib terndamt length=3 label="TAX: Amount of earned income credit claimed"; 1699 attrib ieicex01 length=4 label="TAX: First person where earned income cr was"; 1700 attrib ieicex02 length=4 label="TAX: Second person where earned income cr was"; 1701 attrib ieicex03 length=4 label="TAX: Third person where earned income cr was"; 1702 attrib ieicex04 length=4 label="TAX: 4th person where earned income cr was"; 1703 attrib ieicex05 length=4 label="TAX: Fifth person where earned income cr was"; 1704 attrib ieicex06 length=4 label="TAX: Sixth person where earned income cr was"; 1705 attrib ieicex07 length=4 label="TAX: Seventh person where earned income cr"; 1706 attrib ieicex08 length=4 label="TAX: Eighth person where earned income cr was"; 1707 attrib ieicex09 length=4 label="TAX: Ninth person where earned income cr was"; 1708 attrib ieicex10 length=4 label="TAX: Tenth person where earned income cr was"; 31 The SAS System 11:54 Thursday, June 7, 2012 1709 attrib ieicex11 length=4 label="TAX: Eleventh person where earned income cr"; 1710 attrib ieicex12 length=4 label="TAX: Twelfth person where earned income cr"; 1711 attrib ieicex13 length=4 label="TAX: Thirteenth person where earned income cr"; 1712 attrib ieicex14 length=4 label="TAX: Fourteenth person where earned income cr"; 1713 attrib ieicex15 length=4 label="TAX: Fifteenth person where earned income cr"; 1714 attrib ieicex16 length=4 label="TAX: Sixteenth person where earned income cr"; 1715 attrib ieicex17 length=4 label="TAX: Seventeenth person where earned income"; 1716 attrib ieicex18 length=4 label="TAX: Eighteenth person where earned income cr"; 1717 attrib ieicex19 length=4 label="TAX: Nineteenth person where earned income cr"; 1718 attrib ieicex20 length=4 label="TAX: Twentieth person where earned income cr"; 1719 attrib ieicex21 length=4 label="TAX: Twenty-first person where earned inc cr"; 1720 attrib ieicex22 length=4 label="TAX: Twenty-second person where earned inc cr"; 1721 attrib ieicex23 length=4 label="TAX: Twenty-third person where earned inc cr"; 1722 attrib ieicex24 length=4 label="TAX: Twenty-fourth person where earned inc cr"; 1723 attrib ieicex25 length=4 label="TAX: Twenty-fifth person where earned inc cr"; 1724 attrib ieicex26 length=4 label="TAX: Twenty-sixth person where earned inc cr"; 1725 attrib ieicex27 length=4 label="TAX: Twenty-seventh person where earned inc"; 1726 attrib ieicex28 length=4 label="TAX: Twenty-eighth person where earned inc cr"; 1727 attrib ieicex29 length=4 label="TAX: Twenty-ninth person where earned inc cr"; 1728 attrib ieicex30 length=4 label="TAX: Thirtieth person where earned inc cr was"; 1729 attrib iproptax length=3 label="TAX: Property taxes paid on residence in 2009"; 1730 attrib ipropjnt length=3 label="TAX: Property tax paid jointly with someone"; 1731 attrib ipropn01 length=4 label="TAX: First person who made joint payments"; 1732 attrib ipropn02 length=4 label="TAX: Second person who made joint payments"; 1733 attrib ipropn03 length=4 label="TAX: Third person who made joint payments"; 1734 attrib ipropn04 length=4 label="TAX: Fourth person who made joint payments"; 1735 attrib ipropn05 length=4 label="TAX: Fifth person who made joint payments"; 1736 attrib ipropn06 length=4 label="TAX: Sixth person who made joint payments"; 1737 attrib ipropn07 length=4 label="TAX: Seventh person who made joint payments"; 1738 attrib ipropn08 length=4 label="TAX: Eighth person who made joint payments"; 1739 attrib ipropn09 length=4 label="TAX: Ninth person who made joint payments"; 1740 attrib ipropn10 length=4 label="TAX: Tenth person who made joint payments"; 1741 attrib ipropn11 length=4 label="TAX: Eleventh person who made joint payments"; 1742 attrib ipropn12 length=4 label="TAX: Twelfth person who made joint payments"; 1743 attrib ipropn13 length=4 label="TAX: Thirteenth person who made joint payments"; 1744 attrib ipropn14 length=4 label="TAX: Fourteenth person who made joint payments"; 1745 attrib ipropn15 length=4 label="TAX: Fifteenth person who made joint payments"; 1746 attrib ipropn16 length=4 label="TAX: Sixteenth person who made joint payments"; 1747 attrib ipropn17 length=4 label="TAX: Seventeenth person who made joint"; 1748 attrib ipropn18 length=4 label="TAX: Eighteenth person who made joint payments"; 1749 attrib ipropn19 length=4 label="TAX: Nineteenth person who made joint payments"; 1750 attrib ipropn20 length=4 label="TAX: Twentieth person who made joint payments"; 1751 attrib ipropn21 length=4 label="TAX: Twenty-first person who made joint"; 1752 attrib ipropn22 length=4 label="TAX: Twenty-second person who made joint"; 1753 attrib ipropn23 length=4 label="TAX: Twenty-third person who made joint"; 1754 attrib ipropn24 length=4 label="TAX: Twenty-fourth person who made joint"; 1755 attrib ipropn25 length=4 label="TAX: Twenty-fifth person who made joint"; 1756 attrib ipropn26 length=4 label="TAX: Twenty-sixth person who made joint"; 1757 attrib ipropn27 length=4 label="TAX: Twenty-seventh person who made joint"; 1758 attrib ipropn28 length=4 label="TAX: Twenty-eighth person who made joint"; 1759 attrib ipropn29 length=4 label="TAX: Twenty-ninth person who made joint"; 1760 attrib ipropn30 length=4 label="TAX: Thirtieth person who made joint payments"; 1761 attrib ttaxbill length=3 label="TAX: Property tax bill for your residence in"; 1762 1763 1764 INPUT 1765 1766 @1 ssuseq 5. 32 The SAS System 11:54 Thursday, June 7, 2012 1767 @6 ssuid $12. 1768 @18 spanel 4. 1769 @22 swave 2. 1770 @24 srotaton 1. 1771 @25 tfipsst 2. 1772 @27 shhadid 3. 1773 @30 eoutcome 3. 1774 @33 rfid 3. 1775 @36 rfid2 3. 1776 @39 eppidx 3. 1777 @42 eentaid $3. 1778 @45 epppnum $4. 1779 @49 epopstat 1. 1780 @50 eppintvw 2. 1781 @52 eppmis4 1. 1782 @53 esex 1. 1783 @54 erace 1. 1784 @55 eorigin 2. 1785 @57 wpfinwgt 10.4 1786 @67 errp 2. 1787 @69 tage 2. 1788 @71 ems 1. 1789 @72 epnspous 4. 1790 @76 epnmom 4. 1791 @80 epndad 4. 1792 @84 epnguard 4. 1793 @88 rdesgpnt 2. 1794 @90 eeducate 2. 1795 @92 lgtkey $8. 1796 @100 sinthhid 3. 1797 @103 epwsunv 2. 1798 @105 ewsempct 2. 1799 @107 awsempct 1. 1800 @108 ewseno1 2. 1801 @110 ewsbno1 2. 1802 @112 ewseno2 2. 1803 @114 ewsbno2 2. 1804 @116 ewshrs1 2. 1805 @118 awshrs1 1. 1806 @119 ewsdys1 2. 1807 @121 awsdys1 1. 1808 @122 ewsday11 2. 1809 @124 awsday11 1. 1810 @125 ewsday12 2. 1811 @127 awsday12 1. 1812 @128 ewsday13 2. 1813 @130 awsday13 1. 1814 @131 ewsday14 2. 1815 @133 awsday14 1. 1816 @134 ewsday15 2. 1817 @136 awsday15 1. 1818 @137 ewsday16 2. 1819 @139 awsday16 1. 1820 @140 ewsday17 2. 1821 @142 awsday17 1. 1822 @143 ewsbeg1 4. 1823 @147 awsbeg1 1. 1824 @148 ewsbegm1 2. 33 The SAS System 11:54 Thursday, June 7, 2012 1825 @150 awsbegm1 1. 1826 @151 ewsend1 4. 1827 @155 awsend1 1. 1828 @156 ewsendm1 2. 1829 @158 awsendm1 1. 1830 @159 ewshmwk1 2. 1831 @161 awshmwk1 1. 1832 @162 ewsdy11 2. 1833 @164 awsdy11 1. 1834 @165 ewsdy12 2. 1835 @167 awsdy12 1. 1836 @168 ewsdy13 2. 1837 @170 awsdy13 1. 1838 @171 ewsdy14 2. 1839 @173 awsdy14 1. 1840 @174 ewsdy15 2. 1841 @176 awsdy15 1. 1842 @177 ewsdy16 2. 1843 @179 awsdy16 1. 1844 @180 ewsdy17 2. 1845 @182 awsdy17 1. 1846 @183 ewsjob1 2. 1847 @185 awsjob1 1. 1848 @186 ewsmnr1 2. 1849 @188 awsmnr1 1. 1850 @189 ewshrs2 2. 1851 @191 awshrs2 1. 1852 @192 ewsdys2 2. 1853 @194 awsdys2 1. 1854 @195 ewsday21 2. 1855 @197 awsday21 1. 1856 @198 ewsday22 2. 1857 @200 awsday22 1. 1858 @201 ewsday23 2. 1859 @203 awsday23 1. 1860 @204 ewsday24 2. 1861 @206 awsday24 1. 1862 @207 ewsday25 2. 1863 @209 awsday25 1. 1864 @210 ewsday26 2. 1865 @212 awsday26 1. 1866 @213 ewsday27 2. 1867 @215 awsday27 1. 1868 @216 ewsbeg2 4. 1869 @220 awsbeg2 1. 1870 @221 ewsbegm2 2. 1871 @223 awsbegm2 1. 1872 @224 ewsend2 4. 1873 @228 awsend2 1. 1874 @229 ewsendm2 2. 1875 @231 awsendm2 1. 1876 @232 ewshmwk2 2. 1877 @234 awshmwk2 1. 1878 @235 ewsdy21 2. 1879 @237 awsdy21 1. 1880 @238 ewsdy22 2. 1881 @240 awsdy22 1. 1882 @241 ewsdy23 2. 34 The SAS System 11:54 Thursday, June 7, 2012 1883 @243 awsdy23 1. 1884 @244 ewsdy24 2. 1885 @246 awsdy24 1. 1886 @247 ewsdy25 2. 1887 @249 awsdy25 1. 1888 @250 ewsdy26 2. 1889 @252 awsdy26 1. 1890 @253 ewsdy27 2. 1891 @255 awsdy27 1. 1892 @256 ewsjob2 2. 1893 @258 awsjob2 1. 1894 @259 ewsmnr2 2. 1895 @261 awsmnr2 1. 1896 @262 eccunv 2. 1897 @264 ehrwksch 2. 1898 @266 ahrwksch 1. 1899 @267 rrhrswk 2. 1900 @269 ehrwkjob 3. 1901 @272 ahrwkjob 1. 1902 @273 eccpnuma $4. 1903 @277 eccpnumb $4. 1904 @281 eccpnumc $4. 1905 @285 eccpnumd $4. 1906 @289 eccpnume $4. 1907 @293 eccagea 2. 1908 @295 eccageb 2. 1909 @297 eccagec 2. 1910 @299 eccaged 2. 1911 @301 eccagee 2. 1912 @303 eckd01a 2. 1913 @305 eckd01b 2. 1914 @307 eckd01c 2. 1915 @309 eckd01d 2. 1916 @311 eckd01e 2. 1917 @313 eckd02a 2. 1918 @315 eckd02b 2. 1919 @317 eckd02c 2. 1920 @319 eckd02d 2. 1921 @321 eckd02e 2. 1922 @323 eckd03a 2. 1923 @325 eckd03b 2. 1924 @327 eckd03c 2. 1925 @329 eckd03d 2. 1926 @331 eckd03e 2. 1927 @333 eckd04a 2. 1928 @335 eckd04b 2. 1929 @337 eckd04c 2. 1930 @339 eckd04d 2. 1931 @341 eckd04e 2. 1932 @343 eckd05a 2. 1933 @345 eckd05b 2. 1934 @347 eckd05c 2. 1935 @349 eckd05d 2. 1936 @351 eckd05e 2. 1937 @353 eckd06a 2. 1938 @355 eckd06b 2. 1939 @357 eckd06c 2. 1940 @359 eckd06d 2. 35 The SAS System 11:54 Thursday, June 7, 2012 1941 @361 eckd06e 2. 1942 @363 eckd07a 2. 1943 @365 eckd07b 2. 1944 @367 eckd07c 2. 1945 @369 eckd07d 2. 1946 @371 eckd07e 2. 1947 @373 eckd08a 2. 1948 @375 eckd08b 2. 1949 @377 eckd08c 2. 1950 @379 eckd08d 2. 1951 @381 eckd08e 2. 1952 @383 eckd09a 2. 1953 @385 eckd09b 2. 1954 @387 eckd09c 2. 1955 @389 eckd09d 2. 1956 @391 eckd09e 2. 1957 @393 eckd10a 2. 1958 @395 eckd10b 2. 1959 @397 eckd10c 2. 1960 @399 eckd10d 2. 1961 @401 eckd10e 2. 1962 @403 eckd11a 2. 1963 @405 eckd11b 2. 1964 @407 eckd11c 2. 1965 @409 eckd11d 2. 1966 @411 eckd11e 2. 1967 @413 accarea 1. 1968 @414 accareb 1. 1969 @415 accarec 1. 1970 @416 accared 1. 1971 @417 accaree 1. 1972 @418 ewhepara 2. 1973 @420 awhepara 1. 1974 @421 ewheparb 2. 1975 @423 awheparb 1. 1976 @424 ewheparc 2. 1977 @426 awheparc 1. 1978 @427 ewhepard 2. 1979 @429 awhepard 1. 1980 @430 ewhepare 2. 1981 @432 awhepare 1. 1982 @433 eparhr1a 3. 1983 @436 aparhr1a 1. 1984 @437 eparhr1b 3. 1985 @440 aparhr1b 1. 1986 @441 eparhr1c 3. 1987 @444 aparhr1c 1. 1988 @445 eparhr1d 3. 1989 @448 aparhr1d 1. 1990 @449 eparhr1e 3. 1991 @452 aparhr1e 1. 1992 @453 eparhr2a 3. 1993 @456 aparhr2a 1. 1994 @457 eparhr2b 3. 1995 @460 aparhr2b 1. 1996 @461 eparhr2c 3. 1997 @464 aparhr2c 1. 1998 @465 eparhr2d 3. 36 The SAS System 11:54 Thursday, June 7, 2012 1999 @468 aparhr2d 1. 2000 @469 eparhr2e 3. 2001 @472 aparhr2e 1. 2002 @473 ewhselfa 2. 2003 @475 awhselfa 1. 2004 @476 ewhselfb 2. 2005 @478 awhselfb 1. 2006 @479 ewhselfc 2. 2007 @481 awhselfc 1. 2008 @482 ewhselfd 2. 2009 @484 awhselfd 1. 2010 @485 ewhselfe 2. 2011 @487 awhselfe 1. 2012 @488 eselfhra 2. 2013 @490 aselfhra 1. 2014 @491 eselfhrb 2. 2015 @493 aselfhrb 1. 2016 @494 eselfhrc 2. 2017 @496 aselfhrc 1. 2018 @497 eselfhrd 2. 2019 @499 aselfhrd 1. 2020 @500 eselfhre 2. 2021 @502 aselfhre 1. 2022 @503 ewhsb15a 2. 2023 @505 awhsb15a 1. 2024 @506 ewhsb15b 2. 2025 @508 awhsb15b 1. 2026 @509 ewhsb15c 2. 2027 @511 awhsb15c 1. 2028 @512 ewhsb15d 2. 2029 @514 awhsb15d 1. 2030 @515 ewhsb15e 2. 2031 @517 awhsb15e 1. 2032 @518 ewhsbhra 2. 2033 @520 awhsbhra 2. 2034 @522 ewhsbhrb 2. 2035 @524 awhsbhrb 1. 2036 @525 ewhsbhrc 2. 2037 @527 awhsbhrc 1. 2038 @528 ewhsbhrd 2. 2039 @530 awhsbhrd 1. 2040 @531 ewhsbhre 2. 2041 @533 awhsbhre 1. 2042 @534 ehrsb15a 2. 2043 @536 ahrsb15a 1. 2044 @537 ehrsb15b 2. 2045 @539 ahrsb15b 1. 2046 @540 ehrsb15c 2. 2047 @542 ahrsb15c 1. 2048 @543 ehrsb15d 2. 2049 @545 ahrsb15d 1. 2050 @546 ehrsb15e 2. 2051 @548 ahrsb15e 1. 2052 @549 ewhsb14a 2. 2053 @551 awhsb14a 1. 2054 @552 ewhsb14b 2. 2055 @554 awhsb14b 1. 2056 @555 ewhsb14c 2. 37 The SAS System 11:54 Thursday, June 7, 2012 2057 @557 awhsb14c 1. 2058 @558 ewhsb14d 2. 2059 @560 awhsb14d 1. 2060 @561 ewhsb14e 2. 2061 @563 awhsb14e 1. 2062 @564 esb14hra 2. 2063 @566 asb14hra 1. 2064 @567 esb14hrb 2. 2065 @569 asb14hrb 1. 2066 @570 esb14hrc 2. 2067 @572 asb14hrc 1. 2068 @573 esb14hrd 2. 2069 @575 asb14hrd 1. 2070 @576 esb14hre 2. 2071 @578 asb14hre 1. 2072 @579 ehrsb14a 2. 2073 @581 ahrsb14a 1. 2074 @582 ehrsb14b 2. 2075 @584 ahrsb14b 1. 2076 @585 ehrsb14c 2. 2077 @587 ahrsb14c 1. 2078 @588 ehrsb14d 2. 2079 @590 ahrsb14d 1. 2080 @591 ehrsb14e 2. 2081 @593 ahrsb14e 1. 2082 @594 ewhgrana 2. 2083 @596 awhgrana 1. 2084 @597 ewhgranb 2. 2085 @599 awhgranb 1. 2086 @600 ewhgranc 2. 2087 @602 awhgranc 1. 2088 @603 ewhgrand 2. 2089 @605 awhgrand 1. 2090 @606 ewhgrane 2. 2091 @608 awhgrane 1. 2092 @609 egranhra 2. 2093 @611 agranhra 1. 2094 @612 egranhrb 2. 2095 @614 agranhrb 1. 2096 @615 egranhrc 2. 2097 @617 agranhrc 1. 2098 @618 egranhrd 2. 2099 @620 agranhrd 1. 2100 @621 egranhre 2. 2101 @623 agranhre 1. 2102 @624 ehrgrana 2. 2103 @626 ahrgrana 1. 2104 @627 ehrgranb 2. 2105 @629 ahrgranb 1. 2106 @630 ehrgranc 2. 2107 @632 ahrgranc 1. 2108 @633 ehrgrand 2. 2109 @635 ahrgrand 1. 2110 @636 ehrgrane 2. 2111 @638 ahrgrane 1. 2112 @639 epaygraa 2. 2113 @641 apaygraa 1. 2114 @642 epaygrab 2. 38 The SAS System 11:54 Thursday, June 7, 2012 2115 @644 apaygrab 1. 2116 @645 epaygrac 2. 2117 @647 apaygrac 1. 2118 @648 epaygrad 2. 2119 @650 apaygrad 1. 2120 @651 epaygrae 2. 2121 @653 apaygrae 1. 2122 @654 tamtgraa 3. 2123 @657 aamtgraa 1. 2124 @658 tamtgrab 3. 2125 @661 aamtgrab 1. 2126 @662 tamtgrac 3. 2127 @665 aamtgrac 1. 2128 @666 tamtgrad 3. 2129 @669 aamtgrad 1. 2130 @670 tamtgrae 3. 2131 @673 aamtgrae 1. 2132 @674 ewhrelaa 2. 2133 @676 awhrelaa 1. 2134 @677 ewhrelab 2. 2135 @679 awhrelab 1. 2136 @680 ewhrelac 2. 2137 @682 awhrelac 1. 2138 @683 ewhrelad 2. 2139 @685 awhrelad 1. 2140 @686 ewhrelae 2. 2141 @688 awhrelae 1. 2142 @689 erelhr1a 2. 2143 @691 arelhr1a 1. 2144 @692 erelhr1b 2. 2145 @694 arelhr1b 1. 2146 @695 erelhr1c 2. 2147 @697 arelhr1c 1. 2148 @698 erelhr1d 2. 2149 @700 arelhr1d 1. 2150 @701 erelhr1e 2. 2151 @703 arelhr1e 1. 2152 @704 erelhr2a 2. 2153 @706 arelhr2a 1. 2154 @707 erelhr2b 2. 2155 @709 arelhr2b 1. 2156 @710 erelhr2c 2. 2157 @712 arelhr2c 1. 2158 @713 erelhr2d 2. 2159 @715 arelhr2d 1. 2160 @716 erelhr2e 2. 2161 @718 arelhr2e 1. 2162 @719 epayrela 2. 2163 @721 apayrela 1. 2164 @722 epayrelb 2. 2165 @724 apayrelb 1. 2166 @725 epayrelc 2. 2167 @727 apayrelc 1. 2168 @728 epayreld 2. 2169 @730 apayreld 1. 2170 @731 epayrele 2. 2171 @733 apayrele 1. 2172 @734 tamtrela 3. 39 The SAS System 11:54 Thursday, June 7, 2012 2173 @737 aamtrela 1. 2174 @738 tamtrelb 3. 2175 @741 aamtrelb 1. 2176 @742 tamtrelc 3. 2177 @745 aamtrelc 1. 2178 @746 tamtreld 3. 2179 @749 aamtreld 1. 2180 @750 tamtrele 3. 2181 @753 aamtrele 1. 2182 @754 ehrfam1a 2. 2183 @756 ahrfam1a 1. 2184 @757 ehrfam1b 2. 2185 @759 ahrfam1b 1. 2186 @760 ehrfam1c 2. 2187 @762 ahrfam1c 1. 2188 @763 ehrfam1d 2. 2189 @765 ahrfam1d 1. 2190 @766 ehrfam1e 2. 2191 @768 ahrfam1e 1. 2192 @769 ehrfam2a 2. 2193 @771 ahrfam2a 1. 2194 @772 ehrfam2b 2. 2195 @774 ahrfam2b 1. 2196 @775 ehrfam2c 2. 2197 @777 ahrfam2c 1. 2198 @778 ehrfam2d 2. 2199 @780 ahrfam2d 1. 2200 @781 ehrfam2e 2. 2201 @783 ahrfam2e 1. 2202 @784 epayfama 2. 2203 @786 apayfama 1. 2204 @787 epayfamb 2. 2205 @789 apayfamb 1. 2206 @790 epayfamc 2. 2207 @792 apayfamc 1. 2208 @793 epayfamd 2. 2209 @795 apayfamd 1. 2210 @796 epayfame 2. 2211 @798 apayfame 1. 2212 @799 tamtfama 3. 2213 @802 aamtfama 1. 2214 @803 tamtfamb 3. 2215 @806 aamtfamb 1. 2216 @807 tamtfamc 3. 2217 @810 aamtfamc 1. 2218 @811 tamtfamd 3. 2219 @814 aamtfamd 1. 2220 @815 tamtfame 3. 2221 @818 aamtfame 1. 2222 @819 ewhdayca 2. 2223 @821 awhdayca 1. 2224 @822 ewhdaycb 2. 2225 @824 awhdaycb 1. 2226 @825 ewhdaycc 2. 2227 @827 awhdaycc 1. 2228 @828 ewhdaycd 2. 2229 @830 awhdaycd 1. 2230 @831 ewhdayce 2. 40 The SAS System 11:54 Thursday, June 7, 2012 2231 @833 awhdayce 1. 2232 @834 edayhrsa 2. 2233 @836 adayhrsa 2. 2234 @838 edayhrsb 2. 2235 @840 adayhrsb 1. 2236 @841 edayhrsc 2. 2237 @843 adayhrsc 1. 2238 @844 edayhrsd 2. 2239 @846 adayhrsd 1. 2240 @847 edayhrse 2. 2241 @849 adayhrse 1. 2242 @850 ehrdayca 2. 2243 @852 ahrdayca 1. 2244 @853 ehrdaycb 2. 2245 @855 ahrdaycb 1. 2246 @856 ehrdaycc 2. 2247 @858 ahrdaycc 1. 2248 @859 ehrdaycd 2. 2249 @861 ahrdaycd 1. 2250 @862 ehrdayce 2. 2251 @864 ahrdayce 1. 2252 @865 epaydaya 2. 2253 @867 apaydaya 1. 2254 @868 epaydayb 2. 2255 @870 apaydayb 1. 2256 @871 epaydayc 2. 2257 @873 apaydayc 1. 2258 @874 epaydayd 2. 2259 @876 apaydayd 1. 2260 @877 epaydaye 2. 2261 @879 apaydaye 1. 2262 @880 tamtdaya 3. 2263 @883 aamtdaya 1. 2264 @884 tamtdayb 3. 2265 @887 aamtdayb 1. 2266 @888 tamtdayc 3. 2267 @891 aamtdayc 1. 2268 @892 tamtdayd 3. 2269 @895 aamtdayd 1. 2270 @896 tamtdaye 3. 2271 @899 aamtdaye 1. 2272 @900 ewhnursa 2. 2273 @902 awhnursa 1. 2274 @903 ewhnursb 2. 2275 @905 awhnursb 1. 2276 @906 ewhnursc 2. 2277 @908 awhnursc 1. 2278 @909 ewhnursd 2. 2279 @911 awhnursd 1. 2280 @912 ewhnurse 2. 2281 @914 awhnurse 1. 2282 @915 enurhrsa 2. 2283 @917 anurhrsa 1. 2284 @918 enurhrsb 2. 2285 @920 anurhrsb 1. 2286 @921 enurhrsc 2. 2287 @923 anurhrsc 1. 2288 @924 enurhrsd 2. 41 The SAS System 11:54 Thursday, June 7, 2012 2289 @926 anurhrsd 1. 2290 @927 enurhrse 2. 2291 @929 anurhrse 1. 2292 @930 ehrnursa 2. 2293 @932 ahrnursa 1. 2294 @933 ehrnursb 2. 2295 @935 ahrnursb 1. 2296 @936 ehrnursc 2. 2297 @938 ahrnursc 1. 2298 @939 ehrnursd 2. 2299 @941 ahrnursd 1. 2300 @942 ehrnurse 2. 2301 @944 ahrnurse 1. 2302 @945 epaynura 2. 2303 @947 apaynura 1. 2304 @948 epaynurb 2. 2305 @950 apaynurb 1. 2306 @951 epaynurc 2. 2307 @953 apaynurc 1. 2308 @954 epaynurd 2. 2309 @956 apaynurd 1. 2310 @957 epaynure 2. 2311 @959 apaynure 1. 2312 @960 tamtnura 3. 2313 @963 aamtnura 1. 2314 @964 tamtnurb 3. 2315 @967 aamtnurb 1. 2316 @968 tamtnurc 3. 2317 @971 aamtnurc 1. 2318 @972 tamtnurd 3. 2319 @975 aamtnurd 1. 2320 @976 tamtnure 3. 2321 @979 aamtnure 1. 2322 @980 eheadhra 2. 2323 @982 aheadhra 1. 2324 @983 eheadhrb 2. 2325 @985 aheadhrb 1. 2326 @986 eheadhrc 2. 2327 @988 aheadhrc 1. 2328 @989 eheadhrd 2. 2329 @991 aheadhrd 1. 2330 @992 eheadhre 2. 2331 @994 aheadhre 1. 2332 @995 ehrstara 2. 2333 @997 ahrstara 1. 2334 @998 ehrstarb 2. 2335 @1000 ahrstarb 1. 2336 @1001 ehrstarc 2. 2337 @1003 ahrstarc 1. 2338 @1004 ehrstard 2. 2339 @1006 ahrstard 1. 2340 @1007 ehrstare 2. 2341 @1009 ahrstare 1. 2342 @1010 epaystaa 2. 2343 @1012 apaystaa 1. 2344 @1013 epaystab 2. 2345 @1015 apaystab 1. 2346 @1016 epaystac 2. 42 The SAS System 11:54 Thursday, June 7, 2012 2347 @1018 apaystac 1. 2348 @1019 epaystad 2. 2349 @1021 apaystad 1. 2350 @1022 epaystae 2. 2351 @1024 apaystae 1. 2352 @1025 tamtstaa 2. 2353 @1027 aamtstaa 1. 2354 @1028 tamtstab 2. 2355 @1030 aamtstab 1. 2356 @1031 tamtstac 2. 2357 @1033 aamtstac 1. 2358 @1034 tamtstad 2. 2359 @1036 aamtstad 1. 2360 @1037 tamtstae 2. 2361 @1039 aamtstae 1. 2362 @1040 ewhothea 2. 2363 @1042 awhothea 1. 2364 @1043 ewhotheb 2. 2365 @1045 awhotheb 1. 2366 @1046 ewhothec 2. 2367 @1048 awhothec 1. 2368 @1049 ewhothed 2. 2369 @1051 awhothed 1. 2370 @1052 ewhothee 2. 2371 @1054 awhothee 1. 2372 @1055 eothehra 2. 2373 @1057 aothehra 1. 2374 @1058 eothehrb 2. 2375 @1060 aothehrb 1. 2376 @1061 eothehrc 2. 2377 @1063 aothehrc 1. 2378 @1064 eothehrd 2. 2379 @1066 aothehrd 1. 2380 @1067 eothehre 2. 2381 @1069 aothehre 1. 2382 @1070 ehrothea 2. 2383 @1072 ahrothea 1. 2384 @1073 ehrotheb 2. 2385 @1075 ahrotheb 1. 2386 @1076 ehrothec 2. 2387 @1078 ahrothec 1. 2388 @1079 ehrothed 2. 2389 @1081 ahrothed 1. 2390 @1082 ehrothee 2. 2391 @1084 ahrothee 1. 2392 @1085 epayotha 2. 2393 @1087 apayotha 1. 2394 @1088 epayothb 2. 2395 @1090 apayothb 1. 2396 @1091 epayothc 2. 2397 @1093 apayothc 1. 2398 @1094 epayothd 2. 2399 @1096 apayothd 1. 2400 @1097 epayothe 2. 2401 @1099 apayothe 1. 2402 @1100 tamtotha 3. 2403 @1103 aamtotha 1. 2404 @1104 tamtothb 3. 43 The SAS System 11:54 Thursday, June 7, 2012 2405 @1107 aamtothb 1. 2406 @1108 tamtothc 3. 2407 @1111 aamtothc 1. 2408 @1112 tamtothd 3. 2409 @1115 aamtothd 1. 2410 @1116 tamtothe 3. 2411 @1119 aamtothe 1. 2412 @1120 eschoowa 2. 2413 @1122 aschoowa 1. 2414 @1123 eschoowb 2. 2415 @1125 aschoowb 1. 2416 @1126 eschoowc 2. 2417 @1128 aschoowc 1. 2418 @1129 eschoowd 2. 2419 @1131 aschoowd 1. 2420 @1132 eschoowe 2. 2421 @1134 aschoowe 1. 2422 @1135 ehrschwa 2. 2423 @1137 ahrschwa 1. 2424 @1138 ehrschwb 2. 2425 @1140 ahrschwb 1. 2426 @1141 ehrschwc 2. 2427 @1143 ahrschwc 1. 2428 @1144 ehrschwd 2. 2429 @1146 ahrschwd 1. 2430 @1147 ehrschwe 2. 2431 @1149 ahrschwe 1. 2432 @1150 ehrschoa 2. 2433 @1152 ahrschoa 1. 2434 @1153 ehrschob 2. 2435 @1155 ahrschob 1. 2436 @1156 ehrschoc 2. 2437 @1158 ahrschoc 1. 2438 @1159 ehrschod 2. 2439 @1161 ahrschod 1. 2440 @1162 ehrschoe 2. 2441 @1164 ahrschoe 1. 2442 @1165 eselfcaa 2. 2443 @1167 aselfcaa 1. 2444 @1168 eselfcab 2. 2445 @1170 aselfcab 1. 2446 @1171 eselfcac 2. 2447 @1173 aselfcac 1. 2448 @1174 eselfcad 2. 2449 @1176 aselfcad 1. 2450 @1177 eselfcae 2. 2451 @1179 aselfcae 1. 2452 @1180 ekidhr1a 2. 2453 @1182 akidhr1a 1. 2454 @1183 ekidhr1b 2. 2455 @1185 akidhr1b 1. 2456 @1186 ekidhr1c 2. 2457 @1188 akidhr1c 1. 2458 @1189 ekidhr1d 2. 2459 @1191 akidhr1d 1. 2460 @1192 ekidhr1e 2. 2461 @1194 akidhr1e 1. 2462 @1195 ekidhr2a 2. 44 The SAS System 11:54 Thursday, June 7, 2012 2463 @1197 akidhr2a 1. 2464 @1198 ekidhr2b 2. 2465 @1200 akidhr2b 1. 2466 @1201 ekidhr2c 2. 2467 @1203 akidhr2c 1. 2468 @1204 ekidhr2d 2. 2469 @1206 akidhr2d 1. 2470 @1207 ekidhr2e 2. 2471 @1209 akidhr2e 1. 2472 @1210 edaychaa 2. 2473 @1212 adaychaa 1. 2474 @1213 edaychab 2. 2475 @1215 adaychab 1. 2476 @1216 edaychac 2. 2477 @1218 adaychac 1. 2478 @1219 edaychad 2. 2479 @1221 adaychad 1. 2480 @1222 edaychae 2. 2481 @1224 adaychae 1. 2482 @1225 epayhela 2. 2483 @1227 apayhela 1. 2484 @1228 epayhelb 2. 2485 @1230 apayhelb 1. 2486 @1231 epayhelc 2. 2487 @1233 apayhelc 1. 2488 @1234 epayheld 2. 2489 @1236 apayheld 1. 2490 @1237 epayhele 2. 2491 @1239 apayhele 1. 2492 @1240 ewhopa1a 2. 2493 @1242 ewhopa2a 2. 2494 @1244 ewhopa3a 3. 2495 @1247 ewhopa4a 2. 2496 @1249 awhopaa 1. 2497 @1250 ewhopa1b 2. 2498 @1252 ewhopa2b 2. 2499 @1254 ewhopa3b 2. 2500 @1256 ewhopa4b 2. 2501 @1258 awhopab 1. 2502 @1259 ewhopa1c 2. 2503 @1261 ewhopa2c 2. 2504 @1263 ewhopa3c 2. 2505 @1265 ewhopa4c 2. 2506 @1267 awhopac 1. 2507 @1268 ewhopa1d 2. 2508 @1270 ewhopa2d 2. 2509 @1272 ewhopa3d 2. 2510 @1274 ewhopa4d 2. 2511 @1276 awhopad 1. 2512 @1277 ewhopa1e 2. 2513 @1279 ewhopa2e 2. 2514 @1281 ewhopa3e 2. 2515 @1283 ewhopa4e 2. 2516 @1285 awhopae 1. 2517 @1286 esatisa 2. 2518 @1288 esatisb 2. 2519 @1290 esatisc 2. 2520 @1292 esatisd 2. 45 The SAS System 11:54 Thursday, June 7, 2012 2521 @1294 esatise 2. 2522 @1296 elista 2. 2523 @1298 alista 1. 2524 @1299 elistb 2. 2525 @1301 alistb 1. 2526 @1302 elistc 2. 2527 @1304 alistc 1. 2528 @1305 elistd 2. 2529 @1307 alistd 1. 2530 @1308 eliste 2. 2531 @1310 aliste 1. 2532 @1311 eccunv2 2. 2533 @1313 eccpnumf $4. 2534 @1317 eccpnumg $4. 2535 @1321 eccpnumh $4. 2536 @1325 eccpnumi $4. 2537 @1329 eccpnumj $4. 2538 @1333 eccagef 2. 2539 @1335 eccageg 2. 2540 @1337 eccageh 2. 2541 @1339 eccagei 2. 2542 @1341 eccagej 2. 2543 @1343 eckd01f 2. 2544 @1345 eckd01g 2. 2545 @1347 eckd01h 2. 2546 @1349 eckd01i 2. 2547 @1351 eckd01j 2. 2548 @1353 eckd02f 2. 2549 @1355 eckd02g 2. 2550 @1357 eckd02h 2. 2551 @1359 eckd02i 2. 2552 @1361 eckd02j 2. 2553 @1363 eckd03f 2. 2554 @1365 eckd03g 2. 2555 @1367 eckd03h 2. 2556 @1369 eckd03i 2. 2557 @1371 eckd03j 2. 2558 @1373 eckd04f 2. 2559 @1375 eckd04g 2. 2560 @1377 eckd04h 2. 2561 @1379 eckd04i 2. 2562 @1381 eckd04j 2. 2563 @1383 eckd05f 2. 2564 @1385 eckd05g 2. 2565 @1387 eckd05h 2. 2566 @1389 eckd05i 2. 2567 @1391 eckd05j 2. 2568 @1393 eckd06f 2. 2569 @1395 eckd06g 2. 2570 @1397 eckd06h 2. 2571 @1399 eckd06i 2. 2572 @1401 eckd06j 2. 2573 @1403 eckd07f 2. 2574 @1405 eckd07g 2. 2575 @1407 eckd07h 2. 2576 @1409 eckd07i 2. 2577 @1411 eckd07j 2. 2578 @1413 eckd08f 2. 46 The SAS System 11:54 Thursday, June 7, 2012 2579 @1415 eckd08g 2. 2580 @1417 eckd08h 2. 2581 @1419 eckd08i 2. 2582 @1421 eckd08j 2. 2583 @1423 eckd09f 2. 2584 @1425 eckd09g 2. 2585 @1427 eckd09h 2. 2586 @1429 eckd09i 2. 2587 @1431 eckd09j 2. 2588 @1433 eckd10f 2. 2589 @1435 eckd10g 2. 2590 @1437 eckd10h 2. 2591 @1439 eckd10i 2. 2592 @1441 eckd10j 2. 2593 @1443 eckd11f 2. 2594 @1445 eckd11g 2. 2595 @1447 eckd11h 2. 2596 @1449 eckd11i 2. 2597 @1451 eckd11j 2. 2598 @1453 eckd12f 2. 2599 @1455 eckd12g 2. 2600 @1457 eckd12h 2. 2601 @1459 eckd12i 2. 2602 @1461 eckd12j 2. 2603 @1463 eckd13f 2. 2604 @1465 eckd13g 2. 2605 @1467 eckd13h 2. 2606 @1469 eckd13i 2. 2607 @1471 eckd13j 2. 2608 @1473 accaref 1. 2609 @1474 accareg 1. 2610 @1475 accareh 1. 2611 @1476 accarei 1. 2612 @1477 accarej 1. 2613 @1478 ewheparf 2. 2614 @1480 awheparf 1. 2615 @1481 ewheparg 2. 2616 @1483 awheparg 1. 2617 @1484 ewheparh 2. 2618 @1486 awheparh 1. 2619 @1487 ewhepari 2. 2620 @1489 awhepari 1. 2621 @1490 ewheparj 2. 2622 @1492 awheparj 1. 2623 @1493 eparhr1f 3. 2624 @1496 aparhr1f 1. 2625 @1497 eparhr1g 3. 2626 @1500 aparhr1g 1. 2627 @1501 eparhr1h 3. 2628 @1504 aparhr1h 1. 2629 @1505 eparhr1i 3. 2630 @1508 aparhr1i 1. 2631 @1509 eparhr1j 3. 2632 @1512 aparhr1j 1. 2633 @1513 eparhr2f 3. 2634 @1516 aparhr2f 1. 2635 @1517 eparhr2g 3. 2636 @1520 aparhr2g 1. 47 The SAS System 11:54 Thursday, June 7, 2012 2637 @1521 eparhr2h 3. 2638 @1524 aparhr2h 1. 2639 @1525 eparhr2i 3. 2640 @1528 aparhr2i 1. 2641 @1529 eparhr2j 3. 2642 @1532 aparhr2j 1. 2643 @1533 ewhselff 2. 2644 @1535 awhselff 1. 2645 @1536 ewhselfg 2. 2646 @1538 awhselfg 1. 2647 @1539 ewhselfh 2. 2648 @1541 awhselfh 1. 2649 @1542 ewhselfi 2. 2650 @1544 awhselfi 1. 2651 @1545 ewhselfj 2. 2652 @1547 awhselfj 1. 2653 @1548 eselfhrf 2. 2654 @1550 aselfhrf 1. 2655 @1551 eselfhrg 2. 2656 @1553 aselfhrg 1. 2657 @1554 eselfhrh 2. 2658 @1556 aselfhrh 1. 2659 @1557 eselfhri 2. 2660 @1559 aselfhri 1. 2661 @1560 eselfhrj 2. 2662 @1562 aselfhrj 1. 2663 @1563 ewhsb15f 2. 2664 @1565 awhsb15f 1. 2665 @1566 ewhsb15g 2. 2666 @1568 awhsb15g 1. 2667 @1569 ewhsb15h 2. 2668 @1571 awhsb15h 1. 2669 @1572 ewhsb15i 2. 2670 @1574 awhsb15i 1. 2671 @1575 ewhsb15j 2. 2672 @1577 awhsb15j 1. 2673 @1578 ewhsbhrf 2. 2674 @1580 awhsbhrf 1. 2675 @1581 ewhsbhrg 2. 2676 @1583 awhsbhrg 1. 2677 @1584 ewhsbhrh 2. 2678 @1586 awhsbhrh 1. 2679 @1587 ewhsbhri 2. 2680 @1589 awhsbhri 1. 2681 @1590 ewhsbhrj 2. 2682 @1592 awhsbhrj 1. 2683 @1593 ehrsb15f 2. 2684 @1595 ahrsb15f 1. 2685 @1596 ehrsb15g 2. 2686 @1598 ahrsb15g 1. 2687 @1599 ehrsb15h 2. 2688 @1601 ahrsb15h 1. 2689 @1602 ehrsb15i 2. 2690 @1604 ahrsb15i 1. 2691 @1605 ehrsb15j 2. 2692 @1607 ahrsb15j 1. 2693 @1608 ewhsb14f 2. 2694 @1610 awhsb14f 1. 48 The SAS System 11:54 Thursday, June 7, 2012 2695 @1611 ewhsb14g 2. 2696 @1613 awhsb14g 1. 2697 @1614 ewhsb14h 2. 2698 @1616 awhsb14h 1. 2699 @1617 ewhsb14i 2. 2700 @1619 awhsb14i 1. 2701 @1620 ewhsb14j 2. 2702 @1622 awhsb14j 1. 2703 @1623 esb14hrf 2. 2704 @1625 asb14hrf 1. 2705 @1626 esb14hrg 2. 2706 @1628 asb14hrg 1. 2707 @1629 esb14hrh 2. 2708 @1631 asb14hrh 1. 2709 @1632 esb14hri 2. 2710 @1634 asb14hri 1. 2711 @1635 esb14hrj 2. 2712 @1637 asb14hrj 1. 2713 @1638 ehrsb14f 2. 2714 @1640 ahrsb14f 1. 2715 @1641 ehrsb14g 2. 2716 @1643 ahrsb14g 1. 2717 @1644 ehrsb14h 2. 2718 @1646 ahrsb14h 1. 2719 @1647 ehrsb14i 2. 2720 @1649 ahrsb14i 1. 2721 @1650 ehrsb14j 2. 2722 @1652 ahrsb14j 1. 2723 @1653 ewhgranf 2. 2724 @1655 awhgranf 1. 2725 @1656 ewhgrang 2. 2726 @1658 awhgrang 1. 2727 @1659 ewhgranh 2. 2728 @1661 awhgranh 1. 2729 @1662 ewhgrani 2. 2730 @1664 awhgrani 1. 2731 @1665 ewhgranj 2. 2732 @1667 awhgranj 1. 2733 @1668 egranhrf 2. 2734 @1670 agranhrf 1. 2735 @1671 egranhrg 2. 2736 @1673 agranhrg 1. 2737 @1674 egranhrh 2. 2738 @1676 agranhrh 1. 2739 @1677 egranhri 2. 2740 @1679 agranhri 1. 2741 @1680 egranhrj 2. 2742 @1682 agranhrj 1. 2743 @1683 ehrgranf 2. 2744 @1685 ahrgranf 1. 2745 @1686 ehrgrang 2. 2746 @1688 ahrgrang 1. 2747 @1689 ehrgranh 2. 2748 @1691 ahrgranh 1. 2749 @1692 ehrgrani 2. 2750 @1694 ahrgrani 1. 2751 @1695 ehrgranj 2. 2752 @1697 ahrgranj 1. 49 The SAS System 11:54 Thursday, June 7, 2012 2753 @1698 epaygraf 2. 2754 @1700 apaygraf 1. 2755 @1701 epaygrag 2. 2756 @1703 apaygrag 1. 2757 @1704 epaygrah 2. 2758 @1706 apaygrah 1. 2759 @1707 epaygrai 2. 2760 @1709 apaygrai 1. 2761 @1710 epaygraj 2. 2762 @1712 apaygraj 1. 2763 @1713 tamtgraf 3. 2764 @1716 aamtgraf 1. 2765 @1717 tamtgrag 3. 2766 @1720 aamtgrag 1. 2767 @1721 tamtgrah 3. 2768 @1724 aamtgrah 1. 2769 @1725 tamtgrai 3. 2770 @1728 aamtgrai 1. 2771 @1729 tamtgraj 3. 2772 @1732 aamtgraj 1. 2773 @1733 ewhrelaf 2. 2774 @1735 awhrelaf 1. 2775 @1736 ewhrelag 2. 2776 @1738 awhrelag 1. 2777 @1739 ewhrelah 2. 2778 @1741 awhrelah 1. 2779 @1742 ewhrelai 2. 2780 @1744 awhrelai 1. 2781 @1745 ewhrelaj 2. 2782 @1747 awhrelaj 1. 2783 @1748 erelhr1f 2. 2784 @1750 arelhr1f 1. 2785 @1751 erelhr1g 2. 2786 @1753 arelhr1g 1. 2787 @1754 erelhr1h 2. 2788 @1756 arelhr1h 1. 2789 @1757 erelhr1i 2. 2790 @1759 arelhr1i 1. 2791 @1760 erelhr1j 2. 2792 @1762 arelhr1j 1. 2793 @1763 erelhr2f 2. 2794 @1765 arelhr2f 1. 2795 @1766 erelhr2g 2. 2796 @1768 arelhr2g 1. 2797 @1769 erelhr2h 2. 2798 @1771 arelhr2h 1. 2799 @1772 erelhr2i 2. 2800 @1774 arelhr2i 1. 2801 @1775 erelhr2j 2. 2802 @1777 arelhr2j 1. 2803 @1778 epayrelf 2. 2804 @1780 apayrelf 1. 2805 @1781 epayrelg 2. 2806 @1783 apayrelg 1. 2807 @1784 epayrelh 2. 2808 @1786 apayrelh 1. 2809 @1787 epayreli 2. 2810 @1789 apayreli 1. 50 The SAS System 11:54 Thursday, June 7, 2012 2811 @1790 epayrelj 2. 2812 @1792 apayrelj 1. 2813 @1793 tamtrelf 3. 2814 @1796 aamtrelf 1. 2815 @1797 tamtrelg 3. 2816 @1800 aamtrelg 1. 2817 @1801 tamtrelh 3. 2818 @1804 aamtrelh 1. 2819 @1805 tamtreli 3. 2820 @1808 aamtreli 1. 2821 @1809 tamtrelj 3. 2822 @1812 aamtrelj 1. 2823 @1813 ehrfam1f 2. 2824 @1815 ahrfam1f 1. 2825 @1816 ehrfam1g 2. 2826 @1818 ahrfam1g 1. 2827 @1819 ehrfam1h 2. 2828 @1821 ahrfam1h 1. 2829 @1822 ehrfam1i 2. 2830 @1824 ahrfam1i 1. 2831 @1825 ehrfam1j 2. 2832 @1827 ahrfam1j 1. 2833 @1828 ehrfam2f 2. 2834 @1830 ahrfam2f 1. 2835 @1831 ehrfam2g 2. 2836 @1833 ahrfam2g 1. 2837 @1834 ehrfam2h 2. 2838 @1836 ahrfam2h 1. 2839 @1837 ehrfam2i 2. 2840 @1839 ahrfam2i 1. 2841 @1840 ehrfam2j 2. 2842 @1842 ahrfam2j 1. 2843 @1843 epayfamf 2. 2844 @1845 apayfamf 1. 2845 @1846 epayfamg 2. 2846 @1848 apayfamg 1. 2847 @1849 epayfamh 2. 2848 @1851 apayfamh 1. 2849 @1852 epayfami 2. 2850 @1854 apayfami 1. 2851 @1855 epayfamj 2. 2852 @1857 apayfamj 1. 2853 @1858 tamtfamf 3. 2854 @1861 aamtfamf 1. 2855 @1862 tamtfamg 3. 2856 @1865 aamtfamg 1. 2857 @1866 tamtfamh 3. 2858 @1869 aamtfamh 1. 2859 @1870 tamtfami 3. 2860 @1873 aamtfami 1. 2861 @1874 tamtfamj 3. 2862 @1877 aamtfamj 1. 2863 @1878 ewhdaycf 2. 2864 @1880 awhdaycf 1. 2865 @1881 ewhdaycg 2. 2866 @1883 awhdaycg 1. 2867 @1884 ewhdaych 2. 2868 @1886 awhdaych 1. 51 The SAS System 11:54 Thursday, June 7, 2012 2869 @1887 ewhdayci 2. 2870 @1889 awhdayci 1. 2871 @1890 ewhdaycj 2. 2872 @1892 awhdaycj 1. 2873 @1893 edayhrsf 2. 2874 @1895 adayhrsf 1. 2875 @1896 edayhrsg 2. 2876 @1898 adayhrsg 1. 2877 @1899 edayhrsh 2. 2878 @1901 adayhrsh 1. 2879 @1902 edayhrsi 2. 2880 @1904 adayhrsi 1. 2881 @1905 edayhrsj 2. 2882 @1907 adayhrsj 1. 2883 @1908 ehrdaycf 2. 2884 @1910 ahrdaycf 1. 2885 @1911 ehrdaycg 2. 2886 @1913 ahrdaycg 1. 2887 @1914 ehrdaych 2. 2888 @1916 ahrdaych 1. 2889 @1917 ehrdayci 2. 2890 @1919 ahrdayci 1. 2891 @1920 ehrdaycj 2. 2892 @1922 ahrdaycj 1. 2893 @1923 epaydayf 2. 2894 @1925 apaydayf 1. 2895 @1926 epaydayg 2. 2896 @1928 apaydayg 1. 2897 @1929 epaydayh 2. 2898 @1931 apaydayh 1. 2899 @1932 epaydayi 2. 2900 @1934 apaydayi 1. 2901 @1935 epaydayj 2. 2902 @1937 apaydayj 1. 2903 @1938 tamtdayf 3. 2904 @1941 aamtdayf 1. 2905 @1942 tamtdayg 3. 2906 @1945 aamtdayg 1. 2907 @1946 tamtdayh 3. 2908 @1949 aamtdayh 1. 2909 @1950 tamtdayi 3. 2910 @1953 aamtdayi 1. 2911 @1954 tamtdayj 3. 2912 @1957 aamtdayj 1. 2913 @1958 ewhsporf 2. 2914 @1960 awhsporf 1. 2915 @1961 ewhsporg 2. 2916 @1963 awhsporg 1. 2917 @1964 ewhsporh 2. 2918 @1966 awhsporh 1. 2919 @1967 ewhspori 2. 2920 @1969 awhspori 1. 2921 @1970 ewhsporj 2. 2922 @1972 awhsporj 1. 2923 @1973 ehsportf 2. 2924 @1975 ahsportf 1. 2925 @1976 ehsportg 2. 2926 @1978 ahsportg 1. 52 The SAS System 11:54 Thursday, June 7, 2012 2927 @1979 ehsporth 2. 2928 @1981 ahsporth 1. 2929 @1982 ehsporti 2. 2930 @1984 ahsporti 1. 2931 @1985 ehsportj 2. 2932 @1987 ahsportj 1. 2933 @1988 ehrsporf 2. 2934 @1990 ahrsporf 1. 2935 @1991 ehrsporg 2. 2936 @1993 ahrsporg 1. 2937 @1994 ehrsporh 2. 2938 @1996 ahrsporh 1. 2939 @1997 ehrspori 2. 2940 @1999 ahrspori 1. 2941 @2000 ehrsporj 2. 2942 @2002 ahrsporj 1. 2943 @2003 epayspof 2. 2944 @2005 apayspof 1. 2945 @2006 epayspog 2. 2946 @2008 apayspog 1. 2947 @2009 epayspoh 2. 2948 @2011 apayspoh 1. 2949 @2012 epayspoi 2. 2950 @2014 apayspoi 1. 2951 @2015 epayspoj 2. 2952 @2017 apayspoj 1. 2953 @2018 tamtspof 3. 2954 @2021 aamtspof 1. 2955 @2022 tamtspog 3. 2956 @2025 aamtspog 1. 2957 @2026 tamtspoh 3. 2958 @2029 aamtspoh 1. 2959 @2030 tamtspoi 3. 2960 @2033 aamtspoi 1. 2961 @2034 tamtspoj 3. 2962 @2037 aamtspoj 1. 2963 @2038 ewhlessf 2. 2964 @2040 awhlessf 1. 2965 @2041 ewhlessg 2. 2966 @2043 awhlessg 1. 2967 @2044 ewhlessh 2. 2968 @2046 awhlessh 1. 2969 @2047 ewhlessi 2. 2970 @2049 awhlessi 1. 2971 @2050 ewhlessj 2. 2972 @2052 awhlessj 1. 2973 @2053 ehrles1f 2. 2974 @2055 ahrles1f 1. 2975 @2056 ehrles1g 2. 2976 @2058 ahrles1g 1. 2977 @2059 ehrles1h 2. 2978 @2061 ahrles1h 1. 2979 @2062 ehrles1i 2. 2980 @2064 ahrles1i 1. 2981 @2065 ehrles1j 2. 2982 @2067 ahrles1j 1. 2983 @2068 ehrles2f 2. 2984 @2070 ahrles2f 1. 53 The SAS System 11:54 Thursday, June 7, 2012 2985 @2071 ehrles2g 2. 2986 @2073 ahrles2g 1. 2987 @2074 ehrles2h 2. 2988 @2076 ahrles2h 1. 2989 @2077 ehrles2i 2. 2990 @2079 ahrles2i 1. 2991 @2080 ehrles2j 2. 2992 @2082 ahrles2j 1. 2993 @2083 epaylesf 2. 2994 @2085 apaylesf 1. 2995 @2086 epaylesg 2. 2996 @2088 apaylesg 1. 2997 @2089 epaylesh 2. 2998 @2091 apaylesh 1. 2999 @2092 epaylesi 2. 3000 @2094 apaylesi 1. 3001 @2095 epaylesj 2. 3002 @2097 apaylesj 1. 3003 @2098 tamtlesf 3. 3004 @2101 aamtlesf 1. 3005 @2102 tamtlesg 3. 3006 @2105 aamtlesg 1. 3007 @2106 tamtlesh 3. 3008 @2109 aamtlesh 1. 3009 @2110 tamtlesi 3. 3010 @2113 aamtlesi 1. 3011 @2114 tamtlesj 3. 3012 @2117 aamtlesj 1. 3013 @2118 ewhclubf 2. 3014 @2120 awhclubf 1. 3015 @2121 ewhclubg 2. 3016 @2123 awhclubg 1. 3017 @2124 ewhclubh 2. 3018 @2126 awhclubh 1. 3019 @2127 ewhclubi 2. 3020 @2129 awhclubi 1. 3021 @2130 ewhclubj 2. 3022 @2132 awhclubj 1. 3023 @2133 eclubhrf 2. 3024 @2135 aclubhrf 1. 3025 @2136 eclubhrg 2. 3026 @2138 aclubhrg 1. 3027 @2139 eclubhrh 2. 3028 @2141 aclubhrh 1. 3029 @2142 eclubhri 2. 3030 @2144 aclubhri 1. 3031 @2145 eclubhrj 2. 3032 @2147 aclubhrj 1. 3033 @2148 ehrclubf 2. 3034 @2150 ahrclubf 1. 3035 @2151 ehrclubg 2. 3036 @2153 ahrclubg 1. 3037 @2154 ehrclubh 2. 3038 @2156 ahrclubh 1. 3039 @2157 ehrclubi 2. 3040 @2159 ahrclubi 1. 3041 @2160 ehrclubj 2. 3042 @2162 ahrclubj 1. 54 The SAS System 11:54 Thursday, June 7, 2012 3043 @2163 epaycluf 2. 3044 @2165 apaycluf 1. 3045 @2166 epayclug 2. 3046 @2168 apayclug 1. 3047 @2169 epaycluh 2. 3048 @2171 apaycluh 1. 3049 @2172 epayclui 2. 3050 @2174 apayclui 1. 3051 @2175 epaycluj 2. 3052 @2177 apaycluj 1. 3053 @2178 tamtcluf 3. 3054 @2181 aamtcluf 1. 3055 @2182 tamtclug 2. 3056 @2184 aamtclug 1. 3057 @2185 tamtcluh 2. 3058 @2187 aamtcluh 1. 3059 @2188 tamtclui 2. 3060 @2190 aamtclui 1. 3061 @2191 tamtcluj 2. 3062 @2193 aamtcluj 1. 3063 @2194 ewhschof 2. 3064 @2196 awhschof 1. 3065 @2197 ewhschog 2. 3066 @2199 awhschog 1. 3067 @2200 ewhschoh 2. 3068 @2202 awhschoh 1. 3069 @2203 ewhschoi 2. 3070 @2205 awhschoi 1. 3071 @2206 ewhschoj 2. 3072 @2208 awhschoj 1. 3073 @2209 ehscho1f 2. 3074 @2211 ahscho1f 1. 3075 @2212 ehscho1g 2. 3076 @2214 ahscho1g 1. 3077 @2215 ehscho1h 2. 3078 @2217 ahscho1h 1. 3079 @2218 ehscho1i 2. 3080 @2220 ahscho1i 1. 3081 @2221 ehscho1j 2. 3082 @2223 ahscho1j 1. 3083 @2224 ehrsch2f 2. 3084 @2226 ahrsch2f 1. 3085 @2227 ehrsch2g 2. 3086 @2229 ahrsch2g 1. 3087 @2230 ehrsch2h 2. 3088 @2232 ahrsch2h 1. 3089 @2233 ehrsch2i 2. 3090 @2235 ahrsch2i 1. 3091 @2236 ehrsch2j 2. 3092 @2238 ahrsch2j 1. 3093 @2239 epayschf 2. 3094 @2241 apayschf 1. 3095 @2242 epayschg 2. 3096 @2244 apayschg 1. 3097 @2245 epayschh 2. 3098 @2247 apayschh 1. 3099 @2248 epayschi 2. 3100 @2250 apayschi 1. 55 The SAS System 11:54 Thursday, June 7, 2012 3101 @2251 epayschj 2. 3102 @2253 apayschj 1. 3103 @2254 tamtschf 3. 3104 @2257 aamtschf 1. 3105 @2258 tamtschg 3. 3106 @2261 aamtschg 1. 3107 @2262 tamtschh 3. 3108 @2265 aamtschh 1. 3109 @2266 tamtschi 3. 3110 @2269 aamtschi 1. 3111 @2270 tamtschj 3. 3112 @2273 aamtschj 1. 3113 @2274 ewhothef 2. 3114 @2276 awhothef 1. 3115 @2277 ewhotheg 2. 3116 @2279 awhotheg 1. 3117 @2280 ewhotheh 2. 3118 @2282 awhotheh 1. 3119 @2283 ewhothei 2. 3120 @2285 awhothei 1. 3121 @2286 ewhothej 2. 3122 @2288 awhothej 1. 3123 @2289 eothehrf 2. 3124 @2291 aothehrf 1. 3125 @2292 eothehrg 2. 3126 @2294 aothehrg 1. 3127 @2295 eothehrh 2. 3128 @2297 aothehrh 1. 3129 @2298 eothehri 2. 3130 @2300 aothehri 1. 3131 @2301 eothehrj 2. 3132 @2303 aothehrj 1. 3133 @2304 ehrothef 2. 3134 @2306 ahrothef 1. 3135 @2307 ehrotheg 2. 3136 @2309 ahrotheg 1. 3137 @2310 ehrotheh 2. 3138 @2312 ahrotheh 1. 3139 @2313 ehrothei 2. 3140 @2315 ahrothei 1. 3141 @2316 ehrothej 2. 3142 @2318 ahrothej 1. 3143 @2319 epayothf 2. 3144 @2321 apayothf 1. 3145 @2322 epayothg 2. 3146 @2324 apayothg 1. 3147 @2325 epayothh 2. 3148 @2327 apayothh 1. 3149 @2328 epayothi 2. 3150 @2330 apayothi 1. 3151 @2331 epayothj 2. 3152 @2333 apayothj 1. 3153 @2334 tamtothf 3. 3154 @2337 aamtothf 1. 3155 @2338 tamtothg 3. 3156 @2341 aamtothg 1. 3157 @2342 tamtothh 3. 3158 @2345 aamtothh 1. 56 The SAS System 11:54 Thursday, June 7, 2012 3159 @2346 tamtothi 3. 3160 @2349 aamtothi 1. 3161 @2350 tamtothj 3. 3162 @2353 aamtothj 1. 3163 @2354 eschoowf 2. 3164 @2356 aschoowf 1. 3165 @2357 eschoowg 2. 3166 @2359 aschoowg 1. 3167 @2360 eschoowh 2. 3168 @2362 aschoowh 1. 3169 @2363 eschoowi 2. 3170 @2365 aschoowi 1. 3171 @2366 eschoowj 2. 3172 @2368 aschoowj 1. 3173 @2369 ehrschwf 2. 3174 @2371 ahrschwf 1. 3175 @2372 ehrschwg 2. 3176 @2374 ahrschwg 1. 3177 @2375 ehrschwh 2. 3178 @2377 ahrschwh 1. 3179 @2378 ehrschwi 2. 3180 @2380 ahrschwi 1. 3181 @2381 ehrschwj 2. 3182 @2383 ahrschwj 1. 3183 @2384 ehrschof 2. 3184 @2386 ahrschof 1. 3185 @2387 ehrschog 2. 3186 @2389 ahrschog 1. 3187 @2390 ehrschoh 2. 3188 @2392 ahrschoh 1. 3189 @2393 ehrschoi 2. 3190 @2395 ahrschoi 1. 3191 @2396 ehrschoj 2. 3192 @2398 ahrschoj 1. 3193 @2399 eselfcaf 2. 3194 @2401 aselfcaf 1. 3195 @2402 eselfcag 2. 3196 @2404 aselfcag 1. 3197 @2405 eselfcah 2. 3198 @2407 aselfcah 1. 3199 @2408 eselfcai 2. 3200 @2410 aselfcai 1. 3201 @2411 eselfcaj 2. 3202 @2413 aselfcaj 1. 3203 @2414 ekidhr1f 2. 3204 @2416 akidhr1f 1. 3205 @2417 ekidhr1g 2. 3206 @2419 akidhr1g 1. 3207 @2420 ekidhr1h 2. 3208 @2422 akidhr1h 1. 3209 @2423 ekidhr1i 2. 3210 @2425 akidhr1i 1. 3211 @2426 ekidhr1j 2. 3212 @2428 akidhr1j 1. 3213 @2429 ekidhr2f 2. 3214 @2431 akidhr2f 1. 3215 @2432 ekidhr2g 2. 3216 @2434 akidhr2g 1. 57 The SAS System 11:54 Thursday, June 7, 2012 3217 @2435 ekidhr2h 2. 3218 @2437 akidhr2h 1. 3219 @2438 ekidhr2i 2. 3220 @2440 akidhr2i 1. 3221 @2441 ekidhr2j 2. 3222 @2443 akidhr2j 1. 3223 @2444 edaychaf 2. 3224 @2446 adaychaf 1. 3225 @2447 edaychag 2. 3226 @2449 adaychag 1. 3227 @2450 edaychah 2. 3228 @2452 adaychah 1. 3229 @2453 edaychai 2. 3230 @2455 adaychai 1. 3231 @2456 edaychaj 2. 3232 @2458 adaychaj 1. 3233 @2459 epayhelf 2. 3234 @2461 apayhelf 1. 3235 @2462 epayhelg 2. 3236 @2464 apayhelg 1. 3237 @2465 epayhelh 2. 3238 @2467 apayhelh 1. 3239 @2468 epayheli 2. 3240 @2470 apayheli 1. 3241 @2471 epayhelj 2. 3242 @2473 apayhelj 1. 3243 @2474 ewhopa1f 2. 3244 @2476 ewhopa2f 2. 3245 @2478 ewhopa3f 2. 3246 @2480 ewhopa4f 2. 3247 @2482 awhopaf 1. 3248 @2483 ewhopa1g 2. 3249 @2485 ewhopa2g 2. 3250 @2487 ewhopa3g 2. 3251 @2489 ewhopa4g 2. 3252 @2491 awhopag 2. 3253 @2493 ewhopa1h 2. 3254 @2495 ewhopa2h 2. 3255 @2497 ewhopa3h 2. 3256 @2499 ewhopa4h 2. 3257 @2501 awhopah 1. 3258 @2502 ewhopa1i 2. 3259 @2504 ewhopa2i 2. 3260 @2506 ewhopa3i 2. 3261 @2508 ewhopa4i 2. 3262 @2510 awhopai 1. 3263 @2511 ewhopa1j 2. 3264 @2513 ewhopa2j 2. 3265 @2515 ewhopa3j 2. 3266 @2517 ewhopa4j 2. 3267 @2519 awhopaj 1. 3268 @2520 esatisf 2. 3269 @2522 esatisg 2. 3270 @2524 esatish 2. 3271 @2526 esatisi 2. 3272 @2528 esatisj 2. 3273 @2530 elistf 2. 3274 @2532 alistf 1. 58 The SAS System 11:54 Thursday, June 7, 2012 3275 @2533 elistg 2. 3276 @2535 alistg 1. 3277 @2536 elisth 2. 3278 @2538 alisth 1. 3279 @2539 elisti 2. 3280 @2541 alisti 1. 3281 @2542 elistj 2. 3282 @2544 alistj 1. 3283 @2545 eworkmor 2. 3284 @2547 aworkmor 1. 3285 @2548 etiamt01 2. 3286 @2550 atiamt01 1. 3287 @2551 etiamt02 2. 3288 @2553 atiamt02 1. 3289 @2554 eairunv 2. 3290 @2556 iothrbus 2. 3291 @2558 iownbs04 2. 3292 @2560 ibsform1 2. 3293 @2562 ibsloct1 2. 3294 @2564 iprtown1 2. 3295 @2566 iownrs11 4. 3296 @2570 iownrs12 4. 3297 @2574 ihhown1 2. 3298 @2576 rpcnthh1 2. 3299 @2578 rpctown1 2. 3300 @2580 tgrsrcp1 6. 3301 @2586 ttotexp1 6. 3302 @2592 tnetinc1 6. 3303 @2598 tnetinc2 6. 3304 @2604 iothinc1 2. 3305 @2606 tnetin12 6. 3306 @2612 tnetin13 6. 3307 @2618 tnetin22 6. 3308 @2624 tnetin23 6. 3309 @2630 ibsform2 2. 3310 @2632 ibsloct2 2. 3311 @2634 iprtown2 2. 3312 @2636 iownrs21 4. 3313 @2640 iownrs22 4. 3314 @2644 ihhown2 2. 3315 @2646 rpcnthh2 2. 3316 @2648 rpctown2 2. 3317 @2650 tgrsrcp2 6. 3318 @2656 ttotexp2 6. 3319 @2662 tnetinc3 6. 3320 @2668 tnetinc4 6. 3321 @2674 iothinc2 2. 3322 @2676 tnetin32 6. 3323 @2682 tnetin33 6. 3324 @2688 tnetin42 6. 3325 @2694 tothinc3 6. 3326 @2700 tothinc4 6. 3327 @2706 iirayn 2. 3328 @2708 iiracont 2. 3329 @2710 ttaxcont 4. 3330 @2714 iirawdl 2. 3331 @2716 tamtira 5. 3332 @2721 tiraearn 5. 59 The SAS System 11:54 Thursday, June 7, 2012 3333 @2726 iiratyp1 2. 3334 @2728 iiratyp2 2. 3335 @2730 iiratyp3 2. 3336 @2732 iiratyp4 2. 3337 @2734 iiratyp5 2. 3338 @2736 iiratyp6 2. 3339 @2738 iiratyp7 2. 3340 @2740 ikeoghyn 2. 3341 @2742 ikeoghcn 2. 3342 @2744 ttxkeogh 5. 3343 @2749 ikeoghwd 2. 3344 @2751 tatkeogh 5. 3345 @2756 tkeogher 5. 3346 @2761 ikeohtp1 2. 3347 @2763 ikeohtp2 2. 3348 @2765 ikeohtp3 2. 3349 @2767 ikeohtp4 2. 3350 @2769 ikeohtp5 2. 3351 @2771 ikeohtp6 2. 3352 @2773 ikeohtp7 2. 3353 @2775 ithrftyn 2. 3354 @2777 tthftcnt 5. 3355 @2782 ithftwdl 2. 3356 @2784 tthftamt 5. 3357 @2789 tthftern 5. 3358 @2794 ithftyp1 2. 3359 @2796 ithftyp2 2. 3360 @2798 ithftyp3 2. 3361 @2800 ithftyp4 2. 3362 @2802 ithftyp5 2. 3363 @2804 eatxunv 2. 3364 @2806 itaxflyn 2. 3365 @2808 itaxcopy 2. 3366 @2810 tfilstat 2. 3367 @2812 ttotexmp 2. 3368 @2814 iexemp01 4. 3369 @2818 iexemp02 4. 3370 @2822 iexemp03 4. 3371 @2826 iexemp04 4. 3372 @2830 iexemp05 4. 3373 @2834 iexmpout 2. 3374 @2836 iexnmout 2. 3375 @2838 ioutrl01 2. 3376 @2840 ioutrl02 2. 3377 @2842 ioutrl03 2. 3378 @2844 ioutrl04 2. 3379 @2846 ioutrl05 2. 3380 @2848 ioutrl06 2. 3381 @2850 ioutrl07 2. 3382 @2852 ioutrl08 2. 3383 @2854 ioutrl09 2. 3384 @2856 ioutrl10 2. 3385 @2858 ifilform 2. 3386 @2860 ischeda 2. 3387 @2862 ischedd 2. 3388 @2864 tamtdedt 2. 3389 @2866 iccexpen 2. 3390 @2868 tccamt 2. 60 The SAS System 11:54 Thursday, June 7, 2012 3391 @2870 icarex01 4. 3392 @2874 icarex02 4. 3393 @2878 icarex03 4. 3394 @2882 icarex04 4. 3395 @2886 icarex05 4. 3396 @2890 icarex06 4. 3397 @2894 icarex07 4. 3398 @2898 icarex08 4. 3399 @2902 icarex09 4. 3400 @2906 icarex10 4. 3401 @2910 icarex11 4. 3402 @2914 icarex12 4. 3403 @2918 icarex13 4. 3404 @2922 icarex14 4. 3405 @2926 icarex15 4. 3406 @2930 icarex16 4. 3407 @2934 icarex17 4. 3408 @2938 icarex18 4. 3409 @2942 icarex19 4. 3410 @2946 icarex20 4. 3411 @2950 icarex21 4. 3412 @2954 icarex22 4. 3413 @2958 icarex23 4. 3414 @2962 icarex24 4. 3415 @2966 icarex25 4. 3416 @2970 icarex26 4. 3417 @2974 icarex27 4. 3418 @2978 icarex28 4. 3419 @2982 icarex29 4. 3420 @2986 icarex30 4. 3421 @2990 idsabcrd 2. 3422 @2992 tsapgain 2. 3423 @2994 tadjincm 2. 3424 @2996 tnettax 2. 3425 @2998 ierndcrd 2. 3426 @3000 terndamt 2. 3427 @3002 ieicex01 4. 3428 @3006 ieicex02 4. 3429 @3010 ieicex03 4. 3430 @3014 ieicex04 4. 3431 @3018 ieicex05 4. 3432 @3022 ieicex06 4. 3433 @3026 ieicex07 4. 3434 @3030 ieicex08 4. 3435 @3034 ieicex09 4. 3436 @3038 ieicex10 4. 3437 @3042 ieicex11 4. 3438 @3046 ieicex12 4. 3439 @3050 ieicex13 4. 3440 @3054 ieicex14 4. 3441 @3058 ieicex15 4. 3442 @3062 ieicex16 4. 3443 @3066 ieicex17 4. 3444 @3070 ieicex18 4. 3445 @3074 ieicex19 4. 3446 @3078 ieicex20 4. 3447 @3082 ieicex21 4. 3448 @3086 ieicex22 4. 61 The SAS System 11:54 Thursday, June 7, 2012 3449 @3090 ieicex23 4. 3450 @3094 ieicex24 4. 3451 @3098 ieicex25 4. 3452 @3102 ieicex26 4. 3453 @3106 ieicex27 4. 3454 @3110 ieicex28 4. 3455 @3114 ieicex29 4. 3456 @3118 ieicex30 4. 3457 @3122 iproptax 2. 3458 @3124 ipropjnt 2. 3459 @3126 ipropn01 4. 3460 @3130 ipropn02 4. 3461 @3134 ipropn03 4. 3462 @3138 ipropn04 4. 3463 @3142 ipropn05 4. 3464 @3146 ipropn06 4. 3465 @3150 ipropn07 4. 3466 @3154 ipropn08 4. 3467 @3158 ipropn09 4. 3468 @3162 ipropn10 4. 3469 @3166 ipropn11 4. 3470 @3170 ipropn12 4. 3471 @3174 ipropn13 4. 3472 @3178 ipropn14 4. 3473 @3182 ipropn15 4. 3474 @3186 ipropn16 4. 3475 @3190 ipropn17 4. 3476 @3194 ipropn18 4. 3477 @3198 ipropn19 4. 3478 @3202 ipropn20 4. 3479 @3206 ipropn21 4. 3480 @3210 ipropn22 4. 3481 @3214 ipropn23 4. 3482 @3218 ipropn24 4. 3483 @3222 ipropn25 4. 3484 @3226 ipropn26 4. 3485 @3230 ipropn27 4. 3486 @3234 ipropn28 4. 3487 @3238 ipropn29 4. 3488 @3242 ipropn30 4. 3489 @3246 ttaxbill 2. 3490 ; 3491 3492 **------------------------------------------------; 3493 ** The PROC FORMAT statement will store the formats ; 3494 ** in a sas data set called fsippp08putm8 ; 3495 ** To use the stored formats in a subsequent program, ; 3496 ** use code like the following; 3497 3498 ** proc format cntlin=library.fsppp08putm8; 3499 ** PROC freq; 3500 ** tables pesex ; 3501 ** format pesex P135L.; 3502 3503 ** For more information, consult PROC FORMAT in the SAS Procedures Guide ; 3504 **-----------------------------------------------; 3505 62 The SAS System 11:54 Thursday, June 7, 2012 NOTE: The infile DATAFILE is: Pipe command="unzip -p /homes/data/sipp/2008/p08putm8.zip " NOTE: 84400 records were read from the infile DATAFILE. The minimum record length was 3248. The maximum record length was 3248. NOTE: The data set LIBRARY.SIPPP08PUTM8 has 84400 observations and 1724 variables. NOTE: DATA statement used (Total process time): real time 11.09 seconds cpu time 4.24 seconds 3506 PROC FORMAT cntlout=library.fsppp08putm8; 3507 3508 ; 3509 VALUE spanel (default=32) 3510 2008 = "Panel Year" 3511 ; NOTE: Format SPANEL has been output. 3512 VALUE tfipsst (default=32) 3513 1 = "Alabama" 3514 2 = "Alaska" 3515 4 = "Arizona" 3516 5 = "Arkansas" 3517 6 = "California" 3518 8 = "Colorado" 3519 9 = "Connecticut" 3520 10 = "Delaware" 3521 11 = "DC" 3522 12 = "Florida" 3523 13 = "Georgia" 3524 15 = "Hawaii" 3525 16 = "Idaho" 3526 17 = "Illinois" 3527 18 = "Indiana" 3528 19 = "Iowa" 3529 20 = "Kansas" 3530 21 = "Kentucky" 3531 22 = "Louisiana" 3532 23 = "Maine" 3533 24 = "Maryland" 3534 25 = "Massachusetts" 3535 26 = "Michigan" 3536 27 = "Minnesota" 3537 28 = "Mississippi" 3538 29 = "Missouri" 3539 30 = "Montana" 3540 31 = "Nebraska" 3541 32 = "Nevada" 3542 33 = "New Hampshire" 3543 34 = "New Jersey" 3544 35 = "New Mexico" 3545 36 = "New York" 3546 37 = "North Carolina" 3547 38 = "North Dakota" 3548 39 = "Ohio" 3549 40 = "Oklahoma" 3550 41 = "Oregon" 63 The SAS System 11:54 Thursday, June 7, 2012 3551 42 = "Pennsylvania" 3552 44 = "Rhode Island" 3553 45 = "South Carolina" 3554 46 = "South Dakota" 3555 47 = "Tennessee" 3556 48 = "Texas" 3557 49 = "Utah" 3558 50 = "Vermont" 3559 51 = "Virginia" 3560 53 = "Washington" 3561 54 = "West Virginia" 3562 55 = "Wisconsin" 3563 56 = "Wyoming" 3564 ; NOTE: Format TFIPSST has been output. 3565 VALUE eoutcome (default=32) 3566 201 = "Completed interview" 3567 203 = "Compl. partial- missing data; no" 3568 207 = "Complete partial - TYPE-Z; no" 3569 213 = "TYPE-A, language problem" 3570 216 = "TYPE-A, no one home (noh)" 3571 217 = "TYPE-A, temporarily absent (ta)" 3572 218 = "TYPE-A, hh refused" 3573 219 = "TYPE-A, other occupied (specify)" 3574 234 = "TYPE-B, entire hh institut. or" 3575 248 = "TYPE-C, other (specify)" 3576 249 = "TYPE-C, sample adjustment" 3577 250 = "TYPE-C, hh deceased" 3578 251 = "TYPE-C, moved out of country" 3579 252 = "TYPE-C, living in armed forces" 3580 253 = "TYPE-C, on active duty in Armed" 3581 254 = "TYPE-C, no one over age 15 years" 3582 255 = "TYPE-C, no Wave 1 persons" 3583 260 = "TYPE-D, moved address unknown" 3584 261 = "TYPE-D, moved within U.S. but" 3585 262 = "TYPE-C, merged with another SIPP" 3586 270 = "TYPE-C, mover, no longer located" 3587 271 = "TYPE-C, mover, new address" 3588 280 = "TYPE-D, mover, no longer located" 3589 ; NOTE: Format EOUTCOME has been output. 3590 VALUE rfid2l (default=32) 3591 -1 = "Not in Universe" 3592 ; NOTE: Format RFID2L has been output. 3593 VALUE epopstat (default=32) 3594 1 = "Adult (15 years of age or older)" 3595 2 = "Child (Under 15 years of age)" 3596 ; NOTE: Format EPOPSTAT has been output. 3597 VALUE eppintvw (default=32) 3598 1 = "Interview (self)" 3599 2 = "Interview (proxy)" 3600 3 = "Noninterview - Type Z" 3601 4 = "Noninterview - pseudo Type Z." 3602 5 = "Children under 15 during" 3603 ; NOTE: Format EPPINTVW has been output. 64 The SAS System 11:54 Thursday, June 7, 2012 3604 VALUE eppmis4l (default=32) 3605 1 = "Interview" 3606 2 = "Non-interview" 3607 ; NOTE: Format EPPMIS4L has been output. 3608 VALUE esex (default=32) 3609 1 = "Male" 3610 2 = "Female" 3611 ; NOTE: Format ESEX has been output. 3612 VALUE erace (default=32) 3613 1 = "White alone" 3614 2 = "Black alone" 3615 3 = "Asian alone" 3616 4 = "Residual" 3617 ; NOTE: Format ERACE has been output. 3618 VALUE eorigin (default=32) 3619 1 = "Yes" 3620 2 = "No" 3621 ; NOTE: Format EORIGIN has been output. 3622 VALUE errp (default=32) 3623 1 = "Reference person with related" 3624 2 = "Reference Person without related" 3625 3 = "Spouse of reference person" 3626 4 = "Child of reference person" 3627 5 = "Grandchild of reference person" 3628 6 = "Parent of reference person" 3629 7 = "Brother/sister of reference person" 3630 8 = "Other relative of reference person" 3631 9 = "Foster child of reference person" 3632 10 = "Unmarried partner of reference" 3633 11 = "Housemate/roommate" 3634 12 = "Roomer/boarder" 3635 13 = "Other non-relative of reference" 3636 ; NOTE: Format ERRP has been output. 3637 VALUE tage (default=32) 3638 0 = "Less than 1 full year old" 3639 ; NOTE: Format TAGE has been output. 3640 VALUE ems (default=32) 3641 1 = "Married, spouse present" 3642 2 = "Married, spouse absent" 3643 3 = "Widowed" 3644 4 = "Divorced" 3645 5 = "Separated" 3646 6 = "Never Married" 3647 ; NOTE: Format EMS has been output. 3648 VALUE epnspous (default=32) 3649 9999 = "Spouse not in household or person" 3650 ; NOTE: Format EPNSPOUS has been output. 3651 VALUE epnmom (default=32) 3652 9999 = "No mother in household" 3653 ; 65 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EPNMOM has been output. 3654 VALUE epndad (default=32) 3655 9999 = "No father in household" 3656 ; NOTE: Format EPNDAD has been output. 3657 VALUE epnguard (default=32) 3658 -1 = "Not in Universe" 3659 9999 = "Guardian not in household" 3660 ; NOTE: Format EPNGUARD has been output. 3661 VALUE rdesgpnt (default=32) 3662 -1 = "Not in Universe" 3663 1 = "Yes" 3664 2 = "No" 3665 ; NOTE: Format RDESGPNT has been output. 3666 VALUE eeducate (default=32) 3667 -1 = "Not in Universe" 3668 31 = "Less Than 1st Grade" 3669 32 = "1st, 2nd, 3rd or 4th grade" 3670 33 = "5th Or 6th Grade" 3671 34 = "7th Or 8th Grade" 3672 35 = "9th Grade" 3673 36 = "10th Grade" 3674 37 = "11th Grade" 3675 38 = "12th grade, no diploma" 3676 39 = "High School Graduate - (diploma" 3677 40 = "Some college, but no degree" 3678 41 = "Diploma or certificate from a" 3679 43 = "Associate (2-yr) college degree" 3680 44 = "Bachelor's degree (for example:" 3681 45 = "Master's degree (For example: MA," 3682 46 = "Professional School degree (for" 3683 47 = "Doctorate degree (for example:" 3684 ; NOTE: Format EEDUCATE has been output. 3685 VALUE sinthhid (default=32) 3686 0 = "Not In Universe" 3687 ; NOTE: Format SINTHHID has been output. 3688 VALUE epwsunv (default=32) 3689 -1 = "Not in Universe" 3690 1 = "In universe" 3691 ; NOTE: Format EPWSUNV has been output. 3692 VALUE ewsempct (default=32) 3693 -1 = "Not in Universe" 3694 1 = "1 employer" 3695 2 = "2 employers" 3696 3 = "3 or more employers" 3697 ; NOTE: Format EWSEMPCT has been output. 3698 VALUE awsempct (default=32) 3699 0 = "Not imputed" 3700 1 = "Statistical imputation (hot deck)" 3701 2 = "Cold deck imputation" 3702 3 = "Logical imputation (derivation)" 3703 ; 66 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AWSEMPCT has been output. 3704 VALUE ewseno1l (default=32) 3705 -1 = "Not in Universe" 3706 ; NOTE: Format EWSENO1L has been output. 3707 VALUE ewsbno1l (default=32) 3708 -1 = "Not in Universe" 3709 ; NOTE: Format EWSBNO1L has been output. 3710 VALUE ewseno2l (default=32) 3711 -1 = "Not in Universe" 3712 ; NOTE: Format EWSENO2L has been output. 3713 VALUE ewsbno2l (default=32) 3714 -1 = "Not in Universe" 3715 ; NOTE: Format EWSBNO2L has been output. 3716 VALUE ewshrs1l (default=32) 3717 -1 = "Not in Universe" 3718 ; NOTE: Format EWSHRS1L has been output. 3719 VALUE awshrs1l (default=32) 3720 0 = "Not imputed" 3721 1 = "Statistical imputation (hot deck)" 3722 2 = "Cold deck imputation" 3723 3 = "Logical imputation (derivation)" 3724 ; NOTE: Format AWSHRS1L has been output. 3725 VALUE ewsdys1l (default=32) 3726 -1 = "Not in Universe" 3727 ; NOTE: Format EWSDYS1L has been output. 3728 VALUE awsdys1l (default=32) 3729 0 = "Not imputed" 3730 1 = "Statistical imputation (hot deck)" 3731 2 = "Cold deck imputation" 3732 3 = "Logical imputation (derivation)" 3733 ; NOTE: Format AWSDYS1L has been output. 3734 VALUE ewsday1t (default=32) 3735 -1 = "Not in Universe" 3736 0 = "Did not work" 3737 1 = "Worked" 3738 ; NOTE: Format EWSDAY1T has been output. 3739 VALUE awsday1t (default=32) 3740 0 = "Not imputed" 3741 1 = "Statistical imputation (hot deck)" 3742 2 = "Cold deck imputation" 3743 3 = "Logical imputation (derivation)" 3744 ; NOTE: Format AWSDAY1T has been output. 3745 VALUE ewsday1k (default=32) 3746 -1 = "Not in Universe" 3747 0 = "Did not work" 3748 1 = "Worked" 3749 ; NOTE: Format EWSDAY1K has been output. 67 The SAS System 11:54 Thursday, June 7, 2012 3750 VALUE awsday1k (default=32) 3751 0 = "Not imputed" 3752 1 = "Statistical imputation (hot deck)" 3753 2 = "Cold deck imputation" 3754 3 = "Logical imputation (derivation)" 3755 ; NOTE: Format AWSDAY1K has been output. 3756 VALUE ewsday1l (default=32) 3757 -1 = "Not in Universe" 3758 0 = "Did not work" 3759 1 = "Worked" 3760 ; NOTE: Format EWSDAY1L has been output. 3761 VALUE awsday1l (default=32) 3762 0 = "Not imputed" 3763 1 = "Statistical imputation (hot deck)" 3764 2 = "Cold deck imputation" 3765 3 = "Logical imputation (derivation)" 3766 ; NOTE: Format AWSDAY1L has been output. 3767 VALUE ewsday1m (default=32) 3768 -1 = "Not in Universe" 3769 0 = "Did not work" 3770 1 = "Worked" 3771 ; NOTE: Format EWSDAY1M has been output. 3772 VALUE awsday1m (default=32) 3773 0 = "Not imputed" 3774 1 = "Statistical imputation (hot deck)" 3775 2 = "Cold deck imputation" 3776 3 = "Logical imputation (derivation)" 3777 ; NOTE: Format AWSDAY1M has been output. 3778 VALUE ewsday1n (default=32) 3779 -1 = "Not in Universe" 3780 0 = "Did not work" 3781 1 = "Worked" 3782 ; NOTE: Format EWSDAY1N has been output. 3783 VALUE awsday1n (default=32) 3784 0 = "Not imputed" 3785 1 = "Statistical imputation (hot deck)" 3786 2 = "Cold deck imputation" 3787 3 = "Logical imputation (derivation)" 3788 ; NOTE: Format AWSDAY1N has been output. 3789 VALUE ewsday1o (default=32) 3790 -1 = "Not in Universe" 3791 0 = "Did not work" 3792 1 = "Worked" 3793 ; NOTE: Format EWSDAY1O has been output. 3794 VALUE awsday1o (default=32) 3795 0 = "Not imputed" 3796 1 = "Statistical imputation (hot deck)" 3797 2 = "Cold deck imputation" 3798 3 = "Logical imputation (derivation)" 3799 ; 68 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AWSDAY1O has been output. 3800 VALUE ewsday1p (default=32) 3801 -1 = "Not in Universe" 3802 0 = "Did not work" 3803 1 = "Worked" 3804 ; NOTE: Format EWSDAY1P has been output. 3805 VALUE awsday1p (default=32) 3806 0 = "Not imputed" 3807 1 = "Statistical imputation (hot deck)" 3808 2 = "Cold deck imputation" 3809 3 = "Logical imputation (derivation)" 3810 ; NOTE: Format AWSDAY1P has been output. 3811 VALUE ewsbeg1l (default=32) 3812 -1 = "Not in Universe" 3813 ; NOTE: Format EWSBEG1L has been output. 3814 VALUE awsbeg1l (default=32) 3815 0 = "Not imputed" 3816 1 = "Statistical imputation (hot deck)" 3817 2 = "Cold deck imputation" 3818 3 = "Logical imputation (derivation)" 3819 ; NOTE: Format AWSBEG1L has been output. 3820 VALUE ewsbegmt (default=32) 3821 -1 = "Not in Universe" 3822 1 = "A.M." 3823 2 = "P.M." 3824 3 = "Noon" 3825 4 = "Midnight" 3826 ; NOTE: Format EWSBEGMT has been output. 3827 VALUE awsbegmt (default=32) 3828 0 = "Not imputed" 3829 1 = "Statistical imputation (hot deck)" 3830 2 = "Cold deck imputation" 3831 3 = "Logical imputation (derivation)" 3832 ; NOTE: Format AWSBEGMT has been output. 3833 VALUE ewsend1l (default=32) 3834 -1 = "Not in Universe" 3835 ; NOTE: Format EWSEND1L has been output. 3836 VALUE awsend1l (default=32) 3837 0 = "Not imputed" 3838 1 = "Statistical imputation (hot deck)" 3839 2 = "Cold deck imputation" 3840 3 = "Logical imputation (derivation)" 3841 ; NOTE: Format AWSEND1L has been output. 3842 VALUE ewsendmt (default=32) 3843 -1 = "Not in Universe" 3844 1 = "A.M." 3845 2 = "P.M." 3846 3 = "Noon" 3847 4 = "Midnight" 3848 ; 69 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EWSENDMT has been output. 3849 VALUE awsendmt (default=32) 3850 0 = "Not imputed" 3851 1 = "Statistical imputation (hot deck)" 3852 2 = "Cold deck imputation" 3853 3 = "Logical imputation (derivation)" 3854 ; NOTE: Format AWSENDMT has been output. 3855 VALUE ewshmwkt (default=32) 3856 -1 = "Not in Universe" 3857 1 = "Yes" 3858 2 = "No" 3859 ; NOTE: Format EWSHMWKT has been output. 3860 VALUE awshmwkt (default=32) 3861 0 = "Not imputed" 3862 1 = "Statistical imputation (hot deck)" 3863 2 = "Cold deck imputation" 3864 3 = "Logical imputation (derivation)" 3865 ; NOTE: Format AWSHMWKT has been output. 3866 VALUE ewsdy11l (default=32) 3867 -1 = "Not in Universe" 3868 0 = "Did not work only at home on" 3869 1 = "Worked only at home on Sunday" 3870 ; NOTE: Format EWSDY11L has been output. 3871 VALUE awsdy11l (default=32) 3872 0 = "Not imputed" 3873 1 = "Statistical imputation (hot deck)" 3874 2 = "Cold deck imputation" 3875 3 = "Logical imputation (derivation)" 3876 ; NOTE: Format AWSDY11L has been output. 3877 VALUE ewsdy12l (default=32) 3878 -1 = "Not in Universe" 3879 0 = "Did not work only at home on" 3880 1 = "Worked only at home on Monday" 3881 ; NOTE: Format EWSDY12L has been output. 3882 VALUE awsdy12l (default=32) 3883 0 = "Not imputed" 3884 1 = "Statistical imputation (hot deck)" 3885 2 = "Cold deck imputation" 3886 3 = "Logical imputation (derivation)" 3887 ; NOTE: Format AWSDY12L has been output. 3888 VALUE ewsdy13l (default=32) 3889 -1 = "Not in Universe" 3890 0 = "Did not work only at home on" 3891 1 = "Worked only at home on Tuesday" 3892 ; NOTE: Format EWSDY13L has been output. 3893 VALUE awsdy13l (default=32) 3894 0 = "Not imputed" 3895 1 = "Statistical imputation (hot deck)" 3896 2 = "Cold deck imputation" 3897 3 = "Logical imputation (derivation)" 70 The SAS System 11:54 Thursday, June 7, 2012 3898 ; NOTE: Format AWSDY13L has been output. 3899 VALUE ewsdy14l (default=32) 3900 -1 = "Not in Universe" 3901 0 = "Did not work only at home on" 3902 1 = "Worked only at home on Wednesday" 3903 ; NOTE: Format EWSDY14L has been output. 3904 VALUE awsdy14l (default=32) 3905 0 = "Not imputed" 3906 1 = "Statistical imputation (hot deck)" 3907 2 = "Cold deck imputation" 3908 3 = "Logical imputation (derivation)" 3909 ; NOTE: Format AWSDY14L has been output. 3910 VALUE ewsdy15l (default=32) 3911 -1 = "Not in Universe" 3912 0 = "Did not work only at home on" 3913 1 = "Worked only at home on Thursday" 3914 ; NOTE: Format EWSDY15L has been output. 3915 VALUE awsdy15l (default=32) 3916 0 = "Not imputed" 3917 1 = "Statistical imputation (hot deck)" 3918 2 = "Cold deck imputation" 3919 3 = "Logical imputation (derivation)" 3920 ; NOTE: Format AWSDY15L has been output. 3921 VALUE ewsdy16l (default=32) 3922 -1 = "Not in Universe" 3923 0 = "Did not work only at home on" 3924 1 = "Worked only at home on Friday" 3925 ; NOTE: Format EWSDY16L has been output. 3926 VALUE awsdy16l (default=32) 3927 0 = "Not imputed" 3928 1 = "Statistical imputation (hot deck)" 3929 2 = "Cold deck imputation" 3930 3 = "Logical imputation (derivation)" 3931 ; NOTE: Format AWSDY16L has been output. 3932 VALUE ewsdy17l (default=32) 3933 -1 = "Not in Universe" 3934 0 = "Did not work only at home on" 3935 1 = "Worked only at home on Saturday" 3936 ; NOTE: Format EWSDY17L has been output. 3937 VALUE awsdy17l (default=32) 3938 0 = "Not imputed" 3939 1 = "Statistical imputation (hot deck)" 3940 2 = "Cold deck imputation" 3941 3 = "Logical imputation (derivation)" 3942 ; NOTE: Format AWSDY17L has been output. 3943 VALUE ewsjob1l (default=32) 3944 -1 = "Not in Universe" 3945 1 = "Regular daytime schedule" 3946 2 = "Regular evening shift" 71 The SAS System 11:54 Thursday, June 7, 2012 3947 3 = "Regular night shift" 3948 4 = "Rotating shift" 3949 5 = "Split shift" 3950 6 = "Irregular schedule" 3951 7 = "Other" 3952 ; NOTE: Format EWSJOB1L has been output. 3953 VALUE awsjob1l (default=32) 3954 0 = "Not In Universe" 3955 1 = "Statistical imputation (hot deck)" 3956 2 = "Cold deck imputation" 3957 3 = "Logical imputation (derivation)" 3958 ; NOTE: Format AWSJOB1L has been output. 3959 VALUE ewsmnr1l (default=32) 3960 -1 = "Not in Universe" 3961 1 = "Better child care arrangements" 3962 2 = "Better pay" 3963 3 = "Better arrangements for care of" 3964 4 = "Allows time for school" 3965 5 = "Other Voluntary reasons" 3966 6 = "Could not get any other job" 3967 7 = "Requirement of the Job" 3968 8 = "Other Involuntary Reasons" 3969 ; NOTE: Format EWSMNR1L has been output. 3970 VALUE awsmnr1l (default=32) 3971 0 = "Not imputed" 3972 1 = "Statistical imputation (hot deck)" 3973 2 = "Cold deck imputation" 3974 3 = "Logical imputation (derivation)" 3975 ; NOTE: Format AWSMNR1L has been output. 3976 VALUE ewshrs2l (default=32) 3977 -1 = "Not in Universe" 3978 ; NOTE: Format EWSHRS2L has been output. 3979 VALUE awshrs2l (default=32) 3980 0 = "Not imputed" 3981 1 = "Statistical imputation (hot deck)" 3982 2 = "Cold deck imputation" 3983 3 = "Logical imputation (derivation)" 3984 ; NOTE: Format AWSHRS2L has been output. 3985 VALUE ewsdys2l (default=32) 3986 -1 = "Not in Universe" 3987 ; NOTE: Format EWSDYS2L has been output. 3988 VALUE awsdys2l (default=32) 3989 0 = "Not imputed" 3990 1 = "Statistical imputation (hot deck)" 3991 2 = "Cold deck imputation" 3992 3 = "Logical imputation (derivation)" 3993 ; NOTE: Format AWSDYS2L has been output. 3994 VALUE ewsday2t (default=32) 3995 -1 = "Not in Universe" 3996 0 = "Did not work" 72 The SAS System 11:54 Thursday, June 7, 2012 3997 1 = "Worked" 3998 ; NOTE: Format EWSDAY2T has been output. 3999 VALUE awsday2t (default=32) 4000 0 = "Not imputed" 4001 1 = "Statistical imputation (hot deck)" 4002 2 = "Cold deck imputation" 4003 3 = "Logical imputation (derivation)" 4004 ; NOTE: Format AWSDAY2T has been output. 4005 VALUE ewsday2k (default=32) 4006 -1 = "Not in Universe" 4007 0 = "Did not work" 4008 1 = "Worked" 4009 ; NOTE: Format EWSDAY2K has been output. 4010 VALUE awsday2k (default=32) 4011 0 = "Not imputed" 4012 1 = "Statistical imputation (hot deck)" 4013 2 = "Cold deck imputation" 4014 3 = "Logical imputation (derivation)" 4015 ; NOTE: Format AWSDAY2K has been output. 4016 VALUE ewsday2l (default=32) 4017 -1 = "Not in Universe" 4018 0 = "Did not work" 4019 1 = "Worked" 4020 ; NOTE: Format EWSDAY2L has been output. 4021 VALUE awsday2l (default=32) 4022 0 = "Not imputed" 4023 1 = "Statistical imputation (hot deck)" 4024 2 = "Cold deck imputation" 4025 3 = "Logical imputation (derivation)" 4026 ; NOTE: Format AWSDAY2L has been output. 4027 VALUE ewsday2m (default=32) 4028 -1 = "Not in Universe" 4029 0 = "Did not work" 4030 1 = "Worked" 4031 ; NOTE: Format EWSDAY2M has been output. 4032 VALUE awsday2m (default=32) 4033 0 = "Not imputed" 4034 1 = "Statistical imputation (hot deck)" 4035 2 = "Cold deck imputation" 4036 3 = "Logical imputation (derivation)" 4037 ; NOTE: Format AWSDAY2M has been output. 4038 VALUE ewsday2n (default=32) 4039 -1 = "Not in Universe" 4040 0 = "Did not work" 4041 1 = "Worked" 4042 ; NOTE: Format EWSDAY2N has been output. 4043 VALUE awsday2n (default=32) 4044 0 = "Not imputed" 4045 1 = "Statistical imputation (hot deck)" 73 The SAS System 11:54 Thursday, June 7, 2012 4046 2 = "Cold deck imputation" 4047 3 = "Logical imputation (derivation)" 4048 ; NOTE: Format AWSDAY2N has been output. 4049 VALUE ewsday2o (default=32) 4050 -1 = "Not in Universe" 4051 0 = "Did not work" 4052 1 = "Worked" 4053 ; NOTE: Format EWSDAY2O has been output. 4054 VALUE awsday2o (default=32) 4055 0 = "Not imputed" 4056 1 = "Statistical imputation (hot deck)" 4057 2 = "Cold deck imputation" 4058 3 = "Logical imputation (derivation)" 4059 ; NOTE: Format AWSDAY2O has been output. 4060 VALUE ewsday2p (default=32) 4061 -1 = "Not in Universe" 4062 0 = "Did not work" 4063 1 = "Worked" 4064 ; NOTE: Format EWSDAY2P has been output. 4065 VALUE awsday2p (default=32) 4066 0 = "Not imputed" 4067 1 = "Statistical imputation (hot deck)" 4068 2 = "Cold deck imputation" 4069 3 = "Logical imputation (derivation)" 4070 ; NOTE: Format AWSDAY2P has been output. 4071 VALUE ewsbeg2l (default=32) 4072 -1 = "Not in Universe" 4073 ; NOTE: Format EWSBEG2L has been output. 4074 VALUE awsbeg2l (default=32) 4075 0 = "Not imputed" 4076 1 = "Statistical imputation (hot deck)" 4077 2 = "Cold deck imputation" 4078 3 = "Logical imputation (derivation)" 4079 ; NOTE: Format AWSBEG2L has been output. 4080 VALUE ewsbegmk (default=32) 4081 -1 = "Not in Universe" 4082 1 = "A.M." 4083 2 = "P.M." 4084 3 = "Noon" 4085 4 = "Midnight" 4086 ; NOTE: Format EWSBEGMK has been output. 4087 VALUE awsbegmk (default=32) 4088 0 = "Not imputed" 4089 1 = "Statistical imputation (hot deck)" 4090 2 = "Cold deck imputation" 4091 3 = "Logical imputation (derivation)" 4092 ; NOTE: Format AWSBEGMK has been output. 4093 VALUE ewsend2l (default=32) 4094 -1 = "Not in Universe" 74 The SAS System 11:54 Thursday, June 7, 2012 4095 ; NOTE: Format EWSEND2L has been output. 4096 VALUE awsend2l (default=32) 4097 0 = "Not imputed" 4098 1 = "Statistical imputation (hot deck)" 4099 2 = "Cold deck imputation" 4100 3 = "Logical imputation (derivation)" 4101 ; NOTE: Format AWSEND2L has been output. 4102 VALUE ewsendmk (default=32) 4103 -1 = "Not in Universe" 4104 1 = "A.M." 4105 2 = "P.M." 4106 3 = "Noon" 4107 4 = "Midnight" 4108 ; NOTE: Format EWSENDMK has been output. 4109 VALUE awsendmk (default=32) 4110 0 = "Not imputed" 4111 1 = "Statistical imputation (hot deck)" 4112 2 = "Cold deck imputation" 4113 3 = "Logical imputation (derivation)" 4114 ; NOTE: Format AWSENDMK has been output. 4115 VALUE ewshmwkk (default=32) 4116 -1 = "Not in Universe" 4117 1 = "Yes" 4118 2 = "No" 4119 ; NOTE: Format EWSHMWKK has been output. 4120 VALUE awshmwkk (default=32) 4121 0 = "Not imputed" 4122 1 = "Statistical imputation (hot deck)" 4123 2 = "Cold deck imputation" 4124 3 = "Logical imputation (derivation)" 4125 ; NOTE: Format AWSHMWKK has been output. 4126 VALUE ewsdy21l (default=32) 4127 -1 = "Not in Universe" 4128 0 = "Did not work only at home on" 4129 1 = "Worked only at home on Sunday" 4130 ; NOTE: Format EWSDY21L has been output. 4131 VALUE awsdy21l (default=32) 4132 0 = "Not imputed" 4133 1 = "Statistical imputation (hot deck)" 4134 2 = "Cold deck imputation" 4135 3 = "Logical imputation (derivation)" 4136 ; NOTE: Format AWSDY21L has been output. 4137 VALUE ewsdy22l (default=32) 4138 -1 = "Not in Universe" 4139 0 = "Did not work only at home on" 4140 1 = "Worked only at home on Monday" 4141 ; NOTE: Format EWSDY22L has been output. 4142 VALUE awsdy22l (default=32) 4143 0 = "Not imputed" 75 The SAS System 11:54 Thursday, June 7, 2012 4144 1 = "Statistical imputation (hot deck)" 4145 2 = "Cold deck imputation" 4146 3 = "Logical imputation (derivation)" 4147 ; NOTE: Format AWSDY22L has been output. 4148 VALUE ewsdy23l (default=32) 4149 -1 = "Not in Universe" 4150 0 = "Did not work only at home on" 4151 1 = "Worked only at home on Tuesday" 4152 ; NOTE: Format EWSDY23L has been output. 4153 VALUE awsdy23l (default=32) 4154 0 = "Not imputed" 4155 1 = "Statistical imputation (hot deck)" 4156 2 = "Cold deck imputation" 4157 3 = "Logical imputation (derivation)" 4158 ; NOTE: Format AWSDY23L has been output. 4159 VALUE ewsdy24l (default=32) 4160 -1 = "Not in Universe" 4161 0 = "Did not work only at home on" 4162 1 = "Worked only at home on Wednesday" 4163 ; NOTE: Format EWSDY24L has been output. 4164 VALUE awsdy24l (default=32) 4165 0 = "Not imputed" 4166 1 = "Statistical imputation (hot deck)" 4167 2 = "Cold deck imputation" 4168 3 = "Logical imputation (derivation)" 4169 ; NOTE: Format AWSDY24L has been output. 4170 VALUE ewsdy25l (default=32) 4171 -1 = "Not in Universe" 4172 0 = "Did not work only at home on" 4173 1 = "Worked only at home on Thursday" 4174 ; NOTE: Format EWSDY25L has been output. 4175 VALUE awsdy25l (default=32) 4176 0 = "Not imputed" 4177 1 = "Statistical imputation (hot deck)" 4178 2 = "Cold deck imputation" 4179 3 = "Logical imputation (derivation)" 4180 ; NOTE: Format AWSDY25L has been output. 4181 VALUE ewsdy26l (default=32) 4182 -1 = "Not in Universe" 4183 0 = "Did not work only at home on" 4184 1 = "Worked only at home on Friday" 4185 ; NOTE: Format EWSDY26L has been output. 4186 VALUE awsdy26l (default=32) 4187 0 = "Not imputed" 4188 1 = "Statistical imputation (hot deck)" 4189 2 = "Cold deck imputation" 4190 3 = "Logical imputation (derivation)" 4191 ; NOTE: Format AWSDY26L has been output. 4192 VALUE ewsdy27l (default=32) 76 The SAS System 11:54 Thursday, June 7, 2012 4193 -1 = "Not in Universe" 4194 0 = "Did not work only at home on" 4195 1 = "Worked only at home on Saturday" 4196 ; NOTE: Format EWSDY27L has been output. 4197 VALUE awsdy27l (default=32) 4198 0 = "Not imputed" 4199 1 = "Statistical imputation (hot deck)" 4200 2 = "Cold deck imputation" 4201 3 = "Logical imputation (derivation)" 4202 ; NOTE: Format AWSDY27L has been output. 4203 VALUE ewsjob2l (default=32) 4204 -1 = "Not in Universe" 4205 1 = "Regular daytime schedule" 4206 2 = "Regular evening shift" 4207 3 = "Regular night shift" 4208 4 = "Rotating shift" 4209 5 = "Split shift" 4210 6 = "Irregular schedule" 4211 7 = "Other" 4212 ; NOTE: Format EWSJOB2L has been output. 4213 VALUE awsjob2l (default=32) 4214 0 = "Not imputed" 4215 1 = "Statistical imputation (hot deck)" 4216 2 = "Cold deck imputation" 4217 3 = "Logical imputation (derivation)" 4218 ; NOTE: Format AWSJOB2L has been output. 4219 VALUE ewsmnr2l (default=32) 4220 -1 = "Not in Universe" 4221 1 = "Better child care arrangements" 4222 2 = "Better pay" 4223 3 = "Better arrangements for care of" 4224 4 = "Allows time for school" 4225 5 = "Other Voluntary reasons" 4226 6 = "Could not get any other job" 4227 7 = "Requirement of the Job" 4228 8 = "Other Involuntary Reasons" 4229 ; NOTE: Format EWSMNR2L has been output. 4230 VALUE awsmnr2l (default=32) 4231 0 = "Not imputed" 4232 1 = "Statistical imputation (hot deck)" 4233 2 = "Cold deck imputation" 4234 3 = "Logical imputation (derivation)" 4235 ; NOTE: Format AWSMNR2L has been output. 4236 VALUE eccunv (default=32) 4237 -1 = "Not in Universe" 4238 1 = "In universe" 4239 ; NOTE: Format ECCUNV has been output. 4240 VALUE ehrwksch (default=32) 4241 -6 = "Not enrolled" 4242 -5 = "Hours varied" 4243 -1 = "Not in Universe" 77 The SAS System 11:54 Thursday, June 7, 2012 4244 0 = "None" 4245 ; NOTE: Format EHRWKSCH has been output. 4246 VALUE ahrwksch (default=32) 4247 0 = "Not imputed" 4248 1 = "Statistical imputation (hot deck)" 4249 2 = "Cold deck imputation" 4250 3 = "Logical imputation (derivation)" 4251 ; NOTE: Format AHRWKSCH has been output. 4252 VALUE rrhrswk (default=32) 4253 -1 = "Not in Universe" 4254 0 = "Not working or not in school" 4255 ; NOTE: Format RRHRSWK has been output. 4256 VALUE ehrwkjob (default=32) 4257 -6 = "Did not look for job last month" 4258 -5 = "Hours varied" 4259 -1 = "Not in Universe" 4260 ; NOTE: Format EHRWKJOB has been output. 4261 VALUE ahrwkjob (default=32) 4262 0 = "Not imputed" 4263 1 = "Statistical imputation (hot deck)" 4264 2 = "Cold deck imputation" 4265 3 = "Logical imputation (derivation)" 4266 ; NOTE: Format AHRWKJOB has been output. 4267 VALUE $eccpnum (default=32) 4268 "-1" = "Not in Universe" 4269 ; NOTE: Format $ECCPNUM has been output. 4270 VALUE $eccpnum (default=32) 4271 "-1" = "Not in Universe" 4272 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 4273 VALUE $eccpnum (default=32) 4274 "-1" = "Not in Universe" 4275 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 4276 VALUE $eccpnum (default=32) 4277 "-1" = "Not in Universe" 4278 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 4279 VALUE $eccpnum (default=32) 4280 "-1" = "Not in Universe" 4281 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 4282 VALUE eccagea (default=32) 4283 -1 = "Not in Universe" 4284 ; NOTE: Format ECCAGEA has been output. 4285 VALUE eccageb (default=32) 4286 -1 = "Not in Universe" 78 The SAS System 11:54 Thursday, June 7, 2012 4287 ; NOTE: Format ECCAGEB has been output. 4288 VALUE eccagec (default=32) 4289 -1 = "Not in Universe" 4290 ; NOTE: Format ECCAGEC has been output. 4291 VALUE eccaged (default=32) 4292 -1 = "Not in Universe" 4293 ; NOTE: Format ECCAGED has been output. 4294 VALUE eccagee (default=32) 4295 -1 = "Not in Universe" 4296 ; NOTE: Format ECCAGEE has been output. 4297 VALUE eckd01a (default=32) 4298 -1 = "Not in Universe" 4299 1 = "Yes" 4300 2 = "No" 4301 ; NOTE: Format ECKD01A has been output. 4302 VALUE eckd01b (default=32) 4303 -1 = "Not in Universe" 4304 1 = "Yes" 4305 2 = "No" 4306 ; NOTE: Format ECKD01B has been output. 4307 VALUE eckd01c (default=32) 4308 -1 = "Not in Universe" 4309 1 = "Yes" 4310 2 = "No" 4311 ; NOTE: Format ECKD01C has been output. 4312 VALUE eckd01d (default=32) 4313 -1 = "Not in Universe" 4314 1 = "Yes" 4315 2 = "No" 4316 ; NOTE: Format ECKD01D has been output. 4317 VALUE eckd01e (default=32) 4318 -1 = "Not in Universe" 4319 1 = "Yes" 4320 2 = "No" 4321 ; NOTE: Format ECKD01E has been output. 4322 VALUE eckd02a (default=32) 4323 -1 = "Not in Universe" 4324 1 = "Yes" 4325 2 = "No" 4326 ; NOTE: Format ECKD02A has been output. 4327 VALUE eckd02b (default=32) 4328 -1 = "Not in Universe" 4329 1 = "Yes" 4330 2 = "No" 4331 ; NOTE: Format ECKD02B has been output. 4332 VALUE eckd02c (default=32) 4333 -1 = "Not in Universe" 79 The SAS System 11:54 Thursday, June 7, 2012 4334 1 = "Yes" 4335 2 = "No" 4336 ; NOTE: Format ECKD02C has been output. 4337 VALUE eckd02d (default=32) 4338 -1 = "Not in Universe" 4339 1 = "Yes" 4340 2 = "No" 4341 ; NOTE: Format ECKD02D has been output. 4342 VALUE eckd02e (default=32) 4343 -1 = "Not in Universe" 4344 1 = "Yes" 4345 2 = "No" 4346 ; NOTE: Format ECKD02E has been output. 4347 VALUE eckd03a (default=32) 4348 -1 = "Not in Universe" 4349 1 = "Yes" 4350 2 = "No" 4351 ; NOTE: Format ECKD03A has been output. 4352 VALUE eckd03b (default=32) 4353 -1 = "Not in Universe" 4354 1 = "Yes" 4355 2 = "No" 4356 ; NOTE: Format ECKD03B has been output. 4357 VALUE eckd03c (default=32) 4358 -1 = "Not in Universe" 4359 1 = "Yes" 4360 2 = "No" 4361 ; NOTE: Format ECKD03C has been output. 4362 VALUE eckd03d (default=32) 4363 -1 = "Not in Universe" 4364 1 = "Yes" 4365 2 = "No" 4366 ; NOTE: Format ECKD03D has been output. 4367 VALUE eckd03e (default=32) 4368 -1 = "Not in Universe" 4369 1 = "Yes" 4370 2 = "No" 4371 ; NOTE: Format ECKD03E has been output. 4372 VALUE eckd04a (default=32) 4373 -1 = "Not in Universe" 4374 1 = "Yes" 4375 2 = "No" 4376 ; NOTE: Format ECKD04A has been output. 4377 VALUE eckd04b (default=32) 4378 -1 = "Not in Universe" 4379 1 = "Yes" 4380 2 = "No" 4381 ; NOTE: Format ECKD04B has been output. 80 The SAS System 11:54 Thursday, June 7, 2012 4382 VALUE eckd04c (default=32) 4383 -1 = "Not in Universe" 4384 1 = "Yes" 4385 2 = "No" 4386 ; NOTE: Format ECKD04C has been output. 4387 VALUE eckd04d (default=32) 4388 -1 = "Not in Universe" 4389 1 = "Yes" 4390 2 = "No" 4391 ; NOTE: Format ECKD04D has been output. 4392 VALUE eckd04e (default=32) 4393 -1 = "Not in Universe" 4394 1 = "Yes" 4395 2 = "No" 4396 ; NOTE: Format ECKD04E has been output. 4397 VALUE eckd05a (default=32) 4398 -1 = "Not in Universe" 4399 1 = "Yes" 4400 2 = "No" 4401 ; NOTE: Format ECKD05A has been output. 4402 VALUE eckd05b (default=32) 4403 -1 = "Not in Universe" 4404 1 = "Yes" 4405 2 = "No" 4406 ; NOTE: Format ECKD05B has been output. 4407 VALUE eckd05c (default=32) 4408 -1 = "Not in Universe" 4409 1 = "Yes" 4410 2 = "No" 4411 ; NOTE: Format ECKD05C has been output. 4412 VALUE eckd05d (default=32) 4413 -1 = "Not in Universe" 4414 1 = "Yes" 4415 2 = "No" 4416 ; NOTE: Format ECKD05D has been output. 4417 VALUE eckd05e (default=32) 4418 -1 = "Not in Universe" 4419 1 = "Yes" 4420 2 = "No" 4421 ; NOTE: Format ECKD05E has been output. 4422 VALUE eckd06a (default=32) 4423 -1 = "Not in Universe" 4424 1 = "Yes" 4425 2 = "No" 4426 ; NOTE: Format ECKD06A has been output. 4427 VALUE eckd06b (default=32) 4428 -1 = "Not in Universe" 4429 1 = "Yes" 4430 2 = "No" 81 The SAS System 11:54 Thursday, June 7, 2012 4431 ; NOTE: Format ECKD06B has been output. 4432 VALUE eckd06c (default=32) 4433 -1 = "Not in Universe" 4434 1 = "Yes" 4435 2 = "No" 4436 ; NOTE: Format ECKD06C has been output. 4437 VALUE eckd06d (default=32) 4438 -1 = "Not in Universe" 4439 1 = "Yes" 4440 2 = "No" 4441 ; NOTE: Format ECKD06D has been output. 4442 VALUE eckd06e (default=32) 4443 -1 = "Not in Universe" 4444 1 = "Yes" 4445 2 = "No" 4446 ; NOTE: Format ECKD06E has been output. 4447 VALUE eckd07a (default=32) 4448 -1 = "Not in Universe" 4449 1 = "Yes" 4450 2 = "No" 4451 ; NOTE: Format ECKD07A has been output. 4452 VALUE eckd07b (default=32) 4453 -1 = "Not in Universe" 4454 1 = "Yes" 4455 2 = "No" 4456 ; NOTE: Format ECKD07B has been output. 4457 VALUE eckd07c (default=32) 4458 -1 = "Not in Universe" 4459 1 = "Yes" 4460 2 = "No" 4461 ; NOTE: Format ECKD07C has been output. 4462 VALUE eckd07d (default=32) 4463 -1 = "Not in Universe" 4464 1 = "Yes" 4465 2 = "No" 4466 ; NOTE: Format ECKD07D has been output. 4467 VALUE eckd07e (default=32) 4468 -1 = "Not in Universe" 4469 1 = "Yes" 4470 2 = "No" 4471 ; NOTE: Format ECKD07E has been output. 4472 VALUE eckd08a (default=32) 4473 -1 = "Not in Universe" 4474 1 = "Yes" 4475 2 = "No" 4476 ; NOTE: Format ECKD08A has been output. 4477 VALUE eckd08b (default=32) 4478 -1 = "Not in Universe" 82 The SAS System 11:54 Thursday, June 7, 2012 4479 1 = "Yes" 4480 2 = "No" 4481 ; NOTE: Format ECKD08B has been output. 4482 VALUE eckd08c (default=32) 4483 -1 = "Not in Universe" 4484 1 = "Yes" 4485 2 = "No" 4486 ; NOTE: Format ECKD08C has been output. 4487 VALUE eckd08d (default=32) 4488 -1 = "Not in Universe" 4489 1 = "Yes" 4490 2 = "No" 4491 ; NOTE: Format ECKD08D has been output. 4492 VALUE eckd08e (default=32) 4493 -1 = "Not in Universe" 4494 1 = "Yes" 4495 2 = "No" 4496 ; NOTE: Format ECKD08E has been output. 4497 VALUE eckd09a (default=32) 4498 -1 = "Not in Universe" 4499 1 = "Yes" 4500 2 = "No" 4501 ; NOTE: Format ECKD09A has been output. 4502 VALUE eckd09b (default=32) 4503 -1 = "Not in Universe" 4504 1 = "Yes" 4505 2 = "No" 4506 ; NOTE: Format ECKD09B has been output. 4507 VALUE eckd09c (default=32) 4508 -1 = "Not in Universe" 4509 1 = "Yes" 4510 2 = "No" 4511 ; NOTE: Format ECKD09C has been output. 4512 VALUE eckd09d (default=32) 4513 -1 = "Not in Universe" 4514 1 = "Yes" 4515 2 = "No" 4516 ; NOTE: Format ECKD09D has been output. 4517 VALUE eckd09e (default=32) 4518 -1 = "Not in Universe" 4519 1 = "Yes" 4520 2 = "No" 4521 ; NOTE: Format ECKD09E has been output. 4522 VALUE eckd10a (default=32) 4523 -1 = "Not in Universe" 4524 1 = "Yes" 4525 2 = "No" 4526 ; NOTE: Format ECKD10A has been output. 83 The SAS System 11:54 Thursday, June 7, 2012 4527 VALUE eckd10b (default=32) 4528 -1 = "Not in Universe" 4529 1 = "Yes" 4530 2 = "No" 4531 ; NOTE: Format ECKD10B has been output. 4532 VALUE eckd10c (default=32) 4533 -1 = "Not in Universe" 4534 1 = "Yes" 4535 2 = "No" 4536 ; NOTE: Format ECKD10C has been output. 4537 VALUE eckd10d (default=32) 4538 -1 = "Not in Universe" 4539 1 = "Yes" 4540 2 = "No" 4541 ; NOTE: Format ECKD10D has been output. 4542 VALUE eckd10e (default=32) 4543 -1 = "Not in Universe" 4544 1 = "Yes" 4545 2 = "No" 4546 ; NOTE: Format ECKD10E has been output. 4547 VALUE eckd11a (default=32) 4548 -1 = "Not in Universe" 4549 1 = "Yes" 4550 2 = "No" 4551 ; NOTE: Format ECKD11A has been output. 4552 VALUE eckd11b (default=32) 4553 -1 = "Not in Universe" 4554 1 = "Yes" 4555 2 = "No" 4556 ; NOTE: Format ECKD11B has been output. 4557 VALUE eckd11c (default=32) 4558 -1 = "Not in Universe" 4559 1 = "Yes" 4560 2 = "No" 4561 ; NOTE: Format ECKD11C has been output. 4562 VALUE eckd11d (default=32) 4563 -1 = "Not in Universe" 4564 1 = "Yes" 4565 2 = "No" 4566 ; NOTE: Format ECKD11D has been output. 4567 VALUE eckd11e (default=32) 4568 -1 = "Not in Universe" 4569 1 = "Yes" 4570 2 = "No" 4571 ; NOTE: Format ECKD11E has been output. 4572 VALUE accarea (default=32) 4573 0 = "Not imputed" 4574 1 = "Statistical imputation (hot deck)" 4575 2 = "Cold deck imputation" 84 The SAS System 11:54 Thursday, June 7, 2012 4576 3 = "Logical imputation (derivation)" 4577 ; NOTE: Format ACCAREA has been output. 4578 VALUE accareb (default=32) 4579 0 = "Not imputed" 4580 1 = "Statistical imputation (hot deck)" 4581 2 = "Cold deck imputation" 4582 3 = "Logical imputation (derivation)" 4583 ; NOTE: Format ACCAREB has been output. 4584 VALUE accarec (default=32) 4585 0 = "Not imputed" 4586 1 = "Statistical imputation (hot deck)" 4587 2 = "Cold deck imputation" 4588 3 = "Logical imputation (derivation)" 4589 ; NOTE: Format ACCAREC has been output. 4590 VALUE accared (default=32) 4591 0 = "Not imputed" 4592 1 = "Statistical imputation (hot deck)" 4593 2 = "Cold deck imputation" 4594 3 = "Logical imputation (derivation)" 4595 ; NOTE: Format ACCARED has been output. 4596 VALUE accaree (default=32) 4597 0 = "Not imputed" 4598 1 = "Statistical imputation (hot deck)" 4599 2 = "Cold deck imputation" 4600 3 = "Logical imputation (derivation)" 4601 ; NOTE: Format ACCAREE has been output. 4602 VALUE ewhepara (default=32) 4603 -1 = "Not in Universe" 4604 1 = "Child's home" 4605 2 = "Other parent's home (parent" 4606 3 = "Another person's home" 4607 4 = "Someplace else" 4608 ; NOTE: Format EWHEPARA has been output. 4609 VALUE awhepara (default=32) 4610 0 = "Not imputed" 4611 1 = "Statistical imputation (hot deck)" 4612 2 = "Cold deck imputation" 4613 3 = "Logical imputation (derivation)" 4614 ; NOTE: Format AWHEPARA has been output. 4615 VALUE ewheparb (default=32) 4616 -1 = "Not in Universe" 4617 1 = "Child's home" 4618 2 = "Other parent's home (parent" 4619 3 = "Another person's home" 4620 4 = "Someplace else" 4621 ; NOTE: Format EWHEPARB has been output. 4622 VALUE awheparb (default=32) 4623 0 = "Not imputed" 4624 1 = "Statistical imputation (hot deck)" 4625 2 = "Cold deck imputation" 85 The SAS System 11:54 Thursday, June 7, 2012 4626 3 = "Logical imputation (derivation)" 4627 ; NOTE: Format AWHEPARB has been output. 4628 VALUE ewheparc (default=32) 4629 -1 = "Not in Universe" 4630 1 = "Child's home" 4631 2 = "Other parent's home (parent" 4632 3 = "Another person's home" 4633 4 = "Someplace else" 4634 ; NOTE: Format EWHEPARC has been output. 4635 VALUE awheparc (default=32) 4636 0 = "Not imputed" 4637 1 = "Statistical imputation (hot deck)" 4638 2 = "Cold deck imputation" 4639 3 = "Logical imputation (derivation)" 4640 ; NOTE: Format AWHEPARC has been output. 4641 VALUE ewhepard (default=32) 4642 -1 = "Not in Universe" 4643 1 = "Child's home" 4644 2 = "Other parent's home (parent" 4645 3 = "Another person's home" 4646 4 = "Someplace else" 4647 ; NOTE: Format EWHEPARD has been output. 4648 VALUE awhepard (default=32) 4649 0 = "Not imputed" 4650 1 = "Statistical imputation (hot deck)" 4651 2 = "Cold deck imputation" 4652 3 = "Logical imputation (derivation)" 4653 ; NOTE: Format AWHEPARD has been output. 4654 VALUE ewhepare (default=32) 4655 -1 = "Not in Universe" 4656 1 = "Child's home" 4657 2 = "Other parent's home (parent" 4658 3 = "Another person's home" 4659 4 = "Someplace else" 4660 ; NOTE: Format EWHEPARE has been output. 4661 VALUE awhepare (default=32) 4662 0 = "Not imputed" 4663 1 = "Statistical imputation (hot deck)" 4664 2 = "Cold deck imputation" 4665 3 = "Logical imputation (derivation)" 4666 ; NOTE: Format AWHEPARE has been output. 4667 VALUE eparhr1a (default=32) 4668 -1 = "Not in Universe" 4669 ; NOTE: Format EPARHR1A has been output. 4670 VALUE aparhr1a (default=32) 4671 0 = "Not imputed" 4672 1 = "Statistical imputation (hot deck)" 4673 2 = "Cold deck imputation" 4674 3 = "Logical imputation (derivation)" 4675 ; 86 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format APARHR1A has been output. 4676 VALUE eparhr1b (default=32) 4677 -1 = "Not in Universe" 4678 ; NOTE: Format EPARHR1B has been output. 4679 VALUE aparhr1b (default=32) 4680 0 = "Not imputed" 4681 1 = "Statistical imputation (hot deck)" 4682 2 = "Cold deck imputation" 4683 3 = "Logical imputation (derivation)" 4684 ; NOTE: Format APARHR1B has been output. 4685 VALUE eparhr1c (default=32) 4686 -1 = "Not in Universe" 4687 ; NOTE: Format EPARHR1C has been output. 4688 VALUE aparhr1c (default=32) 4689 0 = "Not imputed" 4690 1 = "Statistical imputation (hot deck)" 4691 2 = "Cold deck imputation" 4692 3 = "Logical imputation (derivation)" 4693 ; NOTE: Format APARHR1C has been output. 4694 VALUE eparhr1d (default=32) 4695 -1 = "Not in Universe" 4696 ; NOTE: Format EPARHR1D has been output. 4697 VALUE aparhr1d (default=32) 4698 0 = "Not imputed" 4699 1 = "Statistical imputation (hot deck)" 4700 2 = "Cold deck imputation" 4701 3 = "Logical imputation (derivation)" 4702 ; NOTE: Format APARHR1D has been output. 4703 VALUE eparhr1e (default=32) 4704 -1 = "Not in Universe" 4705 ; NOTE: Format EPARHR1E has been output. 4706 VALUE aparhr1e (default=32) 4707 0 = "Not imputed" 4708 1 = "Statistical imputation (hot deck)" 4709 2 = "Cold deck imputation" 4710 3 = "Logical imputation (derivation)" 4711 ; NOTE: Format APARHR1E has been output. 4712 VALUE eparhr2a (default=32) 4713 -1 = "Not in Universe" 4714 ; NOTE: Format EPARHR2A has been output. 4715 VALUE aparhr2a (default=32) 4716 0 = "Not imputed" 4717 1 = "Statistical imputation (hot deck)" 4718 2 = "Cold deck imputation" 4719 3 = "Logical imputation (derivation)" 4720 ; NOTE: Format APARHR2A has been output. 4721 VALUE eparhr2b (default=32) 4722 -1 = "Not in Universe" 87 The SAS System 11:54 Thursday, June 7, 2012 4723 ; NOTE: Format EPARHR2B has been output. 4724 VALUE aparhr2b (default=32) 4725 0 = "Not imputed" 4726 1 = "Statistical imputation (hot deck)" 4727 2 = "Cold deck imputation" 4728 3 = "Logical imputation (derivation)" 4729 ; NOTE: Format APARHR2B has been output. 4730 VALUE eparhr2c (default=32) 4731 -1 = "Not in Universe" 4732 ; NOTE: Format EPARHR2C has been output. 4733 VALUE aparhr2c (default=32) 4734 0 = "Not imputed" 4735 1 = "Statistical imputation (hot deck)" 4736 2 = "Cold deck imputation" 4737 3 = "Logical imputation (derivation)" 4738 ; NOTE: Format APARHR2C has been output. 4739 VALUE eparhr2d (default=32) 4740 -1 = "Not in Universe" 4741 ; NOTE: Format EPARHR2D has been output. 4742 VALUE aparhr2d (default=32) 4743 0 = "Not imputed" 4744 1 = "Statistical imputation (hot deck)" 4745 2 = "Cold deck imputation" 4746 3 = "Logical imputation (derivation)" 4747 ; NOTE: Format APARHR2D has been output. 4748 VALUE eparhr2e (default=32) 4749 -1 = "Not in Universe" 4750 ; NOTE: Format EPARHR2E has been output. 4751 VALUE aparhr2e (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 APARHR2E has been output. 4757 VALUE ewhselfa (default=32) 4758 -1 = "Not in Universe" 4759 1 = "In the person's home" 4760 2 = "At work or at school" 4761 3 = "Someplace else" 4762 ; NOTE: Format EWHSELFA has been output. 4763 VALUE awhselfa (default=32) 4764 0 = "Not imputed" 4765 1 = "Statistical imputation (hot deck)" 4766 2 = "Cold deck imputation" 4767 3 = "Logical imputation (derivation)" 4768 ; NOTE: Format AWHSELFA has been output. 4769 VALUE ewhselfb (default=32) 4770 -1 = "Not in Universe" 88 The SAS System 11:54 Thursday, June 7, 2012 4771 1 = "In the person's home" 4772 2 = "At work or at school" 4773 3 = "Someplace else" 4774 ; NOTE: Format EWHSELFB has been output. 4775 VALUE awhselfb (default=32) 4776 0 = "Not imputed" 4777 1 = "Statistical imputation (hot deck)" 4778 2 = "Cold deck imputation" 4779 3 = "Logical imputation (derivation)" 4780 ; NOTE: Format AWHSELFB has been output. 4781 VALUE ewhselfc (default=32) 4782 -1 = "Not in Universe" 4783 1 = "In the person's home" 4784 2 = "At work or at school" 4785 3 = "Someplace else" 4786 ; NOTE: Format EWHSELFC has been output. 4787 VALUE awhselfc (default=32) 4788 0 = "Not imputed" 4789 1 = "Statistical imputation (hot deck)" 4790 2 = "Cold deck imputation" 4791 3 = "Logical imputation (derivation)" 4792 ; NOTE: Format AWHSELFC has been output. 4793 VALUE ewhselfd (default=32) 4794 -1 = "Not in Universe" 4795 1 = "In the person's home" 4796 2 = "At work or at school" 4797 3 = "Someplace else" 4798 ; NOTE: Format EWHSELFD has been output. 4799 VALUE awhselfd (default=32) 4800 0 = "Not imputed" 4801 1 = "Statistical imputation (hot deck)" 4802 2 = "Cold deck imputation" 4803 3 = "Logical imputation (derivation)" 4804 ; NOTE: Format AWHSELFD has been output. 4805 VALUE ewhselfe (default=32) 4806 -1 = "Not in Universe" 4807 1 = "In the person's home" 4808 2 = "At work or at school" 4809 3 = "Someplace else" 4810 ; NOTE: Format EWHSELFE has been output. 4811 VALUE awhselfe (default=32) 4812 0 = "Not imputed" 4813 1 = "Statistical imputation (hot deck)" 4814 2 = "Cold deck imputation" 4815 3 = "Logical imputation (derivation)" 4816 ; NOTE: Format AWHSELFE has been output. 4817 VALUE eselfhra (default=32) 4818 -1 = "Not in Universe" 4819 ; NOTE: Format ESELFHRA has been output. 89 The SAS System 11:54 Thursday, June 7, 2012 4820 VALUE aselfhra (default=32) 4821 0 = "Not imputed" 4822 1 = "Statistical imputation (hot deck)" 4823 2 = "Cold deck imputation" 4824 3 = "Logical imputation (derivation)" 4825 ; NOTE: Format ASELFHRA has been output. 4826 VALUE eselfhrb (default=32) 4827 -1 = "Not in Universe" 4828 ; NOTE: Format ESELFHRB has been output. 4829 VALUE aselfhrb (default=32) 4830 0 = "Not imputed" 4831 1 = "Statistical imputation (hot deck)" 4832 2 = "Cold deck imputation" 4833 3 = "Logical imputation (derivation)" 4834 ; NOTE: Format ASELFHRB has been output. 4835 VALUE eselfhrc (default=32) 4836 -1 = "Not in Universe" 4837 ; NOTE: Format ESELFHRC has been output. 4838 VALUE aselfhrc (default=32) 4839 0 = "Not imputed" 4840 1 = "Statistical imputation (hot deck)" 4841 2 = "Cold deck imputation" 4842 3 = "Logical imputation (derivation)" 4843 ; NOTE: Format ASELFHRC has been output. 4844 VALUE eselfhrd (default=32) 4845 -1 = "Not in Universe" 4846 ; NOTE: Format ESELFHRD has been output. 4847 VALUE aselfhrd (default=32) 4848 0 = "Not imputed" 4849 1 = "Statistical imputation (hot deck)" 4850 2 = "Cold deck imputation" 4851 3 = "Logical imputation (derivation)" 4852 ; NOTE: Format ASELFHRD has been output. 4853 VALUE eselfhre (default=32) 4854 -1 = "Not in Universe" 4855 ; NOTE: Format ESELFHRE has been output. 4856 VALUE aselfhre (default=32) 4857 0 = "Not imputed" 4858 1 = "Statistical imputation (hot deck)" 4859 2 = "Cold deck imputation" 4860 3 = "Logical imputation (derivation)" 4861 ; NOTE: Format ASELFHRE has been output. 4862 VALUE ewhsb15a (default=32) 4863 -1 = "Not in Universe" 4864 1 = "Child's home" 4865 2 = "Other home" 4866 3 = "Someplace else" 4867 ; NOTE: Format EWHSB15A has been output. 90 The SAS System 11:54 Thursday, June 7, 2012 4868 VALUE awhsb15a (default=32) 4869 0 = "Not imputed" 4870 1 = "Statistical imputation (hot deck)" 4871 2 = "Cold deck imputation" 4872 3 = "Logical imputation derivation" 4873 ; NOTE: Format AWHSB15A has been output. 4874 VALUE ewhsb15b (default=32) 4875 -1 = "Not in Universe" 4876 1 = "Child's home" 4877 2 = "Other home" 4878 3 = "Someplace else" 4879 ; NOTE: Format EWHSB15B has been output. 4880 VALUE awhsb15b (default=32) 4881 0 = "Not imputed" 4882 1 = "Statistical imputation (hot deck)" 4883 2 = "Cold deck imputation" 4884 3 = "Logical imputation derivation" 4885 ; NOTE: Format AWHSB15B has been output. 4886 VALUE ewhsb15c (default=32) 4887 -1 = "Not in Universe" 4888 1 = "Child's home" 4889 2 = "Other home" 4890 3 = "Someplace else" 4891 ; NOTE: Format EWHSB15C has been output. 4892 VALUE awhsb15c (default=32) 4893 0 = "Not imputed" 4894 1 = "Statistical imputation (hot deck)" 4895 2 = "Cold deck imputation" 4896 3 = "Logical imputation derivation" 4897 ; NOTE: Format AWHSB15C has been output. 4898 VALUE ewhsb15d (default=32) 4899 -1 = "Not in Universe" 4900 1 = "Child's home" 4901 2 = "Other home" 4902 3 = "Someplace else" 4903 ; NOTE: Format EWHSB15D has been output. 4904 VALUE awhsb15d (default=32) 4905 0 = "Not imputed" 4906 1 = "Statistical imputation (hot deck)" 4907 2 = "Cold deck imputation" 4908 3 = "Logical imputation derivation" 4909 ; NOTE: Format AWHSB15D has been output. 4910 VALUE ewhsb15e (default=32) 4911 -1 = "Not in Universe" 4912 1 = "Child's home" 4913 2 = "Other home" 4914 3 = "Someplace else" 4915 ; NOTE: Format EWHSB15E has been output. 4916 VALUE awhsb15e (default=32) 4917 0 = "Not imputed" 91 The SAS System 11:54 Thursday, June 7, 2012 4918 1 = "Statistical imputation (hot deck)" 4919 2 = "Cold deck imputation" 4920 3 = "Logical imputation derivation" 4921 ; NOTE: Format AWHSB15E has been output. 4922 VALUE ewhsbhra (default=32) 4923 -1 = "Not in Universe" 4924 ; NOTE: Format EWHSBHRA has been output. 4925 VALUE awhsbhra (default=32) 4926 0 = "Not imputed" 4927 1 = "Statistical imputation (hot deck)" 4928 2 = "Cold deck imputation" 4929 3 = "Logical imputation (derivation)" 4930 ; NOTE: Format AWHSBHRA has been output. 4931 VALUE ewhsbhrb (default=32) 4932 -1 = "Not in Universe" 4933 ; NOTE: Format EWHSBHRB has been output. 4934 VALUE awhsbhrb (default=32) 4935 0 = "Not imputed" 4936 1 = "Statistical imputation (hot deck)" 4937 2 = "Cold deck imputation" 4938 3 = "Logical imputation (derivation)" 4939 ; NOTE: Format AWHSBHRB has been output. 4940 VALUE ewhsbhrc (default=32) 4941 -1 = "Not in Universe" 4942 ; NOTE: Format EWHSBHRC has been output. 4943 VALUE awhsbhrc (default=32) 4944 0 = "Not imputed" 4945 1 = "Statistical imputation (hot deck)" 4946 2 = "Cold deck imputation" 4947 3 = "Logical imputation (derivation)" 4948 ; NOTE: Format AWHSBHRC has been output. 4949 VALUE ewhsbhrd (default=32) 4950 -1 = "Not in Universe" 4951 ; NOTE: Format EWHSBHRD has been output. 4952 VALUE awhsbhrd (default=32) 4953 0 = "Not imputed" 4954 1 = "Statistical imputation (hot deck)" 4955 2 = "Cold deck imputation" 4956 3 = "Logical imputation (derivation)" 4957 ; NOTE: Format AWHSBHRD has been output. 4958 VALUE ewhsbhre (default=32) 4959 -1 = "Not in Universe" 4960 ; NOTE: Format EWHSBHRE has been output. 4961 VALUE awhsbhre (default=32) 4962 0 = "Not imputed" 4963 1 = "Statistical imputation (hot deck)" 4964 2 = "Cold deck imputation" 4965 3 = "Logical imputation (derivation)" 92 The SAS System 11:54 Thursday, June 7, 2012 4966 ; NOTE: Format AWHSBHRE has been output. 4967 VALUE ehrsb15a (default=32) 4968 -1 = "Not in Universe" 4969 ; NOTE: Format EHRSB15A has been output. 4970 VALUE ahrsb15a (default=32) 4971 0 = "Not imputed" 4972 1 = "Statistical imputation (hot deck)" 4973 2 = "Cold deck imputation" 4974 3 = "Logical imputation (derivation)" 4975 ; NOTE: Format AHRSB15A has been output. 4976 VALUE ehrsb15b (default=32) 4977 -1 = "Not in Universe" 4978 ; NOTE: Format EHRSB15B has been output. 4979 VALUE ahrsb15b (default=32) 4980 0 = "Not imputed" 4981 1 = "Statistical imputation (hot deck)" 4982 2 = "Cold deck imputation" 4983 3 = "Logical imputation (derivation)" 4984 ; NOTE: Format AHRSB15B has been output. 4985 VALUE ehrsb15c (default=32) 4986 -1 = "Not in Universe" 4987 ; NOTE: Format EHRSB15C has been output. 4988 VALUE ahrsb15c (default=32) 4989 0 = "Not imputed" 4990 1 = "Statistical imputation (hot deck)" 4991 2 = "Cold deck imputation" 4992 3 = "Logical imputation (derivation)" 4993 ; NOTE: Format AHRSB15C has been output. 4994 VALUE ehrsb15d (default=32) 4995 -1 = "Not in Universe" 4996 ; NOTE: Format EHRSB15D has been output. 4997 VALUE ahrsb15d (default=32) 4998 0 = "Not imputed" 4999 1 = "Statistical imputation (hot deck)" 5000 2 = "Cold deck imputation" 5001 3 = "Logical imputation (derivation)" 5002 ; NOTE: Format AHRSB15D has been output. 5003 VALUE ehrsb15e (default=32) 5004 -1 = "Not in Universe" 5005 ; NOTE: Format EHRSB15E has been output. 5006 VALUE ahrsb15e (default=32) 5007 0 = "Not imputed" 5008 1 = "Statistical imputation (hot deck)" 5009 2 = "Cold deck imputation" 5010 3 = "Logical imputation (derivation)" 5011 ; NOTE: Format AHRSB15E has been output. 5012 VALUE ewhsb14a (default=32) 93 The SAS System 11:54 Thursday, June 7, 2012 5013 -1 = "Not in Universe" 5014 1 = "Child's home" 5015 2 = "Other home" 5016 3 = "Someplace else" 5017 ; NOTE: Format EWHSB14A has been output. 5018 VALUE awhsb14a (default=32) 5019 0 = "Not imputed" 5020 1 = "Statistical imputation (hot deck)" 5021 2 = "Cold deck imputation" 5022 3 = "Logical imputation (derivation)" 5023 ; NOTE: Format AWHSB14A has been output. 5024 VALUE ewhsb14b (default=32) 5025 -1 = "Not in Universe" 5026 1 = "Child's home" 5027 2 = "Other home" 5028 3 = "Someplace else" 5029 ; NOTE: Format EWHSB14B has been output. 5030 VALUE awhsb14b (default=32) 5031 0 = "Not imputed" 5032 1 = "Statistical imputation (hot deck)" 5033 2 = "Cold deck imputation" 5034 3 = "Logical imputation (derivation)" 5035 ; NOTE: Format AWHSB14B has been output. 5036 VALUE ewhsb14c (default=32) 5037 -1 = "Not in Universe" 5038 1 = "Child's home" 5039 2 = "Other home" 5040 3 = "Someplace else" 5041 ; NOTE: Format EWHSB14C has been output. 5042 VALUE awhsb14c (default=32) 5043 0 = "Not imputed" 5044 1 = "Statistical imputation (hot deck)" 5045 2 = "Cold deck imputation" 5046 3 = "Logical imputation (derivation)" 5047 ; NOTE: Format AWHSB14C has been output. 5048 VALUE ewhsb14d (default=32) 5049 -1 = "Not in Universe" 5050 1 = "Child's home" 5051 2 = "Other home" 5052 3 = "Someplace else" 5053 ; NOTE: Format EWHSB14D has been output. 5054 VALUE awhsb14d (default=32) 5055 0 = "Not imputed" 5056 1 = "Statistical imputation (hot deck)" 5057 2 = "Cold deck imputation" 5058 3 = "Logical imputation (derivation)" 5059 ; NOTE: Format AWHSB14D has been output. 5060 VALUE ewhsb14e (default=32) 5061 -1 = "Not in Universe" 5062 1 = "Child's home" 94 The SAS System 11:54 Thursday, June 7, 2012 5063 2 = "Other home" 5064 3 = "Someplace else" 5065 ; NOTE: Format EWHSB14E has been output. 5066 VALUE awhsb14e (default=32) 5067 0 = "Not imputed" 5068 1 = "Statistical imputation (hot deck)" 5069 2 = "Cold deck imputation" 5070 3 = "Logical imputation (derivation)" 5071 ; NOTE: Format AWHSB14E has been output. 5072 VALUE esb14hra (default=32) 5073 -1 = "Not in Universe" 5074 ; NOTE: Format ESB14HRA has been output. 5075 VALUE asb14hra (default=32) 5076 0 = "Not imputed" 5077 1 = "Statistical imputation (hot deck)" 5078 2 = "Cold deck imputation" 5079 3 = "Logical imputation (derivation)" 5080 ; NOTE: Format ASB14HRA has been output. 5081 VALUE esb14hrb (default=32) 5082 -1 = "Not in Universe" 5083 ; NOTE: Format ESB14HRB has been output. 5084 VALUE asb14hrb (default=32) 5085 0 = "Not imputed" 5086 1 = "Statistical imputation (hot deck)" 5087 2 = "Cold deck imputation" 5088 3 = "Logical imputation (derivation)" 5089 ; NOTE: Format ASB14HRB has been output. 5090 VALUE esb14hrc (default=32) 5091 -1 = "Not in Universe" 5092 ; NOTE: Format ESB14HRC has been output. 5093 VALUE asb14hrc (default=32) 5094 0 = "Not imputed" 5095 1 = "Statistical imputation (hot deck)" 5096 2 = "Cold deck imputation" 5097 3 = "Logical imputation (derivation)" 5098 ; NOTE: Format ASB14HRC has been output. 5099 VALUE esb14hrd (default=32) 5100 -1 = "Not in Universe" 5101 ; NOTE: Format ESB14HRD has been output. 5102 VALUE asb14hrd (default=32) 5103 0 = "Not imputed" 5104 1 = "Statistical imputation (hot deck)" 5105 2 = "Cold deck imputation" 5106 3 = "Logical imputation (derivation)" 5107 ; NOTE: Format ASB14HRD has been output. 5108 VALUE esb14hre (default=32) 5109 -1 = "Not in Universe" 5110 ; 95 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format ESB14HRE has been output. 5111 VALUE asb14hre (default=32) 5112 0 = "Not imputed" 5113 1 = "Statistical imputation (hot deck)" 5114 2 = "Cold deck imputation" 5115 3 = "Logical imputation (derivation)" 5116 ; NOTE: Format ASB14HRE has been output. 5117 VALUE ehrsb14a (default=32) 5118 -1 = "Not in Universe" 5119 ; NOTE: Format EHRSB14A has been output. 5120 VALUE ahrsb14a (default=32) 5121 0 = "Not imputed" 5122 1 = "Statistical imputation (hot deck)" 5123 2 = "Cold deck imputation" 5124 3 = "Logical imputation (derivation)" 5125 ; NOTE: Format AHRSB14A has been output. 5126 VALUE ehrsb14b (default=32) 5127 -1 = "Not in Universe" 5128 ; NOTE: Format EHRSB14B has been output. 5129 VALUE ahrsb14b (default=32) 5130 0 = "Not imputed" 5131 1 = "Statistical imputation (hot deck)" 5132 2 = "Cold deck imputation" 5133 3 = "Logical imputation (derivation)" 5134 ; NOTE: Format AHRSB14B has been output. 5135 VALUE ehrsb14c (default=32) 5136 -1 = "Not in Universe" 5137 ; NOTE: Format EHRSB14C has been output. 5138 VALUE ahrsb14c (default=32) 5139 0 = "Not imputed" 5140 1 = "Statistical imputation (hot deck)" 5141 2 = "Cold deck imputation" 5142 3 = "Logical imputation (derivation)" 5143 ; NOTE: Format AHRSB14C has been output. 5144 VALUE ehrsb14d (default=32) 5145 -1 = "Not in Universe" 5146 ; NOTE: Format EHRSB14D has been output. 5147 VALUE ahrsb14d (default=32) 5148 0 = "Not imputed" 5149 1 = "Statistical imputation (hot deck)" 5150 2 = "Cold deck imputation" 5151 3 = "Logical imputation (derivation)" 5152 ; NOTE: Format AHRSB14D has been output. 5153 VALUE ehrsb14e (default=32) 5154 -1 = "Not in Universe" 5155 ; NOTE: Format EHRSB14E has been output. 5156 VALUE ahrsb14e (default=32) 5157 0 = "Not imputed" 96 The SAS System 11:54 Thursday, June 7, 2012 5158 1 = "Statistical imputation (hot deck)" 5159 2 = "Cold deck imputation" 5160 3 = "Logical imputation (derivation)" 5161 ; NOTE: Format AHRSB14E has been output. 5162 VALUE ewhgrana (default=32) 5163 -1 = "Not in Universe" 5164 1 = "Child's home" 5165 2 = "Grandparent's home" 5166 3 = "Someplace else" 5167 ; NOTE: Format EWHGRANA has been output. 5168 VALUE awhgrana (default=32) 5169 0 = "Not imputed" 5170 1 = "Statistical imputation (hot deck)" 5171 2 = "Cold deck imputation" 5172 3 = "Logical imputation (derivation)" 5173 ; NOTE: Format AWHGRANA has been output. 5174 VALUE ewhgranb (default=32) 5175 -1 = "Not in Universe" 5176 1 = "Child's home" 5177 2 = "Grandparent's home" 5178 3 = "Someplace else" 5179 ; NOTE: Format EWHGRANB has been output. 5180 VALUE awhgranb (default=32) 5181 0 = "Not imputed" 5182 1 = "Statistical imputation (hot deck)" 5183 2 = "Cold deck imputation" 5184 3 = "Logical imputation (derivation)" 5185 ; NOTE: Format AWHGRANB has been output. 5186 VALUE ewhgranc (default=32) 5187 -1 = "Not in Universe" 5188 1 = "Child's home" 5189 2 = "Grandparent's home" 5190 3 = "Someplace else" 5191 ; NOTE: Format EWHGRANC has been output. 5192 VALUE awhgranc (default=32) 5193 0 = "Not imputed" 5194 1 = "Statistical imputation (hot deck)" 5195 2 = "Cold deck imputation" 5196 3 = "Logical imputation (derivation)" 5197 ; NOTE: Format AWHGRANC has been output. 5198 VALUE ewhgrand (default=32) 5199 -1 = "Not in Universe" 5200 1 = "Child's home" 5201 2 = "Grandparent's home" 5202 3 = "Someplace else" 5203 ; NOTE: Format EWHGRAND has been output. 5204 VALUE awhgrand (default=32) 5205 0 = "Not imputed" 5206 1 = "Statistical imputation (hot deck)" 5207 2 = "Cold deck imputation" 97 The SAS System 11:54 Thursday, June 7, 2012 5208 3 = "Logical imputation (derivation)" 5209 ; NOTE: Format AWHGRAND has been output. 5210 VALUE ewhgrane (default=32) 5211 -1 = "Not in Universe" 5212 1 = "Child's home" 5213 2 = "Grandparent's home" 5214 3 = "Someplace else" 5215 ; NOTE: Format EWHGRANE has been output. 5216 VALUE awhgrane (default=32) 5217 0 = "Not imputed" 5218 1 = "Statistical imputation (hot deck)" 5219 2 = "Cold deck imputation" 5220 3 = "Logical imputation (derivation)" 5221 ; NOTE: Format AWHGRANE has been output. 5222 VALUE egranhra (default=32) 5223 -1 = "Not in Universe" 5224 ; NOTE: Format EGRANHRA has been output. 5225 VALUE agranhra (default=32) 5226 0 = "Not imputed" 5227 1 = "Statistical imputation (hot deck)" 5228 2 = "Cold deck imputation" 5229 3 = "Logical imputation (derivation)" 5230 ; NOTE: Format AGRANHRA has been output. 5231 VALUE egranhrb (default=32) 5232 -1 = "Not in Universe" 5233 ; NOTE: Format EGRANHRB has been output. 5234 VALUE agranhrb (default=32) 5235 0 = "Not imputed" 5236 1 = "Statistical imputation (hot deck)" 5237 2 = "Cold deck imputation" 5238 3 = "Logical imputation (derivation)" 5239 ; NOTE: Format AGRANHRB has been output. 5240 VALUE egranhrc (default=32) 5241 -1 = "Not in Universe" 5242 ; NOTE: Format EGRANHRC has been output. 5243 VALUE agranhrc (default=32) 5244 0 = "Not imputed" 5245 1 = "Statistical imputation (hot deck)" 5246 2 = "Cold deck imputation" 5247 3 = "Logical imputation (derivation)" 5248 ; NOTE: Format AGRANHRC has been output. 5249 VALUE egranhrd (default=32) 5250 -1 = "Not in Universe" 5251 ; NOTE: Format EGRANHRD has been output. 5252 VALUE agranhrd (default=32) 5253 0 = "Not imputed" 5254 1 = "Statistical imputation (hot deck)" 5255 2 = "Cold deck imputation" 98 The SAS System 11:54 Thursday, June 7, 2012 5256 3 = "Logical imputation (derivation)" 5257 ; NOTE: Format AGRANHRD has been output. 5258 VALUE egranhre (default=32) 5259 -1 = "Not in Universe" 5260 ; NOTE: Format EGRANHRE has been output. 5261 VALUE agranhre (default=32) 5262 0 = "Not imputed" 5263 1 = "Statistical imputation (hot deck)" 5264 2 = "Cold deck imputation" 5265 3 = "Logical imputation (derivation)" 5266 ; NOTE: Format AGRANHRE has been output. 5267 VALUE ehrgrana (default=32) 5268 -1 = "Not in Universe" 5269 ; NOTE: Format EHRGRANA has been output. 5270 VALUE ahrgrana (default=32) 5271 0 = "Not imputed" 5272 1 = "Statistical imputation (hot deck)" 5273 2 = "Cold deck imputation" 5274 3 = "Logical imputation (derivation)" 5275 ; NOTE: Format AHRGRANA has been output. 5276 VALUE ehrgranb (default=32) 5277 -1 = "Not in Universe" 5278 ; NOTE: Format EHRGRANB has been output. 5279 VALUE ahrgranb (default=32) 5280 0 = "Not imputed" 5281 1 = "Statistical imputation (hot deck)" 5282 2 = "Cold deck imputation" 5283 3 = "Logical imputation (derivation)" 5284 ; NOTE: Format AHRGRANB has been output. 5285 VALUE ehrgranc (default=32) 5286 -1 = "Not in Universe" 5287 ; NOTE: Format EHRGRANC has been output. 5288 VALUE ahrgranc (default=32) 5289 0 = "Not imputed" 5290 1 = "Statistical imputation (hot deck)" 5291 2 = "Cold deck imputation" 5292 3 = "Logical imputation (derivation)" 5293 ; NOTE: Format AHRGRANC has been output. 5294 VALUE ehrgrand (default=32) 5295 -1 = "Not in Universe" 5296 ; NOTE: Format EHRGRAND has been output. 5297 VALUE ahrgrand (default=32) 5298 0 = "Not imputed" 5299 1 = "Statistical imputation (hot deck)" 5300 2 = "Cold deck imputation" 5301 3 = "Logical imputation (derivation)" 5302 ; NOTE: Format AHRGRAND has been output. 99 The SAS System 11:54 Thursday, June 7, 2012 5303 VALUE ehrgrane (default=32) 5304 -1 = "Not in Universe" 5305 ; NOTE: Format EHRGRANE has been output. 5306 VALUE ahrgrane (default=32) 5307 0 = "Not imputed" 5308 1 = "Statistical imputation (hot deck)" 5309 2 = "Cold deck imputation" 5310 3 = "Logical imputation (derivation)" 5311 ; NOTE: Format AHRGRANE has been output. 5312 VALUE epaygraa (default=32) 5313 -1 = "Not in Universe" 5314 1 = "Yes" 5315 2 = "No" 5316 ; NOTE: Format EPAYGRAA has been output. 5317 VALUE apaygraa (default=32) 5318 0 = "Not imputed" 5319 1 = "Statistical imputation (hot deck)" 5320 2 = "Cold deck imputation" 5321 3 = "Logical imputation (derivation)" 5322 ; NOTE: Format APAYGRAA has been output. 5323 VALUE epaygrab (default=32) 5324 -1 = "Not in Universe" 5325 1 = "Yes" 5326 2 = "No" 5327 ; NOTE: Format EPAYGRAB has been output. 5328 VALUE apaygrab (default=32) 5329 0 = "Not imputed" 5330 1 = "Statistical imputation (hot deck)" 5331 2 = "Cold deck imputation" 5332 3 = "Logical imputation (derivation)" 5333 ; NOTE: Format APAYGRAB has been output. 5334 VALUE epaygrac (default=32) 5335 -1 = "Not in Universe" 5336 1 = "Yes" 5337 2 = "No" 5338 ; NOTE: Format EPAYGRAC has been output. 5339 VALUE apaygrac (default=32) 5340 0 = "Not imputed" 5341 1 = "Statistical imputation (hot deck)" 5342 2 = "Cold deck imputation" 5343 3 = "Logical imputation (derivation)" 5344 ; NOTE: Format APAYGRAC has been output. 5345 VALUE epaygrad (default=32) 5346 -1 = "Not in Universe" 5347 1 = "Yes" 5348 2 = "No" 5349 ; NOTE: Format EPAYGRAD has been output. 5350 VALUE apaygrad (default=32) 5351 0 = "Not imputed" 100 The SAS System 11:54 Thursday, June 7, 2012 5352 1 = "Statistical imputation (hot deck)" 5353 2 = "Cold deck imputation" 5354 3 = "Logical imputation (derivation)" 5355 ; NOTE: Format APAYGRAD has been output. 5356 VALUE epaygrae (default=32) 5357 -1 = "Not in Universe" 5358 1 = "Yes" 5359 2 = "No" 5360 ; NOTE: Format EPAYGRAE has been output. 5361 VALUE apaygrae (default=32) 5362 0 = "Not imputed" 5363 1 = "Statistical imputation (hot deck)" 5364 2 = "Cold deck imputation" 5365 3 = "Logical imputation (derivation)" 5366 ; NOTE: Format APAYGRAE has been output. 5367 VALUE tamtgraa (default=32) 5368 0 = "None or not in universe" 5369 ; NOTE: Format TAMTGRAA has been output. 5370 VALUE aamtgraa (default=32) 5371 0 = "Not imputed" 5372 1 = "Statistical imputation (hot deck)" 5373 2 = "Cold deck imputation" 5374 3 = "Logical imputation (derivation)" 5375 ; NOTE: Format AAMTGRAA has been output. 5376 VALUE tamtgrab (default=32) 5377 0 = "None or not in universe" 5378 ; NOTE: Format TAMTGRAB has been output. 5379 VALUE aamtgrab (default=32) 5380 0 = "Not imputed" 5381 1 = "Statistical imputation (hot deck)" 5382 2 = "Cold deck imputation" 5383 3 = "Logical imputation (derivation)" 5384 ; NOTE: Format AAMTGRAB has been output. 5385 VALUE tamtgrac (default=32) 5386 0 = "Suppressed" 5387 ; NOTE: Format TAMTGRAC has been output. 5388 VALUE aamtgrac (default=32) 5389 0 = "Suppressed" 5390 ; NOTE: Format AAMTGRAC has been output. 5391 VALUE tamtgrad (default=32) 5392 0 = "Suppressed" 5393 ; NOTE: Format TAMTGRAD has been output. 5394 VALUE aamtgrad (default=32) 5395 0 = "Suppressed" 5396 ; NOTE: Format AAMTGRAD has been output. 5397 VALUE tamtgrae (default=32) 5398 0 = "Suppressed" 101 The SAS System 11:54 Thursday, June 7, 2012 5399 ; NOTE: Format TAMTGRAE has been output. 5400 VALUE aamtgrae (default=32) 5401 0 = "Suppressed" 5402 ; NOTE: Format AAMTGRAE has been output. 5403 VALUE ewhrelaa (default=32) 5404 -1 = "Not in Universe" 5405 1 = "Child's home" 5406 2 = "Other relative's home" 5407 3 = "Someplace else" 5408 ; NOTE: Format EWHRELAA has been output. 5409 VALUE awhrelaa (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 AWHRELAA has been output. 5415 VALUE ewhrelab (default=32) 5416 -1 = "Not in Universe" 5417 1 = "Child's home" 5418 2 = "Other relative's home" 5419 3 = "Someplace else" 5420 ; NOTE: Format EWHRELAB has been output. 5421 VALUE awhrelab (default=32) 5422 0 = "Not imputed" 5423 1 = "Statistical imputation (hot deck)" 5424 2 = "Cold deck imputation" 5425 3 = "Logical imputation (derivation)" 5426 ; NOTE: Format AWHRELAB has been output. 5427 VALUE ewhrelac (default=32) 5428 -1 = "Not in Universe" 5429 1 = "Child's home" 5430 2 = "Other relative's home" 5431 3 = "Someplace else" 5432 ; NOTE: Format EWHRELAC has been output. 5433 VALUE awhrelac (default=32) 5434 0 = "Not imputed" 5435 1 = "Statistical imputation (hot deck)" 5436 2 = "Cold deck imputation" 5437 3 = "Logical imputation (derivation)" 5438 ; NOTE: Format AWHRELAC has been output. 5439 VALUE ewhrelad (default=32) 5440 -1 = "Not in Universe" 5441 1 = "Child's home" 5442 2 = "Other relative's home" 5443 3 = "Someplace else" 5444 ; NOTE: Format EWHRELAD has been output. 5445 VALUE awhrelad (default=32) 5446 0 = "Not imputed" 5447 1 = "Statistical imputation (hot deck)" 102 The SAS System 11:54 Thursday, June 7, 2012 5448 2 = "Cold deck imputation" 5449 3 = "Logical imputation (derivation)" 5450 ; NOTE: Format AWHRELAD has been output. 5451 VALUE ewhrelae (default=32) 5452 -1 = "Not in Universe" 5453 1 = "Child's home" 5454 2 = "Other relative's home" 5455 3 = "Someplace else" 5456 ; NOTE: Format EWHRELAE has been output. 5457 VALUE awhrelae (default=32) 5458 0 = "Not imputed" 5459 1 = "Statistical imputation (hot deck)" 5460 2 = "Cold deck imputation" 5461 3 = "Logical imputation (derivation)" 5462 ; NOTE: Format AWHRELAE has been output. 5463 VALUE erelhr1a (default=32) 5464 -1 = "Not in Universe" 5465 ; NOTE: Format ERELHR1A has been output. 5466 VALUE arelhr1a (default=32) 5467 0 = "Not imputed" 5468 1 = "Statistical imputation (hot deck)" 5469 2 = "Cold deck imputation" 5470 3 = "Logical imputation (derivation)" 5471 ; NOTE: Format ARELHR1A has been output. 5472 VALUE erelhr1b (default=32) 5473 -1 = "Not in Universe" 5474 ; NOTE: Format ERELHR1B has been output. 5475 VALUE arelhr1b (default=32) 5476 0 = "Not imputed" 5477 1 = "Statistical imputation (hot deck)" 5478 2 = "Cold deck imputation" 5479 3 = "Logical imputation (derivation)" 5480 ; NOTE: Format ARELHR1B has been output. 5481 VALUE erelhr1c (default=32) 5482 -1 = "Not in Universe" 5483 ; NOTE: Format ERELHR1C has been output. 5484 VALUE arelhr1c (default=32) 5485 0 = "Not imputed" 5486 1 = "Statistical imputation (hot deck)" 5487 2 = "Cold deck imputation" 5488 3 = "Logical imputation (derivation)" 5489 ; NOTE: Format ARELHR1C has been output. 5490 VALUE erelhr1d (default=32) 5491 -1 = "Not in Universe" 5492 ; NOTE: Format ERELHR1D has been output. 5493 VALUE arelhr1d (default=32) 5494 0 = "Not imputed" 5495 1 = "Statistical imputation (hot deck)" 103 The SAS System 11:54 Thursday, June 7, 2012 5496 2 = "Cold deck imputation" 5497 3 = "Logical imputation (derivation)" 5498 ; NOTE: Format ARELHR1D has been output. 5499 VALUE erelhr1e (default=32) 5500 -1 = "Not in Universe" 5501 ; NOTE: Format ERELHR1E has been output. 5502 VALUE arelhr1e (default=32) 5503 0 = "Not imputed" 5504 1 = "Statistical imputation (hot deck)" 5505 2 = "Cold deck imputation" 5506 3 = "Logical imputation (derivation)" 5507 ; NOTE: Format ARELHR1E has been output. 5508 VALUE erelhr2a (default=32) 5509 -1 = "Not in Universe" 5510 ; NOTE: Format ERELHR2A has been output. 5511 VALUE arelhr2a (default=32) 5512 0 = "Not imputed" 5513 1 = "Statistical imputation (hot deck)" 5514 2 = "Cold deck imputation" 5515 3 = "Logical imputation (derivation)" 5516 ; NOTE: Format ARELHR2A has been output. 5517 VALUE erelhr2b (default=32) 5518 -1 = "Not in Universe" 5519 ; NOTE: Format ERELHR2B has been output. 5520 VALUE arelhr2b (default=32) 5521 0 = "Not imputed" 5522 1 = "Statistical imputation (hot deck)" 5523 2 = "Cold deck imputation" 5524 3 = "Logical imputation (derivation)" 5525 ; NOTE: Format ARELHR2B has been output. 5526 VALUE erelhr2c (default=32) 5527 -1 = "Not in Universe" 5528 ; NOTE: Format ERELHR2C has been output. 5529 VALUE arelhr2c (default=32) 5530 0 = "Not imputed" 5531 1 = "Statistical imputation (hot deck)" 5532 2 = "Cold deck imputation" 5533 3 = "Logical imputation (derivation)" 5534 ; NOTE: Format ARELHR2C has been output. 5535 VALUE erelhr2d (default=32) 5536 -1 = "Not in Universe" 5537 ; NOTE: Format ERELHR2D has been output. 5538 VALUE arelhr2d (default=32) 5539 0 = "Not imputed" 5540 1 = "Statistical imputation (hot deck)" 5541 2 = "Cold deck imputation" 5542 3 = "Logical imputation (derivation)" 5543 ; 104 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format ARELHR2D has been output. 5544 VALUE erelhr2e (default=32) 5545 -1 = "Not in Universe" 5546 ; NOTE: Format ERELHR2E has been output. 5547 VALUE arelhr2e (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 ARELHR2E has been output. 5553 VALUE epayrela (default=32) 5554 -1 = "Not in Universe" 5555 1 = "Yes" 5556 2 = "No" 5557 ; NOTE: Format EPAYRELA has been output. 5558 VALUE apayrela (default=32) 5559 0 = "Not imputed" 5560 1 = "Statistical imputation (hot deck)" 5561 2 = "Cold deck imputation" 5562 3 = "Logical imputation (derivation)" 5563 ; NOTE: Format APAYRELA has been output. 5564 VALUE epayrelb (default=32) 5565 -1 = "Not in Universe" 5566 1 = "Yes" 5567 2 = "No" 5568 ; NOTE: Format EPAYRELB has been output. 5569 VALUE apayrelb (default=32) 5570 0 = "Not imputed" 5571 1 = "Statistical imputation (hot deck)" 5572 2 = "Cold deck imputation" 5573 3 = "Logical imputation (derivation)" 5574 ; NOTE: Format APAYRELB has been output. 5575 VALUE epayrelc (default=32) 5576 -1 = "Not in Universe" 5577 1 = "Yes" 5578 2 = "No" 5579 ; NOTE: Format EPAYRELC has been output. 5580 VALUE apayrelc (default=32) 5581 0 = "Not imputed" 5582 1 = "Statistical imputation (hot deck)" 5583 2 = "Cold deck imputation" 5584 3 = "Logical imputation (derivation)" 5585 ; NOTE: Format APAYRELC has been output. 5586 VALUE epayreld (default=32) 5587 -1 = "Not in Universe" 5588 1 = "Yes" 5589 2 = "No" 5590 ; NOTE: Format EPAYRELD has been output. 5591 VALUE apayreld (default=32) 105 The SAS System 11:54 Thursday, June 7, 2012 5592 0 = "Not imputed" 5593 1 = "Statistical imputation (hot deck)" 5594 2 = "Cold deck imputation" 5595 3 = "Logical imputation (derivation)" 5596 ; NOTE: Format APAYRELD has been output. 5597 VALUE epayrele (default=32) 5598 -1 = "Not in Universe" 5599 1 = "Yes" 5600 2 = "No" 5601 ; NOTE: Format EPAYRELE has been output. 5602 VALUE apayrele (default=32) 5603 0 = "Not imputed" 5604 1 = "Statistical imputation (hot deck)" 5605 2 = "Cold deck imputation" 5606 3 = "Logical imputation (derivation)" 5607 ; NOTE: Format APAYRELE has been output. 5608 VALUE tamtrela (default=32) 5609 0 = "None or not in universe" 5610 ; NOTE: Format TAMTRELA has been output. 5611 VALUE aamtrela (default=32) 5612 0 = "Not imputed" 5613 1 = "Statistical imputation (hot deck)" 5614 2 = "Cold deck imputation" 5615 3 = "Logical imputation (derivation)" 5616 ; NOTE: Format AAMTRELA has been output. 5617 VALUE tamtrelb (default=32) 5618 0 = "Suppressed" 5619 ; NOTE: Format TAMTRELB has been output. 5620 VALUE aamtrelb (default=32) 5621 0 = "Suppressed" 5622 ; NOTE: Format AAMTRELB has been output. 5623 VALUE tamtrelc (default=32) 5624 0 = "Suppressed" 5625 ; NOTE: Format TAMTRELC has been output. 5626 VALUE aamtrelc (default=32) 5627 0 = "Suppressed" 5628 ; NOTE: Format AAMTRELC has been output. 5629 VALUE tamtreld (default=32) 5630 0 = "Suppressed" 5631 ; NOTE: Format TAMTRELD has been output. 5632 VALUE aamtreld (default=32) 5633 0 = "Suppressed" 5634 ; NOTE: Format AAMTRELD has been output. 5635 VALUE tamtrele (default=32) 5636 0 = "Suppressed" 5637 ; NOTE: Format TAMTRELE has been output. 106 The SAS System 11:54 Thursday, June 7, 2012 5638 VALUE aamtrele (default=32) 5639 0 = "Suppressed" 5640 ; NOTE: Format AAMTRELE has been output. 5641 VALUE ehrfam1a (default=32) 5642 -1 = "Not in Universe" 5643 ; NOTE: Format EHRFAM1A has been output. 5644 VALUE ahrfam1a (default=32) 5645 0 = "Not imputed" 5646 1 = "Statistical imputation (hot deck)" 5647 2 = "Cold deck imputation" 5648 3 = "Logical imputation (derivation)" 5649 ; NOTE: Format AHRFAM1A has been output. 5650 VALUE ehrfam1b (default=32) 5651 -1 = "Not in Universe" 5652 ; NOTE: Format EHRFAM1B has been output. 5653 VALUE ahrfam1b (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 AHRFAM1B has been output. 5659 VALUE ehrfam1c (default=32) 5660 -1 = "Not in Universe" 5661 ; NOTE: Format EHRFAM1C has been output. 5662 VALUE ahrfam1c (default=32) 5663 0 = "Not imputed" 5664 1 = "Statistical imputation (hot deck)" 5665 2 = "Cold deck imputation" 5666 3 = "Logical imputation (derivation)" 5667 ; NOTE: Format AHRFAM1C has been output. 5668 VALUE ehrfam1d (default=32) 5669 -1 = "Not in Universe" 5670 ; NOTE: Format EHRFAM1D has been output. 5671 VALUE ahrfam1d (default=32) 5672 0 = "Not imputed" 5673 1 = "Statistical imputation (hot deck)" 5674 2 = "Cold deck imputation" 5675 3 = "Logical imputation (derivation)" 5676 ; NOTE: Format AHRFAM1D has been output. 5677 VALUE ehrfam1e (default=32) 5678 -1 = "Not in Universe" 5679 ; NOTE: Format EHRFAM1E has been output. 5680 VALUE ahrfam1e (default=32) 5681 0 = "Not imputed" 5682 1 = "Statistical imputation (hot deck)" 5683 2 = "Cold deck imputation" 5684 3 = "Logical imputation (derivation)" 5685 ; 107 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AHRFAM1E has been output. 5686 VALUE ehrfam2a (default=32) 5687 -1 = "Not in Universe" 5688 ; NOTE: Format EHRFAM2A has been output. 5689 VALUE ahrfam2a (default=32) 5690 0 = "Not imputed" 5691 1 = "Statistical imputation (hot deck)" 5692 2 = "Cold deck imputation" 5693 3 = "Logical imputation (derivation)" 5694 ; NOTE: Format AHRFAM2A has been output. 5695 VALUE ehrfam2b (default=32) 5696 -1 = "Not in Universe" 5697 ; NOTE: Format EHRFAM2B has been output. 5698 VALUE ahrfam2b (default=32) 5699 0 = "Not imputed" 5700 1 = "Statistical imputation (hot deck)" 5701 2 = "Cold deck imputation" 5702 3 = "Logical imputation (derivation)" 5703 ; NOTE: Format AHRFAM2B has been output. 5704 VALUE ehrfam2c (default=32) 5705 -1 = "Not in Universe" 5706 ; NOTE: Format EHRFAM2C has been output. 5707 VALUE ahrfam2c (default=32) 5708 0 = "Not imputed" 5709 1 = "Statistical imputation (hot deck)" 5710 2 = "Cold deck imputation" 5711 3 = "Logical imputation (derivation)" 5712 ; NOTE: Format AHRFAM2C has been output. 5713 VALUE ehrfam2d (default=32) 5714 -1 = "Not in Universe" 5715 ; NOTE: Format EHRFAM2D has been output. 5716 VALUE ahrfam2d (default=32) 5717 0 = "Not imputed" 5718 1 = "Statistical imputation (hot deck)" 5719 2 = "Cold deck imputation" 5720 3 = "Logical imputation (derivation)" 5721 ; NOTE: Format AHRFAM2D has been output. 5722 VALUE ehrfam2e (default=32) 5723 -1 = "Not in Universe" 5724 ; NOTE: Format EHRFAM2E has been output. 5725 VALUE ahrfam2e (default=32) 5726 0 = "Not imputed" 5727 1 = "Statistical imputation (hot deck)" 5728 2 = "Cold deck imputation" 5729 3 = "Logical imputation (derivation)" 5730 ; NOTE: Format AHRFAM2E has been output. 5731 VALUE epayfama (default=32) 5732 -1 = "Not in Universe" 108 The SAS System 11:54 Thursday, June 7, 2012 5733 1 = "Yes" 5734 2 = "No" 5735 ; NOTE: Format EPAYFAMA has been output. 5736 VALUE apayfama (default=32) 5737 0 = "Not imputed" 5738 1 = "Statistical imputation (hot deck)" 5739 2 = "Cold deck imputation" 5740 3 = "Logical imputation (derivation)" 5741 ; NOTE: Format APAYFAMA has been output. 5742 VALUE epayfamb (default=32) 5743 -1 = "Not in Universe" 5744 1 = "Yes" 5745 2 = "No" 5746 ; NOTE: Format EPAYFAMB has been output. 5747 VALUE apayfamb (default=32) 5748 0 = "Not imputed" 5749 1 = "Statistical imputation (hot deck)" 5750 2 = "Cold deck imputation" 5751 3 = "Logical imputation (derivation)" 5752 ; NOTE: Format APAYFAMB has been output. 5753 VALUE epayfamc (default=32) 5754 -1 = "Not in Universe" 5755 1 = "Yes" 5756 2 = "No" 5757 ; NOTE: Format EPAYFAMC has been output. 5758 VALUE apayfamc (default=32) 5759 0 = "Not imputed" 5760 1 = "Statistical imputation (hot deck)" 5761 2 = "Cold deck imputation" 5762 3 = "Logical imputation (derivation)" 5763 ; NOTE: Format APAYFAMC has been output. 5764 VALUE epayfamd (default=32) 5765 -1 = "Not in Universe" 5766 1 = "Yes" 5767 2 = "No" 5768 ; NOTE: Format EPAYFAMD has been output. 5769 VALUE apayfamd (default=32) 5770 0 = "Not imputed" 5771 1 = "Statistical imputation (hot deck)" 5772 2 = "Cold deck imputation" 5773 3 = "Logical imputation (derivation)" 5774 ; NOTE: Format APAYFAMD has been output. 5775 VALUE epayfame (default=32) 5776 -1 = "Not in Universe" 5777 1 = "Yes" 5778 2 = "No" 5779 ; NOTE: Format EPAYFAME has been output. 5780 VALUE apayfame (default=32) 5781 0 = "Not imputed" 109 The SAS System 11:54 Thursday, June 7, 2012 5782 1 = "Statistical imputation (hot deck)" 5783 2 = "Cold deck imputation" 5784 3 = "Logical imputation (derivation)" 5785 ; NOTE: Format APAYFAME has been output. 5786 VALUE tamtfama (default=32) 5787 0 = "None or not in universe" 5788 ; NOTE: Format TAMTFAMA has been output. 5789 VALUE aamtfama (default=32) 5790 0 = "Not imputed" 5791 1 = "Statistical imputation (hot deck)" 5792 2 = "Cold deck imputation" 5793 3 = "Logical imputation (derivation)" 5794 ; NOTE: Format AAMTFAMA has been output. 5795 VALUE tamtfamb (default=32) 5796 0 = "None or not in universe" 5797 ; NOTE: Format TAMTFAMB has been output. 5798 VALUE aamtfamb (default=32) 5799 0 = "Not imputed" 5800 1 = "Statistical imputation (hot deck)" 5801 2 = "Cold deck imputation" 5802 3 = "Logical imputation (derivation)" 5803 ; NOTE: Format AAMTFAMB has been output. 5804 VALUE tamtfamc (default=32) 5805 0 = "Suppressed" 5806 ; NOTE: Format TAMTFAMC has been output. 5807 VALUE aamtfamc (default=32) 5808 0 = "Suppressed" 5809 ; NOTE: Format AAMTFAMC has been output. 5810 VALUE tamtfamd (default=32) 5811 0 = "Suppressed" 5812 ; NOTE: Format TAMTFAMD has been output. 5813 VALUE aamtfamd (default=32) 5814 0 = "Suppressed" 5815 ; NOTE: Format AAMTFAMD has been output. 5816 VALUE tamtfame (default=32) 5817 0 = "Suppressed" 5818 ; NOTE: Format TAMTFAME has been output. 5819 VALUE aamtfame (default=32) 5820 0 = "Suppressed" 5821 ; NOTE: Format AAMTFAME has been output. 5822 VALUE ewhdayca (default=32) 5823 -1 = "Not in Universe" 5824 1 = "At work or at school" 5825 2 = "At a church or religious" 5826 3 = "Someplace else, including working" 5827 ; NOTE: Format EWHDAYCA has been output. 110 The SAS System 11:54 Thursday, June 7, 2012 5828 VALUE awhdayca (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 AWHDAYCA has been output. 5834 VALUE ewhdaycb (default=32) 5835 -1 = "Not in Universe" 5836 1 = "At work or at school" 5837 2 = "At a church or religious" 5838 3 = "Someplace else, including working" 5839 ; NOTE: Format EWHDAYCB has been output. 5840 VALUE awhdaycb (default=32) 5841 0 = "Not imputed" 5842 1 = "Statistical imputation (hot deck)" 5843 2 = "Cold deck imputation" 5844 3 = "Logical imputation (derivation)" 5845 ; NOTE: Format AWHDAYCB has been output. 5846 VALUE ewhdaycc (default=32) 5847 -1 = "Not in Universe" 5848 1 = "At work or at school" 5849 2 = "At a church or religious" 5850 3 = "Someplace else, including working" 5851 ; NOTE: Format EWHDAYCC has been output. 5852 VALUE awhdaycc (default=32) 5853 0 = "Not imputed" 5854 1 = "Statistical imputation (hot deck)" 5855 2 = "Cold deck imputation" 5856 3 = "Logical imputation (derivation)" 5857 ; NOTE: Format AWHDAYCC has been output. 5858 VALUE ewhdaycd (default=32) 5859 -1 = "Not in Universe" 5860 1 = "At work or at school" 5861 2 = "At a church or religious" 5862 3 = "Someplace else, including working" 5863 ; NOTE: Format EWHDAYCD has been output. 5864 VALUE awhdaycd (default=32) 5865 0 = "Not imputed" 5866 1 = "Statistical imputation (hot deck)" 5867 2 = "Cold deck imputation" 5868 3 = "Logical imputation (derivation)" 5869 ; NOTE: Format AWHDAYCD has been output. 5870 VALUE ewhdayce (default=32) 5871 -1 = "Not in Universe" 5872 1 = "At work or at school" 5873 2 = "At a church or religious" 5874 3 = "Someplace else, including working" 5875 ; NOTE: Format EWHDAYCE has been output. 5876 VALUE awhdayce (default=32) 5877 0 = "Not imputed" 111 The SAS System 11:54 Thursday, June 7, 2012 5878 1 = "Statistical imputation (hot deck)" 5879 2 = "Cold deck imputation" 5880 3 = "Logical imputation (derivation)" 5881 ; NOTE: Format AWHDAYCE has been output. 5882 VALUE edayhrsa (default=32) 5883 -1 = "Not in Universe" 5884 ; NOTE: Format EDAYHRSA has been output. 5885 VALUE adayhrsa (default=32) 5886 0 = "Not imputed" 5887 1 = "Statistical imputation (hot deck)" 5888 2 = "Cold deck imputation" 5889 3 = "Logical imputation (derivation)" 5890 ; NOTE: Format ADAYHRSA has been output. 5891 VALUE edayhrsb (default=32) 5892 -1 = "Not in Universe" 5893 ; NOTE: Format EDAYHRSB has been output. 5894 VALUE adayhrsb (default=32) 5895 0 = "Not imputed" 5896 1 = "Statistical imputation (hot deck)" 5897 2 = "Cold deck imputation" 5898 3 = "Logical imputation (derivation)" 5899 ; NOTE: Format ADAYHRSB has been output. 5900 VALUE edayhrsc (default=32) 5901 -1 = "Not in Universe" 5902 ; NOTE: Format EDAYHRSC has been output. 5903 VALUE adayhrsc (default=32) 5904 0 = "Not imputed" 5905 1 = "Statistical imputation (hot deck)" 5906 2 = "Cold deck imputation" 5907 3 = "Logical imputation (derivation)" 5908 ; NOTE: Format ADAYHRSC has been output. 5909 VALUE edayhrsd (default=32) 5910 -1 = "Not in Universe" 5911 ; NOTE: Format EDAYHRSD has been output. 5912 VALUE adayhrsd (default=32) 5913 0 = "Not imputed" 5914 1 = "Statistical imputation (hot deck)" 5915 2 = "Cold deck imputation" 5916 3 = "Logical imputation (derivation)" 5917 ; NOTE: Format ADAYHRSD has been output. 5918 VALUE edayhrse (default=32) 5919 -1 = "Not in Universe" 5920 ; NOTE: Format EDAYHRSE has been output. 5921 VALUE adayhrse (default=32) 5922 0 = "Not imputed" 5923 1 = "Statistical imputation (hot deck)" 5924 2 = "Cold deck imputation" 5925 3 = "Logical imputation (derivation)" 112 The SAS System 11:54 Thursday, June 7, 2012 5926 ; NOTE: Format ADAYHRSE has been output. 5927 VALUE ehrdayca (default=32) 5928 -1 = "Not in Universe" 5929 ; NOTE: Format EHRDAYCA has been output. 5930 VALUE ahrdayca (default=32) 5931 0 = "Not imputed" 5932 1 = "Statistical imputation (hot deck)" 5933 2 = "Cold deck imputation" 5934 3 = "Logical imputation (derivation)" 5935 ; NOTE: Format AHRDAYCA has been output. 5936 VALUE ehrdaycb (default=32) 5937 -1 = "Not in Universe" 5938 ; NOTE: Format EHRDAYCB has been output. 5939 VALUE ahrdaycb (default=32) 5940 0 = "Not imputed" 5941 1 = "Statistical imputation (hot deck)" 5942 2 = "Cold deck imputation" 5943 3 = "Logical imputation (derivation)" 5944 ; NOTE: Format AHRDAYCB has been output. 5945 VALUE ehrdaycc (default=32) 5946 -1 = "Not in Universe" 5947 ; NOTE: Format EHRDAYCC has been output. 5948 VALUE ahrdaycc (default=32) 5949 0 = "Not imputed" 5950 1 = "Statistical imputation (hot deck)" 5951 2 = "Cold deck imputation" 5952 3 = "Logical imputation (derivation)" 5953 ; NOTE: Format AHRDAYCC has been output. 5954 VALUE ehrdaycd (default=32) 5955 -1 = "Not in Universe" 5956 ; NOTE: Format EHRDAYCD has been output. 5957 VALUE ahrdaycd (default=32) 5958 0 = "Not imputed" 5959 1 = "Statistical imputation (hot deck)" 5960 2 = "Cold deck imputation" 5961 3 = "Logical imputation (derivation)" 5962 ; NOTE: Format AHRDAYCD has been output. 5963 VALUE ehrdayce (default=32) 5964 -1 = "Not in Universe" 5965 ; NOTE: Format EHRDAYCE has been output. 5966 VALUE ahrdayce (default=32) 5967 0 = "Not imputed" 5968 1 = "Statistical imputation (hot deck)" 5969 2 = "Cold deck imputation" 5970 3 = "Logical imputation (derivation)" 5971 ; NOTE: Format AHRDAYCE has been output. 5972 VALUE epaydaya (default=32) 113 The SAS System 11:54 Thursday, June 7, 2012 5973 -1 = "Not in Universe" 5974 1 = "Yes" 5975 2 = "No" 5976 ; NOTE: Format EPAYDAYA has been output. 5977 VALUE apaydaya (default=32) 5978 0 = "None or not imputed" 5979 1 = "Statistical imputation (hot deck)" 5980 2 = "Cold deck imputation" 5981 3 = "Logical imputation (derivation)" 5982 ; NOTE: Format APAYDAYA has been output. 5983 VALUE epaydayb (default=32) 5984 -1 = "Not in Universe" 5985 1 = "Yes" 5986 2 = "No" 5987 ; NOTE: Format EPAYDAYB has been output. 5988 VALUE apaydayb (default=32) 5989 0 = "None or not imputed" 5990 1 = "Statistical imputation (hot deck)" 5991 2 = "Cold deck imputation" 5992 3 = "Logical imputation (derivation)" 5993 ; NOTE: Format APAYDAYB has been output. 5994 VALUE epaydayc (default=32) 5995 -1 = "Not in Universe" 5996 1 = "Yes" 5997 2 = "No" 5998 ; NOTE: Format EPAYDAYC has been output. 5999 VALUE apaydayc (default=32) 6000 0 = "None or not imputed" 6001 1 = "Statistical imputation (hot deck)" 6002 2 = "Cold deck imputation" 6003 3 = "Logical imputation (derivation)" 6004 ; NOTE: Format APAYDAYC has been output. 6005 VALUE epaydayd (default=32) 6006 -1 = "Not in Universe" 6007 1 = "Yes" 6008 2 = "No" 6009 ; NOTE: Format EPAYDAYD has been output. 6010 VALUE apaydayd (default=32) 6011 0 = "None or not imputed" 6012 1 = "Statistical imputation (hot deck)" 6013 2 = "Cold deck imputation" 6014 3 = "Logical imputation (derivation)" 6015 ; NOTE: Format APAYDAYD has been output. 6016 VALUE epaydaye (default=32) 6017 -1 = "Not in Universe" 6018 1 = "Yes" 6019 2 = "No" 6020 ; NOTE: Format EPAYDAYE has been output. 6021 VALUE apaydaye (default=32) 114 The SAS System 11:54 Thursday, June 7, 2012 6022 0 = "None or not imputed" 6023 1 = "Statistical imputation (hot deck)" 6024 2 = "Cold deck imputation" 6025 3 = "Logical imputation (derivation)" 6026 ; NOTE: Format APAYDAYE has been output. 6027 VALUE tamtdaya (default=32) 6028 0 = "None or not in universe" 6029 ; NOTE: Format TAMTDAYA has been output. 6030 VALUE aamtdaya (default=32) 6031 0 = "Not imputed" 6032 1 = "Statistical imputation (hot deck)" 6033 2 = "Cold deck imputation" 6034 3 = "Logical imputation (derivation)" 6035 ; NOTE: Format AAMTDAYA has been output. 6036 VALUE tamtdayb (default=32) 6037 0 = "None or not in universe" 6038 ; NOTE: Format TAMTDAYB has been output. 6039 VALUE aamtdayb (default=32) 6040 0 = "Not imputed" 6041 1 = "Statistical imputation (hot deck)" 6042 2 = "Cold deck imputation" 6043 3 = "Logical imputation (derivation)" 6044 ; NOTE: Format AAMTDAYB has been output. 6045 VALUE tamtdayc (default=32) 6046 0 = "Suppressed" 6047 ; NOTE: Format TAMTDAYC has been output. 6048 VALUE aamtdayc (default=32) 6049 0 = "Suppressed" 6050 ; NOTE: Format AAMTDAYC has been output. 6051 VALUE tamtdayd (default=32) 6052 0 = "Suppressed" 6053 ; NOTE: Format TAMTDAYD has been output. 6054 VALUE aamtdayd (default=32) 6055 0 = "Suppressed" 6056 ; NOTE: Format AAMTDAYD has been output. 6057 VALUE tamtdaye (default=32) 6058 0 = "Suppressed" 6059 ; NOTE: Format TAMTDAYE has been output. 6060 VALUE aamtdaye (default=32) 6061 0 = "Suppressed" 6062 ; NOTE: Format AAMTDAYE has been output. 6063 VALUE ewhnursa (default=32) 6064 -1 = "Not in Universe" 6065 1 = "At work or at school" 6066 2 = "At a church or religious" 6067 3 = "Someplace else, including working" 6068 ; 115 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EWHNURSA has been output. 6069 VALUE awhnursa (default=32) 6070 0 = "Not imputed" 6071 1 = "Statistical imputation (hot deck)" 6072 2 = "Cold deck imputation" 6073 3 = "Logical imputation (derivation)" 6074 ; NOTE: Format AWHNURSA has been output. 6075 VALUE ewhnursb (default=32) 6076 -1 = "Not in Universe" 6077 1 = "At work or at school" 6078 2 = "At a church or religious" 6079 3 = "Someplace else, including working" 6080 ; NOTE: Format EWHNURSB has been output. 6081 VALUE awhnursb (default=32) 6082 0 = "Not imputed" 6083 1 = "Statistical imputation (hot deck)" 6084 2 = "Cold deck imputation" 6085 3 = "Logical imputation (derivation)" 6086 ; NOTE: Format AWHNURSB has been output. 6087 VALUE ewhnursc (default=32) 6088 -1 = "Not in Universe" 6089 1 = "At work or at school" 6090 2 = "At a church or religious" 6091 3 = "Someplace else, including working" 6092 ; NOTE: Format EWHNURSC has been output. 6093 VALUE awhnursc (default=32) 6094 0 = "Not imputed" 6095 1 = "Statistical imputation (hot deck)" 6096 2 = "Cold deck imputation" 6097 3 = "Logical imputation (derivation)" 6098 ; NOTE: Format AWHNURSC has been output. 6099 VALUE ewhnursd (default=32) 6100 -1 = "Not in Universe" 6101 1 = "At work or at school" 6102 2 = "At a church or religious" 6103 3 = "Someplace else, including working" 6104 ; NOTE: Format EWHNURSD has been output. 6105 VALUE awhnursd (default=32) 6106 0 = "Not imputed" 6107 1 = "Statistical imputation (hot deck)" 6108 2 = "Cold deck imputation" 6109 3 = "Logical imputation (derivation)" 6110 ; NOTE: Format AWHNURSD has been output. 6111 VALUE ewhnurse (default=32) 6112 -1 = "Not in Universe" 6113 1 = "At work or at school" 6114 2 = "At a church or religious" 6115 3 = "Someplace else, including working" 6116 ; NOTE: Format EWHNURSE has been output. 6117 VALUE awhnurse (default=32) 116 The SAS System 11:54 Thursday, June 7, 2012 6118 0 = "Not imputed" 6119 1 = "Statistical imputation (hot deck)" 6120 2 = "Cold deck imputation" 6121 3 = "Logical imputation (derivation)" 6122 ; NOTE: Format AWHNURSE has been output. 6123 VALUE enurhrsa (default=32) 6124 -1 = "Not in Universe" 6125 ; NOTE: Format ENURHRSA has been output. 6126 VALUE anurhrsa (default=32) 6127 0 = "Not imputed" 6128 1 = "Statistical imputation (hot deck)" 6129 2 = "Cold deck imputation" 6130 3 = "Logical imputation (derivation)" 6131 ; NOTE: Format ANURHRSA has been output. 6132 VALUE enurhrsb (default=32) 6133 -1 = "Not in Universe" 6134 ; NOTE: Format ENURHRSB has been output. 6135 VALUE anurhrsb (default=32) 6136 0 = "Not imputed" 6137 1 = "Statistical imputation (hot deck)" 6138 2 = "Cold deck imputation" 6139 3 = "Logical imputation (derivation)" 6140 ; NOTE: Format ANURHRSB has been output. 6141 VALUE enurhrsc (default=32) 6142 -1 = "Not in Universe" 6143 ; NOTE: Format ENURHRSC has been output. 6144 VALUE anurhrsc (default=32) 6145 0 = "Not imputed" 6146 1 = "Statistical imputation (hot deck)" 6147 2 = "Cold deck imputation" 6148 3 = "Logical imputation (derivation)" 6149 ; NOTE: Format ANURHRSC has been output. 6150 VALUE enurhrsd (default=32) 6151 -1 = "Not in Universe" 6152 ; NOTE: Format ENURHRSD has been output. 6153 VALUE anurhrsd (default=32) 6154 0 = "Not imputed" 6155 1 = "Statistical imputation (hot deck)" 6156 2 = "Cold deck imputation" 6157 3 = "Logical imputation (derivation)" 6158 ; NOTE: Format ANURHRSD has been output. 6159 VALUE enurhrse (default=32) 6160 -1 = "Not in Universe" 6161 ; NOTE: Format ENURHRSE has been output. 6162 VALUE anurhrse (default=32) 6163 0 = "Not imputed" 6164 1 = "Statistical imputation (hot deck)" 6165 2 = "Cold deck imputation" 117 The SAS System 11:54 Thursday, June 7, 2012 6166 3 = "Logical imputation (derivation)" 6167 ; NOTE: Format ANURHRSE has been output. 6168 VALUE ehrnursa (default=32) 6169 -1 = "Not in Universe" 6170 ; NOTE: Format EHRNURSA has been output. 6171 VALUE ahrnursa (default=32) 6172 0 = "Not imputed" 6173 1 = "Statistical imputation (hot deck)" 6174 2 = "Cold deck imputation" 6175 3 = "Logic imputation (derivation)" 6176 ; NOTE: Format AHRNURSA has been output. 6177 VALUE ehrnursb (default=32) 6178 -1 = "Not in Universe" 6179 ; NOTE: Format EHRNURSB has been output. 6180 VALUE ahrnursb (default=32) 6181 0 = "Not imputed" 6182 1 = "Statistical imputation (hot deck)" 6183 2 = "Cold deck imputation" 6184 3 = "Logic imputation (derivation)" 6185 ; NOTE: Format AHRNURSB has been output. 6186 VALUE ehrnursc (default=32) 6187 -1 = "Not in Universe" 6188 ; NOTE: Format EHRNURSC has been output. 6189 VALUE ahrnursc (default=32) 6190 0 = "Not imputed" 6191 1 = "Statistical imputation (hot deck)" 6192 2 = "Cold deck imputation" 6193 3 = "Logic imputation (derivation)" 6194 ; NOTE: Format AHRNURSC has been output. 6195 VALUE ehrnursd (default=32) 6196 -1 = "Not in Universe" 6197 ; NOTE: Format EHRNURSD has been output. 6198 VALUE ahrnursd (default=32) 6199 0 = "Not imputed" 6200 1 = "Statistical imputation (hot deck)" 6201 2 = "Cold deck imputation" 6202 3 = "Logic imputation (derivation)" 6203 ; NOTE: Format AHRNURSD has been output. 6204 VALUE ehrnurse (default=32) 6205 -1 = "Not in Universe" 6206 ; NOTE: Format EHRNURSE has been output. 6207 VALUE ahrnurse (default=32) 6208 0 = "Not imputed" 6209 1 = "Statistical imputation (hot deck)" 6210 2 = "Cold deck imputation" 6211 3 = "Logic imputation (derivation)" 6212 ; NOTE: Format AHRNURSE has been output. 118 The SAS System 11:54 Thursday, June 7, 2012 6213 VALUE epaynura (default=32) 6214 -1 = "Not in Universe" 6215 1 = "Yes" 6216 2 = "No" 6217 ; NOTE: Format EPAYNURA has been output. 6218 VALUE apaynura (default=32) 6219 0 = "Not imputed" 6220 1 = "Statistical imputation (hot deck)" 6221 2 = "Cold deck imputation" 6222 3 = "Logical imputation (derivation)" 6223 ; NOTE: Format APAYNURA has been output. 6224 VALUE epaynurb (default=32) 6225 -1 = "Not in Universe" 6226 1 = "Yes" 6227 2 = "No" 6228 ; NOTE: Format EPAYNURB has been output. 6229 VALUE apaynurb (default=32) 6230 0 = "Not imputed" 6231 1 = "Statistical imputation (hot deck)" 6232 2 = "Cold deck imputation" 6233 3 = "Logical imputation (derivation)" 6234 ; NOTE: Format APAYNURB has been output. 6235 VALUE epaynurc (default=32) 6236 -1 = "Not in Universe" 6237 1 = "Yes" 6238 2 = "No" 6239 ; NOTE: Format EPAYNURC has been output. 6240 VALUE apaynurc (default=32) 6241 0 = "Not imputed" 6242 1 = "Statistical imputation (hot deck)" 6243 2 = "Cold deck imputation" 6244 3 = "Logical imputation (derivation)" 6245 ; NOTE: Format APAYNURC has been output. 6246 VALUE epaynurd (default=32) 6247 -1 = "Not in Universe" 6248 1 = "Yes" 6249 2 = "No" 6250 ; NOTE: Format EPAYNURD has been output. 6251 VALUE apaynurd (default=32) 6252 0 = "Not imputed" 6253 1 = "Statistical imputation (hot deck)" 6254 2 = "Cold deck imputation" 6255 3 = "Logical imputation (derivation)" 6256 ; NOTE: Format APAYNURD has been output. 6257 VALUE epaynure (default=32) 6258 -1 = "Not in Universe" 6259 1 = "Yes" 6260 2 = "No" 6261 ; NOTE: Format EPAYNURE has been output. 119 The SAS System 11:54 Thursday, June 7, 2012 6262 VALUE apaynure (default=32) 6263 0 = "Not imputed" 6264 1 = "Statistical imputation (hot deck)" 6265 2 = "Cold deck imputation" 6266 3 = "Logical imputation (derivation)" 6267 ; NOTE: Format APAYNURE has been output. 6268 VALUE tamtnura (default=32) 6269 0 = "None or not in universe" 6270 ; NOTE: Format TAMTNURA has been output. 6271 VALUE aamtnura (default=32) 6272 0 = "Not imputed" 6273 1 = "Statistical imputation (hot deck)" 6274 2 = "Cold deck imputation" 6275 3 = "Logical imputation (derivation)" 6276 ; NOTE: Format AAMTNURA has been output. 6277 VALUE tamtnurb (default=32) 6278 0 = "None or not in universe" 6279 ; NOTE: Format TAMTNURB has been output. 6280 VALUE aamtnurb (default=32) 6281 0 = "Not imputed" 6282 1 = "Statistical imputation (hot deck)" 6283 2 = "Cold deck imputation" 6284 3 = "Logical imputation (derivation)" 6285 ; NOTE: Format AAMTNURB has been output. 6286 VALUE tamtnurc (default=32) 6287 0 = "Suppressed" 6288 ; NOTE: Format TAMTNURC has been output. 6289 VALUE aamtnurc (default=32) 6290 0 = "Suppressed" 6291 ; NOTE: Format AAMTNURC has been output. 6292 VALUE tamtnurd (default=32) 6293 0 = "Suppressed" 6294 ; NOTE: Format TAMTNURD has been output. 6295 VALUE aamtnurd (default=32) 6296 0 = "Suppressed" 6297 ; NOTE: Format AAMTNURD has been output. 6298 VALUE tamtnure (default=32) 6299 0 = "Suppressed" 6300 ; NOTE: Format TAMTNURE has been output. 6301 VALUE aamtnure (default=32) 6302 0 = "Suppressed" 6303 ; NOTE: Format AAMTNURE has been output. 6304 VALUE eheadhra (default=32) 6305 -1 = "Not in Universe" 6306 ; NOTE: Format EHEADHRA has been output. 6307 VALUE aheadhra (default=32) 120 The SAS System 11:54 Thursday, June 7, 2012 6308 0 = "Not imputed" 6309 1 = "Statistical imputation (hot deck)" 6310 2 = "Cold deck imputation" 6311 3 = "Logical imputation (derivation)" 6312 ; NOTE: Format AHEADHRA has been output. 6313 VALUE eheadhrb (default=32) 6314 -1 = "Not in Universe" 6315 ; NOTE: Format EHEADHRB has been output. 6316 VALUE aheadhrb (default=32) 6317 0 = "Not imputed" 6318 1 = "Statistical imputation (hot deck)" 6319 2 = "Cold deck imputation" 6320 3 = "Logical imputation (derivation)" 6321 ; NOTE: Format AHEADHRB has been output. 6322 VALUE eheadhrc (default=32) 6323 -1 = "Not in Universe" 6324 ; NOTE: Format EHEADHRC has been output. 6325 VALUE aheadhrc (default=32) 6326 0 = "Not imputed" 6327 1 = "Statistical imputation (hot deck)" 6328 2 = "Cold deck imputation" 6329 3 = "Logical imputation (derivation)" 6330 ; NOTE: Format AHEADHRC has been output. 6331 VALUE eheadhrd (default=32) 6332 -1 = "Not in Universe" 6333 ; NOTE: Format EHEADHRD has been output. 6334 VALUE aheadhrd (default=32) 6335 0 = "Not imputed" 6336 1 = "Statistical imputation (hot deck)" 6337 2 = "Cold deck imputation" 6338 3 = "Logical imputation (derivation)" 6339 ; NOTE: Format AHEADHRD has been output. 6340 VALUE eheadhre (default=32) 6341 -1 = "Not in Universe" 6342 ; NOTE: Format EHEADHRE has been output. 6343 VALUE aheadhre (default=32) 6344 0 = "Not imputed" 6345 1 = "Statistical imputation (hot deck)" 6346 2 = "Cold deck imputation" 6347 3 = "Logical imputation (derivation)" 6348 ; NOTE: Format AHEADHRE has been output. 6349 VALUE ehrstara (default=32) 6350 -1 = "Not in Universe" 6351 ; NOTE: Format EHRSTARA has been output. 6352 VALUE ahrstara (default=32) 6353 0 = "Not imputed" 6354 1 = "Statistical imputation (hot deck)" 6355 2 = "Cold deck imputation" 121 The SAS System 11:54 Thursday, June 7, 2012 6356 3 = "Logical imputation (derivation)" 6357 ; NOTE: Format AHRSTARA has been output. 6358 VALUE ehrstarb (default=32) 6359 -1 = "Not in Universe" 6360 ; NOTE: Format EHRSTARB has been output. 6361 VALUE ahrstarb (default=32) 6362 0 = "Not imputed" 6363 1 = "Statistical imputation (hot deck)" 6364 2 = "Cold deck imputation" 6365 3 = "Logical imputation (derivation)" 6366 ; NOTE: Format AHRSTARB has been output. 6367 VALUE ehrstarc (default=32) 6368 -1 = "Not in Universe" 6369 ; NOTE: Format EHRSTARC has been output. 6370 VALUE ahrstarc (default=32) 6371 0 = "Not imputed" 6372 1 = "Statistical imputation (hot deck)" 6373 2 = "Cold deck imputation" 6374 3 = "Logical imputation (derivation)" 6375 ; NOTE: Format AHRSTARC has been output. 6376 VALUE ehrstard (default=32) 6377 -1 = "Not in Universe" 6378 ; NOTE: Format EHRSTARD has been output. 6379 VALUE ahrstard (default=32) 6380 0 = "Not imputed" 6381 1 = "Statistical imputation (hot deck)" 6382 2 = "Cold deck imputation" 6383 3 = "Logical imputation (derivation)" 6384 ; NOTE: Format AHRSTARD has been output. 6385 VALUE ehrstare (default=32) 6386 -1 = "Not in Universe" 6387 ; NOTE: Format EHRSTARE has been output. 6388 VALUE ahrstare (default=32) 6389 0 = "Not imputed" 6390 1 = "Statistical imputation (hot deck)" 6391 2 = "Cold deck imputation" 6392 3 = "Logical imputation (derivation)" 6393 ; NOTE: Format AHRSTARE has been output. 6394 VALUE epaystaa (default=32) 6395 -1 = "Not in Universe" 6396 1 = "Yes" 6397 2 = "No" 6398 ; NOTE: Format EPAYSTAA has been output. 6399 VALUE apaystaa (default=32) 6400 0 = "Not imputed" 6401 1 = "Statistical imputation (hot deck)" 6402 2 = "Cold deck imputation" 6403 3 = "Logical imputation (derivation)" 122 The SAS System 11:54 Thursday, June 7, 2012 6404 ; NOTE: Format APAYSTAA has been output. 6405 VALUE epaystab (default=32) 6406 -1 = "Not in Universe" 6407 1 = "Yes" 6408 2 = "No" 6409 ; NOTE: Format EPAYSTAB has been output. 6410 VALUE apaystab (default=32) 6411 0 = "Not imputed" 6412 1 = "Statistical imputation (hot deck)" 6413 2 = "Cold deck imputation" 6414 3 = "Logical imputation (derivation)" 6415 ; NOTE: Format APAYSTAB has been output. 6416 VALUE epaystac (default=32) 6417 -1 = "Not in Universe" 6418 1 = "Yes" 6419 2 = "No" 6420 ; NOTE: Format EPAYSTAC has been output. 6421 VALUE apaystac (default=32) 6422 0 = "Not imputed" 6423 1 = "Statistical imputation (hot deck)" 6424 2 = "Cold deck imputation" 6425 3 = "Logical imputation (derivation)" 6426 ; NOTE: Format APAYSTAC has been output. 6427 VALUE epaystad (default=32) 6428 -1 = "Not in Universe" 6429 1 = "Yes" 6430 2 = "No" 6431 ; NOTE: Format EPAYSTAD has been output. 6432 VALUE apaystad (default=32) 6433 0 = "Not imputed" 6434 1 = "Statistical imputation (hot deck)" 6435 2 = "Cold deck imputation" 6436 3 = "Logical imputation (derivation)" 6437 ; NOTE: Format APAYSTAD has been output. 6438 VALUE epaystae (default=32) 6439 -1 = "Not in Universe" 6440 1 = "Yes" 6441 2 = "No" 6442 ; NOTE: Format EPAYSTAE has been output. 6443 VALUE apaystae (default=32) 6444 0 = "Not imputed" 6445 1 = "Statistical imputation (hot deck)" 6446 2 = "Cold deck imputation" 6447 3 = "Logical imputation (derivation)" 6448 ; NOTE: Format APAYSTAE has been output. 6449 VALUE tamtstaa (default=32) 6450 0 = "Suppressed" 6451 ; NOTE: Format TAMTSTAA has been output. 123 The SAS System 11:54 Thursday, June 7, 2012 6452 VALUE aamtstaa (default=32) 6453 0 = "Suppressed" 6454 ; NOTE: Format AAMTSTAA has been output. 6455 VALUE tamtstab (default=32) 6456 0 = "Suppressed" 6457 ; NOTE: Format TAMTSTAB has been output. 6458 VALUE aamtstab (default=32) 6459 0 = "Suppressed" 6460 ; NOTE: Format AAMTSTAB has been output. 6461 VALUE tamtstac (default=32) 6462 0 = "Suppressed" 6463 ; NOTE: Format TAMTSTAC has been output. 6464 VALUE aamtstac (default=32) 6465 0 = "Suppressed" 6466 ; NOTE: Format AAMTSTAC has been output. 6467 VALUE tamtstad (default=32) 6468 0 = "Suppressed" 6469 ; NOTE: Format TAMTSTAD has been output. 6470 VALUE aamtstad (default=32) 6471 0 = "Suppressed" 6472 ; NOTE: Format AAMTSTAD has been output. 6473 VALUE tamtstae (default=32) 6474 0 = "Suppressed" 6475 ; NOTE: Format TAMTSTAE has been output. 6476 VALUE aamtstae (default=32) 6477 0 = "Suppressed" 6478 ; NOTE: Format AAMTSTAE has been output. 6479 VALUE ewhothea (default=32) 6480 -1 = "Not in Universe" 6481 1 = "Child's home" 6482 2 = "The non-relative's home" 6483 3 = "Someplace else" 6484 ; NOTE: Format EWHOTHEA has been output. 6485 VALUE awhothea (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 AWHOTHEA has been output. 6491 VALUE ewhotheb (default=32) 6492 -1 = "Not in Universe" 6493 1 = "Child's home" 6494 2 = "The non-relative's home" 6495 3 = "Someplace else" 6496 ; NOTE: Format EWHOTHEB has been output. 6497 VALUE awhotheb (default=32) 124 The SAS System 11:54 Thursday, June 7, 2012 6498 0 = "Not imputed" 6499 1 = "Statistical imputation (hot deck)" 6500 2 = "Cold deck imputation" 6501 3 = "Logical imputation (derivation)" 6502 ; NOTE: Format AWHOTHEB has been output. 6503 VALUE ewhothec (default=32) 6504 -1 = "Not in Universe" 6505 1 = "Child's home" 6506 2 = "The non-relative's home" 6507 3 = "Someplace else" 6508 ; NOTE: Format EWHOTHEC has been output. 6509 VALUE awhothec (default=32) 6510 0 = "Not imputed" 6511 1 = "Statistical imputation (hot deck)" 6512 2 = "Cold deck imputation" 6513 3 = "Logical imputation (derivation)" 6514 ; NOTE: Format AWHOTHEC has been output. 6515 VALUE ewhothed (default=32) 6516 -1 = "Not in Universe" 6517 1 = "Child's home" 6518 2 = "The non-relative's home" 6519 3 = "Someplace else" 6520 ; NOTE: Format EWHOTHED has been output. 6521 VALUE awhothed (default=32) 6522 0 = "Not imputed" 6523 1 = "Statistical imputation (hot deck)" 6524 2 = "Cold deck imputation" 6525 3 = "Logical imputation (derivation)" 6526 ; NOTE: Format AWHOTHED has been output. 6527 VALUE ewhothee (default=32) 6528 -1 = "Not in Universe" 6529 1 = "Child's home" 6530 2 = "The non-relative's home" 6531 3 = "Someplace else" 6532 ; NOTE: Format EWHOTHEE has been output. 6533 VALUE awhothee (default=32) 6534 0 = "Not imputed" 6535 1 = "Statistical imputation (hot deck)" 6536 2 = "Cold deck imputation" 6537 3 = "Logical imputation (derivation)" 6538 ; NOTE: Format AWHOTHEE has been output. 6539 VALUE eothehra (default=32) 6540 -1 = "Not in Universe" 6541 ; NOTE: Format EOTHEHRA has been output. 6542 VALUE aothehra (default=32) 6543 0 = "Not imputed" 6544 1 = "Statical imputation (hot deck)" 6545 2 = "Cold deck imputation" 6546 3 = "Logical imputation (derivation)" 6547 ; 125 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AOTHEHRA has been output. 6548 VALUE eothehrb (default=32) 6549 -1 = "Not in Universe" 6550 ; NOTE: Format EOTHEHRB has been output. 6551 VALUE aothehrb (default=32) 6552 0 = "Not imputed" 6553 1 = "Statical imputation (hot deck)" 6554 2 = "Cold deck imputation" 6555 3 = "Logical imputation (derivation)" 6556 ; NOTE: Format AOTHEHRB has been output. 6557 VALUE eothehrc (default=32) 6558 -1 = "Not in Universe" 6559 ; NOTE: Format EOTHEHRC has been output. 6560 VALUE aothehrc (default=32) 6561 0 = "Not imputed" 6562 1 = "Statical imputation (hot deck)" 6563 2 = "Cold deck imputation" 6564 3 = "Logical imputation (derivation)" 6565 ; NOTE: Format AOTHEHRC has been output. 6566 VALUE eothehrd (default=32) 6567 -1 = "Not in Universe" 6568 ; NOTE: Format EOTHEHRD has been output. 6569 VALUE aothehrd (default=32) 6570 0 = "Not imputed" 6571 1 = "Statical imputation (hot deck)" 6572 2 = "Cold deck imputation" 6573 3 = "Logical imputation (derivation)" 6574 ; NOTE: Format AOTHEHRD has been output. 6575 VALUE eothehre (default=32) 6576 -1 = "Not in Universe" 6577 ; NOTE: Format EOTHEHRE has been output. 6578 VALUE aothehre (default=32) 6579 0 = "Not imputed" 6580 1 = "Statical imputation (hot deck)" 6581 2 = "Cold deck imputation" 6582 3 = "Logical imputation (derivation)" 6583 ; NOTE: Format AOTHEHRE has been output. 6584 VALUE ehrothea (default=32) 6585 -1 = "Not in Universe" 6586 ; NOTE: Format EHROTHEA has been output. 6587 VALUE ahrothea (default=32) 6588 0 = "Not imputed" 6589 1 = "Statistical imputation (hot deck)" 6590 2 = "Cold deck imputation" 6591 3 = "Logical imputation (derivation)" 6592 ; NOTE: Format AHROTHEA has been output. 6593 VALUE ehrotheb (default=32) 6594 -1 = "Not in Universe" 126 The SAS System 11:54 Thursday, June 7, 2012 6595 ; NOTE: Format EHROTHEB has been output. 6596 VALUE ahrotheb (default=32) 6597 0 = "Not imputed" 6598 1 = "Statistical imputation (hot deck)" 6599 2 = "Cold deck imputation" 6600 3 = "Logical imputation (derivation)" 6601 ; NOTE: Format AHROTHEB has been output. 6602 VALUE ehrothec (default=32) 6603 -1 = "Not in Universe" 6604 ; NOTE: Format EHROTHEC has been output. 6605 VALUE ahrothec (default=32) 6606 0 = "Not imputed" 6607 1 = "Statistical imputation (hot deck)" 6608 2 = "Cold deck imputation" 6609 3 = "Logical imputation (derivation)" 6610 ; NOTE: Format AHROTHEC has been output. 6611 VALUE ehrothed (default=32) 6612 -1 = "Not in Universe" 6613 ; NOTE: Format EHROTHED has been output. 6614 VALUE ahrothed (default=32) 6615 0 = "Not imputed" 6616 1 = "Statistical imputation (hot deck)" 6617 2 = "Cold deck imputation" 6618 3 = "Logical imputation (derivation)" 6619 ; NOTE: Format AHROTHED has been output. 6620 VALUE ehrothee (default=32) 6621 -1 = "Not in Universe" 6622 ; NOTE: Format EHROTHEE has been output. 6623 VALUE ahrothee (default=32) 6624 0 = "Not imputed" 6625 1 = "Statistical imputation (hot deck)" 6626 2 = "Cold deck imputation" 6627 3 = "Logical imputation (derivation)" 6628 ; NOTE: Format AHROTHEE has been output. 6629 VALUE epayotha (default=32) 6630 -1 = "Not in Universe" 6631 1 = "Yes" 6632 2 = "No" 6633 ; NOTE: Format EPAYOTHA has been output. 6634 VALUE apayotha (default=32) 6635 0 = "Not imputed" 6636 1 = "Statistical imputation (hot deck)" 6637 2 = "Cold deck imputation" 6638 3 = "Logical imputation (derivation)" 6639 ; NOTE: Format APAYOTHA has been output. 6640 VALUE epayothb (default=32) 6641 -1 = "Not in Universe" 6642 1 = "Yes" 127 The SAS System 11:54 Thursday, June 7, 2012 6643 2 = "No" 6644 ; NOTE: Format EPAYOTHB has been output. 6645 VALUE apayothb (default=32) 6646 0 = "Not imputed" 6647 1 = "Statistical imputation (hot deck)" 6648 2 = "Cold deck imputation" 6649 3 = "Logical imputation (derivation)" 6650 ; NOTE: Format APAYOTHB has been output. 6651 VALUE epayothc (default=32) 6652 -1 = "Not in Universe" 6653 1 = "Yes" 6654 2 = "No" 6655 ; NOTE: Format EPAYOTHC has been output. 6656 VALUE apayothc (default=32) 6657 0 = "Not imputed" 6658 1 = "Statistical imputation (hot deck)" 6659 2 = "Cold deck imputation" 6660 3 = "Logical imputation (derivation)" 6661 ; NOTE: Format APAYOTHC has been output. 6662 VALUE epayothd (default=32) 6663 -1 = "Not in Universe" 6664 1 = "Yes" 6665 2 = "No" 6666 ; NOTE: Format EPAYOTHD has been output. 6667 VALUE apayothd (default=32) 6668 0 = "Not imputed" 6669 1 = "Statistical imputation (hot deck)" 6670 2 = "Cold deck imputation" 6671 3 = "Logical imputation (derivation)" 6672 ; NOTE: Format APAYOTHD has been output. 6673 VALUE epayothe (default=32) 6674 -1 = "Not in Universe" 6675 1 = "Yes" 6676 2 = "No" 6677 ; NOTE: Format EPAYOTHE has been output. 6678 VALUE apayothe (default=32) 6679 0 = "Not imputed" 6680 1 = "Statistical imputation (hot deck)" 6681 2 = "Cold deck imputation" 6682 3 = "Logical imputation (derivation)" 6683 ; NOTE: Format APAYOTHE has been output. 6684 VALUE tamtotha (default=32) 6685 0 = "Not In Universe" 6686 ; NOTE: Format TAMTOTHA has been output. 6687 VALUE aamtotha (default=32) 6688 0 = "Not imputed" 6689 1 = "Statistical imputation (hot deck)" 6690 2 = "Cold deck imputation" 6691 3 = "Logical imputation (derivation)" 128 The SAS System 11:54 Thursday, June 7, 2012 6692 ; NOTE: Format AAMTOTHA has been output. 6693 VALUE tamtothb (default=32) 6694 0 = "Not In Universe" 6695 ; NOTE: Format TAMTOTHB has been output. 6696 VALUE aamtothb (default=32) 6697 0 = "Not imputed" 6698 1 = "Statistical imputation (hot deck)" 6699 2 = "Cold deck imputation" 6700 3 = "Logical imputation (derivation)" 6701 ; NOTE: Format AAMTOTHB has been output. 6702 VALUE tamtothc (default=32) 6703 0 = "Suppressed" 6704 ; NOTE: Format TAMTOTHC has been output. 6705 VALUE aamtothc (default=32) 6706 0 = "Suppressed" 6707 ; NOTE: Format AAMTOTHC has been output. 6708 VALUE tamtothd (default=32) 6709 0 = "Suppressed" 6710 ; NOTE: Format TAMTOTHD has been output. 6711 VALUE aamtothd (default=32) 6712 0 = "Suppressed" 6713 ; NOTE: Format AAMTOTHD has been output. 6714 VALUE tamtothe (default=32) 6715 0 = "Suppressed" 6716 ; NOTE: Format TAMTOTHE has been output. 6717 VALUE aamtothe (default=32) 6718 0 = "Suppressed" 6719 ; NOTE: Format AAMTOTHE has been output. 6720 VALUE eschoowa (default=32) 6721 -1 = "Not in Universe" 6722 1 = "Yes" 6723 2 = "No" 6724 ; NOTE: Format ESCHOOWA has been output. 6725 VALUE aschoowa (default=32) 6726 0 = "Not imputed" 6727 1 = "Statistical imputation (hot deck)" 6728 2 = "Cold deck imputation" 6729 3 = "Logical imputation (derivation)" 6730 ; NOTE: Format ASCHOOWA has been output. 6731 VALUE eschoowb (default=32) 6732 -1 = "Not in Universe" 6733 1 = "Yes" 6734 2 = "No" 6735 ; NOTE: Format ESCHOOWB has been output. 6736 VALUE aschoowb (default=32) 6737 0 = "Not imputed" 129 The SAS System 11:54 Thursday, June 7, 2012 6738 1 = "Statistical imputation (hot deck)" 6739 2 = "Cold deck imputation" 6740 3 = "Logical imputation (derivation)" 6741 ; NOTE: Format ASCHOOWB has been output. 6742 VALUE eschoowc (default=32) 6743 -1 = "Not in Universe" 6744 1 = "Yes" 6745 2 = "No" 6746 ; NOTE: Format ESCHOOWC has been output. 6747 VALUE aschoowc (default=32) 6748 0 = "Not imputed" 6749 1 = "Statistical imputation (hot deck)" 6750 2 = "Cold deck imputation" 6751 3 = "Logical imputation (derivation)" 6752 ; NOTE: Format ASCHOOWC has been output. 6753 VALUE eschoowd (default=32) 6754 -1 = "Not in Universe" 6755 1 = "Yes" 6756 2 = "No" 6757 ; NOTE: Format ESCHOOWD has been output. 6758 VALUE aschoowd (default=32) 6759 0 = "Not imputed" 6760 1 = "Statistical imputation (hot deck)" 6761 2 = "Cold deck imputation" 6762 3 = "Logical imputation (derivation)" 6763 ; NOTE: Format ASCHOOWD has been output. 6764 VALUE eschoowe (default=32) 6765 -1 = "Not in Universe" 6766 1 = "Yes" 6767 2 = "No" 6768 ; NOTE: Format ESCHOOWE has been output. 6769 VALUE aschoowe (default=32) 6770 0 = "Not imputed" 6771 1 = "Statistical imputation (hot deck)" 6772 2 = "Cold deck imputation" 6773 3 = "Logical imputation (derivation)" 6774 ; NOTE: Format ASCHOOWE has been output. 6775 VALUE ehrschwa (default=32) 6776 -1 = "Not in Universe" 6777 ; NOTE: Format EHRSCHWA has been output. 6778 VALUE ahrschwa (default=32) 6779 0 = "Not imputed" 6780 1 = "Statistical imputation (hot deck)" 6781 2 = "Cold deck imputation" 6782 3 = "Logical imputation (derivation)" 6783 ; NOTE: Format AHRSCHWA has been output. 6784 VALUE ehrschwb (default=32) 6785 -1 = "Not in Universe" 6786 ; 130 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EHRSCHWB has been output. 6787 VALUE ahrschwb (default=32) 6788 0 = "Not imputed" 6789 1 = "Statistical imputation (hot deck)" 6790 2 = "Cold deck imputation" 6791 3 = "Logical imputation (derivation)" 6792 ; NOTE: Format AHRSCHWB has been output. 6793 VALUE ehrschwc (default=32) 6794 -1 = "Not in Universe" 6795 ; NOTE: Format EHRSCHWC has been output. 6796 VALUE ahrschwc (default=32) 6797 0 = "Not imputed" 6798 1 = "Statistical imputation (hot deck)" 6799 2 = "Cold deck imputation" 6800 3 = "Logical imputation (derivation)" 6801 ; NOTE: Format AHRSCHWC has been output. 6802 VALUE ehrschwd (default=32) 6803 -1 = "Not in Universe" 6804 ; NOTE: Format EHRSCHWD has been output. 6805 VALUE ahrschwd (default=32) 6806 0 = "Not imputed" 6807 1 = "Statistical imputation (hot deck)" 6808 2 = "Cold deck imputation" 6809 3 = "Logical imputation (derivation)" 6810 ; NOTE: Format AHRSCHWD has been output. 6811 VALUE ehrschwe (default=32) 6812 -1 = "Not in Universe" 6813 ; NOTE: Format EHRSCHWE has been output. 6814 VALUE ahrschwe (default=32) 6815 0 = "Not imputed" 6816 1 = "Statistical imputation (hot deck)" 6817 2 = "Cold deck imputation" 6818 3 = "Logical imputation (derivation)" 6819 ; NOTE: Format AHRSCHWE has been output. 6820 VALUE ehrschoa (default=32) 6821 -1 = "Not in Universe" 6822 ; NOTE: Format EHRSCHOA has been output. 6823 VALUE ahrschoa (default=32) 6824 0 = "Not imputed" 6825 1 = "Statistical imputation (hot deck)" 6826 2 = "Cold deck imputation" 6827 3 = "Logical imputation (derivation)" 6828 ; NOTE: Format AHRSCHOA has been output. 6829 VALUE ehrschob (default=32) 6830 -1 = "Not in Universe" 6831 ; NOTE: Format EHRSCHOB has been output. 6832 VALUE ahrschob (default=32) 6833 0 = "Not imputed" 131 The SAS System 11:54 Thursday, June 7, 2012 6834 1 = "Statistical imputation (hot deck)" 6835 2 = "Cold deck imputation" 6836 3 = "Logical imputation (derivation)" 6837 ; NOTE: Format AHRSCHOB has been output. 6838 VALUE ehrschoc (default=32) 6839 -1 = "Not in Universe" 6840 ; NOTE: Format EHRSCHOC has been output. 6841 VALUE ahrschoc (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 AHRSCHOC has been output. 6847 VALUE ehrschod (default=32) 6848 -1 = "Not in Universe" 6849 ; NOTE: Format EHRSCHOD has been output. 6850 VALUE ahrschod (default=32) 6851 0 = "Not imputed" 6852 1 = "Statistical imputation (hot deck)" 6853 2 = "Cold deck imputation" 6854 3 = "Logical imputation (derivation)" 6855 ; NOTE: Format AHRSCHOD has been output. 6856 VALUE ehrschoe (default=32) 6857 -1 = "Not in Universe" 6858 ; NOTE: Format EHRSCHOE has been output. 6859 VALUE ahrschoe (default=32) 6860 0 = "Not imputed" 6861 1 = "Statistical imputation (hot deck)" 6862 2 = "Cold deck imputation" 6863 3 = "Logical imputation (derivation)" 6864 ; NOTE: Format AHRSCHOE has been output. 6865 VALUE eselfcaa (default=32) 6866 -1 = "Not in Universe" 6867 1 = "Yes" 6868 2 = "No" 6869 ; NOTE: Format ESELFCAA has been output. 6870 VALUE aselfcaa (default=32) 6871 0 = "Not imputed" 6872 1 = "Statistical imputation (hot deck)" 6873 2 = "Cold deck imputation" 6874 3 = "Logical imputation (derivation)" 6875 ; NOTE: Format ASELFCAA has been output. 6876 VALUE eselfcab (default=32) 6877 -1 = "Not in Universe" 6878 1 = "Yes" 6879 2 = "No" 6880 ; NOTE: Format ESELFCAB has been output. 6881 VALUE aselfcab (default=32) 132 The SAS System 11:54 Thursday, June 7, 2012 6882 0 = "Not imputed" 6883 1 = "Statistical imputation (hot deck)" 6884 2 = "Cold deck imputation" 6885 3 = "Logical imputation (derivation)" 6886 ; NOTE: Format ASELFCAB has been output. 6887 VALUE eselfcac (default=32) 6888 -1 = "Not in Universe" 6889 1 = "Yes" 6890 2 = "No" 6891 ; NOTE: Format ESELFCAC has been output. 6892 VALUE aselfcac (default=32) 6893 0 = "Not imputed" 6894 1 = "Statistical imputation (hot deck)" 6895 2 = "Cold deck imputation" 6896 3 = "Logical imputation (derivation)" 6897 ; NOTE: Format ASELFCAC has been output. 6898 VALUE eselfcad (default=32) 6899 -1 = "Not in Universe" 6900 1 = "Yes" 6901 2 = "No" 6902 ; NOTE: Format ESELFCAD has been output. 6903 VALUE aselfcad (default=32) 6904 0 = "Not imputed" 6905 1 = "Statistical imputation (hot deck)" 6906 2 = "Cold deck imputation" 6907 3 = "Logical imputation (derivation)" 6908 ; NOTE: Format ASELFCAD has been output. 6909 VALUE eselfcae (default=32) 6910 -1 = "Not in Universe" 6911 1 = "Yes" 6912 2 = "No" 6913 ; NOTE: Format ESELFCAE has been output. 6914 VALUE aselfcae (default=32) 6915 0 = "Not imputed" 6916 1 = "Statistical imputation (hot deck)" 6917 2 = "Cold deck imputation" 6918 3 = "Logical imputation (derivation)" 6919 ; NOTE: Format ASELFCAE has been output. 6920 VALUE ekidhr1a (default=32) 6921 -1 = "Not in Universe" 6922 ; NOTE: Format EKIDHR1A has been output. 6923 VALUE akidhr1a (default=32) 6924 0 = "Not imputed" 6925 1 = "Statistical imputation (hot deck)" 6926 2 = "Cold deck imputation" 6927 3 = "Logical imputation (derivation)" 6928 ; NOTE: Format AKIDHR1A has been output. 6929 VALUE ekidhr1b (default=32) 6930 -1 = "Not in Universe" 133 The SAS System 11:54 Thursday, June 7, 2012 6931 ; NOTE: Format EKIDHR1B has been output. 6932 VALUE akidhr1b (default=32) 6933 0 = "Not imputed" 6934 1 = "Statistical imputation (hot deck)" 6935 2 = "Cold deck imputation" 6936 3 = "Logical imputation (derivation)" 6937 ; NOTE: Format AKIDHR1B has been output. 6938 VALUE ekidhr1c (default=32) 6939 -1 = "Not in Universe" 6940 ; NOTE: Format EKIDHR1C has been output. 6941 VALUE akidhr1c (default=32) 6942 0 = "Not imputed" 6943 1 = "Statistical imputation (hot deck)" 6944 2 = "Cold deck imputation" 6945 3 = "Logical imputation (derivation)" 6946 ; NOTE: Format AKIDHR1C has been output. 6947 VALUE ekidhr1d (default=32) 6948 -1 = "Not in Universe" 6949 ; NOTE: Format EKIDHR1D has been output. 6950 VALUE akidhr1d (default=32) 6951 0 = "Not imputed" 6952 1 = "Statistical imputation (hot deck)" 6953 2 = "Cold deck imputation" 6954 3 = "Logical imputation (derivation)" 6955 ; NOTE: Format AKIDHR1D has been output. 6956 VALUE ekidhr1e (default=32) 6957 -1 = "Not in Universe" 6958 ; NOTE: Format EKIDHR1E has been output. 6959 VALUE akidhr1e (default=32) 6960 0 = "Not imputed" 6961 1 = "Statistical imputation (hot deck)" 6962 2 = "Cold deck imputation" 6963 3 = "Logical imputation (derivation)" 6964 ; NOTE: Format AKIDHR1E has been output. 6965 VALUE ekidhr2a (default=32) 6966 -1 = "Not in Universe" 6967 ; NOTE: Format EKIDHR2A has been output. 6968 VALUE akidhr2a (default=32) 6969 0 = "Not imputed" 6970 1 = "Statistical imputation (hot deck)" 6971 2 = "Cold deck imputation" 6972 3 = "Logical imputation (derivation)" 6973 ; NOTE: Format AKIDHR2A has been output. 6974 VALUE ekidhr2b (default=32) 6975 -1 = "Not in Universe" 6976 ; NOTE: Format EKIDHR2B has been output. 6977 VALUE akidhr2b (default=32) 134 The SAS System 11:54 Thursday, June 7, 2012 6978 0 = "Not imputed" 6979 1 = "Statistical imputation (hot deck)" 6980 2 = "Cold deck imputation" 6981 3 = "Logical imputation (derivation)" 6982 ; NOTE: Format AKIDHR2B has been output. 6983 VALUE ekidhr2c (default=32) 6984 -1 = "Not in Universe" 6985 ; NOTE: Format EKIDHR2C has been output. 6986 VALUE akidhr2c (default=32) 6987 0 = "Not imputed" 6988 1 = "Statistical imputation (hot deck)" 6989 2 = "Cold deck imputation" 6990 3 = "Logical imputation (derivation)" 6991 ; NOTE: Format AKIDHR2C has been output. 6992 VALUE ekidhr2d (default=32) 6993 -1 = "Not in Universe" 6994 ; NOTE: Format EKIDHR2D has been output. 6995 VALUE akidhr2d (default=32) 6996 0 = "Not imputed" 6997 1 = "Statistical imputation (hot deck)" 6998 2 = "Cold deck imputation" 6999 3 = "Logical imputation (derivation)" 7000 ; NOTE: Format AKIDHR2D has been output. 7001 VALUE ekidhr2e (default=32) 7002 -1 = "Not in Universe" 7003 ; NOTE: Format EKIDHR2E has been output. 7004 VALUE akidhr2e (default=32) 7005 0 = "Not imputed" 7006 1 = "Statistical imputation (hot deck)" 7007 2 = "Cold deck imputation" 7008 3 = "Logical imputation (derivation)" 7009 ; NOTE: Format AKIDHR2E has been output. 7010 VALUE edaychaa (default=32) 7011 -1 = "Not in Universe" 7012 1 = "Yes" 7013 2 = "No" 7014 ; NOTE: Format EDAYCHAA has been output. 7015 VALUE adaychaa (default=32) 7016 0 = "Not imputed" 7017 1 = "Statistical imputation (hot deck)" 7018 2 = "Cold deck imputation" 7019 3 = "Logical imputation (derivation)" 7020 ; NOTE: Format ADAYCHAA has been output. 7021 VALUE edaychab (default=32) 7022 -1 = "Not in Universe" 7023 1 = "Yes" 7024 2 = "No" 7025 ; NOTE: Format EDAYCHAB has been output. 135 The SAS System 11:54 Thursday, June 7, 2012 7026 VALUE adaychab (default=32) 7027 0 = "Not imputed" 7028 1 = "Statistical imputation (hot deck)" 7029 2 = "Cold deck imputation" 7030 3 = "Logical imputation (derivation)" 7031 ; NOTE: Format ADAYCHAB has been output. 7032 VALUE edaychac (default=32) 7033 -1 = "Not in Universe" 7034 1 = "Yes" 7035 2 = "No" 7036 ; NOTE: Format EDAYCHAC has been output. 7037 VALUE adaychac (default=32) 7038 0 = "Not imputed" 7039 1 = "Statistical imputation (hot deck)" 7040 2 = "Cold deck imputation" 7041 3 = "Logical imputation (derivation)" 7042 ; NOTE: Format ADAYCHAC has been output. 7043 VALUE edaychad (default=32) 7044 -1 = "Not in Universe" 7045 1 = "Yes" 7046 2 = "No" 7047 ; NOTE: Format EDAYCHAD has been output. 7048 VALUE adaychad (default=32) 7049 0 = "Not imputed" 7050 1 = "Statistical imputation (hot deck)" 7051 2 = "Cold deck imputation" 7052 3 = "Logical imputation (derivation)" 7053 ; NOTE: Format ADAYCHAD has been output. 7054 VALUE edaychae (default=32) 7055 -1 = "Not in Universe" 7056 1 = "Yes" 7057 2 = "No" 7058 ; NOTE: Format EDAYCHAE has been output. 7059 VALUE adaychae (default=32) 7060 0 = "Not imputed" 7061 1 = "Statistical imputation (hot deck)" 7062 2 = "Cold deck imputation" 7063 3 = "Logical imputation (derivation)" 7064 ; NOTE: Format ADAYCHAE has been output. 7065 VALUE epayhela (default=32) 7066 -1 = "Not in Universe" 7067 1 = "Yes" 7068 2 = "No" 7069 3 = "Did not use any arrangements" 7070 ; NOTE: Format EPAYHELA has been output. 7071 VALUE apayhela (default=32) 7072 0 = "Not imputed" 7073 1 = "Statistical imputation (hot deck)" 7074 2 = "Cold deck imputation" 7075 3 = "Logical imputation (derivation)" 136 The SAS System 11:54 Thursday, June 7, 2012 7076 ; NOTE: Format APAYHELA has been output. 7077 VALUE epayhelb (default=32) 7078 -1 = "Not in Universe" 7079 1 = "Yes" 7080 2 = "No" 7081 3 = "Did not use any arrangements" 7082 ; NOTE: Format EPAYHELB has been output. 7083 VALUE apayhelb (default=32) 7084 0 = "Not imputed" 7085 1 = "Statistical imputation (hot deck)" 7086 2 = "Cold deck imputation" 7087 3 = "Logical imputation (derivation)" 7088 ; NOTE: Format APAYHELB has been output. 7089 VALUE epayhelc (default=32) 7090 -1 = "Not in Universe" 7091 1 = "Yes" 7092 2 = "No" 7093 3 = "Did not use any arrangements" 7094 ; NOTE: Format EPAYHELC has been output. 7095 VALUE apayhelc (default=32) 7096 0 = "Not imputed" 7097 1 = "Statistical imputation (hot deck)" 7098 2 = "Cold deck imputation" 7099 3 = "Logical imputation (derivation)" 7100 ; NOTE: Format APAYHELC has been output. 7101 VALUE epayheld (default=32) 7102 -1 = "Not in Universe" 7103 1 = "Yes" 7104 2 = "No" 7105 3 = "Did not use any arrangements" 7106 ; NOTE: Format EPAYHELD has been output. 7107 VALUE apayheld (default=32) 7108 0 = "Not imputed" 7109 1 = "Statistical imputation (hot deck)" 7110 2 = "Cold deck imputation" 7111 3 = "Logical imputation (derivation)" 7112 ; NOTE: Format APAYHELD has been output. 7113 VALUE epayhele (default=32) 7114 -1 = "Not in Universe" 7115 1 = "Yes" 7116 2 = "No" 7117 3 = "Did not use any arrangements" 7118 ; NOTE: Format EPAYHELE has been output. 7119 VALUE apayhele (default=32) 7120 0 = "Not imputed" 7121 1 = "Statistical imputation (hot deck)" 7122 2 = "Cold deck imputation" 7123 3 = "Logical imputation (derivation)" 7124 ; NOTE: Format APAYHELE has been output. 137 The SAS System 11:54 Thursday, June 7, 2012 7125 VALUE ewhopa1a (default=32) 7126 -1 = "Not in Universe" 7127 1 = "Yes" 7128 2 = "No" 7129 ; NOTE: Format EWHOPA1A has been output. 7130 VALUE ewhopa2a (default=32) 7131 -1 = "Not in Universe" 7132 1 = "Yes" 7133 2 = "No" 7134 ; NOTE: Format EWHOPA2A has been output. 7135 VALUE ewhopa3a (default=32) 7136 -1 = "Not in Universe" 7137 1 = "Yes" 7138 2 = "No" 7139 ; NOTE: Format EWHOPA3A has been output. 7140 VALUE ewhopa4a (default=32) 7141 -1 = "Not in Universe" 7142 1 = "Yes" 7143 2 = "No" 7144 ; NOTE: Format EWHOPA4A has been output. 7145 VALUE awhopaa (default=32) 7146 0 = "Not imputed" 7147 1 = "Statistical imputation (hot deck)" 7148 2 = "Cold deck imputation" 7149 3 = "Logical imputation (derivation)" 7150 ; NOTE: Format AWHOPAA has been output. 7151 VALUE ewhopa1b (default=32) 7152 -1 = "Not in Universe" 7153 1 = "Yes" 7154 2 = "No" 7155 ; NOTE: Format EWHOPA1B has been output. 7156 VALUE ewhopa2b (default=32) 7157 -1 = "Not in Universe" 7158 1 = "Yes" 7159 2 = "No" 7160 ; NOTE: Format EWHOPA2B has been output. 7161 VALUE ewhopa3b (default=32) 7162 -1 = "Not in Universe" 7163 1 = "Yes" 7164 2 = "No" 7165 ; NOTE: Format EWHOPA3B has been output. 7166 VALUE ewhopa4b (default=32) 7167 -1 = "Not in Universe" 7168 1 = "Yes" 7169 2 = "No" 7170 ; NOTE: Format EWHOPA4B has been output. 7171 VALUE awhopab (default=32) 7172 0 = "Not imputed" 7173 1 = "Statistical imputation (hot deck)" 138 The SAS System 11:54 Thursday, June 7, 2012 7174 2 = "Cold deck imputation" 7175 3 = "Logical imputation (derivation)" 7176 ; NOTE: Format AWHOPAB has been output. 7177 VALUE ewhopa1c (default=32) 7178 -1 = "Not in Universe" 7179 1 = "Yes" 7180 2 = "No" 7181 ; NOTE: Format EWHOPA1C has been output. 7182 VALUE ewhopa2c (default=32) 7183 -1 = "Not in Universe" 7184 1 = "Yes" 7185 2 = "No" 7186 ; NOTE: Format EWHOPA2C has been output. 7187 VALUE ewhopa3c (default=32) 7188 -1 = "Not in Universe" 7189 1 = "Yes" 7190 2 = "No" 7191 ; NOTE: Format EWHOPA3C has been output. 7192 VALUE ewhopa4c (default=32) 7193 -1 = "Not in Universe" 7194 1 = "Yes" 7195 2 = "No" 7196 ; NOTE: Format EWHOPA4C has been output. 7197 VALUE awhopac (default=32) 7198 0 = "Not imputed" 7199 1 = "Statistical imputation (hot deck)" 7200 2 = "Cold deck imputation" 7201 3 = "Logical imputation (derivation)" 7202 ; NOTE: Format AWHOPAC has been output. 7203 VALUE ewhopa1d (default=32) 7204 -1 = "Not in Universe" 7205 1 = "Yes" 7206 2 = "No" 7207 ; NOTE: Format EWHOPA1D has been output. 7208 VALUE ewhopa2d (default=32) 7209 -1 = "Not in Universe" 7210 1 = "Yes" 7211 2 = "No" 7212 ; NOTE: Format EWHOPA2D has been output. 7213 VALUE ewhopa3d (default=32) 7214 -1 = "Not in Universe" 7215 1 = "Yes" 7216 2 = "No" 7217 ; NOTE: Format EWHOPA3D has been output. 7218 VALUE ewhopa4d (default=32) 7219 -1 = "Not in Universe" 7220 1 = "Yes" 7221 2 = "No" 7222 ; 139 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EWHOPA4D has been output. 7223 VALUE awhopad (default=32) 7224 0 = "Not imputed" 7225 1 = "Statistical imputation (hot deck)" 7226 2 = "Cold deck imputation" 7227 3 = "Logical imputation (derivation)" 7228 ; NOTE: Format AWHOPAD has been output. 7229 VALUE ewhopa1e (default=32) 7230 -1 = "Not in Universe" 7231 1 = "Yes" 7232 2 = "No" 7233 ; NOTE: Format EWHOPA1E has been output. 7234 VALUE ewhopa2e (default=32) 7235 -1 = "Not in Universe" 7236 1 = "Yes" 7237 2 = "No" 7238 ; NOTE: Format EWHOPA2E has been output. 7239 VALUE ewhopa3e (default=32) 7240 -1 = "Not in Universe" 7241 1 = "Yes" 7242 2 = "No" 7243 ; NOTE: Format EWHOPA3E has been output. 7244 VALUE ewhopa4e (default=32) 7245 -1 = "Not in Universe" 7246 1 = "Yes" 7247 2 = "No" 7248 ; NOTE: Format EWHOPA4E has been output. 7249 VALUE awhopae (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 AWHOPAE has been output. 7255 VALUE esatisa (default=32) 7256 -1 = "Not in Universe" 7257 1 = "Very satisfied" 7258 2 = "Somewhat satisfied" 7259 3 = "Neither satisfied nor dissatisfied" 7260 4 = "Somewhat dissatisfied" 7261 5 = "Very dissatisfied" 7262 ; NOTE: Format ESATISA has been output. 7263 VALUE esatisb (default=32) 7264 -1 = "Not in Universe" 7265 1 = "Very satisfied" 7266 2 = "Somewhat satisfied" 7267 3 = "Neither satisfied nor dissatisfied" 7268 4 = "Somewhat dissatisfied" 7269 5 = "Very dissatisfied" 7270 ; NOTE: Format ESATISB has been output. 7271 VALUE esatisc (default=32) 140 The SAS System 11:54 Thursday, June 7, 2012 7272 -1 = "Not in Universe" 7273 1 = "Very satisfied" 7274 2 = "Somewhat satisfied" 7275 3 = "Neither satisfied nor dissatisfied" 7276 4 = "Somewhat dissatisfied" 7277 5 = "Very dissatisfied" 7278 ; NOTE: Format ESATISC has been output. 7279 VALUE esatisd (default=32) 7280 -1 = "Not in Universe" 7281 1 = "Very satisfied" 7282 2 = "Somewhat satisfied" 7283 3 = "Neither satisfied nor dissatisfied" 7284 4 = "Somewhat dissatisfied" 7285 5 = "Very dissatisfied" 7286 ; NOTE: Format ESATISD has been output. 7287 VALUE esatise (default=32) 7288 -1 = "Not in Universe" 7289 1 = "Very satisfied" 7290 2 = "Somewhat satisfied" 7291 3 = "Neither satisfied nor dissatisfied" 7292 4 = "Somewhat dissatisfied" 7293 5 = "Very dissatisfied" 7294 ; NOTE: Format ESATISE has been output. 7295 VALUE elista (default=32) 7296 -1 = "Not in Universe" 7297 1 = "Yes" 7298 2 = "No" 7299 ; NOTE: Format ELISTA has been output. 7300 VALUE alista (default=32) 7301 0 = "Not imputed" 7302 1 = "Statistical imputation (hot deck)" 7303 2 = "Cold deck imputation" 7304 3 = "Logical imputation (derivation)" 7305 ; NOTE: Format ALISTA has been output. 7306 VALUE elistb (default=32) 7307 -1 = "Not in Universe" 7308 1 = "Yes" 7309 2 = "No" 7310 ; NOTE: Format ELISTB has been output. 7311 VALUE alistb (default=32) 7312 0 = "Not imputed" 7313 1 = "Statistical imputation (hot deck)" 7314 2 = "Cold deck imputation" 7315 3 = "Logical imputation (derivation)" 7316 ; NOTE: Format ALISTB has been output. 7317 VALUE elistc (default=32) 7318 -1 = "Not in Universe" 7319 1 = "Yes" 7320 2 = "No" 7321 ; NOTE: Format ELISTC has been output. 141 The SAS System 11:54 Thursday, June 7, 2012 7322 VALUE alistc (default=32) 7323 0 = "Not imputed" 7324 1 = "Statistical imputation (hot deck)" 7325 2 = "Cold deck imputation" 7326 3 = "Logical imputation (derivation)" 7327 ; NOTE: Format ALISTC has been output. 7328 VALUE elistd (default=32) 7329 -1 = "Not in Universe" 7330 1 = "Yes" 7331 2 = "No" 7332 ; NOTE: Format ELISTD has been output. 7333 VALUE alistd (default=32) 7334 0 = "Not imputed" 7335 1 = "Statistical imputation (hot deck)" 7336 2 = "Cold deck imputation" 7337 3 = "Logical imputation (derivation)" 7338 ; NOTE: Format ALISTD has been output. 7339 VALUE eliste (default=32) 7340 -1 = "Not in Universe" 7341 1 = "Yes" 7342 2 = "No" 7343 ; NOTE: Format ELISTE has been output. 7344 VALUE aliste (default=32) 7345 0 = "Not imputed" 7346 1 = "Statistical imputation (hot deck)" 7347 2 = "Cold deck imputation" 7348 3 = "Logical imputation (derivation)" 7349 ; NOTE: Format ALISTE has been output. 7350 VALUE eccunv2l (default=32) 7351 -1 = "Not in Universe" 7352 1 = "In universe" 7353 ; NOTE: Format ECCUNV2L has been output. 7354 VALUE $eccpnum (default=32) 7355 "-1" = "Not in Universe" 7356 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 7357 VALUE $eccpnum (default=32) 7358 "-1" = "Not in Universe" 7359 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 7360 VALUE $eccpnum (default=32) 7361 "-1" = "Not in Universe" 7362 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 7363 VALUE $eccpnum (default=32) 7364 "-1" = "Not in Universe" 7365 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 142 The SAS System 11:54 Thursday, June 7, 2012 7366 VALUE $eccpnum (default=32) 7367 "-1" = "Not in Universe" 7368 ; NOTE: Format $ECCPNUM is already on the library. NOTE: Format $ECCPNUM has been output. 7369 VALUE eccagef (default=32) 7370 -1 = "Not in Universe" 7371 ; NOTE: Format ECCAGEF has been output. 7372 VALUE eccageg (default=32) 7373 -1 = "Not in Universe" 7374 ; NOTE: Format ECCAGEG has been output. 7375 VALUE eccageh (default=32) 7376 -1 = "Not in Universe" 7377 ; NOTE: Format ECCAGEH has been output. 7378 VALUE eccagei (default=32) 7379 -1 = "Not in Universe" 7380 ; NOTE: Format ECCAGEI has been output. 7381 VALUE eccagej (default=32) 7382 -1 = "Not in Universe" 7383 ; NOTE: Format ECCAGEJ has been output. 7384 VALUE eckd01f (default=32) 7385 -1 = "Not in Universe" 7386 1 = "Yes" 7387 2 = "No" 7388 ; NOTE: Format ECKD01F has been output. 7389 VALUE eckd01g (default=32) 7390 -1 = "Not in Universe" 7391 1 = "Yes" 7392 2 = "No" 7393 ; NOTE: Format ECKD01G has been output. 7394 VALUE eckd01h (default=32) 7395 -1 = "Not in Universe" 7396 1 = "Yes" 7397 2 = "No" 7398 ; NOTE: Format ECKD01H has been output. 7399 VALUE eckd01i (default=32) 7400 -1 = "Not in Universe" 7401 1 = "Yes" 7402 2 = "No" 7403 ; NOTE: Format ECKD01I has been output. 7404 VALUE eckd01j (default=32) 7405 -1 = "Not in Universe" 7406 1 = "Yes" 7407 2 = "No" 7408 ; NOTE: Format ECKD01J has been output. 7409 VALUE eckd02f (default=32) 7410 -1 = "Not in Universe" 7411 1 = "Yes" 143 The SAS System 11:54 Thursday, June 7, 2012 7412 2 = "No" 7413 ; NOTE: Format ECKD02F has been output. 7414 VALUE eckd02g (default=32) 7415 -1 = "Not in Universe" 7416 1 = "Yes" 7417 2 = "No" 7418 ; NOTE: Format ECKD02G has been output. 7419 VALUE eckd02h (default=32) 7420 -1 = "Not in Universe" 7421 1 = "Yes" 7422 2 = "No" 7423 ; NOTE: Format ECKD02H has been output. 7424 VALUE eckd02i (default=32) 7425 -1 = "Not in Universe" 7426 1 = "Yes" 7427 2 = "No" 7428 ; NOTE: Format ECKD02I has been output. 7429 VALUE eckd02j (default=32) 7430 -1 = "Not in Universe" 7431 1 = "Yes" 7432 2 = "No" 7433 ; NOTE: Format ECKD02J has been output. 7434 VALUE eckd03f (default=32) 7435 -1 = "Not in Universe" 7436 1 = "Yes" 7437 2 = "No" 7438 ; NOTE: Format ECKD03F has been output. 7439 VALUE eckd03g (default=32) 7440 -1 = "Not in Universe" 7441 1 = "Yes" 7442 2 = "No" 7443 ; NOTE: Format ECKD03G has been output. 7444 VALUE eckd03h (default=32) 7445 -1 = "Not in Universe" 7446 1 = "Yes" 7447 2 = "No" 7448 ; NOTE: Format ECKD03H has been output. 7449 VALUE eckd03i (default=32) 7450 -1 = "Not in Universe" 7451 1 = "Yes" 7452 2 = "No" 7453 ; NOTE: Format ECKD03I has been output. 7454 VALUE eckd03j (default=32) 7455 -1 = "Not in Universe" 7456 1 = "Yes" 7457 2 = "No" 7458 ; NOTE: Format ECKD03J has been output. 7459 VALUE eckd04f (default=32) 144 The SAS System 11:54 Thursday, June 7, 2012 7460 -1 = "Not in Universe" 7461 1 = "Yes" 7462 2 = "No" 7463 ; NOTE: Format ECKD04F has been output. 7464 VALUE eckd04g (default=32) 7465 -1 = "Not in Universe" 7466 1 = "Yes" 7467 2 = "No" 7468 ; NOTE: Format ECKD04G has been output. 7469 VALUE eckd04h (default=32) 7470 -1 = "Not in Universe" 7471 1 = "Yes" 7472 2 = "No" 7473 ; NOTE: Format ECKD04H has been output. 7474 VALUE eckd04i (default=32) 7475 -1 = "Not in Universe" 7476 1 = "Yes" 7477 2 = "No" 7478 ; NOTE: Format ECKD04I has been output. 7479 VALUE eckd04j (default=32) 7480 -1 = "Not in Universe" 7481 1 = "Yes" 7482 2 = "No" 7483 ; NOTE: Format ECKD04J has been output. 7484 VALUE eckd05f (default=32) 7485 -1 = "Not in Universe" 7486 1 = "Yes" 7487 2 = "No" 7488 ; NOTE: Format ECKD05F has been output. 7489 VALUE eckd05g (default=32) 7490 -1 = "Not in Universe" 7491 1 = "Yes" 7492 2 = "No" 7493 ; NOTE: Format ECKD05G has been output. 7494 VALUE eckd05h (default=32) 7495 -1 = "Not in Universe" 7496 1 = "Yes" 7497 2 = "No" 7498 ; NOTE: Format ECKD05H has been output. 7499 VALUE eckd05i (default=32) 7500 -1 = "Not in Universe" 7501 1 = "Yes" 7502 2 = "No" 7503 ; NOTE: Format ECKD05I has been output. 7504 VALUE eckd05j (default=32) 7505 -1 = "Not in Universe" 7506 1 = "Yes" 7507 2 = "No" 7508 ; 145 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format ECKD05J has been output. 7509 VALUE eckd06f (default=32) 7510 -1 = "Not in Universe" 7511 1 = "Yes" 7512 2 = "No" 7513 ; NOTE: Format ECKD06F has been output. 7514 VALUE eckd06g (default=32) 7515 -1 = "Not in Universe" 7516 1 = "Yes" 7517 2 = "No" 7518 ; NOTE: Format ECKD06G has been output. 7519 VALUE eckd06h (default=32) 7520 -1 = "Not in Universe" 7521 1 = "Yes" 7522 2 = "No" 7523 ; NOTE: Format ECKD06H has been output. 7524 VALUE eckd06i (default=32) 7525 -1 = "Not in Universe" 7526 1 = "Yes" 7527 2 = "No" 7528 ; NOTE: Format ECKD06I has been output. 7529 VALUE eckd06j (default=32) 7530 -1 = "Not in Universe" 7531 1 = "Yes" 7532 2 = "No" 7533 ; NOTE: Format ECKD06J has been output. 7534 VALUE eckd07f (default=32) 7535 -1 = "Not in Universe" 7536 1 = "Yes" 7537 2 = "No" 7538 ; NOTE: Format ECKD07F has been output. 7539 VALUE eckd07g (default=32) 7540 -1 = "Not in Universe" 7541 1 = "Yes" 7542 2 = "No" 7543 ; NOTE: Format ECKD07G has been output. 7544 VALUE eckd07h (default=32) 7545 -1 = "Not in Universe" 7546 1 = "Yes" 7547 2 = "No" 7548 ; NOTE: Format ECKD07H has been output. 7549 VALUE eckd07i (default=32) 7550 -1 = "Not in Universe" 7551 1 = "Yes" 7552 2 = "No" 7553 ; NOTE: Format ECKD07I has been output. 7554 VALUE eckd07j (default=32) 7555 -1 = "Not in Universe" 7556 1 = "Yes" 146 The SAS System 11:54 Thursday, June 7, 2012 7557 2 = "No" 7558 ; NOTE: Format ECKD07J has been output. 7559 VALUE eckd08f (default=32) 7560 -1 = "Not in Universe" 7561 1 = "Yes" 7562 2 = "No" 7563 ; NOTE: Format ECKD08F has been output. 7564 VALUE eckd08g (default=32) 7565 -1 = "Not in Universe" 7566 1 = "Yes" 7567 2 = "No" 7568 ; NOTE: Format ECKD08G has been output. 7569 VALUE eckd08h (default=32) 7570 -1 = "Not in Universe" 7571 1 = "Yes" 7572 2 = "No" 7573 ; NOTE: Format ECKD08H has been output. 7574 VALUE eckd08i (default=32) 7575 -1 = "Not in Universe" 7576 1 = "Yes" 7577 2 = "No" 7578 ; NOTE: Format ECKD08I has been output. 7579 VALUE eckd08j (default=32) 7580 -1 = "Not in Universe" 7581 1 = "Yes" 7582 2 = "No" 7583 ; NOTE: Format ECKD08J has been output. 7584 VALUE eckd09f (default=32) 7585 -1 = "Not in Universe" 7586 1 = "Yes" 7587 2 = "No" 7588 ; NOTE: Format ECKD09F has been output. 7589 VALUE eckd09g (default=32) 7590 -1 = "Not in Universe" 7591 1 = "Yes" 7592 2 = "No" 7593 ; NOTE: Format ECKD09G has been output. 7594 VALUE eckd09h (default=32) 7595 -1 = "Not in Universe" 7596 1 = "Yes" 7597 2 = "No" 7598 ; NOTE: Format ECKD09H has been output. 7599 VALUE eckd09i (default=32) 7600 -1 = "Not in Universe" 7601 1 = "Yes" 7602 2 = "No" 7603 ; NOTE: Format ECKD09I has been output. 7604 VALUE eckd09j (default=32) 147 The SAS System 11:54 Thursday, June 7, 2012 7605 -1 = "Not in Universe" 7606 1 = "Yes" 7607 2 = "No" 7608 ; NOTE: Format ECKD09J has been output. 7609 VALUE eckd10f (default=32) 7610 -1 = "Not in Universe" 7611 1 = "Yes" 7612 2 = "No" 7613 ; NOTE: Format ECKD10F has been output. 7614 VALUE eckd10g (default=32) 7615 -1 = "Not in Universe" 7616 1 = "Yes" 7617 2 = "No" 7618 ; NOTE: Format ECKD10G has been output. 7619 VALUE eckd10h (default=32) 7620 -1 = "Not in Universe" 7621 1 = "Yes" 7622 2 = "No" 7623 ; NOTE: Format ECKD10H has been output. 7624 VALUE eckd10i (default=32) 7625 -1 = "Not in Universe" 7626 1 = "Yes" 7627 2 = "No" 7628 ; NOTE: Format ECKD10I has been output. 7629 VALUE eckd10j (default=32) 7630 -1 = "Not in Universe" 7631 1 = "Yes" 7632 2 = "No" 7633 ; NOTE: Format ECKD10J has been output. 7634 VALUE eckd11f (default=32) 7635 -1 = "Not in Universe" 7636 1 = "Yes" 7637 2 = "No" 7638 ; NOTE: Format ECKD11F has been output. 7639 VALUE eckd11g (default=32) 7640 -1 = "Not in Universe" 7641 1 = "Yes" 7642 2 = "No" 7643 ; NOTE: Format ECKD11G has been output. 7644 VALUE eckd11h (default=32) 7645 -1 = "Not in Universe" 7646 1 = "Yes" 7647 2 = "No" 7648 ; NOTE: Format ECKD11H has been output. 7649 VALUE eckd11i (default=32) 7650 -1 = "Not in Universe" 7651 1 = "Yes" 7652 2 = "No" 7653 ; 148 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format ECKD11I has been output. 7654 VALUE eckd11j (default=32) 7655 -1 = "Not in Universe" 7656 1 = "Yes" 7657 2 = "No" 7658 ; NOTE: Format ECKD11J has been output. 7659 VALUE eckd12f (default=32) 7660 -1 = "Not in Universe" 7661 1 = "Yes" 7662 2 = "No" 7663 ; NOTE: Format ECKD12F has been output. 7664 VALUE eckd12g (default=32) 7665 -1 = "Not in Universe" 7666 1 = "Yes" 7667 2 = "No" 7668 ; NOTE: Format ECKD12G has been output. 7669 VALUE eckd12h (default=32) 7670 -1 = "Not in Universe" 7671 1 = "Yes" 7672 2 = "No" 7673 ; NOTE: Format ECKD12H has been output. 7674 VALUE eckd12i (default=32) 7675 -1 = "Not in Universe" 7676 1 = "Yes" 7677 2 = "No" 7678 ; NOTE: Format ECKD12I has been output. 7679 VALUE eckd12j (default=32) 7680 -1 = "Not in Universe" 7681 1 = "Yes" 7682 2 = "No" 7683 ; NOTE: Format ECKD12J has been output. 7684 VALUE eckd13f (default=32) 7685 -1 = "Not in Universe" 7686 1 = "Yes" 7687 2 = "No" 7688 ; NOTE: Format ECKD13F has been output. 7689 VALUE eckd13g (default=32) 7690 -1 = "Not in Universe" 7691 1 = "Yes" 7692 2 = "No" 7693 ; NOTE: Format ECKD13G has been output. 7694 VALUE eckd13h (default=32) 7695 -1 = "Not in Universe" 7696 1 = "Yes" 7697 2 = "No" 7698 ; NOTE: Format ECKD13H has been output. 7699 VALUE eckd13i (default=32) 7700 -1 = "Not in Universe" 7701 1 = "Yes" 149 The SAS System 11:54 Thursday, June 7, 2012 7702 2 = "No" 7703 ; NOTE: Format ECKD13I has been output. 7704 VALUE eckd13j (default=32) 7705 -1 = "Not in Universe" 7706 1 = "Yes" 7707 2 = "No" 7708 ; NOTE: Format ECKD13J has been output. 7709 VALUE accaref (default=32) 7710 0 = "Not imputed" 7711 1 = "Statistical imputation (hot deck)" 7712 2 = "Cold deck imputation" 7713 3 = "Logical imputation (derivation)" 7714 ; NOTE: Format ACCAREF has been output. 7715 VALUE accareg (default=32) 7716 0 = "Not imputed" 7717 1 = "Statistical imputation (hot deck)" 7718 2 = "Cold deck imputation" 7719 3 = "Logical imputation (derivation)" 7720 ; NOTE: Format ACCAREG has been output. 7721 VALUE accareh (default=32) 7722 0 = "Not imputed" 7723 1 = "Statistical imputation (hot deck)" 7724 2 = "Cold deck imputation" 7725 3 = "Logical imputation (derivation)" 7726 ; NOTE: Format ACCAREH has been output. 7727 VALUE accarei (default=32) 7728 0 = "Not imputed" 7729 1 = "Statistical imputation (hot deck)" 7730 2 = "Cold deck imputation" 7731 3 = "Logical imputation (derivation)" 7732 ; NOTE: Format ACCAREI has been output. 7733 VALUE accarej (default=32) 7734 0 = "Not imputed" 7735 1 = "Statistical imputation (hot deck)" 7736 2 = "Cold deck imputation" 7737 3 = "Logical imputation (derivation)" 7738 ; NOTE: Format ACCAREJ has been output. 7739 VALUE ewheparf (default=32) 7740 -1 = "Not in Universe" 7741 1 = "Child's home" 7742 2 = "Other parent's home (parent" 7743 3 = "Another person's home" 7744 4 = "Someplace else" 7745 ; NOTE: Format EWHEPARF has been output. 7746 VALUE awheparf (default=32) 7747 0 = "Not imputed" 7748 1 = "Statistical imputation (hot deck)" 7749 2 = "Cold deck imputation" 7750 3 = "Logical imputation (derivation)" 7751 ; 150 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AWHEPARF has been output. 7752 VALUE ewheparg (default=32) 7753 -1 = "Not in Universe" 7754 1 = "Child's home" 7755 2 = "Other parent's home (parent" 7756 3 = "Another person's home" 7757 4 = "Someplace else" 7758 ; NOTE: Format EWHEPARG has been output. 7759 VALUE awheparg (default=32) 7760 0 = "Not imputed" 7761 1 = "Statistical imputation (hot deck)" 7762 2 = "Cold deck imputation" 7763 3 = "Logical imputation (derivation)" 7764 ; NOTE: Format AWHEPARG has been output. 7765 VALUE ewheparh (default=32) 7766 -1 = "Not in Universe" 7767 1 = "Child's home" 7768 2 = "Other parent's home (parent" 7769 3 = "Another person's home" 7770 4 = "Someplace else" 7771 ; NOTE: Format EWHEPARH has been output. 7772 VALUE awheparh (default=32) 7773 0 = "Not imputed" 7774 1 = "Statistical imputation (hot deck)" 7775 2 = "Cold deck imputation" 7776 3 = "Logical imputation (derivation)" 7777 ; NOTE: Format AWHEPARH has been output. 7778 VALUE ewhepari (default=32) 7779 -1 = "Not in Universe" 7780 1 = "Child's home" 7781 2 = "Other parent's home (parent" 7782 3 = "Another person's home" 7783 4 = "Someplace else" 7784 ; NOTE: Format EWHEPARI has been output. 7785 VALUE awhepari (default=32) 7786 0 = "Not imputed" 7787 1 = "Statistical imputation (hot deck)" 7788 2 = "Cold deck imputation" 7789 3 = "Logical imputation (derivation)" 7790 ; NOTE: Format AWHEPARI has been output. 7791 VALUE ewheparj (default=32) 7792 -1 = "Not in Universe" 7793 1 = "Child's home" 7794 2 = "Other parent's home (parent" 7795 3 = "Another person's home" 7796 4 = "Someplace else" 7797 ; NOTE: Format EWHEPARJ has been output. 7798 VALUE awheparj (default=32) 7799 0 = "Not imputed" 7800 1 = "Statistical imputation (hot deck)" 7801 2 = "Cold deck imputation" 151 The SAS System 11:54 Thursday, June 7, 2012 7802 3 = "Logical imputation (derivation)" 7803 ; NOTE: Format AWHEPARJ has been output. 7804 VALUE eparhr1f (default=32) 7805 -1 = "Not in Universe" 7806 ; NOTE: Format EPARHR1F has been output. 7807 VALUE aparhr1f (default=32) 7808 0 = "Not imputed" 7809 1 = "Statistical imputation (hot deck)" 7810 2 = "Cold deck imputation" 7811 3 = "Logical imputation (derivation)" 7812 ; NOTE: Format APARHR1F has been output. 7813 VALUE eparhr1g (default=32) 7814 -1 = "Not in Universe" 7815 ; NOTE: Format EPARHR1G has been output. 7816 VALUE aparhr1g (default=32) 7817 0 = "Not imputed" 7818 1 = "Statistical imputation (hot deck)" 7819 2 = "Cold deck imputation" 7820 3 = "Logical imputation (derivation)" 7821 ; NOTE: Format APARHR1G has been output. 7822 VALUE eparhr1h (default=32) 7823 -1 = "Not in Universe" 7824 ; NOTE: Format EPARHR1H has been output. 7825 VALUE aparhr1h (default=32) 7826 0 = "Not imputed" 7827 1 = "Statistical imputation (hot deck)" 7828 2 = "Cold deck imputation" 7829 3 = "Logical imputation (derivation)" 7830 ; NOTE: Format APARHR1H has been output. 7831 VALUE eparhr1i (default=32) 7832 -1 = "Not in Universe" 7833 ; NOTE: Format EPARHR1I has been output. 7834 VALUE aparhr1i (default=32) 7835 0 = "Not imputed" 7836 1 = "Statistical imputation (hot deck)" 7837 2 = "Cold deck imputation" 7838 3 = "Logical imputation (derivation)" 7839 ; NOTE: Format APARHR1I has been output. 7840 VALUE eparhr1j (default=32) 7841 -1 = "Not in Universe" 7842 ; NOTE: Format EPARHR1J has been output. 7843 VALUE aparhr1j (default=32) 7844 0 = "Not imputed" 7845 1 = "Statistical imputation (hot deck)" 7846 2 = "Cold deck imputation" 7847 3 = "Logical imputation (derivation)" 7848 ; NOTE: Format APARHR1J has been output. 152 The SAS System 11:54 Thursday, June 7, 2012 7849 VALUE eparhr2f (default=32) 7850 -1 = "Not in Universe" 7851 ; NOTE: Format EPARHR2F has been output. 7852 VALUE aparhr2f (default=32) 7853 0 = "Not imputed" 7854 1 = "Statistical imputation (hot deck)" 7855 2 = "Cold deck imputation" 7856 3 = "Logical imputation (derivation)" 7857 ; NOTE: Format APARHR2F has been output. 7858 VALUE eparhr2g (default=32) 7859 -1 = "Not in Universe" 7860 ; NOTE: Format EPARHR2G has been output. 7861 VALUE aparhr2g (default=32) 7862 0 = "Not imputed" 7863 1 = "Statistical imputation (hot deck)" 7864 2 = "Cold deck imputation" 7865 3 = "Logical imputation (derivation)" 7866 ; NOTE: Format APARHR2G has been output. 7867 VALUE eparhr2h (default=32) 7868 -1 = "Not in Universe" 7869 ; NOTE: Format EPARHR2H has been output. 7870 VALUE aparhr2h (default=32) 7871 0 = "Not imputed" 7872 1 = "Statistical imputation (hot deck)" 7873 2 = "Cold deck imputation" 7874 3 = "Logical imputation (derivation)" 7875 ; NOTE: Format APARHR2H has been output. 7876 VALUE eparhr2i (default=32) 7877 -1 = "Not in Universe" 7878 ; NOTE: Format EPARHR2I has been output. 7879 VALUE aparhr2i (default=32) 7880 0 = "Not imputed" 7881 1 = "Statistical imputation (hot deck)" 7882 2 = "Cold deck imputation" 7883 3 = "Logical imputation (derivation)" 7884 ; NOTE: Format APARHR2I has been output. 7885 VALUE eparhr2j (default=32) 7886 -1 = "Not in Universe" 7887 ; NOTE: Format EPARHR2J has been output. 7888 VALUE aparhr2j (default=32) 7889 0 = "Not imputed" 7890 1 = "Statistical imputation (hot deck)" 7891 2 = "Cold deck imputation" 7892 3 = "Logical imputation (derivation)" 7893 ; NOTE: Format APARHR2J has been output. 7894 VALUE ewhselff (default=32) 7895 -1 = "Not in Universe" 7896 1 = "In the person's home" 153 The SAS System 11:54 Thursday, June 7, 2012 7897 2 = "At work or at school" 7898 3 = "Someplace else" 7899 ; NOTE: Format EWHSELFF has been output. 7900 VALUE awhselff (default=32) 7901 0 = "Not imputed" 7902 1 = "Statistical imputation (hot deck)" 7903 2 = "Cold deck imputation" 7904 3 = "Logical imputation (derivation)" 7905 ; NOTE: Format AWHSELFF has been output. 7906 VALUE ewhselfg (default=32) 7907 -1 = "Not in Universe" 7908 1 = "In the person's home" 7909 2 = "At work or at school" 7910 3 = "Someplace else" 7911 ; NOTE: Format EWHSELFG has been output. 7912 VALUE awhselfg (default=32) 7913 0 = "Not imputed" 7914 1 = "Statistical imputation (hot deck)" 7915 2 = "Cold deck imputation" 7916 3 = "Logical imputation (derivation)" 7917 ; NOTE: Format AWHSELFG has been output. 7918 VALUE ewhselfh (default=32) 7919 -1 = "Not in Universe" 7920 1 = "In the person's home" 7921 2 = "At work or at school" 7922 3 = "Someplace else" 7923 ; NOTE: Format EWHSELFH has been output. 7924 VALUE awhselfh (default=32) 7925 0 = "Not imputed" 7926 1 = "Statistical imputation (hot deck)" 7927 2 = "Cold deck imputation" 7928 3 = "Logical imputation (derivation)" 7929 ; NOTE: Format AWHSELFH has been output. 7930 VALUE ewhselfi (default=32) 7931 -1 = "Not in Universe" 7932 1 = "In the person's home" 7933 2 = "At work or at school" 7934 3 = "Someplace else" 7935 ; NOTE: Format EWHSELFI has been output. 7936 VALUE awhselfi (default=32) 7937 0 = "Not imputed" 7938 1 = "Statistical imputation (hot deck)" 7939 2 = "Cold deck imputation" 7940 3 = "Logical imputation (derivation)" 7941 ; NOTE: Format AWHSELFI has been output. 7942 VALUE ewhselfj (default=32) 7943 -1 = "Not in Universe" 7944 1 = "In the person's home" 7945 2 = "At work or at school" 7946 3 = "Someplace else" 154 The SAS System 11:54 Thursday, June 7, 2012 7947 ; NOTE: Format EWHSELFJ has been output. 7948 VALUE awhselfj (default=32) 7949 0 = "Not imputed" 7950 1 = "Statistical imputation (hot deck)" 7951 2 = "Cold deck imputation" 7952 3 = "Logical imputation (derivation)" 7953 ; NOTE: Format AWHSELFJ has been output. 7954 VALUE eselfhrf (default=32) 7955 -1 = "Not in Universe" 7956 ; NOTE: Format ESELFHRF has been output. 7957 VALUE aselfhrf (default=32) 7958 0 = "Not imputed" 7959 1 = "Statistical imputation (hot deck)" 7960 2 = "Cold deck imputation" 7961 3 = "Logical imputation (derivation)" 7962 ; NOTE: Format ASELFHRF has been output. 7963 VALUE eselfhrg (default=32) 7964 -1 = "Not in Universe" 7965 ; NOTE: Format ESELFHRG has been output. 7966 VALUE aselfhrg (default=32) 7967 0 = "Not imputed" 7968 1 = "Statistical imputation (hot deck)" 7969 2 = "Cold deck imputation" 7970 3 = "Logical imputation (derivation)" 7971 ; NOTE: Format ASELFHRG has been output. 7972 VALUE eselfhrh (default=32) 7973 -1 = "Not in Universe" 7974 ; NOTE: Format ESELFHRH has been output. 7975 VALUE aselfhrh (default=32) 7976 0 = "Not imputed" 7977 1 = "Statistical imputation (hot deck)" 7978 2 = "Cold deck imputation" 7979 3 = "Logical imputation (derivation)" 7980 ; NOTE: Format ASELFHRH has been output. 7981 VALUE eselfhri (default=32) 7982 -1 = "Not in Universe" 7983 ; NOTE: Format ESELFHRI has been output. 7984 VALUE aselfhri (default=32) 7985 0 = "Not imputed" 7986 1 = "Statistical imputation (hot deck)" 7987 2 = "Cold deck imputation" 7988 3 = "Logical imputation (derivation)" 7989 ; NOTE: Format ASELFHRI has been output. 7990 VALUE eselfhrj (default=32) 7991 -1 = "Not in Universe" 7992 ; NOTE: Format ESELFHRJ has been output. 7993 VALUE aselfhrj (default=32) 155 The SAS System 11:54 Thursday, June 7, 2012 7994 0 = "Not imputed" 7995 1 = "Statistical imputation (hot deck)" 7996 2 = "Cold deck imputation" 7997 3 = "Logical imputation (derivation)" 7998 ; NOTE: Format ASELFHRJ has been output. 7999 VALUE ewhsb15f (default=32) 8000 -1 = "Not in Universe" 8001 1 = "Child's home" 8002 2 = "Other home" 8003 3 = "Someplace else" 8004 ; NOTE: Format EWHSB15F has been output. 8005 VALUE awhsb15f (default=32) 8006 0 = "Not imputed" 8007 1 = "Statistical imputation (hot deck)" 8008 2 = "Cold deck imputation" 8009 3 = "Logical imputation derivation" 8010 ; NOTE: Format AWHSB15F has been output. 8011 VALUE ewhsb15g (default=32) 8012 -1 = "Not in Universe" 8013 1 = "Child's home" 8014 2 = "Other home" 8015 3 = "Someplace else" 8016 ; NOTE: Format EWHSB15G has been output. 8017 VALUE awhsb15g (default=32) 8018 0 = "Not imputed" 8019 1 = "Statistical imputation (hot deck)" 8020 2 = "Cold deck imputation" 8021 3 = "Logical imputation derivation" 8022 ; NOTE: Format AWHSB15G has been output. 8023 VALUE ewhsb15h (default=32) 8024 -1 = "Not in Universe" 8025 1 = "Child's home" 8026 2 = "Other home" 8027 3 = "Someplace else" 8028 ; NOTE: Format EWHSB15H has been output. 8029 VALUE awhsb15h (default=32) 8030 0 = "Not imputed" 8031 1 = "Statistical imputation (hot deck)" 8032 2 = "Cold deck imputation" 8033 3 = "Logical imputation derivation" 8034 ; NOTE: Format AWHSB15H has been output. 8035 VALUE ewhsb15i (default=32) 8036 -1 = "Not in Universe" 8037 1 = "Child's home" 8038 2 = "Other home" 8039 3 = "Someplace else" 8040 ; NOTE: Format EWHSB15I has been output. 8041 VALUE awhsb15i (default=32) 8042 0 = "Not imputed" 8043 1 = "Statistical imputation (hot deck)" 156 The SAS System 11:54 Thursday, June 7, 2012 8044 2 = "Cold deck imputation" 8045 3 = "Logical imputation derivation" 8046 ; NOTE: Format AWHSB15I has been output. 8047 VALUE ewhsb15j (default=32) 8048 -1 = "Not in Universe" 8049 1 = "Child's home" 8050 2 = "Other home" 8051 3 = "Someplace else" 8052 ; NOTE: Format EWHSB15J has been output. 8053 VALUE awhsb15j (default=32) 8054 0 = "Not imputed" 8055 1 = "Statistical imputation (hot deck)" 8056 2 = "Cold deck imputation" 8057 3 = "Logical imputation derivation" 8058 ; NOTE: Format AWHSB15J has been output. 8059 VALUE ewhsbhrf (default=32) 8060 -1 = "Not in Universe" 8061 ; NOTE: Format EWHSBHRF has been output. 8062 VALUE awhsbhrf (default=32) 8063 0 = "Not imputed" 8064 1 = "Statistical imputation (hot deck)" 8065 2 = "Cold deck imputation" 8066 3 = "Logical imputation (derivation)" 8067 ; NOTE: Format AWHSBHRF has been output. 8068 VALUE ewhsbhrg (default=32) 8069 -1 = "Not in Universe" 8070 ; NOTE: Format EWHSBHRG has been output. 8071 VALUE awhsbhrg (default=32) 8072 0 = "Not imputed" 8073 1 = "Statistical imputation (hot deck)" 8074 2 = "Cold deck imputation" 8075 3 = "Logical imputation (derivation)" 8076 ; NOTE: Format AWHSBHRG has been output. 8077 VALUE ewhsbhrh (default=32) 8078 -1 = "Not in Universe" 8079 ; NOTE: Format EWHSBHRH has been output. 8080 VALUE awhsbhrh (default=32) 8081 0 = "Not imputed" 8082 1 = "Statistical imputation (hot deck)" 8083 2 = "Cold deck imputation" 8084 3 = "Logical imputation (derivation)" 8085 ; NOTE: Format AWHSBHRH has been output. 8086 VALUE ewhsbhri (default=32) 8087 -1 = "Not in Universe" 8088 ; NOTE: Format EWHSBHRI has been output. 8089 VALUE awhsbhri (default=32) 8090 0 = "Not imputed" 8091 1 = "Statistical imputation (hot deck)" 157 The SAS System 11:54 Thursday, June 7, 2012 8092 2 = "Cold deck imputation" 8093 3 = "Logical imputation (derivation)" 8094 ; NOTE: Format AWHSBHRI has been output. 8095 VALUE ewhsbhrj (default=32) 8096 -1 = "Not in Universe" 8097 ; NOTE: Format EWHSBHRJ has been output. 8098 VALUE awhsbhrj (default=32) 8099 0 = "Not imputed" 8100 1 = "Statistical imputation (hot deck)" 8101 2 = "Cold deck imputation" 8102 3 = "Logical imputation (derivation)" 8103 ; NOTE: Format AWHSBHRJ has been output. 8104 VALUE ehrsb15f (default=32) 8105 -1 = "Not in Universe" 8106 ; NOTE: Format EHRSB15F has been output. 8107 VALUE ahrsb15f (default=32) 8108 0 = "Not imputed" 8109 1 = "Statistical imputation (hot deck)" 8110 2 = "Cold deck imputation" 8111 3 = "Logical imputation (derivation)" 8112 ; NOTE: Format AHRSB15F has been output. 8113 VALUE ehrsb15g (default=32) 8114 -1 = "Not in Universe" 8115 ; NOTE: Format EHRSB15G has been output. 8116 VALUE ahrsb15g (default=32) 8117 0 = "Not imputed" 8118 1 = "Statistical imputation (hot deck)" 8119 2 = "Cold deck imputation" 8120 3 = "Logical imputation (derivation)" 8121 ; NOTE: Format AHRSB15G has been output. 8122 VALUE ehrsb15h (default=32) 8123 -1 = "Not in Universe" 8124 ; NOTE: Format EHRSB15H has been output. 8125 VALUE ahrsb15h (default=32) 8126 0 = "Not imputed" 8127 1 = "Statistical imputation (hot deck)" 8128 2 = "Cold deck imputation" 8129 3 = "Logical imputation (derivation)" 8130 ; NOTE: Format AHRSB15H has been output. 8131 VALUE ehrsb15i (default=32) 8132 -1 = "Not in Universe" 8133 ; NOTE: Format EHRSB15I has been output. 8134 VALUE ahrsb15i (default=32) 8135 0 = "Not imputed" 8136 1 = "Statistical imputation (hot deck)" 8137 2 = "Cold deck imputation" 8138 3 = "Logical imputation (derivation)" 8139 ; 158 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AHRSB15I has been output. 8140 VALUE ehrsb15j (default=32) 8141 -1 = "Not in Universe" 8142 ; NOTE: Format EHRSB15J has been output. 8143 VALUE ahrsb15j (default=32) 8144 0 = "Not imputed" 8145 1 = "Statistical imputation (hot deck)" 8146 2 = "Cold deck imputation" 8147 3 = "Logical imputation (derivation)" 8148 ; NOTE: Format AHRSB15J has been output. 8149 VALUE ewhsb14f (default=32) 8150 -1 = "Not in Universe" 8151 1 = "Child's home" 8152 2 = "Other home" 8153 3 = "Someplace else" 8154 ; NOTE: Format EWHSB14F has been output. 8155 VALUE awhsb14f (default=32) 8156 0 = "Not imputed" 8157 1 = "Statistical imputation (hot deck)" 8158 2 = "Cold deck imputation" 8159 3 = "Logical imputation (derivation)" 8160 ; NOTE: Format AWHSB14F has been output. 8161 VALUE ewhsb14g (default=32) 8162 -1 = "Not in Universe" 8163 1 = "Child's home" 8164 2 = "Other home" 8165 3 = "Someplace else" 8166 ; NOTE: Format EWHSB14G has been output. 8167 VALUE awhsb14g (default=32) 8168 0 = "Not imputed" 8169 1 = "Statistical imputation (hot deck)" 8170 2 = "Cold deck imputation" 8171 3 = "Logical imputation (derivation)" 8172 ; NOTE: Format AWHSB14G has been output. 8173 VALUE ewhsb14h (default=32) 8174 -1 = "Not in Universe" 8175 1 = "Child's home" 8176 2 = "Other home" 8177 3 = "Someplace else" 8178 ; NOTE: Format EWHSB14H has been output. 8179 VALUE awhsb14h (default=32) 8180 0 = "Not imputed" 8181 1 = "Statistical imputation (hot deck)" 8182 2 = "Cold deck imputation" 8183 3 = "Logical imputation (derivation)" 8184 ; NOTE: Format AWHSB14H has been output. 8185 VALUE ewhsb14i (default=32) 8186 -1 = "Not in Universe" 8187 1 = "Child's home" 8188 2 = "Other home" 159 The SAS System 11:54 Thursday, June 7, 2012 8189 3 = "Someplace else" 8190 ; NOTE: Format EWHSB14I has been output. 8191 VALUE awhsb14i (default=32) 8192 0 = "Not imputed" 8193 1 = "Statistical imputation (hot deck)" 8194 2 = "Cold deck imputation" 8195 3 = "Logical imputation (derivation)" 8196 ; NOTE: Format AWHSB14I has been output. 8197 VALUE ewhsb14j (default=32) 8198 -1 = "Not in Universe" 8199 1 = "Child's home" 8200 2 = "Other home" 8201 3 = "Someplace else" 8202 ; NOTE: Format EWHSB14J has been output. 8203 VALUE awhsb14j (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 AWHSB14J has been output. 8209 VALUE esb14hrf (default=32) 8210 -1 = "Not in Universe" 8211 ; NOTE: Format ESB14HRF has been output. 8212 VALUE asb14hrf (default=32) 8213 0 = "Not imputed" 8214 1 = "Statistical imputation (hot deck)" 8215 2 = "Cold deck imputation" 8216 3 = "Logical imputation (derivation)" 8217 ; NOTE: Format ASB14HRF has been output. 8218 VALUE esb14hrg (default=32) 8219 -1 = "Not in Universe" 8220 ; NOTE: Format ESB14HRG has been output. 8221 VALUE asb14hrg (default=32) 8222 0 = "Not imputed" 8223 1 = "Statistical imputation (hot deck)" 8224 2 = "Cold deck imputation" 8225 3 = "Logical imputation (derivation)" 8226 ; NOTE: Format ASB14HRG has been output. 8227 VALUE esb14hrh (default=32) 8228 -1 = "Not in Universe" 8229 ; NOTE: Format ESB14HRH has been output. 8230 VALUE asb14hrh (default=32) 8231 0 = "Not imputed" 8232 1 = "Statistical imputation (hot deck)" 8233 2 = "Cold deck imputation" 8234 3 = "Logical imputation (derivation)" 8235 ; NOTE: Format ASB14HRH has been output. 8236 VALUE esb14hri (default=32) 160 The SAS System 11:54 Thursday, June 7, 2012 8237 -1 = "Not in Universe" 8238 ; NOTE: Format ESB14HRI has been output. 8239 VALUE asb14hri (default=32) 8240 0 = "Not imputed" 8241 1 = "Statistical imputation (hot deck)" 8242 2 = "Cold deck imputation" 8243 3 = "Logical imputation (derivation)" 8244 ; NOTE: Format ASB14HRI has been output. 8245 VALUE esb14hrj (default=32) 8246 -1 = "Not in Universe" 8247 ; NOTE: Format ESB14HRJ has been output. 8248 VALUE asb14hrj (default=32) 8249 0 = "Not imputed" 8250 1 = "Statistical imputation (hot deck)" 8251 2 = "Cold deck imputation" 8252 3 = "Logical imputation (derivation)" 8253 ; NOTE: Format ASB14HRJ has been output. 8254 VALUE ehrsb14f (default=32) 8255 -1 = "Not in Universe" 8256 ; NOTE: Format EHRSB14F has been output. 8257 VALUE ahrsb14f (default=32) 8258 0 = "Not imputed" 8259 1 = "Statistical imputation (hot deck)" 8260 2 = "Cold deck imputation" 8261 3 = "Logical imputation (derivation)" 8262 ; NOTE: Format AHRSB14F has been output. 8263 VALUE ehrsb14g (default=32) 8264 -1 = "Not in Universe" 8265 ; NOTE: Format EHRSB14G has been output. 8266 VALUE ahrsb14g (default=32) 8267 0 = "Not imputed" 8268 1 = "Statistical imputation (hot deck)" 8269 2 = "Cold deck imputation" 8270 3 = "Logical imputation (derivation)" 8271 ; NOTE: Format AHRSB14G has been output. 8272 VALUE ehrsb14h (default=32) 8273 -1 = "Not in Universe" 8274 ; NOTE: Format EHRSB14H has been output. 8275 VALUE ahrsb14h (default=32) 8276 0 = "Not imputed" 8277 1 = "Statistical imputation (hot deck)" 8278 2 = "Cold deck imputation" 8279 3 = "Logical imputation (derivation)" 8280 ; NOTE: Format AHRSB14H has been output. 8281 VALUE ehrsb14i (default=32) 8282 -1 = "Not in Universe" 8283 ; NOTE: Format EHRSB14I has been output. 161 The SAS System 11:54 Thursday, June 7, 2012 8284 VALUE ahrsb14i (default=32) 8285 0 = "Not imputed" 8286 1 = "Statistical imputation (hot deck)" 8287 2 = "Cold deck imputation" 8288 3 = "Logical imputation (derivation)" 8289 ; NOTE: Format AHRSB14I has been output. 8290 VALUE ehrsb14j (default=32) 8291 -1 = "Not in Universe" 8292 ; NOTE: Format EHRSB14J has been output. 8293 VALUE ahrsb14j (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 AHRSB14J has been output. 8299 VALUE ewhgranf (default=32) 8300 -1 = "Not in Universe" 8301 1 = "Child's home" 8302 2 = "Grandparent's home" 8303 3 = "Someplace else" 8304 ; NOTE: Format EWHGRANF has been output. 8305 VALUE awhgranf (default=32) 8306 0 = "Not imputed" 8307 1 = "Statistical imputation (hot deck)" 8308 2 = "Cold deck imputation" 8309 3 = "Logical imputation (derivation)" 8310 ; NOTE: Format AWHGRANF has been output. 8311 VALUE ewhgrang (default=32) 8312 -1 = "Not in Universe" 8313 1 = "Child's home" 8314 2 = "Grandparent's home" 8315 3 = "Someplace else" 8316 ; NOTE: Format EWHGRANG has been output. 8317 VALUE awhgrang (default=32) 8318 0 = "Not imputed" 8319 1 = "Statistical imputation (hot deck)" 8320 2 = "Cold deck imputation" 8321 3 = "Logical imputation (derivation)" 8322 ; NOTE: Format AWHGRANG has been output. 8323 VALUE ewhgranh (default=32) 8324 -1 = "Not in Universe" 8325 1 = "Child's home" 8326 2 = "Grandparent's home" 8327 3 = "Someplace else" 8328 ; NOTE: Format EWHGRANH has been output. 8329 VALUE awhgranh (default=32) 8330 0 = "Not imputed" 8331 1 = "Statistical imputation (hot deck)" 8332 2 = "Cold deck imputation" 8333 3 = "Logical imputation (derivation)" 162 The SAS System 11:54 Thursday, June 7, 2012 8334 ; NOTE: Format AWHGRANH has been output. 8335 VALUE ewhgrani (default=32) 8336 -1 = "Not in Universe" 8337 1 = "Child's home" 8338 2 = "Grandparent's home" 8339 3 = "Someplace else" 8340 ; NOTE: Format EWHGRANI has been output. 8341 VALUE awhgrani (default=32) 8342 0 = "Not imputed" 8343 1 = "Statistical imputation (hot deck)" 8344 2 = "Cold deck imputation" 8345 3 = "Logical imputation (derivation)" 8346 ; NOTE: Format AWHGRANI has been output. 8347 VALUE ewhgranj (default=32) 8348 -1 = "Not in Universe" 8349 1 = "Child's home" 8350 2 = "Grandparent's home" 8351 3 = "Someplace else" 8352 ; NOTE: Format EWHGRANJ has been output. 8353 VALUE awhgranj (default=32) 8354 0 = "Not imputed" 8355 1 = "Statistical imputation (hot deck)" 8356 2 = "Cold deck imputation" 8357 3 = "Logical imputation (derivation)" 8358 ; NOTE: Format AWHGRANJ has been output. 8359 VALUE egranhrf (default=32) 8360 -1 = "Not in Universe" 8361 ; NOTE: Format EGRANHRF has been output. 8362 VALUE agranhrf (default=32) 8363 0 = "Not imputed" 8364 1 = "Statistical imputation (hot deck)" 8365 2 = "Cold deck imputation" 8366 3 = "Logical imputation (derivation)" 8367 ; NOTE: Format AGRANHRF has been output. 8368 VALUE egranhrg (default=32) 8369 -1 = "Not in Universe" 8370 ; NOTE: Format EGRANHRG has been output. 8371 VALUE agranhrg (default=32) 8372 0 = "Not imputed" 8373 1 = "Statistical imputation (hot deck)" 8374 2 = "Cold deck imputation" 8375 3 = "Logical imputation (derivation)" 8376 ; NOTE: Format AGRANHRG has been output. 8377 VALUE egranhrh (default=32) 8378 -1 = "Not in Universe" 8379 ; NOTE: Format EGRANHRH has been output. 8380 VALUE agranhrh (default=32) 8381 0 = "Not imputed" 163 The SAS System 11:54 Thursday, June 7, 2012 8382 1 = "Statistical imputation (hot deck)" 8383 2 = "Cold deck imputation" 8384 3 = "Logical imputation (derivation)" 8385 ; NOTE: Format AGRANHRH has been output. 8386 VALUE egranhri (default=32) 8387 -1 = "Not in Universe" 8388 ; NOTE: Format EGRANHRI has been output. 8389 VALUE agranhri (default=32) 8390 0 = "Not imputed" 8391 1 = "Statistical imputation (hot deck)" 8392 2 = "Cold deck imputation" 8393 3 = "Logical imputation (derivation)" 8394 ; NOTE: Format AGRANHRI has been output. 8395 VALUE egranhrj (default=32) 8396 -1 = "Not in Universe" 8397 ; NOTE: Format EGRANHRJ has been output. 8398 VALUE agranhrj (default=32) 8399 0 = "Not imputed" 8400 1 = "Statistical imputation (hot deck)" 8401 2 = "Cold deck imputation" 8402 3 = "Logical imputation (derivation)" 8403 ; NOTE: Format AGRANHRJ has been output. 8404 VALUE ehrgranf (default=32) 8405 -1 = "Not in Universe" 8406 ; NOTE: Format EHRGRANF has been output. 8407 VALUE ahrgranf (default=32) 8408 0 = "Not imputed" 8409 1 = "Statistical imputation (hot deck)" 8410 2 = "Cold deck imputation" 8411 3 = "Logical imputation (derivation)" 8412 ; NOTE: Format AHRGRANF has been output. 8413 VALUE ehrgrang (default=32) 8414 -1 = "Not in Universe" 8415 ; NOTE: Format EHRGRANG has been output. 8416 VALUE ahrgrang (default=32) 8417 0 = "Not imputed" 8418 1 = "Statistical imputation (hot deck)" 8419 2 = "Cold deck imputation" 8420 3 = "Logical imputation (derivation)" 8421 ; NOTE: Format AHRGRANG has been output. 8422 VALUE ehrgranh (default=32) 8423 -1 = "Not in Universe" 8424 ; NOTE: Format EHRGRANH has been output. 8425 VALUE ahrgranh (default=32) 8426 0 = "Not imputed" 8427 1 = "Statistical imputation (hot deck)" 8428 2 = "Cold deck imputation" 8429 3 = "Logical imputation (derivation)" 164 The SAS System 11:54 Thursday, June 7, 2012 8430 ; NOTE: Format AHRGRANH has been output. 8431 VALUE ehrgrani (default=32) 8432 -1 = "Not in Universe" 8433 ; NOTE: Format EHRGRANI has been output. 8434 VALUE ahrgrani (default=32) 8435 0 = "Not imputed" 8436 1 = "Statistical imputation (hot deck)" 8437 2 = "Cold deck imputation" 8438 3 = "Logical imputation (derivation)" 8439 ; NOTE: Format AHRGRANI has been output. 8440 VALUE ehrgranj (default=32) 8441 -1 = "Not in Universe" 8442 ; NOTE: Format EHRGRANJ has been output. 8443 VALUE ahrgranj (default=32) 8444 0 = "Not imputed" 8445 1 = "Statistical imputation (hot deck)" 8446 2 = "Cold deck imputation" 8447 3 = "Logical imputation (derivation)" 8448 ; NOTE: Format AHRGRANJ has been output. 8449 VALUE epaygraf (default=32) 8450 -1 = "Not in Universe" 8451 1 = "Yes" 8452 2 = "No" 8453 ; NOTE: Format EPAYGRAF has been output. 8454 VALUE apaygraf (default=32) 8455 0 = "Not imputed" 8456 1 = "Statistical imputation (hot deck)" 8457 2 = "Cold deck imputation" 8458 3 = "Logical imputation (derivation)" 8459 ; NOTE: Format APAYGRAF has been output. 8460 VALUE epaygrag (default=32) 8461 -1 = "Not in Universe" 8462 1 = "Yes" 8463 2 = "No" 8464 ; NOTE: Format EPAYGRAG has been output. 8465 VALUE apaygrag (default=32) 8466 0 = "Not imputed" 8467 1 = "Statistical imputation (hot deck)" 8468 2 = "Cold deck imputation" 8469 3 = "Logical imputation (derivation)" 8470 ; NOTE: Format APAYGRAG has been output. 8471 VALUE epaygrah (default=32) 8472 -1 = "Not in Universe" 8473 1 = "Yes" 8474 2 = "No" 8475 ; NOTE: Format EPAYGRAH has been output. 8476 VALUE apaygrah (default=32) 8477 0 = "Not imputed" 165 The SAS System 11:54 Thursday, June 7, 2012 8478 1 = "Statistical imputation (hot deck)" 8479 2 = "Cold deck imputation" 8480 3 = "Logical imputation (derivation)" 8481 ; NOTE: Format APAYGRAH has been output. 8482 VALUE epaygrai (default=32) 8483 -1 = "Not in Universe" 8484 1 = "Yes" 8485 2 = "No" 8486 ; NOTE: Format EPAYGRAI has been output. 8487 VALUE apaygrai (default=32) 8488 0 = "Not imputed" 8489 1 = "Statistical imputation (hot deck)" 8490 2 = "Cold deck imputation" 8491 3 = "Logical imputation (derivation)" 8492 ; NOTE: Format APAYGRAI has been output. 8493 VALUE epaygraj (default=32) 8494 -1 = "Not in Universe" 8495 1 = "Yes" 8496 2 = "No" 8497 ; NOTE: Format EPAYGRAJ has been output. 8498 VALUE apaygraj (default=32) 8499 0 = "Not imputed" 8500 1 = "Statistical imputation (hot deck)" 8501 2 = "Cold deck imputation" 8502 3 = "Logical imputation (derivation)" 8503 ; NOTE: Format APAYGRAJ has been output. 8504 VALUE tamtgraf (default=32) 8505 0 = "None or not in universe" 8506 ; NOTE: Format TAMTGRAF has been output. 8507 VALUE aamtgraf (default=32) 8508 0 = "Not imputed" 8509 1 = "Statistical imputation (hot deck)" 8510 2 = "Cold deck imputation" 8511 3 = "Logical imputation (derivation)" 8512 ; NOTE: Format AAMTGRAF has been output. 8513 VALUE tamtgrag (default=32) 8514 0 = "Suppressed" 8515 ; NOTE: Format TAMTGRAG has been output. 8516 VALUE aamtgrag (default=32) 8517 0 = "Suppressed" 8518 ; NOTE: Format AAMTGRAG has been output. 8519 VALUE tamtgrah (default=32) 8520 0 = "Suppressed" 8521 ; NOTE: Format TAMTGRAH has been output. 8522 VALUE aamtgrah (default=32) 8523 0 = "Suppressed" 8524 ; NOTE: Format AAMTGRAH has been output. 166 The SAS System 11:54 Thursday, June 7, 2012 8525 VALUE tamtgrai (default=32) 8526 0 = "Suppressed" 8527 ; NOTE: Format TAMTGRAI has been output. 8528 VALUE aamtgrai (default=32) 8529 0 = "Suppressed" 8530 ; NOTE: Format AAMTGRAI has been output. 8531 VALUE tamtgraj (default=32) 8532 0 = "Suppressed" 8533 ; NOTE: Format TAMTGRAJ has been output. 8534 VALUE aamtgraj (default=32) 8535 0 = "Suppressed" 8536 ; NOTE: Format AAMTGRAJ has been output. 8537 VALUE ewhrelaf (default=32) 8538 -1 = "Not in Universe" 8539 1 = "Child's home" 8540 2 = "Other relative's home" 8541 3 = "Someplace else" 8542 ; NOTE: Format EWHRELAF has been output. 8543 VALUE awhrelaf (default=32) 8544 0 = "Not imputed" 8545 1 = "Statistical imputation (hot deck)" 8546 2 = "Cold deck imputation" 8547 3 = "Logical imputation (derivation)" 8548 ; NOTE: Format AWHRELAF has been output. 8549 VALUE ewhrelag (default=32) 8550 -1 = "Not in Universe" 8551 1 = "Child's home" 8552 2 = "Other relative's home" 8553 3 = "Someplace else" 8554 ; NOTE: Format EWHRELAG has been output. 8555 VALUE awhrelag (default=32) 8556 0 = "Not imputed" 8557 1 = "Statistical imputation (hot deck)" 8558 2 = "Cold deck imputation" 8559 3 = "Logical imputation (derivation)" 8560 ; NOTE: Format AWHRELAG has been output. 8561 VALUE ewhrelah (default=32) 8562 -1 = "Not in Universe" 8563 1 = "Child's home" 8564 2 = "Other relative's home" 8565 3 = "Someplace else" 8566 ; NOTE: Format EWHRELAH has been output. 8567 VALUE awhrelah (default=32) 8568 0 = "Not imputed" 8569 1 = "Statistical imputation (hot deck)" 8570 2 = "Cold deck imputation" 8571 3 = "Logical imputation (derivation)" 8572 ; NOTE: Format AWHRELAH has been output. 167 The SAS System 11:54 Thursday, June 7, 2012 8573 VALUE ewhrelai (default=32) 8574 -1 = "Not in Universe" 8575 1 = "Child's home" 8576 2 = "Other relative's home" 8577 3 = "Someplace else" 8578 ; NOTE: Format EWHRELAI has been output. 8579 VALUE awhrelai (default=32) 8580 0 = "Not imputed" 8581 1 = "Statistical imputation (hot deck)" 8582 2 = "Cold deck imputation" 8583 3 = "Logical imputation (derivation)" 8584 ; NOTE: Format AWHRELAI has been output. 8585 VALUE ewhrelaj (default=32) 8586 -1 = "Not in Universe" 8587 1 = "Child's home" 8588 2 = "Other relative's home" 8589 3 = "Someplace else" 8590 ; NOTE: Format EWHRELAJ has been output. 8591 VALUE awhrelaj (default=32) 8592 0 = "Not imputed" 8593 1 = "Statistical imputation (hot deck)" 8594 2 = "Cold deck imputation" 8595 3 = "Logical imputation (derivation)" 8596 ; NOTE: Format AWHRELAJ has been output. 8597 VALUE erelhr1f (default=32) 8598 -1 = "Not in Universe" 8599 ; NOTE: Format ERELHR1F has been output. 8600 VALUE arelhr1f (default=32) 8601 0 = "Not imputed" 8602 1 = "Statistical imputation (hot deck)" 8603 2 = "Cold deck imputation" 8604 3 = "Logical imputation (derivation)" 8605 ; NOTE: Format ARELHR1F has been output. 8606 VALUE erelhr1g (default=32) 8607 -1 = "Not in Universe" 8608 ; NOTE: Format ERELHR1G has been output. 8609 VALUE arelhr1g (default=32) 8610 0 = "Not imputed" 8611 1 = "Statistical imputation (hot deck)" 8612 2 = "Cold deck imputation" 8613 3 = "Logical imputation (derivation)" 8614 ; NOTE: Format ARELHR1G has been output. 8615 VALUE erelhr1h (default=32) 8616 -1 = "Not in Universe" 8617 ; NOTE: Format ERELHR1H has been output. 8618 VALUE arelhr1h (default=32) 8619 0 = "Not imputed" 8620 1 = "Statistical imputation (hot deck)" 8621 2 = "Cold deck imputation" 168 The SAS System 11:54 Thursday, June 7, 2012 8622 3 = "Logical imputation (derivation)" 8623 ; NOTE: Format ARELHR1H has been output. 8624 VALUE erelhr1i (default=32) 8625 -1 = "Not in Universe" 8626 ; NOTE: Format ERELHR1I has been output. 8627 VALUE arelhr1i (default=32) 8628 0 = "Not imputed" 8629 1 = "Statistical imputation (hot deck)" 8630 2 = "Cold deck imputation" 8631 3 = "Logical imputation (derivation)" 8632 ; NOTE: Format ARELHR1I has been output. 8633 VALUE erelhr1j (default=32) 8634 -1 = "Not in Universe" 8635 ; NOTE: Format ERELHR1J has been output. 8636 VALUE arelhr1j (default=32) 8637 0 = "Not imputed" 8638 1 = "Statistical imputation (hot deck)" 8639 2 = "Cold deck imputation" 8640 3 = "Logical imputation (derivation)" 8641 ; NOTE: Format ARELHR1J has been output. 8642 VALUE erelhr2f (default=32) 8643 -1 = "Not in Universe" 8644 ; NOTE: Format ERELHR2F has been output. 8645 VALUE arelhr2f (default=32) 8646 0 = "Not imputed" 8647 1 = "Statistical imputation (hot deck)" 8648 2 = "Cold deck imputation" 8649 3 = "Logical imputation (derivation)" 8650 ; NOTE: Format ARELHR2F has been output. 8651 VALUE erelhr2g (default=32) 8652 -1 = "Not in Universe" 8653 ; NOTE: Format ERELHR2G has been output. 8654 VALUE arelhr2g (default=32) 8655 0 = "Not imputed" 8656 1 = "Statistical imputation (hot deck)" 8657 2 = "Cold deck imputation" 8658 3 = "Logical imputation (derivation)" 8659 ; NOTE: Format ARELHR2G has been output. 8660 VALUE erelhr2h (default=32) 8661 -1 = "Not in Universe" 8662 ; NOTE: Format ERELHR2H has been output. 8663 VALUE arelhr2h (default=32) 8664 0 = "Not imputed" 8665 1 = "Statistical imputation (hot deck)" 8666 2 = "Cold deck imputation" 8667 3 = "Logical imputation (derivation)" 8668 ; NOTE: Format ARELHR2H has been output. 169 The SAS System 11:54 Thursday, June 7, 2012 8669 VALUE erelhr2i (default=32) 8670 -1 = "Not in Universe" 8671 ; NOTE: Format ERELHR2I has been output. 8672 VALUE arelhr2i (default=32) 8673 0 = "Not imputed" 8674 1 = "Statistical imputation (hot deck)" 8675 2 = "Cold deck imputation" 8676 3 = "Logical imputation (derivation)" 8677 ; NOTE: Format ARELHR2I has been output. 8678 VALUE erelhr2j (default=32) 8679 -1 = "Not in Universe" 8680 ; NOTE: Format ERELHR2J has been output. 8681 VALUE arelhr2j (default=32) 8682 0 = "Not imputed" 8683 1 = "Statistical imputation (hot deck)" 8684 2 = "Cold deck imputation" 8685 3 = "Logical imputation (derivation)" 8686 ; NOTE: Format ARELHR2J has been output. 8687 VALUE epayrelf (default=32) 8688 -1 = "Not in Universe" 8689 1 = "Yes" 8690 2 = "No" 8691 ; NOTE: Format EPAYRELF has been output. 8692 VALUE apayrelf (default=32) 8693 0 = "Not imputed" 8694 1 = "Statistical imputation (hot deck)" 8695 2 = "Cold deck imputation" 8696 3 = "Logical imputation (derivation)" 8697 ; NOTE: Format APAYRELF has been output. 8698 VALUE epayrelg (default=32) 8699 -1 = "Not in Universe" 8700 1 = "Yes" 8701 2 = "No" 8702 ; NOTE: Format EPAYRELG has been output. 8703 VALUE apayrelg (default=32) 8704 0 = "Not imputed" 8705 1 = "Statistical imputation (hot deck)" 8706 2 = "Cold deck imputation" 8707 3 = "Logical imputation (derivation)" 8708 ; NOTE: Format APAYRELG has been output. 8709 VALUE epayrelh (default=32) 8710 -1 = "Not in Universe" 8711 1 = "Yes" 8712 2 = "No" 8713 ; NOTE: Format EPAYRELH has been output. 8714 VALUE apayrelh (default=32) 8715 0 = "Not imputed" 8716 1 = "Statistical imputation (hot deck)" 8717 2 = "Cold deck imputation" 170 The SAS System 11:54 Thursday, June 7, 2012 8718 3 = "Logical imputation (derivation)" 8719 ; NOTE: Format APAYRELH has been output. 8720 VALUE epayreli (default=32) 8721 -1 = "Not in Universe" 8722 1 = "Yes" 8723 2 = "No" 8724 ; NOTE: Format EPAYRELI has been output. 8725 VALUE apayreli (default=32) 8726 0 = "Not imputed" 8727 1 = "Statistical imputation (hot deck)" 8728 2 = "Cold deck imputation" 8729 3 = "Logical imputation (derivation)" 8730 ; NOTE: Format APAYRELI has been output. 8731 VALUE epayrelj (default=32) 8732 -1 = "Not in Universe" 8733 1 = "Yes" 8734 2 = "No" 8735 ; NOTE: Format EPAYRELJ has been output. 8736 VALUE apayrelj (default=32) 8737 0 = "Not imputed" 8738 1 = "Statistical imputation (hot deck)" 8739 2 = "Cold deck imputation" 8740 3 = "Logical imputation (derivation)" 8741 ; NOTE: Format APAYRELJ has been output. 8742 VALUE tamtrelf (default=32) 8743 0 = "None or not in universe" 8744 ; NOTE: Format TAMTRELF has been output. 8745 VALUE aamtrelf (default=32) 8746 0 = "Not imputed" 8747 1 = "Statistical imputation (hot deck)" 8748 2 = "Cold deck imputation" 8749 3 = "Logical imputation (derivation)" 8750 ; NOTE: Format AAMTRELF has been output. 8751 VALUE tamtrelg (default=32) 8752 0 = "Suppressed" 8753 ; NOTE: Format TAMTRELG has been output. 8754 VALUE aamtrelg (default=32) 8755 0 = "Suppressed" 8756 ; NOTE: Format AAMTRELG has been output. 8757 VALUE tamtrelh (default=32) 8758 0 = "Suppressed" 8759 ; NOTE: Format TAMTRELH has been output. 8760 VALUE aamtrelh (default=32) 8761 0 = "Suppressed" 8762 ; NOTE: Format AAMTRELH has been output. 8763 VALUE tamtreli (default=32) 8764 0 = "Suppressed" 171 The SAS System 11:54 Thursday, June 7, 2012 8765 ; NOTE: Format TAMTRELI has been output. 8766 VALUE aamtreli (default=32) 8767 0 = "Suppressed" 8768 ; NOTE: Format AAMTRELI has been output. 8769 VALUE tamtrelj (default=32) 8770 0 = "Suppressed" 8771 ; NOTE: Format TAMTRELJ has been output. 8772 VALUE aamtrelj (default=32) 8773 0 = "Suppressed" 8774 ; NOTE: Format AAMTRELJ has been output. 8775 VALUE ehrfam1f (default=32) 8776 -1 = "Not in Universe" 8777 ; NOTE: Format EHRFAM1F has been output. 8778 VALUE ahrfam1f (default=32) 8779 0 = "Not imputed" 8780 1 = "Statistical imputation (hot deck)" 8781 2 = "Cold deck imputation" 8782 3 = "Logical imputation (derivation)" 8783 ; NOTE: Format AHRFAM1F has been output. 8784 VALUE ehrfam1g (default=32) 8785 -1 = "Not in Universe" 8786 ; NOTE: Format EHRFAM1G has been output. 8787 VALUE ahrfam1g (default=32) 8788 0 = "Not imputed" 8789 1 = "Statistical imputation (hot deck)" 8790 2 = "Cold deck imputation" 8791 3 = "Logical imputation (derivation)" 8792 ; NOTE: Format AHRFAM1G has been output. 8793 VALUE ehrfam1h (default=32) 8794 -1 = "Not in Universe" 8795 ; NOTE: Format EHRFAM1H has been output. 8796 VALUE ahrfam1h (default=32) 8797 0 = "Not imputed" 8798 1 = "Statistical imputation (hot deck)" 8799 2 = "Cold deck imputation" 8800 3 = "Logical imputation (derivation)" 8801 ; NOTE: Format AHRFAM1H has been output. 8802 VALUE ehrfam1i (default=32) 8803 -1 = "Not in Universe" 8804 ; NOTE: Format EHRFAM1I has been output. 8805 VALUE ahrfam1i (default=32) 8806 0 = "Not imputed" 8807 1 = "Statistical imputation (hot deck)" 8808 2 = "Cold deck imputation" 8809 3 = "Logical imputation (derivation)" 8810 ; NOTE: Format AHRFAM1I has been output. 172 The SAS System 11:54 Thursday, June 7, 2012 8811 VALUE ehrfam1j (default=32) 8812 -1 = "Not in Universe" 8813 ; NOTE: Format EHRFAM1J has been output. 8814 VALUE ahrfam1j (default=32) 8815 0 = "Not imputed" 8816 1 = "Statistical imputation (hot deck)" 8817 2 = "Cold deck imputation" 8818 3 = "Logical imputation (derivation)" 8819 ; NOTE: Format AHRFAM1J has been output. 8820 VALUE ehrfam2f (default=32) 8821 -1 = "Not in Universe" 8822 ; NOTE: Format EHRFAM2F has been output. 8823 VALUE ahrfam2f (default=32) 8824 0 = "Not imputed" 8825 1 = "Statistical imputation (hot deck)" 8826 2 = "Cold deck imputation" 8827 3 = "Logical imputation (derivation)" 8828 ; NOTE: Format AHRFAM2F has been output. 8829 VALUE ehrfam2g (default=32) 8830 -1 = "Not in Universe" 8831 ; NOTE: Format EHRFAM2G has been output. 8832 VALUE ahrfam2g (default=32) 8833 0 = "Not imputed" 8834 1 = "Statistical imputation (hot deck)" 8835 2 = "Cold deck imputation" 8836 3 = "Logical imputation (derivation)" 8837 ; NOTE: Format AHRFAM2G has been output. 8838 VALUE ehrfam2h (default=32) 8839 -1 = "Not in Universe" 8840 ; NOTE: Format EHRFAM2H has been output. 8841 VALUE ahrfam2h (default=32) 8842 0 = "Not imputed" 8843 1 = "Statistical imputation (hot deck)" 8844 2 = "Cold deck imputation" 8845 3 = "Logical imputation (derivation)" 8846 ; NOTE: Format AHRFAM2H has been output. 8847 VALUE ehrfam2i (default=32) 8848 -1 = "Not in Universe" 8849 ; NOTE: Format EHRFAM2I has been output. 8850 VALUE ahrfam2i (default=32) 8851 0 = "Not imputed" 8852 1 = "Statistical imputation (hot deck)" 8853 2 = "Cold deck imputation" 8854 3 = "Logical imputation (derivation)" 8855 ; NOTE: Format AHRFAM2I has been output. 8856 VALUE ehrfam2j (default=32) 8857 -1 = "Not in Universe" 8858 ; 173 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EHRFAM2J has been output. 8859 VALUE ahrfam2j (default=32) 8860 0 = "Not imputed" 8861 1 = "Statistical imputation (hot deck)" 8862 2 = "Cold deck imputation" 8863 3 = "Logical imputation (derivation)" 8864 ; NOTE: Format AHRFAM2J has been output. 8865 VALUE epayfamf (default=32) 8866 -1 = "Not in Universe" 8867 1 = "Yes" 8868 2 = "No" 8869 ; NOTE: Format EPAYFAMF has been output. 8870 VALUE apayfamf (default=32) 8871 0 = "Not imputed" 8872 1 = "Statistical imputation (hot deck)" 8873 2 = "Cold deck imputation" 8874 3 = "Logical imputation (derivation)" 8875 ; NOTE: Format APAYFAMF has been output. 8876 VALUE epayfamg (default=32) 8877 -1 = "Not in Universe" 8878 1 = "Yes" 8879 2 = "No" 8880 ; NOTE: Format EPAYFAMG has been output. 8881 VALUE apayfamg (default=32) 8882 0 = "Not imputed" 8883 1 = "Statistical imputation (hot deck)" 8884 2 = "Cold deck imputation" 8885 3 = "Logical imputation (derivation)" 8886 ; NOTE: Format APAYFAMG has been output. 8887 VALUE epayfamh (default=32) 8888 -1 = "Not in Universe" 8889 1 = "Yes" 8890 2 = "No" 8891 ; NOTE: Format EPAYFAMH has been output. 8892 VALUE apayfamh (default=32) 8893 0 = "Not imputed" 8894 1 = "Statistical imputation (hot deck)" 8895 2 = "Cold deck imputation" 8896 3 = "Logical imputation (derivation)" 8897 ; NOTE: Format APAYFAMH has been output. 8898 VALUE epayfami (default=32) 8899 -1 = "Not in Universe" 8900 1 = "Yes" 8901 2 = "No" 8902 ; NOTE: Format EPAYFAMI has been output. 8903 VALUE apayfami (default=32) 8904 0 = "Not imputed" 8905 1 = "Statistical imputation (hot deck)" 8906 2 = "Cold deck imputation" 8907 3 = "Logical imputation (derivation)" 174 The SAS System 11:54 Thursday, June 7, 2012 8908 ; NOTE: Format APAYFAMI has been output. 8909 VALUE epayfamj (default=32) 8910 -1 = "Not in Universe" 8911 1 = "Yes" 8912 2 = "No" 8913 ; NOTE: Format EPAYFAMJ has been output. 8914 VALUE apayfamj (default=32) 8915 0 = "Not imputed" 8916 1 = "Statistical imputation (hot deck)" 8917 2 = "Cold deck imputation" 8918 3 = "Logical imputation (derivation)" 8919 ; NOTE: Format APAYFAMJ has been output. 8920 VALUE tamtfamf (default=32) 8921 0 = "None or not in universe" 8922 ; NOTE: Format TAMTFAMF has been output. 8923 VALUE aamtfamf (default=32) 8924 0 = "Not imputed" 8925 1 = "Statistical imputation (hot deck)" 8926 2 = "Cold deck imputation" 8927 3 = "Logical imputation (derivation)" 8928 ; NOTE: Format AAMTFAMF has been output. 8929 VALUE tamtfamg (default=32) 8930 0 = "Suppressed" 8931 ; NOTE: Format TAMTFAMG has been output. 8932 VALUE aamtfamg (default=32) 8933 0 = "Suppressed" 8934 ; NOTE: Format AAMTFAMG has been output. 8935 VALUE tamtfamh (default=32) 8936 0 = "Suppressed" 8937 ; NOTE: Format TAMTFAMH has been output. 8938 VALUE aamtfamh (default=32) 8939 0 = "Suppressed" 8940 ; NOTE: Format AAMTFAMH has been output. 8941 VALUE tamtfami (default=32) 8942 0 = "Suppressed" 8943 ; NOTE: Format TAMTFAMI has been output. 8944 VALUE aamtfami (default=32) 8945 0 = "Suppressed" 8946 ; NOTE: Format AAMTFAMI has been output. 8947 VALUE tamtfamj (default=32) 8948 0 = "Suppressed" 8949 ; NOTE: Format TAMTFAMJ has been output. 8950 VALUE aamtfamj (default=32) 8951 0 = "Suppressed" 8952 ; NOTE: Format AAMTFAMJ has been output. 175 The SAS System 11:54 Thursday, June 7, 2012 8953 VALUE ewhdaycf (default=32) 8954 -1 = "Not in Universe" 8955 1 = "At work or at school" 8956 2 = "At a church or religious" 8957 3 = "Someplace else, including working" 8958 ; NOTE: Format EWHDAYCF has been output. 8959 VALUE awhdaycf (default=32) 8960 0 = "Not imputed" 8961 1 = "Statistical imputation (hot deck)" 8962 2 = "Cold deck imputation" 8963 3 = "Logical imputation (derivation)" 8964 ; NOTE: Format AWHDAYCF has been output. 8965 VALUE ewhdaycg (default=32) 8966 -1 = "Not in Universe" 8967 1 = "At work or at school" 8968 2 = "At a church or religious" 8969 3 = "Someplace else, including working" 8970 ; NOTE: Format EWHDAYCG has been output. 8971 VALUE awhdaycg (default=32) 8972 0 = "Not imputed" 8973 1 = "Statistical imputation (hot deck)" 8974 2 = "Cold deck imputation" 8975 3 = "Logical imputation (derivation)" 8976 ; NOTE: Format AWHDAYCG has been output. 8977 VALUE ewhdaych (default=32) 8978 -1 = "Not in Universe" 8979 1 = "At work or at school" 8980 2 = "At a church or religious" 8981 3 = "Someplace else, including working" 8982 ; NOTE: Format EWHDAYCH has been output. 8983 VALUE awhdaych (default=32) 8984 0 = "Not imputed" 8985 1 = "Statistical imputation (hot deck)" 8986 2 = "Cold deck imputation" 8987 3 = "Logical imputation (derivation)" 8988 ; NOTE: Format AWHDAYCH has been output. 8989 VALUE ewhdayci (default=32) 8990 -1 = "Not in Universe" 8991 1 = "At work or at school" 8992 2 = "At a church or religious" 8993 3 = "Someplace else, including working" 8994 ; NOTE: Format EWHDAYCI has been output. 8995 VALUE awhdayci (default=32) 8996 0 = "Not imputed" 8997 1 = "Statistical imputation (hot deck)" 8998 2 = "Cold deck imputation" 8999 3 = "Logical imputation (derivation)" 9000 ; NOTE: Format AWHDAYCI has been output. 9001 VALUE ewhdaycj (default=32) 9002 -1 = "Not in Universe" 176 The SAS System 11:54 Thursday, June 7, 2012 9003 1 = "At work or at school" 9004 2 = "At a church or religious" 9005 3 = "Someplace else, including working" 9006 ; NOTE: Format EWHDAYCJ has been output. 9007 VALUE awhdaycj (default=32) 9008 0 = "Not imputed" 9009 1 = "Statistical imputation (hot deck)" 9010 2 = "Cold deck imputation" 9011 3 = "Logical imputation (derivation)" 9012 ; NOTE: Format AWHDAYCJ has been output. 9013 VALUE edayhrsf (default=32) 9014 -1 = "Not in Universe" 9015 ; NOTE: Format EDAYHRSF has been output. 9016 VALUE adayhrsf (default=32) 9017 0 = "Not imputed" 9018 1 = "Statistical imputation (hot deck)" 9019 2 = "Cold deck imputation" 9020 3 = "Logical imputation (derivation)" 9021 ; NOTE: Format ADAYHRSF has been output. 9022 VALUE edayhrsg (default=32) 9023 -1 = "Not in Universe" 9024 ; NOTE: Format EDAYHRSG has been output. 9025 VALUE adayhrsg (default=32) 9026 0 = "Not imputed" 9027 1 = "Statistical imputation (hot deck)" 9028 2 = "Cold deck imputation" 9029 3 = "Logical imputation (derivation)" 9030 ; NOTE: Format ADAYHRSG has been output. 9031 VALUE edayhrsh (default=32) 9032 -1 = "Not in Universe" 9033 ; NOTE: Format EDAYHRSH has been output. 9034 VALUE adayhrsh (default=32) 9035 0 = "Not imputed" 9036 1 = "Statistical imputation (hot deck)" 9037 2 = "Cold deck imputation" 9038 3 = "Logical imputation (derivation)" 9039 ; NOTE: Format ADAYHRSH has been output. 9040 VALUE edayhrsi (default=32) 9041 -1 = "Not in Universe" 9042 ; NOTE: Format EDAYHRSI has been output. 9043 VALUE adayhrsi (default=32) 9044 0 = "Not imputed" 9045 1 = "Statistical imputation (hot deck)" 9046 2 = "Cold deck imputation" 9047 3 = "Logical imputation (derivation)" 9048 ; NOTE: Format ADAYHRSI has been output. 9049 VALUE edayhrsj (default=32) 9050 -1 = "Not in Universe" 177 The SAS System 11:54 Thursday, June 7, 2012 9051 ; NOTE: Format EDAYHRSJ has been output. 9052 VALUE adayhrsj (default=32) 9053 0 = "Not imputed" 9054 1 = "Statistical imputation (hot deck)" 9055 2 = "Cold deck imputation" 9056 3 = "Logical imputation (derivation)" 9057 ; NOTE: Format ADAYHRSJ has been output. 9058 VALUE ehrdaycf (default=32) 9059 -1 = "Not in Universe" 9060 ; NOTE: Format EHRDAYCF has been output. 9061 VALUE ahrdaycf (default=32) 9062 0 = "Not imputed" 9063 1 = "Statistical imputation (hot deck)" 9064 2 = "Cold deck imputation" 9065 3 = "Logical imputation (derivation)" 9066 ; NOTE: Format AHRDAYCF has been output. 9067 VALUE ehrdaycg (default=32) 9068 -1 = "Not in Universe" 9069 ; NOTE: Format EHRDAYCG has been output. 9070 VALUE ahrdaycg (default=32) 9071 0 = "Not imputed" 9072 1 = "Statistical imputation (hot deck)" 9073 2 = "Cold deck imputation" 9074 3 = "Logical imputation (derivation)" 9075 ; NOTE: Format AHRDAYCG has been output. 9076 VALUE ehrdaych (default=32) 9077 -1 = "Not in Universe" 9078 ; NOTE: Format EHRDAYCH has been output. 9079 VALUE ahrdaych (default=32) 9080 0 = "Not imputed" 9081 1 = "Statistical imputation (hot deck)" 9082 2 = "Cold deck imputation" 9083 3 = "Logical imputation (derivation)" 9084 ; NOTE: Format AHRDAYCH has been output. 9085 VALUE ehrdayci (default=32) 9086 -1 = "Not in Universe" 9087 ; NOTE: Format EHRDAYCI has been output. 9088 VALUE ahrdayci (default=32) 9089 0 = "Not imputed" 9090 1 = "Statistical imputation (hot deck)" 9091 2 = "Cold deck imputation" 9092 3 = "Logical imputation (derivation)" 9093 ; NOTE: Format AHRDAYCI has been output. 9094 VALUE ehrdaycj (default=32) 9095 -1 = "Not in Universe" 9096 ; NOTE: Format EHRDAYCJ has been output. 9097 VALUE ahrdaycj (default=32) 178 The SAS System 11:54 Thursday, June 7, 2012 9098 0 = "Not imputed" 9099 1 = "Statistical imputation (hot deck)" 9100 2 = "Cold deck imputation" 9101 3 = "Logical imputation (derivation)" 9102 ; NOTE: Format AHRDAYCJ has been output. 9103 VALUE epaydayf (default=32) 9104 -1 = "Not in Universe" 9105 1 = "Yes" 9106 2 = "No" 9107 ; NOTE: Format EPAYDAYF has been output. 9108 VALUE apaydayf (default=32) 9109 0 = "None or not imputed" 9110 1 = "Statistical imputation (hot deck)" 9111 2 = "Cold deck imputation" 9112 3 = "Logical imputation (derivation)" 9113 ; NOTE: Format APAYDAYF has been output. 9114 VALUE epaydayg (default=32) 9115 -1 = "Not in Universe" 9116 1 = "Yes" 9117 2 = "No" 9118 ; NOTE: Format EPAYDAYG has been output. 9119 VALUE apaydayg (default=32) 9120 0 = "None or not imputed" 9121 1 = "Statistical imputation (hot deck)" 9122 2 = "Cold deck imputation" 9123 3 = "Logical imputation (derivation)" 9124 ; NOTE: Format APAYDAYG has been output. 9125 VALUE epaydayh (default=32) 9126 -1 = "Not in Universe" 9127 1 = "Yes" 9128 2 = "No" 9129 ; NOTE: Format EPAYDAYH has been output. 9130 VALUE apaydayh (default=32) 9131 0 = "None or not imputed" 9132 1 = "Statistical imputation (hot deck)" 9133 2 = "Cold deck imputation" 9134 3 = "Logical imputation (derivation)" 9135 ; NOTE: Format APAYDAYH has been output. 9136 VALUE epaydayi (default=32) 9137 -1 = "Not in Universe" 9138 1 = "Yes" 9139 2 = "No" 9140 ; NOTE: Format EPAYDAYI has been output. 9141 VALUE apaydayi (default=32) 9142 0 = "None or not imputed" 9143 1 = "Statistical imputation (hot deck)" 9144 2 = "Cold deck imputation" 9145 3 = "Logical imputation (derivation)" 9146 ; NOTE: Format APAYDAYI has been output. 179 The SAS System 11:54 Thursday, June 7, 2012 9147 VALUE epaydayj (default=32) 9148 -1 = "Not in Universe" 9149 1 = "Yes" 9150 2 = "No" 9151 ; NOTE: Format EPAYDAYJ has been output. 9152 VALUE apaydayj (default=32) 9153 0 = "None or not imputed" 9154 1 = "Statistical imputation (hot deck)" 9155 2 = "Cold deck imputation" 9156 3 = "Logical imputation (derivation)" 9157 ; NOTE: Format APAYDAYJ has been output. 9158 VALUE tamtdayf (default=32) 9159 0 = "None or not in universe" 9160 ; NOTE: Format TAMTDAYF has been output. 9161 VALUE aamtdayf (default=32) 9162 0 = "Not imputed" 9163 1 = "Statistical imputation (hot deck)" 9164 2 = "Cold deck imputation" 9165 3 = "Logical imputation (derivation)" 9166 ; NOTE: Format AAMTDAYF has been output. 9167 VALUE tamtdayg (default=32) 9168 0 = "None or not in universe" 9169 ; NOTE: Format TAMTDAYG has been output. 9170 VALUE aamtdayg (default=32) 9171 0 = "Not imputed" 9172 1 = "Statistical imputation (hot deck)" 9173 2 = "Cold deck imputation" 9174 3 = "Logical imputation (derivation)" 9175 ; NOTE: Format AAMTDAYG has been output. 9176 VALUE tamtdayh (default=32) 9177 0 = "Suppressed" 9178 ; NOTE: Format TAMTDAYH has been output. 9179 VALUE aamtdayh (default=32) 9180 0 = "Suppressed" 9181 ; NOTE: Format AAMTDAYH has been output. 9182 VALUE tamtdayi (default=32) 9183 0 = "Suppressed" 9184 ; NOTE: Format TAMTDAYI has been output. 9185 VALUE aamtdayi (default=32) 9186 0 = "Suppressed" 9187 ; NOTE: Format AAMTDAYI has been output. 9188 VALUE tamtdayj (default=32) 9189 0 = "Suppressed" 9190 ; NOTE: Format TAMTDAYJ has been output. 9191 VALUE aamtdayj (default=32) 9192 0 = "Suppressed" 9193 ; 180 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AAMTDAYJ has been output. 9194 VALUE ewhsporf (default=32) 9195 -1 = "Not in Universe" 9196 1 = "At school" 9197 2 = "Someplace else" 9198 ; NOTE: Format EWHSPORF has been output. 9199 VALUE awhsporf (default=32) 9200 0 = "Not imputed" 9201 1 = "Statistical imputation (hot deck)" 9202 2 = "Cold deck imputation" 9203 3 = "Logical imputation (derivation)" 9204 ; NOTE: Format AWHSPORF has been output. 9205 VALUE ewhsporg (default=32) 9206 -1 = "Not in Universe" 9207 1 = "At school" 9208 2 = "Someplace else" 9209 ; NOTE: Format EWHSPORG has been output. 9210 VALUE awhsporg (default=32) 9211 0 = "Not imputed" 9212 1 = "Statistical imputation (hot deck)" 9213 2 = "Cold deck imputation" 9214 3 = "Logical imputation (derivation)" 9215 ; NOTE: Format AWHSPORG has been output. 9216 VALUE ewhsporh (default=32) 9217 -1 = "Not in Universe" 9218 1 = "At school" 9219 2 = "Someplace else" 9220 ; NOTE: Format EWHSPORH has been output. 9221 VALUE awhsporh (default=32) 9222 0 = "Not imputed" 9223 1 = "Statistical imputation (hot deck)" 9224 2 = "Cold deck imputation" 9225 3 = "Logical imputation (derivation)" 9226 ; NOTE: Format AWHSPORH has been output. 9227 VALUE ewhspori (default=32) 9228 -1 = "Not in Universe" 9229 1 = "At school" 9230 2 = "Someplace else" 9231 ; NOTE: Format EWHSPORI has been output. 9232 VALUE awhspori (default=32) 9233 0 = "Not imputed" 9234 1 = "Statistical imputation (hot deck)" 9235 2 = "Cold deck imputation" 9236 3 = "Logical imputation (derivation)" 9237 ; NOTE: Format AWHSPORI has been output. 9238 VALUE ewhsporj (default=32) 9239 -1 = "Not in Universe" 9240 1 = "At school" 9241 2 = "Someplace else" 9242 ; 181 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EWHSPORJ has been output. 9243 VALUE awhsporj (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 AWHSPORJ has been output. 9249 VALUE ehsportf (default=32) 9250 -1 = "Not in Universe" 9251 ; NOTE: Format EHSPORTF has been output. 9252 VALUE ahsportf (default=32) 9253 0 = "Not imputed" 9254 1 = "Statistical imputation (hot deck)" 9255 2 = "Cold deck imputation" 9256 3 = "Logical imputation (derivation)" 9257 ; NOTE: Format AHSPORTF has been output. 9258 VALUE ehsportg (default=32) 9259 -1 = "Not in Universe" 9260 ; NOTE: Format EHSPORTG has been output. 9261 VALUE ahsportg (default=32) 9262 0 = "Not imputed" 9263 1 = "Statistical imputation (hot deck)" 9264 2 = "Cold deck imputation" 9265 3 = "Logical imputation (derivation)" 9266 ; NOTE: Format AHSPORTG has been output. 9267 VALUE ehsporth (default=32) 9268 -1 = "Not in Universe" 9269 ; NOTE: Format EHSPORTH has been output. 9270 VALUE ahsporth (default=32) 9271 0 = "Not imputed" 9272 1 = "Statistical imputation (hot deck)" 9273 2 = "Cold deck imputation" 9274 3 = "Logical imputation (derivation)" 9275 ; NOTE: Format AHSPORTH has been output. 9276 VALUE ehsporti (default=32) 9277 -1 = "Not in Universe" 9278 ; NOTE: Format EHSPORTI has been output. 9279 VALUE ahsporti (default=32) 9280 0 = "Not imputed" 9281 1 = "Statistical imputation (hot deck)" 9282 2 = "Cold deck imputation" 9283 3 = "Logical imputation (derivation)" 9284 ; NOTE: Format AHSPORTI has been output. 9285 VALUE ehsportj (default=32) 9286 -1 = "Not in Universe" 9287 ; NOTE: Format EHSPORTJ has been output. 9288 VALUE ahsportj (default=32) 9289 0 = "Not imputed" 182 The SAS System 11:54 Thursday, June 7, 2012 9290 1 = "Statistical imputation (hot deck)" 9291 2 = "Cold deck imputation" 9292 3 = "Logical imputation (derivation)" 9293 ; NOTE: Format AHSPORTJ has been output. 9294 VALUE ehrsporf (default=32) 9295 -1 = "Not in Universe" 9296 ; NOTE: Format EHRSPORF has been output. 9297 VALUE ahrsporf (default=32) 9298 0 = "Not imputed" 9299 1 = "Statistical imputation (hot deck)" 9300 2 = "Cold deck imputation" 9301 3 = "Logical imputation (derivation)" 9302 ; NOTE: Format AHRSPORF has been output. 9303 VALUE ehrsporg (default=32) 9304 -1 = "Not in Universe" 9305 ; NOTE: Format EHRSPORG has been output. 9306 VALUE ahrsporg (default=32) 9307 0 = "Not imputed" 9308 1 = "Statistical imputation (hot deck)" 9309 2 = "Cold deck imputation" 9310 3 = "Logical imputation (derivation)" 9311 ; NOTE: Format AHRSPORG has been output. 9312 VALUE ehrsporh (default=32) 9313 -1 = "Not in Universe" 9314 ; NOTE: Format EHRSPORH has been output. 9315 VALUE ahrsporh (default=32) 9316 0 = "Not imputed" 9317 1 = "Statistical imputation (hot deck)" 9318 2 = "Cold deck imputation" 9319 3 = "Logical imputation (derivation)" 9320 ; NOTE: Format AHRSPORH has been output. 9321 VALUE ehrspori (default=32) 9322 -1 = "Not in Universe" 9323 ; NOTE: Format EHRSPORI has been output. 9324 VALUE ahrspori (default=32) 9325 0 = "Not imputed" 9326 1 = "Statistical imputation (hot deck)" 9327 2 = "Cold deck imputation" 9328 3 = "Logical imputation (derivation)" 9329 ; NOTE: Format AHRSPORI has been output. 9330 VALUE ehrsporj (default=32) 9331 -1 = "Not in Universe" 9332 ; NOTE: Format EHRSPORJ has been output. 9333 VALUE ahrsporj (default=32) 9334 0 = "Not imputed" 9335 1 = "Statistical imputation (hot deck)" 9336 2 = "Cold deck imputation" 9337 3 = "Logical imputation (derivation)" 183 The SAS System 11:54 Thursday, June 7, 2012 9338 ; NOTE: Format AHRSPORJ has been output. 9339 VALUE epayspof (default=32) 9340 -1 = "Not in Universe" 9341 1 = "Yes" 9342 2 = "No" 9343 ; NOTE: Format EPAYSPOF has been output. 9344 VALUE apayspof (default=32) 9345 0 = "Not imputed" 9346 1 = "Statistical imputation (hot deck)" 9347 2 = "Cold deck imputation" 9348 3 = "Logical imputation (derivation)" 9349 ; NOTE: Format APAYSPOF has been output. 9350 VALUE epayspog (default=32) 9351 -1 = "Not in Universe" 9352 1 = "Yes" 9353 2 = "No" 9354 ; NOTE: Format EPAYSPOG has been output. 9355 VALUE apayspog (default=32) 9356 0 = "Not imputed" 9357 1 = "Statistical imputation (hot deck)" 9358 2 = "Cold deck imputation" 9359 3 = "Logical imputation (derivation)" 9360 ; NOTE: Format APAYSPOG has been output. 9361 VALUE epayspoh (default=32) 9362 -1 = "Not in Universe" 9363 1 = "Yes" 9364 2 = "No" 9365 ; NOTE: Format EPAYSPOH has been output. 9366 VALUE apayspoh (default=32) 9367 0 = "Not imputed" 9368 1 = "Statistical imputation (hot deck)" 9369 2 = "Cold deck imputation" 9370 3 = "Logical imputation (derivation)" 9371 ; NOTE: Format APAYSPOH has been output. 9372 VALUE epayspoi (default=32) 9373 -1 = "Not in Universe" 9374 1 = "Yes" 9375 2 = "No" 9376 ; NOTE: Format EPAYSPOI has been output. 9377 VALUE apayspoi (default=32) 9378 0 = "Not imputed" 9379 1 = "Statistical imputation (hot deck)" 9380 2 = "Cold deck imputation" 9381 3 = "Logical imputation (derivation)" 9382 ; NOTE: Format APAYSPOI has been output. 9383 VALUE epayspoj (default=32) 9384 -1 = "Not in Universe" 9385 1 = "Yes" 9386 2 = "No" 184 The SAS System 11:54 Thursday, June 7, 2012 9387 ; NOTE: Format EPAYSPOJ has been output. 9388 VALUE apayspoj (default=32) 9389 0 = "Not imputed" 9390 1 = "Statistical imputation (hot deck)" 9391 2 = "Cold deck imputation" 9392 3 = "Logical imputation (derivation)" 9393 ; NOTE: Format APAYSPOJ has been output. 9394 VALUE tamtspof (default=32) 9395 0 = "None or not in universe" 9396 ; NOTE: Format TAMTSPOF has been output. 9397 VALUE aamtspof (default=32) 9398 0 = "Not imputed" 9399 1 = "Statistical imputation (hot deck)" 9400 2 = "Cold deck imputation" 9401 3 = "Logical imputation (derivation)" 9402 ; NOTE: Format AAMTSPOF has been output. 9403 VALUE tamtspog (default=32) 9404 0 = "None or not in universe" 9405 ; NOTE: Format TAMTSPOG has been output. 9406 VALUE aamtspog (default=32) 9407 0 = "Not imputed" 9408 1 = "Statistical imputation (hot deck)" 9409 2 = "Cold deck imputation" 9410 3 = "Logical imputation (derivation)" 9411 ; NOTE: Format AAMTSPOG has been output. 9412 VALUE tamtspoh (default=32) 9413 0 = "Suppressed" 9414 ; NOTE: Format TAMTSPOH has been output. 9415 VALUE aamtspoh (default=32) 9416 0 = "Suppressed" 9417 ; NOTE: Format AAMTSPOH has been output. 9418 VALUE tamtspoi (default=32) 9419 0 = "Suppressed" 9420 ; NOTE: Format TAMTSPOI has been output. 9421 VALUE aamtspoi (default=32) 9422 0 = "Suppressed" 9423 ; NOTE: Format AAMTSPOI has been output. 9424 VALUE tamtspoj (default=32) 9425 0 = "Suppressed" 9426 ; NOTE: Format TAMTSPOJ has been output. 9427 VALUE aamtspoj (default=32) 9428 0 = "Suppressed" 9429 ; NOTE: Format AAMTSPOJ has been output. 9430 VALUE ewhlessf (default=32) 9431 -1 = "Not in Universe" 9432 1 = "At school" 185 The SAS System 11:54 Thursday, June 7, 2012 9433 2 = "Someplace else" 9434 ; NOTE: Format EWHLESSF has been output. 9435 VALUE awhlessf (default=32) 9436 0 = "Not imputed" 9437 1 = "Statistical imputation (hot deck)" 9438 2 = "Cold deck imputation" 9439 3 = "Logical imputation (derivation)" 9440 ; NOTE: Format AWHLESSF has been output. 9441 VALUE ewhlessg (default=32) 9442 -1 = "Not in Universe" 9443 1 = "At school" 9444 2 = "Someplace else" 9445 ; NOTE: Format EWHLESSG has been output. 9446 VALUE awhlessg (default=32) 9447 0 = "Not imputed" 9448 1 = "Statistical imputation (hot deck)" 9449 2 = "Cold deck imputation" 9450 3 = "Logical imputation (derivation)" 9451 ; NOTE: Format AWHLESSG has been output. 9452 VALUE ewhlessh (default=32) 9453 -1 = "Not in Universe" 9454 1 = "At school" 9455 2 = "Someplace else" 9456 ; NOTE: Format EWHLESSH has been output. 9457 VALUE awhlessh (default=32) 9458 0 = "Not imputed" 9459 1 = "Statistical imputation (hot deck)" 9460 2 = "Cold deck imputation" 9461 3 = "Logical imputation (derivation)" 9462 ; NOTE: Format AWHLESSH has been output. 9463 VALUE ewhlessi (default=32) 9464 -1 = "Not in Universe" 9465 1 = "At school" 9466 2 = "Someplace else" 9467 ; NOTE: Format EWHLESSI has been output. 9468 VALUE awhlessi (default=32) 9469 0 = "Not imputed" 9470 1 = "Statistical imputation (hot deck)" 9471 2 = "Cold deck imputation" 9472 3 = "Logical imputation (derivation)" 9473 ; NOTE: Format AWHLESSI has been output. 9474 VALUE ewhlessj (default=32) 9475 -1 = "Not in Universe" 9476 1 = "At school" 9477 2 = "Someplace else" 9478 ; NOTE: Format EWHLESSJ has been output. 9479 VALUE awhlessj (default=32) 9480 0 = "Not imputed" 9481 1 = "Statistical imputation (hot deck)" 186 The SAS System 11:54 Thursday, June 7, 2012 9482 2 = "Cold deck imputation" 9483 3 = "Logical imputation (derivation)" 9484 ; NOTE: Format AWHLESSJ has been output. 9485 VALUE ehrles1f (default=32) 9486 -1 = "Not in Universe" 9487 ; NOTE: Format EHRLES1F has been output. 9488 VALUE ahrles1f (default=32) 9489 0 = "Not imputed" 9490 1 = "Statistical imputation (hot deck)" 9491 2 = "Cold deck imputation" 9492 3 = "Logical imputation (derivation)" 9493 ; NOTE: Format AHRLES1F has been output. 9494 VALUE ehrles1g (default=32) 9495 -1 = "Not in Universe" 9496 ; NOTE: Format EHRLES1G has been output. 9497 VALUE ahrles1g (default=32) 9498 0 = "Not imputed" 9499 1 = "Statistical imputation (hot deck)" 9500 2 = "Cold deck imputation" 9501 3 = "Logical imputation (derivation)" 9502 ; NOTE: Format AHRLES1G has been output. 9503 VALUE ehrles1h (default=32) 9504 -1 = "Not in Universe" 9505 ; NOTE: Format EHRLES1H has been output. 9506 VALUE ahrles1h (default=32) 9507 0 = "Not imputed" 9508 1 = "Statistical imputation (hot deck)" 9509 2 = "Cold deck imputation" 9510 3 = "Logical imputation (derivation)" 9511 ; NOTE: Format AHRLES1H has been output. 9512 VALUE ehrles1i (default=32) 9513 -1 = "Not in Universe" 9514 ; NOTE: Format EHRLES1I has been output. 9515 VALUE ahrles1i (default=32) 9516 0 = "Not imputed" 9517 1 = "Statistical imputation (hot deck)" 9518 2 = "Cold deck imputation" 9519 3 = "Logical imputation (derivation)" 9520 ; NOTE: Format AHRLES1I has been output. 9521 VALUE ehrles1j (default=32) 9522 -1 = "Not in Universe" 9523 ; NOTE: Format EHRLES1J has been output. 9524 VALUE ahrles1j (default=32) 9525 0 = "Not imputed" 9526 1 = "Statistical imputation (hot deck)" 9527 2 = "Cold deck imputation" 9528 3 = "Logical imputation (derivation)" 9529 ; 187 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AHRLES1J has been output. 9530 VALUE ehrles2f (default=32) 9531 -1 = "Not in Universe" 9532 ; NOTE: Format EHRLES2F has been output. 9533 VALUE ahrles2f (default=32) 9534 0 = "Not imputed" 9535 1 = "Statistical imputation (hot deck)" 9536 2 = "Cold deck imputation" 9537 3 = "Logical imputation (derivation)" 9538 ; NOTE: Format AHRLES2F has been output. 9539 VALUE ehrles2g (default=32) 9540 -1 = "Not in Universe" 9541 ; NOTE: Format EHRLES2G has been output. 9542 VALUE ahrles2g (default=32) 9543 0 = "Not imputed" 9544 1 = "Statistical imputation (hot deck)" 9545 2 = "Cold deck imputation" 9546 3 = "Logical imputation (derivation)" 9547 ; NOTE: Format AHRLES2G has been output. 9548 VALUE ehrles2h (default=32) 9549 -1 = "Not in Universe" 9550 ; NOTE: Format EHRLES2H has been output. 9551 VALUE ahrles2h (default=32) 9552 0 = "Not imputed" 9553 1 = "Statistical imputation (hot deck)" 9554 2 = "Cold deck imputation" 9555 3 = "Logical imputation (derivation)" 9556 ; NOTE: Format AHRLES2H has been output. 9557 VALUE ehrles2i (default=32) 9558 -1 = "Not in Universe" 9559 ; NOTE: Format EHRLES2I has been output. 9560 VALUE ahrles2i (default=32) 9561 0 = "Not imputed" 9562 1 = "Statistical imputation (hot deck)" 9563 2 = "Cold deck imputation" 9564 3 = "Logical imputation (derivation)" 9565 ; NOTE: Format AHRLES2I has been output. 9566 VALUE ehrles2j (default=32) 9567 -1 = "Not in Universe" 9568 ; NOTE: Format EHRLES2J has been output. 9569 VALUE ahrles2j (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 AHRLES2J has been output. 9575 VALUE epaylesf (default=32) 9576 -1 = "Not in Universe" 188 The SAS System 11:54 Thursday, June 7, 2012 9577 1 = "Yes" 9578 2 = "No" 9579 ; NOTE: Format EPAYLESF has been output. 9580 VALUE apaylesf (default=32) 9581 0 = "Not imputed" 9582 1 = "Statistical imputation (hot deck)" 9583 2 = "Cold deck imputation" 9584 3 = "Logical imputation (derivation)" 9585 ; NOTE: Format APAYLESF has been output. 9586 VALUE epaylesg (default=32) 9587 -1 = "Not in Universe" 9588 1 = "Yes" 9589 2 = "No" 9590 ; NOTE: Format EPAYLESG has been output. 9591 VALUE apaylesg (default=32) 9592 0 = "Not imputed" 9593 1 = "Statistical imputation (hot deck)" 9594 2 = "Cold deck imputation" 9595 3 = "Logical imputation (derivation)" 9596 ; NOTE: Format APAYLESG has been output. 9597 VALUE epaylesh (default=32) 9598 -1 = "Not in Universe" 9599 1 = "Yes" 9600 2 = "No" 9601 ; NOTE: Format EPAYLESH has been output. 9602 VALUE apaylesh (default=32) 9603 0 = "Not imputed" 9604 1 = "Statistical imputation (hot deck)" 9605 2 = "Cold deck imputation" 9606 3 = "Logical imputation (derivation)" 9607 ; NOTE: Format APAYLESH has been output. 9608 VALUE epaylesi (default=32) 9609 -1 = "Not in Universe" 9610 1 = "Yes" 9611 2 = "No" 9612 ; NOTE: Format EPAYLESI has been output. 9613 VALUE apaylesi (default=32) 9614 0 = "Not imputed" 9615 1 = "Statistical imputation (hot deck)" 9616 2 = "Cold deck imputation" 9617 3 = "Logical imputation (derivation)" 9618 ; NOTE: Format APAYLESI has been output. 9619 VALUE epaylesj (default=32) 9620 -1 = "Not in Universe" 9621 1 = "Yes" 9622 2 = "No" 9623 ; NOTE: Format EPAYLESJ has been output. 9624 VALUE apaylesj (default=32) 9625 0 = "Not imputed" 189 The SAS System 11:54 Thursday, June 7, 2012 9626 1 = "Statistical imputation (hot deck)" 9627 2 = "Cold deck imputation" 9628 3 = "Logical imputation (derivation)" 9629 ; NOTE: Format APAYLESJ has been output. 9630 VALUE tamtlesf (default=32) 9631 0 = "None or not in universe" 9632 ; NOTE: Format TAMTLESF has been output. 9633 VALUE aamtlesf (default=32) 9634 0 = "Not imputed" 9635 1 = "Statistical imputation (hot deck)" 9636 2 = "Cold deck imputation" 9637 3 = "Logical imputation (derivation)" 9638 ; NOTE: Format AAMTLESF has been output. 9639 VALUE tamtlesg (default=32) 9640 0 = "None or not in universe" 9641 ; NOTE: Format TAMTLESG has been output. 9642 VALUE aamtlesg (default=32) 9643 0 = "Not imputed" 9644 1 = "Statistical imputation (hot deck)" 9645 2 = "Cold deck imputation" 9646 3 = "Logical imputation (derivation)" 9647 ; NOTE: Format AAMTLESG has been output. 9648 VALUE tamtlesh (default=32) 9649 0 = "Suppressed" 9650 ; NOTE: Format TAMTLESH has been output. 9651 VALUE aamtlesh (default=32) 9652 0 = "Suppressed" 9653 ; NOTE: Format AAMTLESH has been output. 9654 VALUE tamtlesi (default=32) 9655 0 = "Suppressed" 9656 ; NOTE: Format TAMTLESI has been output. 9657 VALUE aamtlesi (default=32) 9658 0 = "Suppressed" 9659 ; NOTE: Format AAMTLESI has been output. 9660 VALUE tamtlesj (default=32) 9661 0 = "Suppressed" 9662 ; NOTE: Format TAMTLESJ has been output. 9663 VALUE aamtlesj (default=32) 9664 0 = "Suppressed" 9665 ; NOTE: Format AAMTLESJ has been output. 9666 VALUE ewhclubf (default=32) 9667 -1 = "Not in Universe" 9668 1 = "At school" 9669 2 = "Someplace else" 9670 ; NOTE: Format EWHCLUBF has been output. 9671 VALUE awhclubf (default=32) 190 The SAS System 11:54 Thursday, June 7, 2012 9672 0 = "Not imputed" 9673 1 = "Statistical imputation (hot deck)" 9674 2 = "Cold deck imputation" 9675 3 = "Logical imputation (derivation)" 9676 ; NOTE: Format AWHCLUBF has been output. 9677 VALUE ewhclubg (default=32) 9678 -1 = "Not in Universe" 9679 1 = "At school" 9680 2 = "Someplace else" 9681 ; NOTE: Format EWHCLUBG has been output. 9682 VALUE awhclubg (default=32) 9683 0 = "Not imputed" 9684 1 = "Statistical imputation (hot deck)" 9685 2 = "Cold deck imputation" 9686 3 = "Logical imputation (derivation)" 9687 ; NOTE: Format AWHCLUBG has been output. 9688 VALUE ewhclubh (default=32) 9689 -1 = "Not in Universe" 9690 1 = "At school" 9691 2 = "Someplace else" 9692 ; NOTE: Format EWHCLUBH has been output. 9693 VALUE awhclubh (default=32) 9694 0 = "Not imputed" 9695 1 = "Statistical imputation (hot deck)" 9696 2 = "Cold deck imputation" 9697 3 = "Logical imputation (derivation)" 9698 ; NOTE: Format AWHCLUBH has been output. 9699 VALUE ewhclubi (default=32) 9700 -1 = "Not in Universe" 9701 1 = "At school" 9702 2 = "Someplace else" 9703 ; NOTE: Format EWHCLUBI has been output. 9704 VALUE awhclubi (default=32) 9705 0 = "Not imputed" 9706 1 = "Statistical imputation (hot deck)" 9707 2 = "Cold deck imputation" 9708 3 = "Logical imputation (derivation)" 9709 ; NOTE: Format AWHCLUBI has been output. 9710 VALUE ewhclubj (default=32) 9711 -1 = "Not in Universe" 9712 1 = "At school" 9713 2 = "Someplace else" 9714 ; NOTE: Format EWHCLUBJ has been output. 9715 VALUE awhclubj (default=32) 9716 0 = "Not imputed" 9717 1 = "Statistical imputation (hot deck)" 9718 2 = "Cold deck imputation" 9719 3 = "Logical imputation (derivation)" 9720 ; NOTE: Format AWHCLUBJ has been output. 191 The SAS System 11:54 Thursday, June 7, 2012 9721 VALUE eclubhrf (default=32) 9722 -1 = "Not in Universe" 9723 ; NOTE: Format ECLUBHRF has been output. 9724 VALUE aclubhrf (default=32) 9725 0 = "Not imputed" 9726 1 = "Statistical imputation (hot deck)" 9727 2 = "Cold deck imputation" 9728 3 = "Logical imputation (derivation)" 9729 ; NOTE: Format ACLUBHRF has been output. 9730 VALUE eclubhrg (default=32) 9731 -1 = "Not in Universe" 9732 ; NOTE: Format ECLUBHRG has been output. 9733 VALUE aclubhrg (default=32) 9734 0 = "Not imputed" 9735 1 = "Statistical imputation (hot deck)" 9736 2 = "Cold deck imputation" 9737 3 = "Logical imputation (derivation)" 9738 ; NOTE: Format ACLUBHRG has been output. 9739 VALUE eclubhrh (default=32) 9740 -1 = "Not in Universe" 9741 ; NOTE: Format ECLUBHRH has been output. 9742 VALUE aclubhrh (default=32) 9743 0 = "Not imputed" 9744 1 = "Statistical imputation (hot deck)" 9745 2 = "Cold deck imputation" 9746 3 = "Logical imputation (derivation)" 9747 ; NOTE: Format ACLUBHRH has been output. 9748 VALUE eclubhri (default=32) 9749 -1 = "Not in Universe" 9750 ; NOTE: Format ECLUBHRI has been output. 9751 VALUE aclubhri (default=32) 9752 0 = "Not imputed" 9753 1 = "Statistical imputation (hot deck)" 9754 2 = "Cold deck imputation" 9755 3 = "Logical imputation (derivation)" 9756 ; NOTE: Format ACLUBHRI has been output. 9757 VALUE eclubhrj (default=32) 9758 -1 = "Not in Universe" 9759 ; NOTE: Format ECLUBHRJ has been output. 9760 VALUE aclubhrj (default=32) 9761 0 = "Not imputed" 9762 1 = "Statistical imputation (hot deck)" 9763 2 = "Cold deck imputation" 9764 3 = "Logical imputation (derivation)" 9765 ; NOTE: Format ACLUBHRJ has been output. 9766 VALUE ehrclubf (default=32) 9767 -1 = "Not in Universe" 9768 ; 192 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EHRCLUBF has been output. 9769 VALUE ahrclubf (default=32) 9770 0 = "Not imputed" 9771 1 = "Statistical imputation (hot deck)" 9772 2 = "Cold deck imputation" 9773 3 = "Logical imputation (derivation)" 9774 ; NOTE: Format AHRCLUBF has been output. 9775 VALUE ehrclubg (default=32) 9776 -1 = "Not in Universe" 9777 ; NOTE: Format EHRCLUBG has been output. 9778 VALUE ahrclubg (default=32) 9779 0 = "Not imputed" 9780 1 = "Statistical imputation (hot deck)" 9781 2 = "Cold deck imputation" 9782 3 = "Logical imputation (derivation)" 9783 ; NOTE: Format AHRCLUBG has been output. 9784 VALUE ehrclubh (default=32) 9785 -1 = "Not in Universe" 9786 ; NOTE: Format EHRCLUBH has been output. 9787 VALUE ahrclubh (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 AHRCLUBH has been output. 9793 VALUE ehrclubi (default=32) 9794 -1 = "Not in Universe" 9795 ; NOTE: Format EHRCLUBI has been output. 9796 VALUE ahrclubi (default=32) 9797 0 = "Not imputed" 9798 1 = "Statistical imputation (hot deck)" 9799 2 = "Cold deck imputation" 9800 3 = "Logical imputation (derivation)" 9801 ; NOTE: Format AHRCLUBI has been output. 9802 VALUE ehrclubj (default=32) 9803 -1 = "Not in Universe" 9804 ; NOTE: Format EHRCLUBJ has been output. 9805 VALUE ahrclubj (default=32) 9806 0 = "Not imputed" 9807 1 = "Statistical imputation (hot deck)" 9808 2 = "Cold deck imputation" 9809 3 = "Logical imputation (derivation)" 9810 ; NOTE: Format AHRCLUBJ has been output. 9811 VALUE epaycluf (default=32) 9812 -1 = "Not in Universe" 9813 1 = "Yes" 9814 2 = "No" 9815 ; NOTE: Format EPAYCLUF has been output. 193 The SAS System 11:54 Thursday, June 7, 2012 9816 VALUE apaycluf (default=32) 9817 0 = "Not imputed" 9818 1 = "Statistical imputation (hot deck)" 9819 2 = "Cold deck imputation" 9820 3 = "Logical imputation (derivation)" 9821 ; NOTE: Format APAYCLUF has been output. 9822 VALUE epayclug (default=32) 9823 -1 = "Not in Universe" 9824 1 = "Yes" 9825 2 = "No" 9826 ; NOTE: Format EPAYCLUG has been output. 9827 VALUE apayclug (default=32) 9828 0 = "Not imputed" 9829 1 = "Statistical imputation (hot deck)" 9830 2 = "Cold deck imputation" 9831 3 = "Logical imputation (derivation)" 9832 ; NOTE: Format APAYCLUG has been output. 9833 VALUE epaycluh (default=32) 9834 -1 = "Not in Universe" 9835 1 = "Yes" 9836 2 = "No" 9837 ; NOTE: Format EPAYCLUH has been output. 9838 VALUE apaycluh (default=32) 9839 0 = "Not imputed" 9840 1 = "Statistical imputation (hot deck)" 9841 2 = "Cold deck imputation" 9842 3 = "Logical imputation (derivation)" 9843 ; NOTE: Format APAYCLUH has been output. 9844 VALUE epayclui (default=32) 9845 -1 = "Not in Universe" 9846 1 = "Yes" 9847 2 = "No" 9848 ; NOTE: Format EPAYCLUI has been output. 9849 VALUE apayclui (default=32) 9850 0 = "Not imputed" 9851 1 = "Statistical imputation (hot deck)" 9852 2 = "Cold deck imputation" 9853 3 = "Logical imputation (derivation)" 9854 ; NOTE: Format APAYCLUI has been output. 9855 VALUE epaycluj (default=32) 9856 -1 = "Not in Universe" 9857 1 = "Yes" 9858 2 = "No" 9859 ; NOTE: Format EPAYCLUJ has been output. 9860 VALUE apaycluj (default=32) 9861 0 = "Not imputed" 9862 1 = "Statistical imputation (hot deck)" 9863 2 = "Cold deck imputation" 9864 3 = "Logical imputation (derivation)" 9865 ; 194 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format APAYCLUJ has been output. 9866 VALUE tamtcluf (default=32) 9867 0 = "None or not in universe" 9868 ; NOTE: Format TAMTCLUF has been output. 9869 VALUE aamtcluf (default=32) 9870 0 = "Not imputed" 9871 1 = "Statistical imputation (hot deck)" 9872 2 = "Cold deck imputation" 9873 3 = "Logical imputation (derivation)" 9874 ; NOTE: Format AAMTCLUF has been output. 9875 VALUE tamtclug (default=32) 9876 0 = "None or not in universe" 9877 ; NOTE: Format TAMTCLUG has been output. 9878 VALUE aamtclug (default=32) 9879 0 = "Not imputed" 9880 1 = "Statistical imputation (hot deck)" 9881 2 = "Cold deck imputation" 9882 3 = "Logical imputation (derivation)" 9883 ; NOTE: Format AAMTCLUG has been output. 9884 VALUE tamtcluh (default=32) 9885 0 = "Suppressed" 9886 ; NOTE: Format TAMTCLUH has been output. 9887 VALUE aamtcluh (default=32) 9888 0 = "Suppressed" 9889 ; NOTE: Format AAMTCLUH has been output. 9890 VALUE tamtclui (default=32) 9891 0 = "Suppressed" 9892 ; NOTE: Format TAMTCLUI has been output. 9893 VALUE aamtclui (default=32) 9894 0 = "Suppressed" 9895 ; NOTE: Format AAMTCLUI has been output. 9896 VALUE tamtcluj (default=32) 9897 0 = "Suppressed" 9898 ; NOTE: Format TAMTCLUJ has been output. 9899 VALUE aamtcluj (default=32) 9900 0 = "Suppressed" 9901 ; NOTE: Format AAMTCLUJ has been output. 9902 VALUE ewhschof (default=32) 9903 -1 = "Not in Universe" 9904 1 = "At work or school" 9905 2 = "At child's school" 9906 3 = "Someplace else" 9907 ; NOTE: Format EWHSCHOF has been output. 9908 VALUE awhschof (default=32) 9909 0 = "Not imputed" 9910 1 = "Statistical imputation (hot deck)" 9911 2 = "Cold deck imputation" 195 The SAS System 11:54 Thursday, June 7, 2012 9912 3 = "Logical imputation (derivation)" 9913 ; NOTE: Format AWHSCHOF has been output. 9914 VALUE ewhschog (default=32) 9915 -1 = "Not in Universe" 9916 1 = "At work or school" 9917 2 = "At child's school" 9918 3 = "Someplace else" 9919 ; NOTE: Format EWHSCHOG has been output. 9920 VALUE awhschog (default=32) 9921 0 = "Not imputed" 9922 1 = "Statistical imputation (hot deck)" 9923 2 = "Cold deck imputation" 9924 3 = "Logical imputation (derivation)" 9925 ; NOTE: Format AWHSCHOG has been output. 9926 VALUE ewhschoh (default=32) 9927 -1 = "Not in Universe" 9928 1 = "At work or school" 9929 2 = "At child's school" 9930 3 = "Someplace else" 9931 ; NOTE: Format EWHSCHOH has been output. 9932 VALUE awhschoh (default=32) 9933 0 = "Not imputed" 9934 1 = "Statistical imputation (hot deck)" 9935 2 = "Cold deck imputation" 9936 3 = "Logical imputation (derivation)" 9937 ; NOTE: Format AWHSCHOH has been output. 9938 VALUE ewhschoi (default=32) 9939 -1 = "Not in Universe" 9940 1 = "At work or school" 9941 2 = "At child's school" 9942 3 = "Someplace else" 9943 ; NOTE: Format EWHSCHOI has been output. 9944 VALUE awhschoi (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 AWHSCHOI has been output. 9950 VALUE ewhschoj (default=32) 9951 -1 = "Not in Universe" 9952 1 = "At work or school" 9953 2 = "At child's school" 9954 3 = "Someplace else" 9955 ; NOTE: Format EWHSCHOJ has been output. 9956 VALUE awhschoj (default=32) 9957 0 = "Not imputed" 9958 1 = "Statistical imputation (hot deck)" 9959 2 = "Cold deck imputation" 9960 3 = "Logical imputation (derivation)" 9961 ; 196 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format AWHSCHOJ has been output. 9962 VALUE ehscho1f (default=32) 9963 -1 = "Not in Universe" 9964 ; NOTE: Format EHSCHO1F has been output. 9965 VALUE ahscho1f (default=32) 9966 0 = "Not imputed" 9967 1 = "Statistical imputation (hot deck)" 9968 2 = "Cold deck imputation" 9969 3 = "Logical imputation (derivation)" 9970 ; NOTE: Format AHSCHO1F has been output. 9971 VALUE ehscho1g (default=32) 9972 -1 = "Not in Universe" 9973 ; NOTE: Format EHSCHO1G has been output. 9974 VALUE ahscho1g (default=32) 9975 0 = "Not imputed" 9976 1 = "Statistical imputation (hot deck)" 9977 2 = "Cold deck imputation" 9978 3 = "Logical imputation (derivation)" 9979 ; NOTE: Format AHSCHO1G has been output. 9980 VALUE ehscho1h (default=32) 9981 -1 = "Not in Universe" 9982 ; NOTE: Format EHSCHO1H has been output. 9983 VALUE ahscho1h (default=32) 9984 0 = "Not imputed" 9985 1 = "Statistical imputation (hot deck)" 9986 2 = "Cold deck imputation" 9987 3 = "Logical imputation (derivation)" 9988 ; NOTE: Format AHSCHO1H has been output. 9989 VALUE ehscho1i (default=32) 9990 -1 = "Not in Universe" 9991 ; NOTE: Format EHSCHO1I has been output. 9992 VALUE ahscho1i (default=32) 9993 0 = "Not imputed" 9994 1 = "Statistical imputation (hot deck)" 9995 2 = "Cold deck imputation" 9996 3 = "Logical imputation (derivation)" 9997 ; NOTE: Format AHSCHO1I has been output. 9998 VALUE ehscho1j (default=32) 9999 -1 = "Not in Universe" 10000 ; NOTE: Format EHSCHO1J has been output. 10001 VALUE ahscho1j (default=32) 10002 0 = "Not imputed" 10003 1 = "Statistical imputation (hot deck)" 10004 2 = "Cold deck imputation" 10005 3 = "Logical imputation (derivation)" 10006 ; NOTE: Format AHSCHO1J has been output. 10007 VALUE ehrsch2f (default=32) 10008 -1 = "Not in Universe" 197 The SAS System 11:54 Thursday, June 7, 2012 10009 ; NOTE: Format EHRSCH2F has been output. 10010 VALUE ahrsch2f (default=32) 10011 0 = "Not imputed" 10012 1 = "Statistical imputation (hot deck)" 10013 2 = "Cold deck imputation" 10014 3 = "Logical imputation (derivation)" 10015 ; NOTE: Format AHRSCH2F has been output. 10016 VALUE ehrsch2g (default=32) 10017 -1 = "Not in Universe" 10018 ; NOTE: Format EHRSCH2G has been output. 10019 VALUE ahrsch2g (default=32) 10020 0 = "Not imputed" 10021 1 = "Statistical imputation (hot deck)" 10022 2 = "Cold deck imputation" 10023 3 = "Logical imputation (derivation)" 10024 ; NOTE: Format AHRSCH2G has been output. 10025 VALUE ehrsch2h (default=32) 10026 -1 = "Not in Universe" 10027 ; NOTE: Format EHRSCH2H has been output. 10028 VALUE ahrsch2h (default=32) 10029 0 = "Not imputed" 10030 1 = "Statistical imputation (hot deck)" 10031 2 = "Cold deck imputation" 10032 3 = "Logical imputation (derivation)" 10033 ; NOTE: Format AHRSCH2H has been output. 10034 VALUE ehrsch2i (default=32) 10035 -1 = "Not in Universe" 10036 ; NOTE: Format EHRSCH2I has been output. 10037 VALUE ahrsch2i (default=32) 10038 0 = "Not imputed" 10039 1 = "Statistical imputation (hot deck)" 10040 2 = "Cold deck imputation" 10041 3 = "Logical imputation (derivation)" 10042 ; NOTE: Format AHRSCH2I has been output. 10043 VALUE ehrsch2j (default=32) 10044 -1 = "Not in Universe" 10045 ; NOTE: Format EHRSCH2J has been output. 10046 VALUE ahrsch2j (default=32) 10047 0 = "Not imputed" 10048 1 = "Statistical imputation (hot deck)" 10049 2 = "Cold deck imputation" 10050 3 = "Logical imputation (derivation)" 10051 ; NOTE: Format AHRSCH2J has been output. 10052 VALUE epayschf (default=32) 10053 -1 = "Not in Universe" 10054 1 = "Yes" 10055 2 = "No" 10056 ; 198 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EPAYSCHF has been output. 10057 VALUE apayschf (default=32) 10058 0 = "Not imputed" 10059 1 = "Statistical imputation (hot deck)" 10060 2 = "Cold deck imputation" 10061 3 = "Logical imputation (derivation)" 10062 ; NOTE: Format APAYSCHF has been output. 10063 VALUE epayschg (default=32) 10064 -1 = "Not in Universe" 10065 1 = "Yes" 10066 2 = "No" 10067 ; NOTE: Format EPAYSCHG has been output. 10068 VALUE apayschg (default=32) 10069 0 = "Not imputed" 10070 1 = "Statistical imputation (hot deck)" 10071 2 = "Cold deck imputation" 10072 3 = "Logical imputation (derivation)" 10073 ; NOTE: Format APAYSCHG has been output. 10074 VALUE epayschh (default=32) 10075 -1 = "Not in Universe" 10076 1 = "Yes" 10077 2 = "No" 10078 ; NOTE: Format EPAYSCHH has been output. 10079 VALUE apayschh (default=32) 10080 0 = "Not imputed" 10081 1 = "Statistical imputation (hot deck)" 10082 2 = "Cold deck imputation" 10083 3 = "Logical imputation (derivation)" 10084 ; NOTE: Format APAYSCHH has been output. 10085 VALUE epayschi (default=32) 10086 -1 = "Not in Universe" 10087 1 = "Yes" 10088 2 = "No" 10089 ; NOTE: Format EPAYSCHI has been output. 10090 VALUE apayschi (default=32) 10091 0 = "Not imputed" 10092 1 = "Statistical imputation (hot deck)" 10093 2 = "Cold deck imputation" 10094 3 = "Logical imputation (derivation)" 10095 ; NOTE: Format APAYSCHI has been output. 10096 VALUE epayschj (default=32) 10097 -1 = "Not in Universe" 10098 1 = "Yes" 10099 2 = "No" 10100 ; NOTE: Format EPAYSCHJ has been output. 10101 VALUE apayschj (default=32) 10102 0 = "Not imputed" 10103 1 = "Statistical imputation (hot deck)" 10104 2 = "Cold deck imputation" 10105 3 = "Logical imputation (derivation)" 199 The SAS System 11:54 Thursday, June 7, 2012 10106 ; NOTE: Format APAYSCHJ has been output. 10107 VALUE tamtschf (default=32) 10108 0 = "None or not in universe" 10109 ; NOTE: Format TAMTSCHF has been output. 10110 VALUE aamtschf (default=32) 10111 0 = "Not imputed" 10112 1 = "Statistical imputation (hot deck)" 10113 2 = "Cold deck imputation" 10114 3 = "Logical imputation (derivation)" 10115 ; NOTE: Format AAMTSCHF has been output. 10116 VALUE tamtschg (default=32) 10117 0 = "None or not in universe" 10118 ; NOTE: Format TAMTSCHG has been output. 10119 VALUE aamtschg (default=32) 10120 0 = "Not imputed" 10121 1 = "Statistical imputation (hot deck)" 10122 2 = "Cold deck imputation" 10123 3 = "Logical imputation (derivation)" 10124 ; NOTE: Format AAMTSCHG has been output. 10125 VALUE tamtschh (default=32) 10126 0 = "Suppressed" 10127 ; NOTE: Format TAMTSCHH has been output. 10128 VALUE aamtschh (default=32) 10129 0 = "Suppressed" 10130 ; NOTE: Format AAMTSCHH has been output. 10131 VALUE tamtschi (default=32) 10132 0 = "Suppressed" 10133 ; NOTE: Format TAMTSCHI has been output. 10134 VALUE aamtschi (default=32) 10135 0 = "Suppressed" 10136 ; NOTE: Format AAMTSCHI has been output. 10137 VALUE tamtschj (default=32) 10138 0 = "Suppressed" 10139 ; NOTE: Format TAMTSCHJ has been output. 10140 VALUE aamtschj (default=32) 10141 0 = "Suppressed" 10142 ; NOTE: Format AAMTSCHJ has been output. 10143 VALUE ewhothef (default=32) 10144 -1 = "Not in Universe" 10145 1 = "Child's home" 10146 2 = "The non-relative's home" 10147 3 = "Someplace else" 10148 ; NOTE: Format EWHOTHEF has been output. 10149 VALUE awhothef (default=32) 10150 0 = "Not imputed" 10151 1 = "Statistical imputation (hot deck)" 200 The SAS System 11:54 Thursday, June 7, 2012 10152 2 = "Cold deck imputation" 10153 3 = "Logical imputation (derivation)" 10154 ; NOTE: Format AWHOTHEF has been output. 10155 VALUE ewhotheg (default=32) 10156 -1 = "Not in Universe" 10157 1 = "Child's home" 10158 2 = "The non-relative's home" 10159 3 = "Someplace else" 10160 ; NOTE: Format EWHOTHEG has been output. 10161 VALUE awhotheg (default=32) 10162 0 = "Not imputed" 10163 1 = "Statistical imputation (hot deck)" 10164 2 = "Cold deck imputation" 10165 3 = "Logical imputation (derivation)" 10166 ; NOTE: Format AWHOTHEG has been output. 10167 VALUE ewhotheh (default=32) 10168 -1 = "Not in Universe" 10169 1 = "Child's home" 10170 2 = "The non-relative's home" 10171 3 = "Someplace else" 10172 ; NOTE: Format EWHOTHEH has been output. 10173 VALUE awhotheh (default=32) 10174 0 = "Not imputed" 10175 1 = "Statistical imputation (hot deck)" 10176 2 = "Cold deck imputation" 10177 3 = "Logical imputation (derivation)" 10178 ; NOTE: Format AWHOTHEH has been output. 10179 VALUE ewhothei (default=32) 10180 -1 = "Not in Universe" 10181 1 = "Child's home" 10182 2 = "The non-relative's home" 10183 3 = "Someplace else" 10184 ; NOTE: Format EWHOTHEI has been output. 10185 VALUE awhothei (default=32) 10186 0 = "Not imputed" 10187 1 = "Statistical imputation (hot deck)" 10188 2 = "Cold deck imputation" 10189 3 = "Logical imputation (derivation)" 10190 ; NOTE: Format AWHOTHEI has been output. 10191 VALUE ewhothej (default=32) 10192 -1 = "Not in Universe" 10193 1 = "Child's home" 10194 2 = "The non-relative's home" 10195 3 = "Someplace else" 10196 ; NOTE: Format EWHOTHEJ has been output. 10197 VALUE awhothej (default=32) 10198 0 = "Not imputed" 10199 1 = "Statistical imputation (hot deck)" 10200 2 = "Cold deck imputation" 10201 3 = "Logical imputation (derivation)" 201 The SAS System 11:54 Thursday, June 7, 2012 10202 ; NOTE: Format AWHOTHEJ has been output. 10203 VALUE eothehrf (default=32) 10204 -1 = "Not in Universe" 10205 ; NOTE: Format EOTHEHRF has been output. 10206 VALUE aothehrf (default=32) 10207 0 = "Not imputed" 10208 1 = "Statistical imputation (hot deck)" 10209 2 = "Cold deck imputation" 10210 3 = "Logical imputation (derivation)" 10211 ; NOTE: Format AOTHEHRF has been output. 10212 VALUE eothehrg (default=32) 10213 -1 = "Not in Universe" 10214 ; NOTE: Format EOTHEHRG has been output. 10215 VALUE aothehrg (default=32) 10216 0 = "Not imputed" 10217 1 = "Statistical imputation (hot deck)" 10218 2 = "Cold deck imputation" 10219 3 = "Logical imputation (derivation)" 10220 ; NOTE: Format AOTHEHRG has been output. 10221 VALUE eothehrh (default=32) 10222 -1 = "Not in Universe" 10223 ; NOTE: Format EOTHEHRH has been output. 10224 VALUE aothehrh (default=32) 10225 0 = "Not imputed" 10226 1 = "Statistical imputation (hot deck)" 10227 2 = "Cold deck imputation" 10228 3 = "Logical imputation (derivation)" 10229 ; NOTE: Format AOTHEHRH has been output. 10230 VALUE eothehri (default=32) 10231 -1 = "Not in Universe" 10232 ; NOTE: Format EOTHEHRI has been output. 10233 VALUE aothehri (default=32) 10234 0 = "Not imputed" 10235 1 = "Statistical imputation (hot deck)" 10236 2 = "Cold deck imputation" 10237 3 = "Logical imputation (derivation)" 10238 ; NOTE: Format AOTHEHRI has been output. 10239 VALUE eothehrj (default=32) 10240 -1 = "Not in Universe" 10241 ; NOTE: Format EOTHEHRJ has been output. 10242 VALUE aothehrj (default=32) 10243 0 = "Not imputed" 10244 1 = "Statistical imputation (hot deck)" 10245 2 = "Cold deck imputation" 10246 3 = "Logical imputation (derivation)" 10247 ; NOTE: Format AOTHEHRJ has been output. 10248 VALUE ehrothef (default=32) 202 The SAS System 11:54 Thursday, June 7, 2012 10249 -1 = "Not in Universe" 10250 ; NOTE: Format EHROTHEF has been output. 10251 VALUE ahrothef (default=32) 10252 0 = "Not imputed" 10253 1 = "Statistical imputation (hot deck)" 10254 2 = "Cold deck imputation" 10255 3 = "Logical imputation (hot deck)" 10256 ; NOTE: Format AHROTHEF has been output. 10257 VALUE ehrotheg (default=32) 10258 -1 = "Not in Universe" 10259 ; NOTE: Format EHROTHEG has been output. 10260 VALUE ahrotheg (default=32) 10261 0 = "Not imputed" 10262 1 = "Statistical imputation (hot deck)" 10263 2 = "Cold deck imputation" 10264 3 = "Logical imputation (hot deck)" 10265 ; NOTE: Format AHROTHEG has been output. 10266 VALUE ehrotheh (default=32) 10267 -1 = "Not in Universe" 10268 ; NOTE: Format EHROTHEH has been output. 10269 VALUE ahrotheh (default=32) 10270 0 = "Not imputed" 10271 1 = "Statistical imputation (hot deck)" 10272 2 = "Cold deck imputation" 10273 3 = "Logical imputation (hot deck)" 10274 ; NOTE: Format AHROTHEH has been output. 10275 VALUE ehrothei (default=32) 10276 -1 = "Not in Universe" 10277 ; NOTE: Format EHROTHEI has been output. 10278 VALUE ahrothei (default=32) 10279 0 = "Not imputed" 10280 1 = "Statistical imputation (hot deck)" 10281 2 = "Cold deck imputation" 10282 3 = "Logical imputation (hot deck)" 10283 ; NOTE: Format AHROTHEI has been output. 10284 VALUE ehrothej (default=32) 10285 -1 = "Not in Universe" 10286 ; NOTE: Format EHROTHEJ has been output. 10287 VALUE ahrothej (default=32) 10288 0 = "Not imputed" 10289 1 = "Statistical imputation (hot deck)" 10290 2 = "Cold deck imputation" 10291 3 = "Logical imputation (hot deck)" 10292 ; NOTE: Format AHROTHEJ has been output. 10293 VALUE epayothf (default=32) 10294 -1 = "Not in Universe" 10295 1 = "Yes" 10296 2 = "No" 203 The SAS System 11:54 Thursday, June 7, 2012 10297 ; NOTE: Format EPAYOTHF has been output. 10298 VALUE apayothf (default=32) 10299 0 = "Not imputed" 10300 1 = "Statistical imputation (hot deck)" 10301 2 = "Cold deck imputation" 10302 3 = "Logical imputation (derivation)" 10303 ; NOTE: Format APAYOTHF has been output. 10304 VALUE epayothg (default=32) 10305 -1 = "Not in Universe" 10306 1 = "Yes" 10307 2 = "No" 10308 ; NOTE: Format EPAYOTHG has been output. 10309 VALUE apayothg (default=32) 10310 0 = "Not imputed" 10311 1 = "Statistical imputation (hot deck)" 10312 2 = "Cold deck imputation" 10313 3 = "Logical imputation (derivation)" 10314 ; NOTE: Format APAYOTHG has been output. 10315 VALUE epayothh (default=32) 10316 -1 = "Not in Universe" 10317 1 = "Yes" 10318 2 = "No" 10319 ; NOTE: Format EPAYOTHH has been output. 10320 VALUE apayothh (default=32) 10321 0 = "Not imputed" 10322 1 = "Statistical imputation (hot deck)" 10323 2 = "Cold deck imputation" 10324 3 = "Logical imputation (derivation)" 10325 ; NOTE: Format APAYOTHH has been output. 10326 VALUE epayothi (default=32) 10327 -1 = "Not in Universe" 10328 1 = "Yes" 10329 2 = "No" 10330 ; NOTE: Format EPAYOTHI has been output. 10331 VALUE apayothi (default=32) 10332 0 = "Not imputed" 10333 1 = "Statistical imputation (hot deck)" 10334 2 = "Cold deck imputation" 10335 3 = "Logical imputation (derivation)" 10336 ; NOTE: Format APAYOTHI has been output. 10337 VALUE epayothj (default=32) 10338 -1 = "Not in Universe" 10339 1 = "Yes" 10340 2 = "No" 10341 ; NOTE: Format EPAYOTHJ has been output. 10342 VALUE apayothj (default=32) 10343 0 = "Not imputed" 10344 1 = "Statistical imputation (hot deck)" 10345 2 = "Cold deck imputation" 204 The SAS System 11:54 Thursday, June 7, 2012 10346 3 = "Logical imputation (derivation)" 10347 ; NOTE: Format APAYOTHJ has been output. 10348 VALUE tamtothf (default=32) 10349 0 = "None or not in universe" 10350 ; NOTE: Format TAMTOTHF has been output. 10351 VALUE aamtothf (default=32) 10352 0 = "Not imputed" 10353 1 = "Statistical imputation (hot deck)" 10354 2 = "Cold deck imputation" 10355 3 = "Logical imputation (derivation)" 10356 ; NOTE: Format AAMTOTHF has been output. 10357 VALUE tamtothg (default=32) 10358 0 = "None or not in universe" 10359 ; NOTE: Format TAMTOTHG has been output. 10360 VALUE aamtothg (default=32) 10361 0 = "Not imputed" 10362 1 = "Statistical imputation (hot deck)" 10363 2 = "Cold deck imputation" 10364 3 = "Logical imputation (derivation)" 10365 ; NOTE: Format AAMTOTHG has been output. 10366 VALUE tamtothh (default=32) 10367 0 = "Suppressed" 10368 ; NOTE: Format TAMTOTHH has been output. 10369 VALUE aamtothh (default=32) 10370 0 = "Suppressed" 10371 ; NOTE: Format AAMTOTHH has been output. 10372 VALUE tamtothi (default=32) 10373 0 = "Suppressed" 10374 ; NOTE: Format TAMTOTHI has been output. 10375 VALUE aamtothi (default=32) 10376 0 = "Suppressed" 10377 ; NOTE: Format AAMTOTHI has been output. 10378 VALUE tamtothj (default=32) 10379 0 = "Suppressed" 10380 ; NOTE: Format TAMTOTHJ has been output. 10381 VALUE aamtothj (default=32) 10382 0 = "Suppressed" 10383 ; NOTE: Format AAMTOTHJ has been output. 10384 VALUE eschoowf (default=32) 10385 -1 = "Not in Universe" 10386 1 = "Yes" 10387 2 = "No" 10388 ; NOTE: Format ESCHOOWF has been output. 10389 VALUE aschoowf (default=32) 10390 0 = "Not imputed" 10391 1 = "Statistical imputation (hot deck)" 205 The SAS System 11:54 Thursday, June 7, 2012 10392 2 = "Cold deck imputation" 10393 3 = "Logical imputation (derivation)" 10394 ; NOTE: Format ASCHOOWF has been output. 10395 VALUE eschoowg (default=32) 10396 -1 = "Not in Universe" 10397 1 = "Yes" 10398 2 = "No" 10399 ; NOTE: Format ESCHOOWG has been output. 10400 VALUE aschoowg (default=32) 10401 0 = "Not imputed" 10402 1 = "Statistical imputation (hot deck)" 10403 2 = "Cold deck imputation" 10404 3 = "Logical imputation (derivation)" 10405 ; NOTE: Format ASCHOOWG has been output. 10406 VALUE eschoowh (default=32) 10407 -1 = "Not in Universe" 10408 1 = "Yes" 10409 2 = "No" 10410 ; NOTE: Format ESCHOOWH has been output. 10411 VALUE aschoowh (default=32) 10412 0 = "Not imputed" 10413 1 = "Statistical imputation (hot deck)" 10414 2 = "Cold deck imputation" 10415 3 = "Logical imputation (derivation)" 10416 ; NOTE: Format ASCHOOWH has been output. 10417 VALUE eschoowi (default=32) 10418 -1 = "Not in Universe" 10419 1 = "Yes" 10420 2 = "No" 10421 ; NOTE: Format ESCHOOWI has been output. 10422 VALUE aschoowi (default=32) 10423 0 = "Not imputed" 10424 1 = "Statistical imputation (hot deck)" 10425 2 = "Cold deck imputation" 10426 3 = "Logical imputation (derivation)" 10427 ; NOTE: Format ASCHOOWI has been output. 10428 VALUE eschoowj (default=32) 10429 -1 = "Not in Universe" 10430 1 = "Yes" 10431 2 = "No" 10432 ; NOTE: Format ESCHOOWJ has been output. 10433 VALUE aschoowj (default=32) 10434 0 = "Not imputed" 10435 1 = "Statistical imputation (hot deck)" 10436 2 = "Cold deck imputation" 10437 3 = "Logical imputation (derivation)" 10438 ; NOTE: Format ASCHOOWJ has been output. 10439 VALUE ehrschwf (default=32) 10440 -1 = "Not in Universe" 206 The SAS System 11:54 Thursday, June 7, 2012 10441 ; NOTE: Format EHRSCHWF has been output. 10442 VALUE ahrschwf (default=32) 10443 0 = "Not imputed" 10444 1 = "Statistical imputation (hot deck)" 10445 2 = "Cold deck imputation" 10446 3 = "Logical imputation (derivation)" 10447 ; NOTE: Format AHRSCHWF has been output. 10448 VALUE ehrschwg (default=32) 10449 -1 = "Not in Universe" 10450 ; NOTE: Format EHRSCHWG has been output. 10451 VALUE ahrschwg (default=32) 10452 0 = "Not imputed" 10453 1 = "Statistical imputation (hot deck)" 10454 2 = "Cold deck imputation" 10455 3 = "Logical imputation (derivation)" 10456 ; NOTE: Format AHRSCHWG has been output. 10457 VALUE ehrschwh (default=32) 10458 -1 = "Not in Universe" 10459 ; NOTE: Format EHRSCHWH has been output. 10460 VALUE ahrschwh (default=32) 10461 0 = "Not imputed" 10462 1 = "Statistical imputation (hot deck)" 10463 2 = "Cold deck imputation" 10464 3 = "Logical imputation (derivation)" 10465 ; NOTE: Format AHRSCHWH has been output. 10466 VALUE ehrschwi (default=32) 10467 -1 = "Not in Universe" 10468 ; NOTE: Format EHRSCHWI has been output. 10469 VALUE ahrschwi (default=32) 10470 0 = "Not imputed" 10471 1 = "Statistical imputation (hot deck)" 10472 2 = "Cold deck imputation" 10473 3 = "Logical imputation (derivation)" 10474 ; NOTE: Format AHRSCHWI has been output. 10475 VALUE ehrschwj (default=32) 10476 -1 = "Not in Universe" 10477 ; NOTE: Format EHRSCHWJ has been output. 10478 VALUE ahrschwj (default=32) 10479 0 = "Not imputed" 10480 1 = "Statistical imputation (hot deck)" 10481 2 = "Cold deck imputation" 10482 3 = "Logical imputation (derivation)" 10483 ; NOTE: Format AHRSCHWJ has been output. 10484 VALUE ehrschof (default=32) 10485 -1 = "Not in Universe" 10486 ; NOTE: Format EHRSCHOF has been output. 10487 VALUE ahrschof (default=32) 207 The SAS System 11:54 Thursday, June 7, 2012 10488 0 = "Not imputed" 10489 1 = "Statistical imputation (hot deck)" 10490 2 = "Cold deck imputation" 10491 3 = "Logical imputation (derivation)" 10492 ; NOTE: Format AHRSCHOF has been output. 10493 VALUE ehrschog (default=32) 10494 -1 = "Not in Universe" 10495 ; NOTE: Format EHRSCHOG has been output. 10496 VALUE ahrschog (default=32) 10497 0 = "Not imputed" 10498 1 = "Statistical imputation (hot deck)" 10499 2 = "Cold deck imputation" 10500 3 = "Logical imputation (derivation)" 10501 ; NOTE: Format AHRSCHOG has been output. 10502 VALUE ehrschoh (default=32) 10503 -1 = "Not in Universe" 10504 ; NOTE: Format EHRSCHOH has been output. 10505 VALUE ahrschoh (default=32) 10506 0 = "Not imputed" 10507 1 = "Statistical imputation (hot deck)" 10508 2 = "Cold deck imputation" 10509 3 = "Logical imputation (derivation)" 10510 ; NOTE: Format AHRSCHOH has been output. 10511 VALUE ehrschoi (default=32) 10512 -1 = "Not in Universe" 10513 ; NOTE: Format EHRSCHOI has been output. 10514 VALUE ahrschoi (default=32) 10515 0 = "Not imputed" 10516 1 = "Statistical imputation (hot deck)" 10517 2 = "Cold deck imputation" 10518 3 = "Logical imputation (derivation)" 10519 ; NOTE: Format AHRSCHOI has been output. 10520 VALUE ehrschoj (default=32) 10521 -1 = "Not in Universe" 10522 ; NOTE: Format EHRSCHOJ has been output. 10523 VALUE ahrschoj (default=32) 10524 0 = "Not imputed" 10525 1 = "Statistical imputation (hot deck)" 10526 2 = "Cold deck imputation" 10527 3 = "Logical imputation (derivation)" 10528 ; NOTE: Format AHRSCHOJ has been output. 10529 VALUE eselfcaf (default=32) 10530 -1 = "Not in Universe" 10531 1 = "Yes" 10532 2 = "No" 10533 ; NOTE: Format ESELFCAF has been output. 10534 VALUE aselfcaf (default=32) 10535 0 = "Not imputed" 208 The SAS System 11:54 Thursday, June 7, 2012 10536 1 = "Statistical imputation (hot deck)" 10537 2 = "Cold deck imputation" 10538 3 = "Logical imputation (derivation)" 10539 ; NOTE: Format ASELFCAF has been output. 10540 VALUE eselfcag (default=32) 10541 -1 = "Not in Universe" 10542 1 = "Yes" 10543 2 = "No" 10544 ; NOTE: Format ESELFCAG has been output. 10545 VALUE aselfcag (default=32) 10546 0 = "Not imputed" 10547 1 = "Statistical imputation (hot deck)" 10548 2 = "Cold deck imputation" 10549 3 = "Logical imputation (derivation)" 10550 ; NOTE: Format ASELFCAG has been output. 10551 VALUE eselfcah (default=32) 10552 -1 = "Not in Universe" 10553 1 = "Yes" 10554 2 = "No" 10555 ; NOTE: Format ESELFCAH has been output. 10556 VALUE aselfcah (default=32) 10557 0 = "Not imputed" 10558 1 = "Statistical imputation (hot deck)" 10559 2 = "Cold deck imputation" 10560 3 = "Logical imputation (derivation)" 10561 ; NOTE: Format ASELFCAH has been output. 10562 VALUE eselfcai (default=32) 10563 -1 = "Not in Universe" 10564 1 = "Yes" 10565 2 = "No" 10566 ; NOTE: Format ESELFCAI has been output. 10567 VALUE aselfcai (default=32) 10568 0 = "Not imputed" 10569 1 = "Statistical imputation (hot deck)" 10570 2 = "Cold deck imputation" 10571 3 = "Logical imputation (derivation)" 10572 ; NOTE: Format ASELFCAI has been output. 10573 VALUE eselfcaj (default=32) 10574 -1 = "Not in Universe" 10575 1 = "Yes" 10576 2 = "No" 10577 ; NOTE: Format ESELFCAJ has been output. 10578 VALUE aselfcaj (default=32) 10579 0 = "Not imputed" 10580 1 = "Statistical imputation (hot deck)" 10581 2 = "Cold deck imputation" 10582 3 = "Logical imputation (derivation)" 10583 ; NOTE: Format ASELFCAJ has been output. 10584 VALUE ekidhr1f (default=32) 209 The SAS System 11:54 Thursday, June 7, 2012 10585 -1 = "Not in Universe" 10586 ; NOTE: Format EKIDHR1F has been output. 10587 VALUE akidhr1f (default=32) 10588 0 = "Not imputed" 10589 1 = "Statistical imputation (hot deck)" 10590 2 = "Cold deck imputation" 10591 3 = "Logical imputation (derivation)" 10592 ; NOTE: Format AKIDHR1F has been output. 10593 VALUE ekidhr1g (default=32) 10594 -1 = "Not in Universe" 10595 ; NOTE: Format EKIDHR1G has been output. 10596 VALUE akidhr1g (default=32) 10597 0 = "Not imputed" 10598 1 = "Statistical imputation (hot deck)" 10599 2 = "Cold deck imputation" 10600 3 = "Logical imputation (derivation)" 10601 ; NOTE: Format AKIDHR1G has been output. 10602 VALUE ekidhr1h (default=32) 10603 -1 = "Not in Universe" 10604 ; NOTE: Format EKIDHR1H has been output. 10605 VALUE akidhr1h (default=32) 10606 0 = "Not imputed" 10607 1 = "Statistical imputation (hot deck)" 10608 2 = "Cold deck imputation" 10609 3 = "Logical imputation (derivation)" 10610 ; NOTE: Format AKIDHR1H has been output. 10611 VALUE ekidhr1i (default=32) 10612 -1 = "Not in Universe" 10613 ; NOTE: Format EKIDHR1I has been output. 10614 VALUE akidhr1i (default=32) 10615 0 = "Not imputed" 10616 1 = "Statistical imputation (hot deck)" 10617 2 = "Cold deck imputation" 10618 3 = "Logical imputation (derivation)" 10619 ; NOTE: Format AKIDHR1I has been output. 10620 VALUE ekidhr1j (default=32) 10621 -1 = "Not in Universe" 10622 ; NOTE: Format EKIDHR1J has been output. 10623 VALUE akidhr1j (default=32) 10624 0 = "Not imputed" 10625 1 = "Statistical imputation (hot deck)" 10626 2 = "Cold deck imputation" 10627 3 = "Logical imputation (derivation)" 10628 ; NOTE: Format AKIDHR1J has been output. 10629 VALUE ekidhr2f (default=32) 10630 -1 = "Not in Universe" 10631 ; NOTE: Format EKIDHR2F has been output. 210 The SAS System 11:54 Thursday, June 7, 2012 10632 VALUE akidhr2f (default=32) 10633 0 = "Not imputed" 10634 1 = "Statistical imputation (hot deck)" 10635 2 = "Cold deck imputation" 10636 3 = "Logical imputation (derivation)" 10637 ; NOTE: Format AKIDHR2F has been output. 10638 VALUE ekidhr2g (default=32) 10639 -1 = "Not in Universe" 10640 ; NOTE: Format EKIDHR2G has been output. 10641 VALUE akidhr2g (default=32) 10642 0 = "Not imputed" 10643 1 = "Statistical imputation (hot deck)" 10644 2 = "Cold deck imputation" 10645 3 = "Logical imputation (derivation)" 10646 ; NOTE: Format AKIDHR2G has been output. 10647 VALUE ekidhr2h (default=32) 10648 -1 = "Not in Universe" 10649 ; NOTE: Format EKIDHR2H has been output. 10650 VALUE akidhr2h (default=32) 10651 0 = "Not imputed" 10652 1 = "Statistical imputation (hot deck)" 10653 2 = "Cold deck imputation" 10654 3 = "Logical imputation (derivation)" 10655 ; NOTE: Format AKIDHR2H has been output. 10656 VALUE ekidhr2i (default=32) 10657 -1 = "Not in Universe" 10658 ; NOTE: Format EKIDHR2I has been output. 10659 VALUE akidhr2i (default=32) 10660 0 = "Not imputed" 10661 1 = "Statistical imputation (hot deck)" 10662 2 = "Cold deck imputation" 10663 3 = "Logical imputation (derivation)" 10664 ; NOTE: Format AKIDHR2I has been output. 10665 VALUE ekidhr2j (default=32) 10666 -1 = "Not in Universe" 10667 ; NOTE: Format EKIDHR2J has been output. 10668 VALUE akidhr2j (default=32) 10669 0 = "Not imputed" 10670 1 = "Statistical imputation (hot deck)" 10671 2 = "Cold deck imputation" 10672 3 = "Logical imputation (derivation)" 10673 ; NOTE: Format AKIDHR2J has been output. 10674 VALUE edaychaf (default=32) 10675 -1 = "Not in Universe" 10676 1 = "Yes" 10677 2 = "No" 10678 ; NOTE: Format EDAYCHAF has been output. 10679 VALUE adaychaf (default=32) 211 The SAS System 11:54 Thursday, June 7, 2012 10680 0 = "Not imputed" 10681 1 = "Statistical imputation (hot deck)" 10682 2 = "Cold deck imputation" 10683 3 = "Logical imputation (derivation)" 10684 ; NOTE: Format ADAYCHAF has been output. 10685 VALUE edaychag (default=32) 10686 -1 = "Not in Universe" 10687 1 = "Yes" 10688 2 = "No" 10689 ; NOTE: Format EDAYCHAG has been output. 10690 VALUE adaychag (default=32) 10691 0 = "Not imputed" 10692 1 = "Statistical imputation (hot deck)" 10693 2 = "Cold deck imputation" 10694 3 = "Logical imputation (derivation)" 10695 ; NOTE: Format ADAYCHAG has been output. 10696 VALUE edaychah (default=32) 10697 -1 = "Not in Universe" 10698 1 = "Yes" 10699 2 = "No" 10700 ; NOTE: Format EDAYCHAH has been output. 10701 VALUE adaychah (default=32) 10702 0 = "Not imputed" 10703 1 = "Statistical imputation (hot deck)" 10704 2 = "Cold deck imputation" 10705 3 = "Logical imputation (derivation)" 10706 ; NOTE: Format ADAYCHAH has been output. 10707 VALUE edaychai (default=32) 10708 -1 = "Not in Universe" 10709 1 = "Yes" 10710 2 = "No" 10711 ; NOTE: Format EDAYCHAI has been output. 10712 VALUE adaychai (default=32) 10713 0 = "Not imputed" 10714 1 = "Statistical imputation (hot deck)" 10715 2 = "Cold deck imputation" 10716 3 = "Logical imputation (derivation)" 10717 ; NOTE: Format ADAYCHAI has been output. 10718 VALUE edaychaj (default=32) 10719 -1 = "Not in Universe" 10720 1 = "Yes" 10721 2 = "No" 10722 ; NOTE: Format EDAYCHAJ has been output. 10723 VALUE adaychaj (default=32) 10724 0 = "Not imputed" 10725 1 = "Statistical imputation (hot deck)" 10726 2 = "Cold deck imputation" 10727 3 = "Logical imputation (derivation)" 10728 ; NOTE: Format ADAYCHAJ has been output. 212 The SAS System 11:54 Thursday, June 7, 2012 10729 VALUE epayhelf (default=32) 10730 -1 = "Not in Universe" 10731 1 = "Yes" 10732 2 = "No" 10733 3 = "Did not use any arrangements" 10734 ; NOTE: Format EPAYHELF has been output. 10735 VALUE apayhelf (default=32) 10736 0 = "Not imputed" 10737 1 = "Statistical imputation (hot deck)" 10738 2 = "Cold deck imputation" 10739 3 = "Logical imputation (derivation)" 10740 ; NOTE: Format APAYHELF has been output. 10741 VALUE epayhelg (default=32) 10742 -1 = "Not in Universe" 10743 1 = "Yes" 10744 2 = "No" 10745 3 = "Did not use any arrangements" 10746 ; NOTE: Format EPAYHELG has been output. 10747 VALUE apayhelg (default=32) 10748 0 = "Not imputed" 10749 1 = "Statistical imputation (hot deck)" 10750 2 = "Cold deck imputation" 10751 3 = "Logical imputation (derivation)" 10752 ; NOTE: Format APAYHELG has been output. 10753 VALUE epayhelh (default=32) 10754 -1 = "Not in Universe" 10755 1 = "Yes" 10756 2 = "No" 10757 3 = "Did not use any arrangements" 10758 ; NOTE: Format EPAYHELH has been output. 10759 VALUE apayhelh (default=32) 10760 0 = "Not imputed" 10761 1 = "Statistical imputation (hot deck)" 10762 2 = "Cold deck imputation" 10763 3 = "Logical imputation (derivation)" 10764 ; NOTE: Format APAYHELH has been output. 10765 VALUE epayheli (default=32) 10766 -1 = "Not in Universe" 10767 1 = "Yes" 10768 2 = "No" 10769 3 = "Did not use any arrangements" 10770 ; NOTE: Format EPAYHELI has been output. 10771 VALUE apayheli (default=32) 10772 0 = "Not imputed" 10773 1 = "Statistical imputation (hot deck)" 10774 2 = "Cold deck imputation" 10775 3 = "Logical imputation (derivation)" 10776 ; NOTE: Format APAYHELI has been output. 10777 VALUE epayhelj (default=32) 10778 -1 = "Not in Universe" 213 The SAS System 11:54 Thursday, June 7, 2012 10779 1 = "Yes" 10780 2 = "No" 10781 3 = "Did not use any arrangements" 10782 ; NOTE: Format EPAYHELJ has been output. 10783 VALUE apayhelj (default=32) 10784 0 = "Not imputed" 10785 1 = "Statistical imputation (hot deck)" 10786 2 = "Cold deck imputation" 10787 3 = "Logical imputation (derivation)" 10788 ; NOTE: Format APAYHELJ has been output. 10789 VALUE ewhopa1f (default=32) 10790 -1 = "Not in Universe" 10791 1 = "Yes" 10792 2 = "No" 10793 ; NOTE: Format EWHOPA1F has been output. 10794 VALUE ewhopa2f (default=32) 10795 -1 = "Not in Universe" 10796 1 = "Yes" 10797 2 = "No" 10798 ; NOTE: Format EWHOPA2F has been output. 10799 VALUE ewhopa3f (default=32) 10800 -1 = "Not in Universe" 10801 1 = "Yes" 10802 2 = "No" 10803 ; NOTE: Format EWHOPA3F has been output. 10804 VALUE ewhopa4f (default=32) 10805 -1 = "Not in Universe" 10806 1 = "Yes" 10807 2 = "No" 10808 ; NOTE: Format EWHOPA4F has been output. 10809 VALUE awhopaf (default=32) 10810 0 = "Not imputed" 10811 1 = "Statistical imputation (hot deck)" 10812 2 = "Cold deck imputation" 10813 3 = "Logical imputation (derivation)" 10814 ; NOTE: Format AWHOPAF has been output. 10815 VALUE ewhopa1g (default=32) 10816 -1 = "Not in Universe" 10817 1 = "Yes" 10818 2 = "No" 10819 ; NOTE: Format EWHOPA1G has been output. 10820 VALUE ewhopa2g (default=32) 10821 -1 = "Not in Universe" 10822 1 = "Yes" 10823 2 = "No" 10824 ; NOTE: Format EWHOPA2G has been output. 10825 VALUE ewhopa3g (default=32) 10826 -1 = "Not in Universe" 10827 1 = "Yes" 214 The SAS System 11:54 Thursday, June 7, 2012 10828 2 = "No" 10829 ; NOTE: Format EWHOPA3G has been output. 10830 VALUE ewhopa4g (default=32) 10831 -1 = "Not in Universe" 10832 1 = "Yes" 10833 2 = "No" 10834 ; NOTE: Format EWHOPA4G has been output. 10835 VALUE awhopag (default=32) 10836 0 = "Not imputed" 10837 1 = "Statistical imputation (hot deck)" 10838 2 = "Cold deck imputation" 10839 3 = "Logical imputation (derivation)" 10840 ; NOTE: Format AWHOPAG has been output. 10841 VALUE ewhopa1h (default=32) 10842 -1 = "Not in Universe" 10843 1 = "Yes" 10844 2 = "No" 10845 ; NOTE: Format EWHOPA1H has been output. 10846 VALUE ewhopa2h (default=32) 10847 -1 = "Not in Universe" 10848 1 = "Yes" 10849 2 = "No" 10850 ; NOTE: Format EWHOPA2H has been output. 10851 VALUE ewhopa3h (default=32) 10852 -1 = "Not in Universe" 10853 1 = "Yes" 10854 2 = "No" 10855 ; NOTE: Format EWHOPA3H has been output. 10856 VALUE ewhopa4h (default=32) 10857 -1 = "Not in Universe" 10858 1 = "Yes" 10859 2 = "No" 10860 ; NOTE: Format EWHOPA4H has been output. 10861 VALUE awhopah (default=32) 10862 0 = "Not imputed" 10863 1 = "Statistical imputation (hot deck)" 10864 2 = "Cold deck imputation" 10865 3 = "Logical imputation (derivation)" 10866 ; NOTE: Format AWHOPAH has been output. 10867 VALUE ewhopa1i (default=32) 10868 -1 = "Not in Universe" 10869 1 = "Yes" 10870 2 = "No" 10871 ; NOTE: Format EWHOPA1I has been output. 10872 VALUE ewhopa2i (default=32) 10873 -1 = "Not in Universe" 10874 1 = "Yes" 10875 2 = "No" 10876 ; 215 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format EWHOPA2I has been output. 10877 VALUE ewhopa3i (default=32) 10878 -1 = "Not in Universe" 10879 1 = "Yes" 10880 2 = "No" 10881 ; NOTE: Format EWHOPA3I has been output. 10882 VALUE ewhopa4i (default=32) 10883 -1 = "Not in Universe" 10884 1 = "Yes" 10885 2 = "No" 10886 ; NOTE: Format EWHOPA4I has been output. 10887 VALUE awhopai (default=32) 10888 0 = "Not imputed" 10889 1 = "Statistical imputation (hot deck)" 10890 2 = "Cold deck imputation" 10891 3 = "Logical imputation (derivation)" 10892 ; NOTE: Format AWHOPAI has been output. 10893 VALUE ewhopa1j (default=32) 10894 -1 = "Not in Universe" 10895 1 = "Yes" 10896 2 = "No" 10897 ; NOTE: Format EWHOPA1J has been output. 10898 VALUE ewhopa2j (default=32) 10899 -1 = "Not in Universe" 10900 1 = "Yes" 10901 2 = "No" 10902 ; NOTE: Format EWHOPA2J has been output. 10903 VALUE ewhopa3j (default=32) 10904 -1 = "Not in Universe" 10905 1 = "Yes" 10906 2 = "No" 10907 ; NOTE: Format EWHOPA3J has been output. 10908 VALUE ewhopa4j (default=32) 10909 -1 = "Not in Universe" 10910 1 = "Yes" 10911 2 = "No" 10912 ; NOTE: Format EWHOPA4J has been output. 10913 VALUE awhopaj (default=32) 10914 0 = "Not imputed" 10915 1 = "Statistical imputation (hot deck)" 10916 2 = "Cold deck imputation" 10917 3 = "Logical imputation (derivation)" 10918 ; NOTE: Format AWHOPAJ has been output. 10919 VALUE esatisf (default=32) 10920 -1 = "Not in Universe" 10921 1 = "Very satisfied" 10922 2 = "Somewhat satisfied" 10923 3 = "Neither satisfied nor dissatisfied" 10924 4 = "Somewhat dissatisfied" 10925 5 = "Very dissatisfied" 216 The SAS System 11:54 Thursday, June 7, 2012 10926 ; NOTE: Format ESATISF has been output. 10927 VALUE esatisg (default=32) 10928 -1 = "Not in Universe" 10929 1 = "Very satisfied" 10930 2 = "Somewhat satisfied" 10931 3 = "Neither satisfied nor dissatisfied" 10932 4 = "Somewhat dissatisfied" 10933 5 = "Very dissatisfied" 10934 ; NOTE: Format ESATISG has been output. 10935 VALUE esatish (default=32) 10936 -1 = "Not in Universe" 10937 1 = "Very satisfied" 10938 2 = "Somewhat satisfied" 10939 3 = "Neither satisfied nor dissatisfied" 10940 4 = "Somewhat dissatisfied" 10941 5 = "Very dissatisfied" 10942 ; NOTE: Format ESATISH has been output. 10943 VALUE esatisi (default=32) 10944 -1 = "Not in Universe" 10945 1 = "Very satisfied" 10946 2 = "Somewhat satisfied" 10947 3 = "Neither satisfied nor dissatisfied" 10948 4 = "Somewhat dissatisfied" 10949 5 = "Very dissatisfied" 10950 ; NOTE: Format ESATISI has been output. 10951 VALUE esatisj (default=32) 10952 -1 = "Not in Universe" 10953 1 = "Very satisfied" 10954 2 = "Somewhat satisfied" 10955 3 = "Neither satisfied nor dissatisfied" 10956 4 = "Somewhat dissatisfied" 10957 5 = "Very dissatisfied" 10958 ; NOTE: Format ESATISJ has been output. 10959 VALUE elistf (default=32) 10960 -1 = "Not in Universe" 10961 1 = "Yes" 10962 2 = "No" 10963 ; NOTE: Format ELISTF has been output. 10964 VALUE alistf (default=32) 10965 0 = "Not imputed" 10966 1 = "Statistical imputation (hot deck)" 10967 2 = "Cold deck imputation" 10968 3 = "Logical imputation (derivation)" 10969 ; NOTE: Format ALISTF has been output. 10970 VALUE elistg (default=32) 10971 -1 = "Not in Universe" 10972 1 = "Yes" 10973 2 = "No" 10974 ; NOTE: Format ELISTG has been output. 10975 VALUE alistg (default=32) 217 The SAS System 11:54 Thursday, June 7, 2012 10976 0 = "Not imputed" 10977 1 = "Statistical imputation (hot deck)" 10978 2 = "Cold deck imputation" 10979 3 = "Logical imputation (derivation)" 10980 ; NOTE: Format ALISTG has been output. 10981 VALUE elisth (default=32) 10982 -1 = "Not in Universe" 10983 1 = "Yes" 10984 2 = "No" 10985 ; NOTE: Format ELISTH has been output. 10986 VALUE alisth (default=32) 10987 0 = "Not imputed" 10988 1 = "Statistical imputation (hot deck)" 10989 2 = "Cold deck imputation" 10990 3 = "Logical imputation (derivation)" 10991 ; NOTE: Format ALISTH has been output. 10992 VALUE elisti (default=32) 10993 -1 = "Not in Universe" 10994 1 = "Yes" 10995 2 = "N0" 10996 ; NOTE: Format ELISTI has been output. 10997 VALUE alisti (default=32) 10998 0 = "Not imputed" 10999 1 = "Statistical imputation (hot deck)" 11000 2 = "Cold deck imputation" 11001 3 = "Logical imputation (derivation)" 11002 ; NOTE: Format ALISTI has been output. 11003 VALUE elistj (default=32) 11004 -1 = "Not in Universe" 11005 1 = "Yes" 11006 2 = "N0" 11007 ; NOTE: Format ELISTJ has been output. 11008 VALUE alistj (default=32) 11009 0 = "Not imputed" 11010 1 = "Statistical imputation (hot deck)" 11011 2 = "Cold deck imputation" 11012 3 = "Logical imputation (derivation)" 11013 ; NOTE: Format ALISTJ has been output. 11014 VALUE eworkmor (default=32) 11015 -1 = "Not in Universe" 11016 1 = "Yes" 11017 2 = "No" 11018 ; NOTE: Format EWORKMOR has been output. 11019 VALUE aworkmor (default=32) 11020 0 = "Not imputed" 11021 1 = "Statistical imputation (hot deck)" 11022 2 = "Cold deck imputation" 11023 3 = "Logical imputation (derivation)" 11024 ; NOTE: Format AWORKMOR has been output. 218 The SAS System 11:54 Thursday, June 7, 2012 11025 VALUE etiamt0r (default=32) 11026 -7 = "None" 11027 -1 = "Not in Universe" 11028 ; NOTE: Format ETIAMT0R has been output. 11029 VALUE atiamt0r (default=32) 11030 0 = "Not imputed" 11031 1 = "Statistical imputation (hot deck)" 11032 2 = "Cold deck imputation" 11033 3 = "Logical imputation (derivation)" 11034 ; NOTE: Format ATIAMT0R has been output. 11035 VALUE etiamt0k (default=32) 11036 -1 = "Not in Universe" 11037 0 = "None" 11038 1 = "Hours" 11039 2 = "Days" 11040 3 = "Weeks" 11041 4 = "Months" 11042 ; NOTE: Format ETIAMT0K has been output. 11043 VALUE atiamt0k (default=32) 11044 0 = "Not imputed" 11045 1 = "Statistical imputation (hot deck)" 11046 2 = "Cold deck imputation" 11047 3 = "Logical imputation (derivation)" 11048 ; NOTE: Format ATIAMT0K has been output. 11049 VALUE eairunv (default=32) 11050 -1 = "Not in Universe" 11051 1 = "In universe" 11052 ; NOTE: Format EAIRUNV has been output. 11053 VALUE iothrbus (default=32) 11054 -2 = "Refused" 11055 -1 = "Don't know" 11056 0 = "Not answered" 11057 1 = "Yes" 11058 2 = "No" 11059 ; NOTE: Format IOTHRBUS has been output. 11060 VALUE iownbs0s (default=32) 11061 -2 = "Refused" 11062 -1 = "Don't know" 11063 0 = "Not answered" 11064 1 = "Yes" 11065 2 = "No" 11066 ; NOTE: Format IOWNBS0S has been output. 11067 VALUE ibsforms (default=32) 11068 -2 = "Refused" 11069 -1 = "Don't know" 11070 0 = "Not answered" 11071 1 = "Sole proprietorship" 11072 2 = "Partnership" 11073 3 = "Corporation" 11074 ; NOTE: Format IBSFORMS has been output. 219 The SAS System 11:54 Thursday, June 7, 2012 11075 VALUE ibslocts (default=32) 11076 -2 = "Refused" 11077 -1 = "Don't know" 11078 0 = "Not answered" 11079 1 = "Own home" 11080 2 = "Somewhere else" 11081 ; NOTE: Format IBSLOCTS has been output. 11082 VALUE iprtowns (default=32) 11083 -2 = "Refused" 11084 -1 = "Don't know" 11085 0 = "Not answered" 11086 1 = "Yes" 11087 2 = "No" 11088 ; NOTE: Format IPRTOWNS has been output. 11089 VALUE iownrs1s (default=32) 11090 -3 = "None" 11091 -2 = "Refused" 11092 -1 = "Don't know" 11093 0 = "Not answered" 11094 9999 = "Unknown person number" 11095 ; NOTE: Format IOWNRS1S has been output. 11096 VALUE iownrs1k (default=32) 11097 -3 = "None" 11098 -2 = "Refused" 11099 -1 = "Don't know" 11100 0 = "Not answered" 11101 9999 = "Unknown person number" 11102 ; NOTE: Format IOWNRS1K has been output. 11103 VALUE ihhown1l (default=32) 11104 -2 = "Refused" 11105 -1 = "Don't know" 11106 0 = "Not answered" 11107 1 = "Yes" 11108 2 = "No" 11109 ; NOTE: Format IHHOWN1L has been output. 11110 VALUE rpcnthhs (default=32) 11111 -3 = "None" 11112 -2 = "Refused" 11113 -1 = "Don't know" 11114 0 = "Not answered" 11115 1 = "1-50 Percentage of business" 11116 2 = "51-99 Percentage of business" 11117 ; NOTE: Format RPCNTHHS has been output. 11118 VALUE rpctowns (default=32) 11119 -3 = "None" 11120 -2 = "Refused" 11121 -1 = "Don't know" 11122 0 = "Not answered" 11123 1 = "1-25 Percentage of business" 11124 2 = "26-49 Percentage of business" 11125 3 = "50-100 Percentage of business" 11126 ; 220 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format RPCTOWNS has been output. 11127 VALUE tgrsrcps (default=32) 11128 -3 = "None" 11129 -2 = "Refused" 11130 -1 = "Don't know" 11131 0 = "Not answered" 11132 ; NOTE: Format TGRSRCPS has been output. 11133 VALUE ttotexps (default=32) 11134 -3 = "None" 11135 -2 = "Refused" 11136 -1 = "Don't know" 11137 0 = "Not answered" 11138 ; NOTE: Format TTOTEXPS has been output. 11139 VALUE tnetincs (default=32) 11140 -3 = "None" 11141 -2 = "Refused" 11142 -1 = "Don't know" 11143 0 = "Not answered" 11144 ; NOTE: Format TNETINCS has been output. 11145 VALUE tnetinck (default=32) 11146 -3 = "None" 11147 -2 = "Refused" 11148 -1 = "Don't know" 11149 0 = "Not answered" 11150 ; NOTE: Format TNETINCK has been output. 11151 VALUE iothincs (default=32) 11152 -2 = "Refused" 11153 -1 = "Don't know" 11154 0 = "Not answered" 11155 1 = "Yes" 11156 2 = "No" 11157 ; NOTE: Format IOTHINCS has been output. 11158 VALUE tnetin1s (default=32) 11159 -3 = "None" 11160 -2 = "Refused" 11161 -1 = "Don't know" 11162 0 = "Not answered" 11163 ; NOTE: Format TNETIN1S has been output. 11164 VALUE tnetin1k (default=32) 11165 -3 = "None" 11166 -2 = "Refused" 11167 -1 = "Don't know" 11168 0 = "Not answered" 11169 ; NOTE: Format TNETIN1K has been output. 11170 VALUE tnetin2s (default=32) 11171 -3 = "None" 11172 -2 = "Refused" 11173 -1 = "Don't know" 11174 0 = "Not answered" 11175 ; NOTE: Format TNETIN2S has been output. 221 The SAS System 11:54 Thursday, June 7, 2012 11176 VALUE tnetin2k (default=32) 11177 -3 = "None" 11178 -2 = "Refused" 11179 -1 = "Don't know" 11180 0 = "Not answered" 11181 ; NOTE: Format TNETIN2K has been output. 11182 VALUE ibsformk (default=32) 11183 -3 = "None" 11184 -2 = "Refused" 11185 -1 = "Don't know" 11186 0 = "Not answered" 11187 1 = "Sole proprietorship" 11188 2 = "Partnership" 11189 3 = "Corporation" 11190 ; NOTE: Format IBSFORMK has been output. 11191 VALUE ibsloctk (default=32) 11192 -3 = "None" 11193 -2 = "Refused" 11194 -1 = "Don't know" 11195 0 = "Not answered" 11196 1 = "Own home" 11197 2 = "Somewhere else" 11198 ; NOTE: Format IBSLOCTK has been output. 11199 VALUE iprtownk (default=32) 11200 -2 = "Refused" 11201 -1 = "Don't know" 11202 0 = "Not answered" 11203 1 = "Yes" 11204 2 = "No" 11205 ; NOTE: Format IPRTOWNK has been output. 11206 VALUE iownrs2s (default=32) 11207 -3 = "None" 11208 -2 = "Refused" 11209 -1 = "Don't know" 11210 0 = "Not answered" 11211 9999 = "Unknown person number" 11212 ; NOTE: Format IOWNRS2S has been output. 11213 VALUE iownrs2k (default=32) 11214 -3 = "None" 11215 -2 = "Refused" 11216 -1 = "Don't know" 11217 0 = "Not answered" 11218 9999 = "Unknown person number" 11219 ; NOTE: Format IOWNRS2K has been output. 11220 VALUE ihhown2l (default=32) 11221 -2 = "Refused" 11222 -1 = "Don't know" 11223 0 = "Not answered" 11224 1 = "Yes" 11225 2 = "No" 11226 ; NOTE: Format IHHOWN2L has been output. 222 The SAS System 11:54 Thursday, June 7, 2012 11227 VALUE rpcnthhk (default=32) 11228 -3 = "None" 11229 -2 = "Refused" 11230 -1 = "Don't know" 11231 0 = "Not answered" 11232 1 = "1-49 Percentage of business" 11233 2 = "50-99 Percentage of business" 11234 ; NOTE: Format RPCNTHHK has been output. 11235 VALUE rpctownk (default=32) 11236 -3 = "None" 11237 -2 = "Refused" 11238 -1 = "Don't know" 11239 0 = "Not answered" 11240 1 = "1-25 Percentage of business" 11241 2 = "26-49 Percentage of business" 11242 3 = "50-100 Percentage of business" 11243 ; NOTE: Format RPCTOWNK has been output. 11244 VALUE tgrsrcpk (default=32) 11245 -3 = "None" 11246 -2 = "Refused" 11247 -1 = "Don't know" 11248 0 = "Not answered" 11249 ; NOTE: Format TGRSRCPK has been output. 11250 VALUE ttotexpk (default=32) 11251 -3 = "None" 11252 -2 = "Refused" 11253 -1 = "Don't know" 11254 0 = "Not answered" 11255 ; NOTE: Format TTOTEXPK has been output. 11256 VALUE tnetincl (default=32) 11257 -3 = "None" 11258 -2 = "Refused" 11259 -1 = "Don't know" 11260 0 = "Not answered" 11261 ; NOTE: Format TNETINCL has been output. 11262 VALUE tnetincm (default=32) 11263 -3 = "None" 11264 -2 = "Refused" 11265 -1 = "Don't know" 11266 0 = "Not answered" 11267 ; NOTE: Format TNETINCM has been output. 11268 VALUE iothinck (default=32) 11269 -2 = "Refused" 11270 -1 = "Don't know" 11271 0 = "Not answered" 11272 1 = "Yes" 11273 2 = "No" 11274 ; NOTE: Format IOTHINCK has been output. 11275 VALUE tnetin3s (default=32) 11276 -3 = "None" 11277 -2 = "Refused" 223 The SAS System 11:54 Thursday, June 7, 2012 11278 -1 = "Don't know" 11279 0 = "Not answered" 11280 ; NOTE: Format TNETIN3S has been output. 11281 VALUE tnetin3k (default=32) 11282 -3 = "None" 11283 -2 = "Refused" 11284 -1 = "Don't know" 11285 0 = "Not answered" 11286 ; NOTE: Format TNETIN3K has been output. 11287 VALUE tnetin4s (default=32) 11288 -3 = "None" 11289 -2 = "Refused" 11290 -1 = "Don't know" 11291 0 = "Not answered" 11292 ; NOTE: Format TNETIN4S has been output. 11293 VALUE tothincs (default=32) 11294 -3 = "None" 11295 -2 = "Refused" 11296 -1 = "Don't know" 11297 0 = "Not answered" 11298 ; NOTE: Format TOTHINCS has been output. 11299 VALUE tothinck (default=32) 11300 -3 = "None" 11301 -2 = "Refused" 11302 -1 = "Don't know" 11303 0 = "Not answered" 11304 ; NOTE: Format TOTHINCK has been output. 11305 VALUE iirayn (default=32) 11306 -2 = "Refused" 11307 -1 = "Don't know" 11308 0 = "Not answered" 11309 1 = "Yes" 11310 2 = "No" 11311 ; NOTE: Format IIRAYN has been output. 11312 VALUE iiracont (default=32) 11313 -2 = "Refused" 11314 -1 = "Don't know" 11315 0 = "Not answered" 11316 1 = "Yes" 11317 2 = "No" 11318 ; NOTE: Format IIRACONT has been output. 11319 VALUE ttaxcont (default=32) 11320 -3 = "None" 11321 -2 = "Refused" 11322 -1 = "Don't know" 11323 0 = "Not answered" 11324 ; NOTE: Format TTAXCONT has been output. 11325 VALUE iirawdl (default=32) 11326 -2 = "Refused" 11327 -1 = "Don't know" 224 The SAS System 11:54 Thursday, June 7, 2012 11328 0 = "Not answered" 11329 1 = "Yes" 11330 2 = "No" 11331 ; NOTE: Format IIRAWDL has been output. 11332 VALUE tamtira (default=32) 11333 -3 = "None" 11334 -2 = "Refused" 11335 -1 = "Don't know" 11336 0 = "Not answered" 11337 ; NOTE: Format TAMTIRA has been output. 11338 VALUE tiraearn (default=32) 11339 -3 = "None" 11340 -2 = "Refused" 11341 -1 = "Don't know" 11342 0 = "Not answered" 11343 ; NOTE: Format TIRAEARN has been output. 11344 VALUE iiratypn (default=32) 11345 -2 = "Refused" 11346 -1 = "Don't know" 11347 0 = "Not answered" 11348 1 = "Yes" 11349 2 = "No" 11350 ; NOTE: Format IIRATYPN has been output. 11351 VALUE iiratypk (default=32) 11352 -2 = "Refused" 11353 -1 = "Don't know" 11354 0 = "Not answered" 11355 1 = "Yes" 11356 2 = "No" 11357 ; NOTE: Format IIRATYPK has been output. 11358 VALUE iiratypl (default=32) 11359 -2 = "Refused" 11360 -1 = "Don't know" 11361 0 = "Not answered" 11362 1 = "Yes" 11363 2 = "No" 11364 ; NOTE: Format IIRATYPL has been output. 11365 VALUE iiratypm (default=32) 11366 -2 = "Refused" 11367 -1 = "Don't know" 11368 0 = "Not answered" 11369 1 = "Yes" 11370 2 = "No" 11371 ; NOTE: Format IIRATYPM has been output. 11372 VALUE iiratypo (default=32) 11373 -2 = "Refused" 11374 -1 = "Don't know" 11375 0 = "Not answered" 11376 1 = "Yes" 11377 2 = "No" 11378 ; 225 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format IIRATYPO has been output. 11379 VALUE iiratypp (default=32) 11380 -2 = "Refused" 11381 -1 = "Don't know" 11382 0 = "Not answered" 11383 1 = "Yes" 11384 2 = "No" 11385 ; NOTE: Format IIRATYPP has been output. 11386 VALUE iiratypq (default=32) 11387 -2 = "Refused" 11388 -1 = "Don't know" 11389 0 = "Not answered" 11390 1 = "Yes" 11391 2 = "No" 11392 ; NOTE: Format IIRATYPQ has been output. 11393 VALUE ikeoghyn (default=32) 11394 -2 = "Refused" 11395 -1 = "Don't know" 11396 0 = "Not answered" 11397 1 = "Yes" 11398 2 = "No" 11399 ; NOTE: Format IKEOGHYN has been output. 11400 VALUE ikeoghcn (default=32) 11401 -2 = "Refused" 11402 -1 = "Don't know" 11403 0 = "Not answered" 11404 1 = "Yes" 11405 2 = "No" 11406 ; NOTE: Format IKEOGHCN has been output. 11407 VALUE ttxkeogh (default=32) 11408 -3 = "None" 11409 -2 = "Refused" 11410 -1 = "Don't know" 11411 0 = "Not answered" 11412 ; NOTE: Format TTXKEOGH has been output. 11413 VALUE ikeoghwd (default=32) 11414 -2 = "Refused" 11415 -1 = "Don't know" 11416 0 = "Not answered" 11417 1 = "Yes" 11418 2 = "No" 11419 ; NOTE: Format IKEOGHWD has been output. 11420 VALUE tatkeogh (default=32) 11421 -3 = "None" 11422 -2 = "Refused" 11423 -1 = "Don't know" 11424 0 = "Not answered" 11425 ; NOTE: Format TATKEOGH has been output. 11426 VALUE tkeogher (default=32) 11427 -3 = "None" 11428 -2 = "Refused" 226 The SAS System 11:54 Thursday, June 7, 2012 11429 -1 = "Don't know" 11430 0 = "Not answered" 11431 ; NOTE: Format TKEOGHER has been output. 11432 VALUE ikeohtpr (default=32) 11433 -2 = "Refused" 11434 -1 = "Don't know" 11435 0 = "Not answered" 11436 1 = "Yes" 11437 2 = "No" 11438 ; NOTE: Format IKEOHTPR has been output. 11439 VALUE ikeohtpk (default=32) 11440 -2 = "Refused" 11441 -1 = "Don't know" 11442 0 = "Not answered" 11443 1 = "Yes" 11444 2 = "No" 11445 ; NOTE: Format IKEOHTPK has been output. 11446 VALUE ikeohtpl (default=32) 11447 -2 = "Refused" 11448 -1 = "Don't know" 11449 0 = "Not answered" 11450 1 = "Yes" 11451 2 = "No" 11452 ; NOTE: Format IKEOHTPL has been output. 11453 VALUE ikeohtpm (default=32) 11454 -2 = "Refused" 11455 -1 = "Don't know" 11456 0 = "Not answered" 11457 1 = "Yes" 11458 2 = "No" 11459 ; NOTE: Format IKEOHTPM has been output. 11460 VALUE ikeohtpn (default=32) 11461 -2 = "Refused" 11462 -1 = "Don't know" 11463 0 = "Not answered" 11464 1 = "Yes" 11465 2 = "No" 11466 ; NOTE: Format IKEOHTPN has been output. 11467 VALUE ikeohtpo (default=32) 11468 -2 = "Refused" 11469 -1 = "Don't know" 11470 0 = "Not answered" 11471 1 = "Yes" 11472 2 = "No" 11473 ; NOTE: Format IKEOHTPO has been output. 11474 VALUE ikeohtpp (default=32) 11475 -2 = "Refused" 11476 -1 = "Don't know" 11477 0 = "Not answered" 11478 1 = "Yes" 11479 2 = "No" 227 The SAS System 11:54 Thursday, June 7, 2012 11480 ; NOTE: Format IKEOHTPP has been output. 11481 VALUE ithrftyn (default=32) 11482 -2 = "Refused" 11483 -1 = "Don't know" 11484 0 = "Not answered" 11485 1 = "Yes" 11486 2 = "No" 11487 ; NOTE: Format ITHRFTYN has been output. 11488 VALUE tthftcnt (default=32) 11489 -3 = "None" 11490 -2 = "Refused" 11491 -1 = "Don't know" 11492 0 = "Not answered" 11493 ; NOTE: Format TTHFTCNT has been output. 11494 VALUE ithftwdl (default=32) 11495 -2 = "Refused" 11496 -1 = "Don't know" 11497 0 = "Not answered" 11498 1 = "Yes" 11499 2 = "No" 11500 ; NOTE: Format ITHFTWDL has been output. 11501 VALUE tthftamt (default=32) 11502 -3 = "None" 11503 -2 = "Refused" 11504 -1 = "Don't know" 11505 0 = "Not answered" 11506 ; NOTE: Format TTHFTAMT has been output. 11507 VALUE tthftern (default=32) 11508 -3 = "None" 11509 -2 = "Refused" 11510 -1 = "Don't know" 11511 0 = "Not answered" 11512 ; NOTE: Format TTHFTERN has been output. 11513 VALUE ithftypn (default=32) 11514 -2 = "Refused" 11515 -1 = "Don't know" 11516 0 = "Not answered" 11517 1 = "Yes" 11518 2 = "No" 11519 ; NOTE: Format ITHFTYPN has been output. 11520 VALUE ithftypk (default=32) 11521 -2 = "Refused" 11522 -1 = "Don't know" 11523 0 = "Not answered" 11524 1 = "Yes" 11525 2 = "No" 11526 ; NOTE: Format ITHFTYPK has been output. 11527 VALUE ithftypl (default=32) 11528 -2 = "Refused" 11529 -1 = "Don't know" 228 The SAS System 11:54 Thursday, June 7, 2012 11530 0 = "Not answered" 11531 1 = "Yes" 11532 2 = "No" 11533 ; NOTE: Format ITHFTYPL has been output. 11534 VALUE ithftypm (default=32) 11535 -2 = "Refused" 11536 -1 = "Don't know" 11537 0 = "Not answered" 11538 1 = "Yes" 11539 2 = "No" 11540 ; NOTE: Format ITHFTYPM has been output. 11541 VALUE ithftypo (default=32) 11542 -2 = "Refused" 11543 -1 = "Don't know" 11544 0 = "Not answered" 11545 1 = "Yes" 11546 2 = "No" 11547 ; NOTE: Format ITHFTYPO has been output. 11548 VALUE eatxunv (default=32) 11549 -1 = "Not in Universe" 11550 1 = "In universe" 11551 ; NOTE: Format EATXUNV has been output. 11552 VALUE itaxflyn (default=32) 11553 -2 = "Refused" 11554 -1 = "Don't know" 11555 0 = "Not answered" 11556 1 = "Yes" 11557 2 = "No" 11558 ; NOTE: Format ITAXFLYN has been output. 11559 VALUE itaxcopy (default=32) 11560 -2 = "Refused" 11561 -1 = "Don't know" 11562 0 = "Not answered" 11563 1 = "Yes" 11564 2 = "No" 11565 ; NOTE: Format ITAXCOPY has been output. 11566 VALUE tfilstat (default=32) 11567 -2 = "Refused" 11568 -1 = "Don't know" 11569 0 = "Not answered" 11570 1 = "Single taxpayer" 11571 2 = "Married, Filing joint return" 11572 3 = "Married, filing separately" 11573 4 = "Unmarried head of Household or" 11574 ; NOTE: Format TFILSTAT has been output. 11575 VALUE ttotexmp (default=32) 11576 -3 = "None" 11577 -2 = "Refused" 11578 -1 = "Don't know" 11579 0 = "Not answered" 11580 1 = "1 exemption" 229 The SAS System 11:54 Thursday, June 7, 2012 11581 2 = "2 exemptions" 11582 3 = "3-4 exemptions" 11583 4 = "5 or more exemptions" 11584 ; NOTE: Format TTOTEXMP has been output. 11585 VALUE iexemp0p (default=32) 11586 -5 = "All" 11587 -3 = "None" 11588 -2 = "Refused" 11589 -1 = "Don't know" 11590 0 = "Not answered" 11591 9999 = "Unknown person number" 11592 ; NOTE: Format IEXEMP0P has been output. 11593 VALUE iexemp0k (default=32) 11594 -3 = "None" 11595 -2 = "Refused" 11596 -1 = "Don't know" 11597 0 = "Not answered" 11598 9999 = "Unknown person number" 11599 ; NOTE: Format IEXEMP0K has been output. 11600 VALUE iexemp0l (default=32) 11601 -3 = "None" 11602 -2 = "Refused" 11603 -1 = "Don't know" 11604 0 = "Not answered" 11605 9999 = "Unknown person number" 11606 ; NOTE: Format IEXEMP0L has been output. 11607 VALUE iexemp0m (default=32) 11608 -3 = "None" 11609 -2 = "Refused" 11610 -1 = "Don't know" 11611 0 = "Not answered" 11612 9999 = "Unknown person number" 11613 ; NOTE: Format IEXEMP0M has been output. 11614 VALUE iexemp0n (default=32) 11615 -3 = "None" 11616 -2 = "Refused" 11617 -1 = "Don't know" 11618 0 = "Not answered" 11619 9999 = "Unknown person number" 11620 ; NOTE: Format IEXEMP0N has been output. 11621 VALUE iexmpout (default=32) 11622 -2 = "Refused" 11623 -1 = "Don't know" 11624 0 = "Not answered" 11625 1 = "Yes" 11626 2 = "No" 11627 ; NOTE: Format IEXMPOUT has been output. 11628 VALUE iexnmout (default=32) 11629 -2 = "Refused" 11630 -1 = "Don't know" 11631 0 = "Not answered" 230 The SAS System 11:54 Thursday, June 7, 2012 11632 ; NOTE: Format IEXNMOUT has been output. 11633 VALUE ioutrl0t (default=32) 11634 -3 = "None" 11635 -2 = "Refused" 11636 -1 = "Don't know" 11637 0 = "Not answered" 11638 1 = "Parent" 11639 2 = "Child" 11640 3 = "Brother/sister" 11641 4 = "OTHER" 11642 ; NOTE: Format IOUTRL0T has been output. 11643 VALUE ioutrl0k (default=32) 11644 -3 = "None" 11645 -2 = "Refused" 11646 -1 = "Don't know" 11647 0 = "Not answered" 11648 1 = "Parent" 11649 2 = "Child" 11650 3 = "Brother/sister" 11651 4 = "OTHER" 11652 ; NOTE: Format IOUTRL0K has been output. 11653 VALUE ioutrl0l (default=32) 11654 -3 = "None" 11655 -2 = "Refused" 11656 -1 = "Don't know" 11657 0 = "Not answered" 11658 1 = "Parent" 11659 2 = "Child" 11660 3 = "Brother/sister" 11661 4 = "OTHER" 11662 ; NOTE: Format IOUTRL0L has been output. 11663 VALUE ioutrl0m (default=32) 11664 -3 = "None" 11665 -2 = "Refused" 11666 -1 = "Don't know" 11667 0 = "Not answered" 11668 1 = "Parent" 11669 2 = "Child" 11670 3 = "Brother/sister" 11671 4 = "OTHER" 11672 ; NOTE: Format IOUTRL0M has been output. 11673 VALUE ioutrl0n (default=32) 11674 -3 = "None" 11675 -2 = "Refused" 11676 -1 = "Don't know" 11677 0 = "Not answered" 11678 1 = "Parent" 11679 2 = "Child" 11680 3 = "Brother/sister" 11681 4 = "OTHER" 11682 ; NOTE: Format IOUTRL0N has been output. 11683 VALUE ioutrl0o (default=32) 231 The SAS System 11:54 Thursday, June 7, 2012 11684 -3 = "None" 11685 -2 = "Refused" 11686 -1 = "Don't know" 11687 0 = "Not answered" 11688 1 = "Parent" 11689 2 = "Child" 11690 3 = "Brother/sister" 11691 4 = "OTHER" 11692 ; NOTE: Format IOUTRL0O has been output. 11693 VALUE ioutrl0p (default=32) 11694 -3 = "None" 11695 -2 = "Refused" 11696 -1 = "Don't know" 11697 0 = "Not answered" 11698 1 = "Parent" 11699 2 = "Child" 11700 3 = "Brother/sister" 11701 4 = "OTHER" 11702 ; NOTE: Format IOUTRL0P has been output. 11703 VALUE ioutrl0q (default=32) 11704 -3 = "None" 11705 -2 = "Refused" 11706 -1 = "Don't know" 11707 0 = "Not answered" 11708 1 = "Parent" 11709 2 = "Child" 11710 3 = "Brother/sister" 11711 4 = "OTHER" 11712 ; NOTE: Format IOUTRL0Q has been output. 11713 VALUE ioutrl0r (default=32) 11714 -3 = "None" 11715 -2 = "Refused" 11716 -1 = "Don't know" 11717 0 = "Not answered" 11718 1 = "Parent" 11719 2 = "Child" 11720 3 = "Brother/sister" 11721 4 = "OTHER" 11722 ; NOTE: Format IOUTRL0R has been output. 11723 VALUE ioutrl1t (default=32) 11724 -3 = "None" 11725 -2 = "Refused" 11726 -1 = "Don't know" 11727 0 = "Not answered" 11728 1 = "Parent" 11729 2 = "Child" 11730 3 = "Brother/sister" 11731 4 = "OTHER" 11732 ; NOTE: Format IOUTRL1T has been output. 11733 VALUE ifilform (default=32) 11734 -2 = "Refused" 11735 -1 = "Don't know" 11736 0 = "Not answered" 232 The SAS System 11:54 Thursday, June 7, 2012 11737 1 = "Form 1040" 11738 2 = "Form 1040A" 11739 3 = "Form 1040EZ" 11740 ; NOTE: Format IFILFORM has been output. 11741 VALUE ischeda (default=32) 11742 -2 = "Refused" 11743 -1 = "Don't know" 11744 0 = "Not answered" 11745 1 = "Yes" 11746 2 = "No" 11747 ; NOTE: Format ISCHEDA has been output. 11748 VALUE ischedd (default=32) 11749 -2 = "Refused" 11750 -1 = "Don't know" 11751 0 = "Not answered" 11752 1 = "Yes" 11753 2 = "No" 11754 ; NOTE: Format ISCHEDD has been output. 11755 VALUE tamtdedt (default=32) 11756 -2 = "Refused" 11757 -1 = "Don't know" 11758 0 = "Not answered" 11759 1 = "1-4999 Amount of itemized" 11760 2 = "5000-7999 Amount of itemized" 11761 3 = "8000-8999 Amount of itemized" 11762 4 = "9000-10999 Amount of itemized" 11763 5 = "11000-11999 Amount of itemized" 11764 6 = "12000-12999 Amount of itemized" 11765 7 = "13000-13999 Amount of itemized" 11766 8 = "14000-14999 Amount of itemized" 11767 9 = "15000-15999 Amount of itemized" 11768 10 = "16000-16999 Amount of itemized" 11769 11 = "17000-18999 Amount of itemized" 11770 12 = "19000-20999 Amount of itemized" 11771 13 = "21000-22999 Amount of itemized" 11772 14 = "23000-25999 Amount of itemized" 11773 15 = "26000-29999 Amount of itemized" 11774 16 = "30000-39999 Amount of itemized" 11775 17 = "40000+ Amount of itemized" 11776 ; NOTE: Format TAMTDEDT has been output. 11777 VALUE iccexpen (default=32) 11778 -2 = "Refused" 11779 -1 = "Don't know" 11780 0 = "Not answered" 11781 1 = "Yes" 11782 2 = "No" 11783 ; NOTE: Format ICCEXPEN has been output. 11784 VALUE tccamt (default=32) 11785 -2 = "Refused" 11786 -1 = "Don't know" 11787 0 = "Not answered" 11788 1 = "1-99 Child and dependent care" 11789 2 = "100-199 Child and dependent care" 233 The SAS System 11:54 Thursday, June 7, 2012 11790 3 = "200-299 Child and dependent care" 11791 4 = "300-399 Child and dependent care" 11792 5 = "400-499 Child and dependent care" 11793 6 = "500-699 Child and dependent care" 11794 7 = "700-1199 Child and dependent care" 11795 8 = "1200-1599 Child and dependent" 11796 9 = "1600-1999 Child and dependent" 11797 10 = "2000-2999 Child and dependent" 11798 11 = "3000-3999 Child and dependent" 11799 12 = "4000-5999 Child and dependent" 11800 13 = "6000+ Child and dependent care" 11801 ; NOTE: Format TCCAMT has been output. 11802 VALUE icarex0t (default=32) 11803 -5 = "All" 11804 -3 = "None" 11805 -2 = "Refused" 11806 -1 = "Don't know" 11807 0 = "Not answered" 11808 9999 = "Unknown person number" 11809 ; NOTE: Format ICAREX0T has been output. 11810 VALUE icarex0k (default=32) 11811 -3 = "None" 11812 -2 = "Refused" 11813 -1 = "Don't know" 11814 0 = "Not answered" 11815 9999 = "Unknown person number" 11816 ; NOTE: Format ICAREX0K has been output. 11817 VALUE icarex0l (default=32) 11818 -3 = "None" 11819 -2 = "Refused" 11820 -1 = "Don't know" 11821 0 = "Not answered" 11822 9999 = "Unknown person number" 11823 ; NOTE: Format ICAREX0L has been output. 11824 VALUE icarex0m (default=32) 11825 -3 = "None" 11826 -2 = "Refused" 11827 -1 = "Don't know" 11828 0 = "Not answered" 11829 9999 = "Unknown person number" 11830 ; NOTE: Format ICAREX0M has been output. 11831 VALUE icarex0n (default=32) 11832 -3 = "None" 11833 -2 = "Refused" 11834 -1 = "Don't know" 11835 0 = "Not answered" 11836 9999 = "Unknown person number" 11837 ; NOTE: Format ICAREX0N has been output. 11838 VALUE icarex0o (default=32) 11839 -3 = "None" 11840 -2 = "Refused" 11841 -1 = "Don't know" 234 The SAS System 11:54 Thursday, June 7, 2012 11842 0 = "Not answered" 11843 9999 = "Unknown person number" 11844 ; NOTE: Format ICAREX0O has been output. 11845 VALUE icarex0p (default=32) 11846 -3 = "None" 11847 -2 = "Refused" 11848 -1 = "Don't know" 11849 0 = "Not answered" 11850 9999 = "Unknown person number" 11851 ; NOTE: Format ICAREX0P has been output. 11852 VALUE icarex0q (default=32) 11853 -3 = "None" 11854 -2 = "Refused" 11855 -1 = "Don't know" 11856 0 = "Not answered" 11857 9999 = "Unknown person number" 11858 ; NOTE: Format ICAREX0Q has been output. 11859 VALUE icarex0r (default=32) 11860 -3 = "None" 11861 -2 = "Refused" 11862 -1 = "Don't know" 11863 0 = "Not answered" 11864 9999 = "Unknown person number" 11865 ; NOTE: Format ICAREX0R has been output. 11866 VALUE icarex1t (default=32) 11867 -3 = "None" 11868 -2 = "Refused" 11869 -1 = "Don't know" 11870 0 = "Not answered" 11871 9999 = "Unknown person number" 11872 ; NOTE: Format ICAREX1T has been output. 11873 VALUE icarex1k (default=32) 11874 -3 = "None" 11875 -2 = "Refused" 11876 -1 = "Don't know" 11877 0 = "Not answered" 11878 9999 = "Unknown person number" 11879 ; NOTE: Format ICAREX1K has been output. 11880 VALUE icarex1l (default=32) 11881 -3 = "None" 11882 -2 = "Refused" 11883 -1 = "Don't know" 11884 0 = "Not answered" 11885 9999 = "Unknown person number" 11886 ; NOTE: Format ICAREX1L has been output. 11887 VALUE icarex1m (default=32) 11888 -3 = "None" 11889 -2 = "Refused" 11890 -1 = "Don't know" 11891 0 = "Not answered" 11892 9999 = "Unknown person number" 235 The SAS System 11:54 Thursday, June 7, 2012 11893 ; NOTE: Format ICAREX1M has been output. 11894 VALUE icarex1n (default=32) 11895 -3 = "None" 11896 -2 = "Refused" 11897 -1 = "Don't know" 11898 0 = "Not answered" 11899 9999 = "Unknown person number" 11900 ; NOTE: Format ICAREX1N has been output. 11901 VALUE icarex1o (default=32) 11902 -3 = "None" 11903 -2 = "Refused" 11904 -1 = "Don't know" 11905 0 = "Not answered" 11906 9999 = "Unknown person number" 11907 ; NOTE: Format ICAREX1O has been output. 11908 VALUE icarex1p (default=32) 11909 -3 = "None" 11910 -2 = "Refused" 11911 -1 = "Don't know" 11912 0 = "Not answered" 11913 9999 = "Unknown person number" 11914 ; NOTE: Format ICAREX1P has been output. 11915 VALUE icarex1q (default=32) 11916 -3 = "None" 11917 -2 = "Refused" 11918 -1 = "Don't know" 11919 0 = "Not answered" 11920 9999 = "Unknown person number" 11921 ; NOTE: Format ICAREX1Q has been output. 11922 VALUE icarex1r (default=32) 11923 -3 = "None" 11924 -2 = "Refused" 11925 -1 = "Don't know" 11926 0 = "Not answered" 11927 9999 = "Unknown person number" 11928 ; NOTE: Format ICAREX1R has been output. 11929 VALUE icarex1s (default=32) 11930 -3 = "None" 11931 -2 = "Refused" 11932 -1 = "Don't know" 11933 0 = "Not answered" 11934 9999 = "Unknown person number" 11935 ; NOTE: Format ICAREX1S has been output. 11936 VALUE icarex2t (default=32) 11937 -3 = "None" 11938 -2 = "Refused" 11939 -1 = "Don't know" 11940 0 = "Not answered" 11941 9999 = "Unknown person number" 11942 ; NOTE: Format ICAREX2T has been output. 236 The SAS System 11:54 Thursday, June 7, 2012 11943 VALUE icarex2k (default=32) 11944 -3 = "None" 11945 -2 = "Refused" 11946 -1 = "Don't know" 11947 0 = "Not answered" 11948 9999 = "Unknown person number" 11949 ; NOTE: Format ICAREX2K has been output. 11950 VALUE icarex2l (default=32) 11951 -3 = "None" 11952 -2 = "Refused" 11953 -1 = "Don't know" 11954 0 = "Not answered" 11955 9999 = "Unknown person number" 11956 ; NOTE: Format ICAREX2L has been output. 11957 VALUE icarex2m (default=32) 11958 -3 = "None" 11959 -2 = "Refused" 11960 -1 = "Don't know" 11961 0 = "Not answered" 11962 9999 = "Unknown person number" 11963 ; NOTE: Format ICAREX2M has been output. 11964 VALUE icarex2n (default=32) 11965 -3 = "None" 11966 -2 = "Refused" 11967 -1 = "Don't know" 11968 0 = "Not answered" 11969 9999 = "Unknown person number" 11970 ; NOTE: Format ICAREX2N has been output. 11971 VALUE icarex2o (default=32) 11972 -3 = "None" 11973 -2 = "Refused" 11974 -1 = "Don't know" 11975 0 = "Not answered" 11976 9999 = "Unknown person number" 11977 ; NOTE: Format ICAREX2O has been output. 11978 VALUE icarex2p (default=32) 11979 -3 = "None" 11980 -2 = "Refused" 11981 -1 = "Don't know" 11982 0 = "Not answered" 11983 9999 = "Unknown person number" 11984 ; NOTE: Format ICAREX2P has been output. 11985 VALUE icarex2q (default=32) 11986 -3 = "None" 11987 -2 = "Refused" 11988 -1 = "Don't know" 11989 0 = "Not answered" 11990 9999 = "Unknown person number" 11991 ; NOTE: Format ICAREX2Q has been output. 11992 VALUE icarex2r (default=32) 11993 -3 = "None" 237 The SAS System 11:54 Thursday, June 7, 2012 11994 -2 = "Refused" 11995 -1 = "Don't know" 11996 0 = "Not answered" 11997 9999 = "Unknown person number" 11998 ; NOTE: Format ICAREX2R has been output. 11999 VALUE icarex2s (default=32) 12000 -3 = "None" 12001 -2 = "Refused" 12002 -1 = "Don't know" 12003 0 = "Not answered" 12004 9999 = "Unknown person number" 12005 ; NOTE: Format ICAREX2S has been output. 12006 VALUE icarex3t (default=32) 12007 -3 = "None" 12008 -2 = "Refused" 12009 -1 = "Don't know" 12010 0 = "Not answered" 12011 9999 = "Unknown person number" 12012 ; NOTE: Format ICAREX3T has been output. 12013 VALUE idsabcrd (default=32) 12014 -2 = "Refused" 12015 -1 = "Don't know" 12016 0 = "Not answered" 12017 1 = "Yes" 12018 2 = "No" 12019 ; NOTE: Format IDSABCRD has been output. 12020 VALUE tsapgain (default=32) 12021 -4 = "Negative values (losses)" 12022 -3 = "None" 12023 -2 = "Refused" 12024 -1 = "Don't know" 12025 0 = "Not answered" 12026 1 = "1-99 Amount of capital gains" 12027 2 = "100-999 Amount of capital gains" 12028 3 = "1000-6999 Amount of capital gains" 12029 4 = "7000+ Amount of capital gains" 12030 ; NOTE: Format TSAPGAIN has been output. 12031 VALUE tadjincm (default=32) 12032 -1 = "Don't know, Refused, None, Losses" 12033 0 = "Not answered" 12034 1 = "1-6999 Amount of adjusted gross" 12035 2 = "7000-11999 Amount of adjusted" 12036 3 = "12000-16999 Amount of adjusted" 12037 4 = "17000-20999 Amount of adjusted" 12038 5 = "21000-25999 Amount of adjusted" 12039 6 = "26000-30999 Amount of adjusted" 12040 7 = "31000-39999 Amount of adjusted" 12041 8 = "40000-49999 Amount of adjusted" 12042 9 = "50000-59999 Amount of adjusted" 12043 10 = "60000-74999 Amount of adjusted" 12044 11 = "75000-99999 Amount of adjusted" 12045 12 = "100000+ Amount of adjusted gross" 12046 ; 238 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format TADJINCM has been output. 12047 VALUE tnettax (default=32) 12048 -1 = "Don't know, Refused, None, Losses" 12049 0 = "Not answered" 12050 1 = "1-199 Amount of net tax liability" 12051 2 = "200-699 Amount of net tax" 12052 3 = "700-1199 Amount of net tax" 12053 4 = "1200-1999 Amount of net tax" 12054 5 = "2000-2999 Amount of net tax" 12055 6 = "3000-3999 Amount of net tax" 12056 7 = "4000-5999 Amount of net tax" 12057 8 = "6000-7999 Amount of net tax" 12058 9 = "8000-10999 Amount of net tax" 12059 10 = "11000-15999 Amount of net tax" 12060 11 = "16000-26999 Amount of net tax" 12061 12 = "27000+ Amount of net tax liability" 12062 ; NOTE: Format TNETTAX has been output. 12063 VALUE ierndcrd (default=32) 12064 -2 = "Refused" 12065 -1 = "Don't know" 12066 0 = "Not answered" 12067 1 = "Yes" 12068 2 = "No" 12069 ; NOTE: Format IERNDCRD has been output. 12070 VALUE terndamt (default=32) 12071 -2 = "Refused" 12072 -1 = "Don't know" 12073 0 = "Not answered" 12074 1 = "1-199 Amount of earned income" 12075 2 = "200-399 Amount of earned income" 12076 3 = "400-499 Amount of earned income" 12077 4 = "500-799 Amount of earned income" 12078 5 = "800-1099 Amount of earned income" 12079 6 = "1100-1599 Amount of earned income" 12080 7 = "1600-2099 Amount of earned income" 12081 8 = "2100-2899 Amount of earned income" 12082 9 = "2900-3099 Amount of earned income" 12083 10 = "3100-4999 Amount of earned income" 12084 11 = "5000+ Amount of earned income" 12085 ; NOTE: Format TERNDAMT has been output. 12086 VALUE ieicex0t (default=32) 12087 -5 = "All" 12088 -3 = "None" 12089 -2 = "Refused" 12090 -1 = "Don't know" 12091 0 = "Not answered" 12092 9999 = "Unknown person number" 12093 ; NOTE: Format IEICEX0T has been output. 12094 VALUE ieicex0k (default=32) 12095 -3 = "None" 12096 -2 = "Refused" 12097 -1 = "Don't know" 12098 0 = "Not answered" 12099 9999 = "Unknown person number" 239 The SAS System 11:54 Thursday, June 7, 2012 12100 ; NOTE: Format IEICEX0K has been output. 12101 VALUE ieicex0l (default=32) 12102 -3 = "None" 12103 -2 = "Refused" 12104 -1 = "Don't know" 12105 0 = "Not answered" 12106 9999 = "Unknown person number" 12107 ; NOTE: Format IEICEX0L has been output. 12108 VALUE ieicex0m (default=32) 12109 -3 = "None" 12110 -2 = "Refused" 12111 -1 = "Don't know" 12112 0 = "Not answered" 12113 9999 = "Unknown person number" 12114 ; NOTE: Format IEICEX0M has been output. 12115 VALUE ieicex0n (default=32) 12116 -3 = "None" 12117 -2 = "Refused" 12118 -1 = "Don't know" 12119 0 = "Not answered" 12120 9999 = "Unknown person number" 12121 ; NOTE: Format IEICEX0N has been output. 12122 VALUE ieicex0o (default=32) 12123 -3 = "None" 12124 -2 = "Refused" 12125 -1 = "Don't know" 12126 0 = "Not answered" 12127 9999 = "Unknown person number" 12128 ; NOTE: Format IEICEX0O has been output. 12129 VALUE ieicex0p (default=32) 12130 -3 = "None" 12131 -2 = "Refused" 12132 -1 = "Don't know" 12133 0 = "Not answered" 12134 9999 = "Unknown person number" 12135 ; NOTE: Format IEICEX0P has been output. 12136 VALUE ieicex0q (default=32) 12137 -3 = "None" 12138 -2 = "Refused" 12139 -1 = "Don't know" 12140 0 = "Not answered" 12141 9999 = "Unknown person number" 12142 ; NOTE: Format IEICEX0Q has been output. 12143 VALUE ieicex0r (default=32) 12144 -3 = "None" 12145 -2 = "Refused" 12146 -1 = "Don't know" 12147 0 = "Not answered" 12148 9999 = "Unknown person number" 12149 ; NOTE: Format IEICEX0R has been output. 240 The SAS System 11:54 Thursday, June 7, 2012 12150 VALUE ieicex1t (default=32) 12151 -3 = "None" 12152 -2 = "Refused" 12153 -1 = "Don't know" 12154 0 = "Not answered" 12155 9999 = "Unknown person number" 12156 ; NOTE: Format IEICEX1T has been output. 12157 VALUE ieicex1k (default=32) 12158 -3 = "None" 12159 -2 = "Refused" 12160 -1 = "Don't know" 12161 0 = "Not answered" 12162 9999 = "Unknown person number" 12163 ; NOTE: Format IEICEX1K has been output. 12164 VALUE ieicex1l (default=32) 12165 -3 = "None" 12166 -2 = "Refused" 12167 -1 = "Don't know" 12168 0 = "Not answered" 12169 9999 = "Unknown person number" 12170 ; NOTE: Format IEICEX1L has been output. 12171 VALUE ieicex1m (default=32) 12172 -3 = "None" 12173 -2 = "Refused" 12174 -1 = "Don't know" 12175 0 = "Not answered" 12176 9999 = "Unknown person number" 12177 ; NOTE: Format IEICEX1M has been output. 12178 VALUE ieicex1n (default=32) 12179 -3 = "None" 12180 -2 = "Refused" 12181 -1 = "Don't know" 12182 0 = "Not answered" 12183 9999 = "Unknown person number" 12184 ; NOTE: Format IEICEX1N has been output. 12185 VALUE ieicex1o (default=32) 12186 -3 = "None" 12187 -2 = "Refused" 12188 -1 = "Don't know" 12189 0 = "Not answered" 12190 9999 = "Unknown person number" 12191 ; NOTE: Format IEICEX1O has been output. 12192 VALUE ieicex1p (default=32) 12193 -3 = "None" 12194 -2 = "Refused" 12195 -1 = "Don't know" 12196 0 = "Not answered" 12197 9999 = "Unknown person number" 12198 ; NOTE: Format IEICEX1P has been output. 12199 VALUE ieicex1q (default=32) 12200 -3 = "None" 241 The SAS System 11:54 Thursday, June 7, 2012 12201 -2 = "Refused" 12202 -1 = "Don't know" 12203 0 = "Not answered" 12204 9999 = "Unknown person number" 12205 ; NOTE: Format IEICEX1Q has been output. 12206 VALUE ieicex1r (default=32) 12207 -3 = "None" 12208 -2 = "Refused" 12209 -1 = "Don't know" 12210 0 = "Not answered" 12211 9999 = "Unknown person number" 12212 ; NOTE: Format IEICEX1R has been output. 12213 VALUE ieicex1s (default=32) 12214 -3 = "None" 12215 -2 = "Refused" 12216 -1 = "Don't know" 12217 0 = "Not answered" 12218 9999 = "Unknown person number" 12219 ; NOTE: Format IEICEX1S has been output. 12220 VALUE ieicex2t (default=32) 12221 -3 = "None" 12222 -2 = "Refused" 12223 -1 = "Don't know" 12224 0 = "Not answered" 12225 9999 = "Unknown person number" 12226 ; NOTE: Format IEICEX2T has been output. 12227 VALUE ieicex2k (default=32) 12228 -3 = "None" 12229 -2 = "Refused" 12230 -1 = "Don't know" 12231 0 = "Not answered" 12232 9999 = "Unknown person number" 12233 ; NOTE: Format IEICEX2K has been output. 12234 VALUE ieicex2l (default=32) 12235 -3 = "None" 12236 -2 = "Refused" 12237 -1 = "Don't know" 12238 0 = "Not answered" 12239 9999 = "Unknown person number" 12240 ; NOTE: Format IEICEX2L has been output. 12241 VALUE ieicex2m (default=32) 12242 -3 = "None" 12243 -2 = "Refused" 12244 -1 = "Don't know" 12245 0 = "Not answered" 12246 9999 = "Unknown person number" 12247 ; NOTE: Format IEICEX2M has been output. 12248 VALUE ieicex2n (default=32) 12249 -3 = "None" 12250 -2 = "Refused" 12251 -1 = "Don't know" 242 The SAS System 11:54 Thursday, June 7, 2012 12252 0 = "Not answered" 12253 9999 = "Unknown person number" 12254 ; NOTE: Format IEICEX2N has been output. 12255 VALUE ieicex2o (default=32) 12256 -3 = "None" 12257 -2 = "Refused" 12258 -1 = "Don't know" 12259 0 = "Not answered" 12260 9999 = "Unknown person number" 12261 ; NOTE: Format IEICEX2O has been output. 12262 VALUE ieicex2p (default=32) 12263 -3 = "None" 12264 -2 = "Refused" 12265 -1 = "Don't know" 12266 0 = "Not answered" 12267 9999 = "Unknown person number" 12268 ; NOTE: Format IEICEX2P has been output. 12269 VALUE ieicex2q (default=32) 12270 -3 = "None" 12271 -2 = "Refused" 12272 -1 = "Don't know" 12273 0 = "Not answered" 12274 9999 = "Unknown person number" 12275 ; NOTE: Format IEICEX2Q has been output. 12276 VALUE ieicex2r (default=32) 12277 -3 = "None" 12278 -2 = "Refused" 12279 -1 = "Don't know" 12280 0 = "Not answered" 12281 9999 = "Unknown person number" 12282 ; NOTE: Format IEICEX2R has been output. 12283 VALUE ieicex2s (default=32) 12284 -3 = "None" 12285 -2 = "Refused" 12286 -1 = "Don't know" 12287 0 = "Not answered" 12288 9999 = "Unknown person number" 12289 ; NOTE: Format IEICEX2S has been output. 12290 VALUE ieicex3t (default=32) 12291 -3 = "None" 12292 -2 = "Refused" 12293 -1 = "Don't know" 12294 0 = "Not answered" 12295 9999 = "Unknown person number" 12296 ; NOTE: Format IEICEX3T has been output. 12297 VALUE iproptax (default=32) 12298 -2 = "Refused" 12299 -1 = "Don't know" 12300 0 = "Not answered" 12301 1 = "Yes" 12302 2 = "No" 243 The SAS System 11:54 Thursday, June 7, 2012 12303 ; NOTE: Format IPROPTAX has been output. 12304 VALUE ipropjnt (default=32) 12305 -2 = "Refused" 12306 -1 = "Don't know" 12307 0 = "Not answered" 12308 1 = "Yes" 12309 2 = "No" 12310 ; NOTE: Format IPROPJNT has been output. 12311 VALUE ipropn0t (default=32) 12312 -5 = "All" 12313 -3 = "None" 12314 -2 = "Refused" 12315 -1 = "Don't know" 12316 0 = "Not answered" 12317 9999 = "Unknown person number" 12318 ; NOTE: Format IPROPN0T has been output. 12319 VALUE ipropn0k (default=32) 12320 -3 = "None" 12321 -2 = "Refused" 12322 -1 = "Don't know" 12323 0 = "Not answered" 12324 9999 = "Unknown person number" 12325 ; NOTE: Format IPROPN0K has been output. 12326 VALUE ipropn0l (default=32) 12327 -3 = "None" 12328 -2 = "Refused" 12329 -1 = "Don't know" 12330 0 = "Not answered" 12331 9999 = "Unknown person number" 12332 ; NOTE: Format IPROPN0L has been output. 12333 VALUE ipropn0m (default=32) 12334 -3 = "None" 12335 -2 = "Refused" 12336 -1 = "Don't know" 12337 0 = "Not answered" 12338 9999 = "Unknown person number" 12339 ; NOTE: Format IPROPN0M has been output. 12340 VALUE ipropn0n (default=32) 12341 -3 = "None" 12342 -2 = "Refused" 12343 -1 = "Don't know" 12344 0 = "Not answered" 12345 9999 = "Unknown person number" 12346 ; NOTE: Format IPROPN0N has been output. 12347 VALUE ipropn0o (default=32) 12348 -3 = "None" 12349 -2 = "Refused" 12350 -1 = "Don't know" 12351 0 = "Not answered" 12352 9999 = "Unknown person number" 12353 ; 244 The SAS System 11:54 Thursday, June 7, 2012 NOTE: Format IPROPN0O has been output. 12354 VALUE ipropn0p (default=32) 12355 -3 = "None" 12356 -2 = "Refused" 12357 -1 = "Don't know" 12358 0 = "Not answered" 12359 9999 = "Unknown person number" 12360 ; NOTE: Format IPROPN0P has been output. 12361 VALUE ipropn0q (default=32) 12362 -3 = "None" 12363 -2 = "Refused" 12364 -1 = "Don't know" 12365 0 = "Not answered" 12366 9999 = "Unknown person number" 12367 ; NOTE: Format IPROPN0Q has been output. 12368 VALUE ipropn0r (default=32) 12369 -3 = "None" 12370 -2 = "Refused" 12371 -1 = "Don't know" 12372 0 = "Not answered" 12373 9999 = "Unknown person number" 12374 ; NOTE: Format IPROPN0R has been output. 12375 VALUE ipropn1t (default=32) 12376 -3 = "None" 12377 -2 = "Refused" 12378 -1 = "Don't know" 12379 0 = "Not answered" 12380 9999 = "Unknown person number" 12381 ; NOTE: Format IPROPN1T has been output. 12382 VALUE ipropn1k (default=32) 12383 -3 = "None" 12384 -2 = "Refused" 12385 -1 = "Don't know" 12386 0 = "Not answered" 12387 9999 = "Unknown person number" 12388 ; NOTE: Format IPROPN1K has been output. 12389 VALUE ipropn1l (default=32) 12390 -3 = "None" 12391 -2 = "Refused" 12392 -1 = "Don't know" 12393 0 = "Not answered" 12394 9999 = "Unknown person number" 12395 ; NOTE: Format IPROPN1L has been output. 12396 VALUE ipropn1m (default=32) 12397 -3 = "None" 12398 -2 = "Refused" 12399 -1 = "Don't know" 12400 0 = "Not answered" 12401 9999 = "Unknown person number" 12402 ; NOTE: Format IPROPN1M has been output. 12403 VALUE ipropn1n (default=32) 245 The SAS System 11:54 Thursday, June 7, 2012 12404 -3 = "None" 12405 -2 = "Refused" 12406 -1 = "Don't know" 12407 0 = "Not answered" 12408 9999 = "Unknown person number" 12409 ; NOTE: Format IPROPN1N has been output. 12410 VALUE ipropn1o (default=32) 12411 -3 = "None" 12412 -2 = "Refused" 12413 -1 = "Don't know" 12414 0 = "Not answered" 12415 9999 = "Unknown person number" 12416 ; NOTE: Format IPROPN1O has been output. 12417 VALUE ipropn1p (default=32) 12418 -3 = "None" 12419 -2 = "Refused" 12420 -1 = "Don't know" 12421 0 = "Not answered" 12422 9999 = "Unknown person number" 12423 ; NOTE: Format IPROPN1P has been output. 12424 VALUE ipropn1q (default=32) 12425 -3 = "None" 12426 -2 = "Refused" 12427 -1 = "Don't know" 12428 0 = "Not answered" 12429 9999 = "Unknown person number" 12430 ; NOTE: Format IPROPN1Q has been output. 12431 VALUE ipropn1r (default=32) 12432 -3 = "None" 12433 -2 = "Refused" 12434 -1 = "Don't know" 12435 0 = "Not answered" 12436 9999 = "Unknown person number" 12437 ; NOTE: Format IPROPN1R has been output. 12438 VALUE ipropn1s (default=32) 12439 -3 = "None" 12440 -2 = "Refused" 12441 -1 = "Don't know" 12442 0 = "Not answered" 12443 9999 = "Unknown person number" 12444 ; NOTE: Format IPROPN1S has been output. 12445 VALUE ipropn2t (default=32) 12446 -3 = "None" 12447 -2 = "Refused" 12448 -1 = "Don't know" 12449 0 = "Not answered" 12450 9999 = "Unknown person number" 12451 ; NOTE: Format IPROPN2T has been output. 12452 VALUE ipropn2k (default=32) 12453 -3 = "None" 12454 -2 = "Refused" 246 The SAS System 11:54 Thursday, June 7, 2012 12455 -1 = "Don't know" 12456 0 = "Not answered" 12457 9999 = "Unknown person number" 12458 ; NOTE: Format IPROPN2K has been output. 12459 VALUE ipropn2l (default=32) 12460 -3 = "None" 12461 -2 = "Refused" 12462 -1 = "Don't know" 12463 0 = "Not answered" 12464 9999 = "Unknown person number" 12465 ; NOTE: Format IPROPN2L has been output. 12466 VALUE ipropn2m (default=32) 12467 -3 = "None" 12468 -2 = "Refused" 12469 -1 = "Don't know" 12470 0 = "Not answered" 12471 9999 = "Unknown person number" 12472 ; NOTE: Format IPROPN2M has been output. 12473 VALUE ipropn2n (default=32) 12474 -3 = "None" 12475 -2 = "Refused" 12476 -1 = "Don't know" 12477 0 = "Not answered" 12478 9999 = "Unknown person number" 12479 ; NOTE: Format IPROPN2N has been output. 12480 VALUE ipropn2o (default=32) 12481 -3 = "None" 12482 -2 = "Refused" 12483 -1 = "Don't know" 12484 0 = "Not answered" 12485 9999 = "Unknown person number" 12486 ; NOTE: Format IPROPN2O has been output. 12487 VALUE ipropn2p (default=32) 12488 -3 = "None" 12489 -2 = "Refused" 12490 -1 = "Don't know" 12491 0 = "Not answered" 12492 9999 = "Unknown person number" 12493 ; NOTE: Format IPROPN2P has been output. 12494 VALUE ipropn2q (default=32) 12495 -3 = "None" 12496 -2 = "Refused" 12497 -1 = "Don't know" 12498 0 = "Not answered" 12499 9999 = "Unknown person number" 12500 ; NOTE: Format IPROPN2Q has been output. 12501 VALUE ipropn2r (default=32) 12502 -3 = "None" 12503 -2 = "Refused" 12504 -1 = "Don't know" 12505 0 = "Not answered" 247 The SAS System 11:54 Thursday, June 7, 2012 12506 9999 = "Unknown person number" 12507 ; NOTE: Format IPROPN2R has been output. 12508 VALUE ipropn2s (default=32) 12509 -3 = "None" 12510 -2 = "Refused" 12511 -1 = "Don't know" 12512 0 = "Not answered" 12513 9999 = "Unknown person number" 12514 ; NOTE: Format IPROPN2S has been output. 12515 VALUE ipropn3t (default=32) 12516 -3 = "None" 12517 -2 = "Refused" 12518 -1 = "Don't know" 12519 0 = "Not answered" 12520 9999 = "Unknown person number" 12521 ; NOTE: Format IPROPN3T has been output. 12522 VALUE ttaxbill (default=32) 12523 -2 = "Refused" 12524 -1 = "Don't know" 12525 0 = "Not answered" 12526 1 = "1-199 Amount of property tax" 12527 2 = "200-399 Amount of property tax" 12528 3 = "400-599 Amount of property tax" 12529 4 = "600-799 Amount of property tax" 12530 5 = "800-999 Amount of property tax" 12531 6 = "1000-1199 Amount of property tax" 12532 7 = "1200-1399 Amount of property tax" 12533 8 = "1400-1699 Amount of property tax" 12534 9 = "1700-1899 Amount of property tax" 12535 10 = "1900-2199 Amount of property tax" 12536 11 = "2200-2599 Amount of property tax" 12537 12 = "2600-2999 Amount of property tax" 12538 13 = "3000-3999 Amount of property tax" 12539 14 = "4000-4999 Amount of property tax" 12540 15 = "5000-6999 Amount of property tax" 12541 16 = "7000+ Amount of property tax" 12542 ; NOTE: Format TTAXBILL has been output. 12543 NOTE: The data set LIBRARY.FSPPP08PUTM8 has 5599 observations and 21 variables. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.59 seconds cpu time 0.31 seconds 12544 proc print data=library.sippp08putm8 (obs=6); 12545 12546 12547 FORMAT 12548 spanel spanel. 12549 tfipsst tfipsst. 12550 eoutcome eoutcome. 12551 rfid2 rfid2l. 12552 epopstat epopstat. 248 The SAS System 11:54 Thursday, June 7, 2012 12553 eppintvw eppintvw. 12554 eppmis4 eppmis4l. 12555 esex esex. 12556 erace erace. 12557 eorigin eorigin. 12558 errp errp. 12559 tage tage. 12560 ems ems. 12561 epnspous epnspous. 12562 epnmom epnmom. 12563 epndad epndad. 12564 epnguard epnguard. 12565 rdesgpnt rdesgpnt. 12566 eeducate eeducate. 12567 sinthhid sinthhid. 12568 epwsunv epwsunv. 12569 ewsempct ewsempct. 12570 awsempct awsempct. 12571 ewseno1 ewseno1l. 12572 ewsbno1 ewsbno1l. 12573 ewseno2 ewseno2l. 12574 ewsbno2 ewsbno2l. 12575 ewshrs1 ewshrs1l. 12576 awshrs1 awshrs1l. 12577 ewsdys1 ewsdys1l. 12578 awsdys1 awsdys1l. 12579 ewsday11 ewsday1t. 12580 awsday11 awsday1t. 12581 ewsday12 ewsday1k. 12582 awsday12 awsday1k. 12583 ewsday13 ewsday1l. 12584 awsday13 awsday1l. 12585 ewsday14 ewsday1m. 12586 awsday14 awsday1m. 12587 ewsday15 ewsday1n. 12588 awsday15 awsday1n. 12589 ewsday16 ewsday1o. 12590 awsday16 awsday1o. 12591 ewsday17 ewsday1p. 12592 awsday17 awsday1p. 12593 ewsbeg1 ewsbeg1l. 12594 awsbeg1 awsbeg1l. 12595 ewsbegm1 ewsbegmt. 12596 awsbegm1 awsbegmt. 12597 ewsend1 ewsend1l. 12598 awsend1 awsend1l. 12599 ewsendm1 ewsendmt. 12600 awsendm1 awsendmt. 12601 ewshmwk1 ewshmwkt. 12602 awshmwk1 awshmwkt. 12603 ewsdy11 ewsdy11l. 12604 awsdy11 awsdy11l. 12605 ewsdy12 ewsdy12l. 12606 awsdy12 awsdy12l. 12607 ewsdy13 ewsdy13l. 12608 awsdy13 awsdy13l. 12609 ewsdy14 ewsdy14l. 12610 awsdy14 awsdy14l. 249 The SAS System 11:54 Thursday, June 7, 2012 12611 ewsdy15 ewsdy15l. 12612 awsdy15 awsdy15l. 12613 ewsdy16 ewsdy16l. 12614 awsdy16 awsdy16l. 12615 ewsdy17 ewsdy17l. 12616 awsdy17 awsdy17l. 12617 ewsjob1 ewsjob1l. 12618 awsjob1 awsjob1l. 12619 ewsmnr1 ewsmnr1l. 12620 awsmnr1 awsmnr1l. 12621 ewshrs2 ewshrs2l. 12622 awshrs2 awshrs2l. 12623 ewsdys2 ewsdys2l. 12624 awsdys2 awsdys2l. 12625 ewsday21 ewsday2t. 12626 awsday21 awsday2t. 12627 ewsday22 ewsday2k. 12628 awsday22 awsday2k. 12629 ewsday23 ewsday2l. 12630 awsday23 awsday2l. 12631 ewsday24 ewsday2m. 12632 awsday24 awsday2m. 12633 ewsday25 ewsday2n. 12634 awsday25 awsday2n. 12635 ewsday26 ewsday2o. 12636 awsday26 awsday2o. 12637 ewsday27 ewsday2p. 12638 awsday27 awsday2p. 12639 ewsbeg2 ewsbeg2l. 12640 awsbeg2 awsbeg2l. 12641 ewsbegm2 ewsbegmk. 12642 awsbegm2 awsbegmk. 12643 ewsend2 ewsend2l. 12644 awsend2 awsend2l. 12645 ewsendm2 ewsendmk. 12646 awsendm2 awsendmk. 12647 ewshmwk2 ewshmwkk. 12648 awshmwk2 awshmwkk. 12649 ewsdy21 ewsdy21l. 12650 awsdy21 awsdy21l. 12651 ewsdy22 ewsdy22l. 12652 awsdy22 awsdy22l. 12653 ewsdy23 ewsdy23l. 12654 awsdy23 awsdy23l. 12655 ewsdy24 ewsdy24l. 12656 awsdy24 awsdy24l. 12657 ewsdy25 ewsdy25l. 12658 awsdy25 awsdy25l. 12659 ewsdy26 ewsdy26l. 12660 awsdy26 awsdy26l. 12661 ewsdy27 ewsdy27l. 12662 awsdy27 awsdy27l. 12663 ewsjob2 ewsjob2l. 12664 awsjob2 awsjob2l. 12665 ewsmnr2 ewsmnr2l. 12666 awsmnr2 awsmnr2l. 12667 eccunv eccunv. 12668 ehrwksch ehrwksch. 250 The SAS System 11:54 Thursday, June 7, 2012 12669 ahrwksch ahrwksch. 12670 rrhrswk rrhrswk. 12671 ehrwkjob ehrwkjob. 12672 ahrwkjob ahrwkjob. 12673 eccpnuma $eccpnum. 12674 eccpnumb $eccpnum. 12675 eccpnumc $eccpnum. 12676 eccpnumd $eccpnum. 12677 eccpnume $eccpnum. 12678 eccagea eccagea. 12679 eccageb eccageb. 12680 eccagec eccagec. 12681 eccaged eccaged. 12682 eccagee eccagee. 12683 eckd01a eckd01a. 12684 eckd01b eckd01b. 12685 eckd01c eckd01c. 12686 eckd01d eckd01d. 12687 eckd01e eckd01e. 12688 eckd02a eckd02a. 12689 eckd02b eckd02b. 12690 eckd02c eckd02c. 12691 eckd02d eckd02d. 12692 eckd02e eckd02e. 12693 eckd03a eckd03a. 12694 eckd03b eckd03b. 12695 eckd03c eckd03c. 12696 eckd03d eckd03d. 12697 eckd03e eckd03e. 12698 eckd04a eckd04a. 12699 eckd04b eckd04b. 12700 eckd04c eckd04c. 12701 eckd04d eckd04d. 12702 eckd04e eckd04e. 12703 eckd05a eckd05a. 12704 eckd05b eckd05b. 12705 eckd05c eckd05c. 12706 eckd05d eckd05d. 12707 eckd05e eckd05e. 12708 eckd06a eckd06a. 12709 eckd06b eckd06b. 12710 eckd06c eckd06c. 12711 eckd06d eckd06d. 12712 eckd06e eckd06e. 12713 eckd07a eckd07a. 12714 eckd07b eckd07b. 12715 eckd07c eckd07c. 12716 eckd07d eckd07d. 12717 eckd07e eckd07e. 12718 eckd08a eckd08a. 12719 eckd08b eckd08b. 12720 eckd08c eckd08c. 12721 eckd08d eckd08d. 12722 eckd08e eckd08e. 12723 eckd09a eckd09a. 12724 eckd09b eckd09b. 12725 eckd09c eckd09c. 12726 eckd09d eckd09d. 251 The SAS System 11:54 Thursday, June 7, 2012 12727 eckd09e eckd09e. 12728 eckd10a eckd10a. 12729 eckd10b eckd10b. 12730 eckd10c eckd10c. 12731 eckd10d eckd10d. 12732 eckd10e eckd10e. 12733 eckd11a eckd11a. 12734 eckd11b eckd11b. 12735 eckd11c eckd11c. 12736 eckd11d eckd11d. 12737 eckd11e eckd11e. 12738 accarea accarea. 12739 accareb accareb. 12740 accarec accarec. 12741 accared accared. 12742 accaree accaree. 12743 ewhepara ewhepara. 12744 awhepara awhepara. 12745 ewheparb ewheparb. 12746 awheparb awheparb. 12747 ewheparc ewheparc. 12748 awheparc awheparc. 12749 ewhepard ewhepard. 12750 awhepard awhepard. 12751 ewhepare ewhepare. 12752 awhepare awhepare. 12753 eparhr1a eparhr1a. 12754 aparhr1a aparhr1a. 12755 eparhr1b eparhr1b. 12756 aparhr1b aparhr1b. 12757 eparhr1c eparhr1c. 12758 aparhr1c aparhr1c. 12759 eparhr1d eparhr1d. 12760 aparhr1d aparhr1d. 12761 eparhr1e eparhr1e. 12762 aparhr1e aparhr1e. 12763 eparhr2a eparhr2a. 12764 aparhr2a aparhr2a. 12765 eparhr2b eparhr2b. 12766 aparhr2b aparhr2b. 12767 eparhr2c eparhr2c. 12768 aparhr2c aparhr2c. 12769 eparhr2d eparhr2d. 12770 aparhr2d aparhr2d. 12771 eparhr2e eparhr2e. 12772 aparhr2e aparhr2e. 12773 ewhselfa ewhselfa. 12774 awhselfa awhselfa. 12775 ewhselfb ewhselfb. 12776 awhselfb awhselfb. 12777 ewhselfc ewhselfc. 12778 awhselfc awhselfc. 12779 ewhselfd ewhselfd. 12780 awhselfd awhselfd. 12781 ewhselfe ewhselfe. 12782 awhselfe awhselfe. 12783 eselfhra eselfhra. 12784 aselfhra aselfhra. 252 The SAS System 11:54 Thursday, June 7, 2012 12785 eselfhrb eselfhrb. 12786 aselfhrb aselfhrb. 12787 eselfhrc eselfhrc. 12788 aselfhrc aselfhrc. 12789 eselfhrd eselfhrd. 12790 aselfhrd aselfhrd. 12791 eselfhre eselfhre. 12792 aselfhre aselfhre. 12793 ewhsb15a ewhsb15a. 12794 awhsb15a awhsb15a. 12795 ewhsb15b ewhsb15b. 12796 awhsb15b awhsb15b. 12797 ewhsb15c ewhsb15c. 12798 awhsb15c awhsb15c. 12799 ewhsb15d ewhsb15d. 12800 awhsb15d awhsb15d. 12801 ewhsb15e ewhsb15e. 12802 awhsb15e awhsb15e. 12803 ewhsbhra ewhsbhra. 12804 awhsbhra awhsbhra. 12805 ewhsbhrb ewhsbhrb. 12806 awhsbhrb awhsbhrb. 12807 ewhsbhrc ewhsbhrc. 12808 awhsbhrc awhsbhrc. 12809 ewhsbhrd ewhsbhrd. 12810 awhsbhrd awhsbhrd. 12811 ewhsbhre ewhsbhre. 12812 awhsbhre awhsbhre. 12813 ehrsb15a ehrsb15a. 12814 ahrsb15a ahrsb15a. 12815 ehrsb15b ehrsb15b. 12816 ahrsb15b ahrsb15b. 12817 ehrsb15c ehrsb15c. 12818 ahrsb15c ahrsb15c. 12819 ehrsb15d ehrsb15d. 12820 ahrsb15d ahrsb15d. 12821 ehrsb15e ehrsb15e. 12822 ahrsb15e ahrsb15e. 12823 ewhsb14a ewhsb14a. 12824 awhsb14a awhsb14a. 12825 ewhsb14b ewhsb14b. 12826 awhsb14b awhsb14b. 12827 ewhsb14c ewhsb14c. 12828 awhsb14c awhsb14c. 12829 ewhsb14d ewhsb14d. 12830 awhsb14d awhsb14d. 12831 ewhsb14e ewhsb14e. 12832 awhsb14e awhsb14e. 12833 esb14hra esb14hra. 12834 asb14hra asb14hra. 12835 esb14hrb esb14hrb. 12836 asb14hrb asb14hrb. 12837 esb14hrc esb14hrc. 12838 asb14hrc asb14hrc. 12839 esb14hrd esb14hrd. 12840 asb14hrd asb14hrd. 12841 esb14hre esb14hre. 12842 asb14hre asb14hre. 253 The SAS System 11:54 Thursday, June 7, 2012 12843 ehrsb14a ehrsb14a. 12844 ahrsb14a ahrsb14a. 12845 ehrsb14b ehrsb14b. 12846 ahrsb14b ahrsb14b. 12847 ehrsb14c ehrsb14c. 12848 ahrsb14c ahrsb14c. 12849 ehrsb14d ehrsb14d. 12850 ahrsb14d ahrsb14d. 12851 ehrsb14e ehrsb14e. 12852 ahrsb14e ahrsb14e. 12853 ewhgrana ewhgrana. 12854 awhgrana awhgrana. 12855 ewhgranb ewhgranb. 12856 awhgranb awhgranb. 12857 ewhgranc ewhgranc. 12858 awhgranc awhgranc. 12859 ewhgrand ewhgrand. 12860 awhgrand awhgrand. 12861 ewhgrane ewhgrane. 12862 awhgrane awhgrane. 12863 egranhra egranhra. 12864 agranhra agranhra. 12865 egranhrb egranhrb. 12866 agranhrb agranhrb. 12867 egranhrc egranhrc. 12868 agranhrc agranhrc. 12869 egranhrd egranhrd. 12870 agranhrd agranhrd. 12871 egranhre egranhre. 12872 agranhre agranhre. 12873 ehrgrana ehrgrana. 12874 ahrgrana ahrgrana. 12875 ehrgranb ehrgranb. 12876 ahrgranb ahrgranb. 12877 ehrgranc ehrgranc. 12878 ahrgranc ahrgranc. 12879 ehrgrand ehrgrand. 12880 ahrgrand ahrgrand. 12881 ehrgrane ehrgrane. 12882 ahrgrane ahrgrane. 12883 epaygraa epaygraa. 12884 apaygraa apaygraa. 12885 epaygrab epaygrab. 12886 apaygrab apaygrab. 12887 epaygrac epaygrac. 12888 apaygrac apaygrac. 12889 epaygrad epaygrad. 12890 apaygrad apaygrad. 12891 epaygrae epaygrae. 12892 apaygrae apaygrae. 12893 tamtgraa tamtgraa. 12894 aamtgraa aamtgraa. 12895 tamtgrab tamtgrab. 12896 aamtgrab aamtgrab. 12897 tamtgrac tamtgrac. 12898 aamtgrac aamtgrac. 12899 tamtgrad tamtgrad. 12900 aamtgrad aamtgrad. 254 The SAS System 11:54 Thursday, June 7, 2012 12901 tamtgrae tamtgrae. 12902 aamtgrae aamtgrae. 12903 ewhrelaa ewhrelaa. 12904 awhrelaa awhrelaa. 12905 ewhrelab ewhrelab. 12906 awhrelab awhrelab. 12907 ewhrelac ewhrelac. 12908 awhrelac awhrelac. 12909 ewhrelad ewhrelad. 12910 awhrelad awhrelad. 12911 ewhrelae ewhrelae. 12912 awhrelae awhrelae. 12913 erelhr1a erelhr1a. 12914 arelhr1a arelhr1a. 12915 erelhr1b erelhr1b. 12916 arelhr1b arelhr1b. 12917 erelhr1c erelhr1c. 12918 arelhr1c arelhr1c. 12919 erelhr1d erelhr1d. 12920 arelhr1d arelhr1d. 12921 erelhr1e erelhr1e. 12922 arelhr1e arelhr1e. 12923 erelhr2a erelhr2a. 12924 arelhr2a arelhr2a. 12925 erelhr2b erelhr2b. 12926 arelhr2b arelhr2b. 12927 erelhr2c erelhr2c. 12928 arelhr2c arelhr2c. 12929 erelhr2d erelhr2d. 12930 arelhr2d arelhr2d. 12931 erelhr2e erelhr2e. 12932 arelhr2e arelhr2e. 12933 epayrela epayrela. 12934 apayrela apayrela. 12935 epayrelb epayrelb. 12936 apayrelb apayrelb. 12937 epayrelc epayrelc. 12938 apayrelc apayrelc. 12939 epayreld epayreld. 12940 apayreld apayreld. 12941 epayrele epayrele. 12942 apayrele apayrele. 12943 tamtrela tamtrela. 12944 aamtrela aamtrela. 12945 tamtrelb tamtrelb. 12946 aamtrelb aamtrelb. 12947 tamtrelc tamtrelc. 12948 aamtrelc aamtrelc. 12949 tamtreld tamtreld. 12950 aamtreld aamtreld. 12951 tamtrele tamtrele. 12952 aamtrele aamtrele. 12953 ehrfam1a ehrfam1a. 12954 ahrfam1a ahrfam1a. 12955 ehrfam1b ehrfam1b. 12956 ahrfam1b ahrfam1b. 12957 ehrfam1c ehrfam1c. 12958 ahrfam1c ahrfam1c. 255 The SAS System 11:54 Thursday, June 7, 2012 12959 ehrfam1d ehrfam1d. 12960 ahrfam1d ahrfam1d. 12961 ehrfam1e ehrfam1e. 12962 ahrfam1e ahrfam1e. 12963 ehrfam2a ehrfam2a. 12964 ahrfam2a ahrfam2a. 12965 ehrfam2b ehrfam2b. 12966 ahrfam2b ahrfam2b. 12967 ehrfam2c ehrfam2c. 12968 ahrfam2c ahrfam2c. 12969 ehrfam2d ehrfam2d. 12970 ahrfam2d ahrfam2d. 12971 ehrfam2e ehrfam2e. 12972 ahrfam2e ahrfam2e. 12973 epayfama epayfama. 12974 apayfama apayfama. 12975 epayfamb epayfamb. 12976 apayfamb apayfamb. 12977 epayfamc epayfamc. 12978 apayfamc apayfamc. 12979 epayfamd epayfamd. 12980 apayfamd apayfamd. 12981 epayfame epayfame. 12982 apayfame apayfame. 12983 tamtfama tamtfama. 12984 aamtfama aamtfama. 12985 tamtfamb tamtfamb. 12986 aamtfamb aamtfamb. 12987 tamtfamc tamtfamc. 12988 aamtfamc aamtfamc. 12989 tamtfamd tamtfamd. 12990 aamtfamd aamtfamd. 12991 tamtfame tamtfame. 12992 aamtfame aamtfame. 12993 ewhdayca ewhdayca. 12994 awhdayca awhdayca. 12995 ewhdaycb ewhdaycb. 12996 awhdaycb awhdaycb. 12997 ewhdaycc ewhdaycc. 12998 awhdaycc awhdaycc. 12999 ewhdaycd ewhdaycd. 13000 awhdaycd awhdaycd. 13001 ewhdayce ewhdayce. 13002 awhdayce awhdayce. 13003 edayhrsa edayhrsa. 13004 adayhrsa adayhrsa. 13005 edayhrsb edayhrsb. 13006 adayhrsb adayhrsb. 13007 edayhrsc edayhrsc. 13008 adayhrsc adayhrsc. 13009 edayhrsd edayhrsd. 13010 adayhrsd adayhrsd. 13011 edayhrse edayhrse. 13012 adayhrse adayhrse. 13013 ehrdayca ehrdayca. 13014 ahrdayca ahrdayca. 13015 ehrdaycb ehrdaycb. 13016 ahrdaycb ahrdaycb. 256 The SAS System 11:54 Thursday, June 7, 2012 13017 ehrdaycc ehrdaycc. 13018 ahrdaycc ahrdaycc. 13019 ehrdaycd ehrdaycd. 13020 ahrdaycd ahrdaycd. 13021 ehrdayce ehrdayce. 13022 ahrdayce ahrdayce. 13023 epaydaya epaydaya. 13024 apaydaya apaydaya. 13025 epaydayb epaydayb. 13026 apaydayb apaydayb. 13027 epaydayc epaydayc. 13028 apaydayc apaydayc. 13029 epaydayd epaydayd. 13030 apaydayd apaydayd. 13031 epaydaye epaydaye. 13032 apaydaye apaydaye. 13033 tamtdaya tamtdaya. 13034 aamtdaya aamtdaya. 13035 tamtdayb tamtdayb. 13036 aamtdayb aamtdayb. 13037 tamtdayc tamtdayc. 13038 aamtdayc aamtdayc. 13039 tamtdayd tamtdayd. 13040 aamtdayd aamtdayd. 13041 tamtdaye tamtdaye. 13042 aamtdaye aamtdaye. 13043 ewhnursa ewhnursa. 13044 awhnursa awhnursa. 13045 ewhnursb ewhnursb. 13046 awhnursb awhnursb. 13047 ewhnursc ewhnursc. 13048 awhnursc awhnursc. 13049 ewhnursd ewhnursd. 13050 awhnursd awhnursd. 13051 ewhnurse ewhnurse. 13052 awhnurse awhnurse. 13053 enurhrsa enurhrsa. 13054 anurhrsa anurhrsa. 13055 enurhrsb enurhrsb. 13056 anurhrsb anurhrsb. 13057 enurhrsc enurhrsc. 13058 anurhrsc anurhrsc. 13059 enurhrsd enurhrsd. 13060 anurhrsd anurhrsd. 13061 enurhrse enurhrse. 13062 anurhrse anurhrse. 13063 ehrnursa ehrnursa. 13064 ahrnursa ahrnursa. 13065 ehrnursb ehrnursb. 13066 ahrnursb ahrnursb. 13067 ehrnursc ehrnursc. 13068 ahrnursc ahrnursc. 13069 ehrnursd ehrnursd. 13070 ahrnursd ahrnursd. 13071 ehrnurse ehrnurse. 13072 ahrnurse ahrnurse. 13073 epaynura epaynura. 13074 apaynura apaynura. 257 The SAS System 11:54 Thursday, June 7, 2012 13075 epaynurb epaynurb. 13076 apaynurb apaynurb. 13077 epaynurc epaynurc. 13078 apaynurc apaynurc. 13079 epaynurd epaynurd. 13080 apaynurd apaynurd. 13081 epaynure epaynure. 13082 apaynure apaynure. 13083 tamtnura tamtnura. 13084 aamtnura aamtnura. 13085 tamtnurb tamtnurb. 13086 aamtnurb aamtnurb. 13087 tamtnurc tamtnurc. 13088 aamtnurc aamtnurc. 13089 tamtnurd tamtnurd. 13090 aamtnurd aamtnurd. 13091 tamtnure tamtnure. 13092 aamtnure aamtnure. 13093 eheadhra eheadhra. 13094 aheadhra aheadhra. 13095 eheadhrb eheadhrb. 13096 aheadhrb aheadhrb. 13097 eheadhrc eheadhrc. 13098 aheadhrc aheadhrc. 13099 eheadhrd eheadhrd. 13100 aheadhrd aheadhrd. 13101 eheadhre eheadhre. 13102 aheadhre aheadhre. 13103 ehrstara ehrstara. 13104 ahrstara ahrstara. 13105 ehrstarb ehrstarb. 13106 ahrstarb ahrstarb. 13107 ehrstarc ehrstarc. 13108 ahrstarc ahrstarc. 13109 ehrstard ehrstard. 13110 ahrstard ahrstard. 13111 ehrstare ehrstare. 13112 ahrstare ahrstare. 13113 epaystaa epaystaa. 13114 apaystaa apaystaa. 13115 epaystab epaystab. 13116 apaystab apaystab. 13117 epaystac epaystac. 13118 apaystac apaystac. 13119 epaystad epaystad. 13120 apaystad apaystad. 13121 epaystae epaystae. 13122 apaystae apaystae. 13123 tamtstaa tamtstaa. 13124 aamtstaa aamtstaa. 13125 tamtstab tamtstab. 13126 aamtstab aamtstab. 13127 tamtstac tamtstac. 13128 aamtstac aamtstac. 13129 tamtstad tamtstad. 13130 aamtstad aamtstad. 13131 tamtstae tamtstae. 13132 aamtstae aamtstae. 258 The SAS System 11:54 Thursday, June 7, 2012 13133 ewhothea ewhothea. 13134 awhothea awhothea. 13135 ewhotheb ewhotheb. 13136 awhotheb awhotheb. 13137 ewhothec ewhothec. 13138 awhothec awhothec. 13139 ewhothed ewhothed. 13140 awhothed awhothed. 13141 ewhothee ewhothee. 13142 awhothee awhothee. 13143 eothehra eothehra. 13144 aothehra aothehra. 13145 eothehrb eothehrb. 13146 aothehrb aothehrb. 13147 eothehrc eothehrc. 13148 aothehrc aothehrc. 13149 eothehrd eothehrd. 13150 aothehrd aothehrd. 13151 eothehre eothehre. 13152 aothehre aothehre. 13153 ehrothea ehrothea. 13154 ahrothea ahrothea. 13155 ehrotheb ehrotheb. 13156 ahrotheb ahrotheb. 13157 ehrothec ehrothec. 13158 ahrothec ahrothec. 13159 ehrothed ehrothed. 13160 ahrothed ahrothed. 13161 ehrothee ehrothee. 13162 ahrothee ahrothee. 13163 epayotha epayotha. 13164 apayotha apayotha. 13165 epayothb epayothb. 13166 apayothb apayothb. 13167 epayothc epayothc. 13168 apayothc apayothc. 13169 epayothd epayothd. 13170 apayothd apayothd. 13171 epayothe epayothe. 13172 apayothe apayothe. 13173 tamtotha tamtotha. 13174 aamtotha aamtotha. 13175 tamtothb tamtothb. 13176 aamtothb aamtothb. 13177 tamtothc tamtothc. 13178 aamtothc aamtothc. 13179 tamtothd tamtothd. 13180 aamtothd aamtothd. 13181 tamtothe tamtothe. 13182 aamtothe aamtothe. 13183 eschoowa eschoowa. 13184 aschoowa aschoowa. 13185 eschoowb eschoowb. 13186 aschoowb aschoowb. 13187 eschoowc eschoowc. 13188 aschoowc aschoowc. 13189 eschoowd eschoowd. 13190 aschoowd aschoowd. 259 The SAS System 11:54 Thursday, June 7, 2012 13191 eschoowe eschoowe. 13192 aschoowe aschoowe. 13193 ehrschwa ehrschwa. 13194 ahrschwa ahrschwa. 13195 ehrschwb ehrschwb. 13196 ahrschwb ahrschwb. 13197 ehrschwc ehrschwc. 13198 ahrschwc ahrschwc. 13199 ehrschwd ehrschwd. 13200 ahrschwd ahrschwd. 13201 ehrschwe ehrschwe. 13202 ahrschwe ahrschwe. 13203 ehrschoa ehrschoa. 13204 ahrschoa ahrschoa. 13205 ehrschob ehrschob. 13206 ahrschob ahrschob. 13207 ehrschoc ehrschoc. 13208 ahrschoc ahrschoc. 13209 ehrschod ehrschod. 13210 ahrschod ahrschod. 13211 ehrschoe ehrschoe. 13212 ahrschoe ahrschoe. 13213 eselfcaa eselfcaa. 13214 aselfcaa aselfcaa. 13215 eselfcab eselfcab. 13216 aselfcab aselfcab. 13217 eselfcac eselfcac. 13218 aselfcac aselfcac. 13219 eselfcad eselfcad. 13220 aselfcad aselfcad. 13221 eselfcae eselfcae. 13222 aselfcae aselfcae. 13223 ekidhr1a ekidhr1a. 13224 akidhr1a akidhr1a. 13225 ekidhr1b ekidhr1b. 13226 akidhr1b akidhr1b. 13227 ekidhr1c ekidhr1c. 13228 akidhr1c akidhr1c. 13229 ekidhr1d ekidhr1d. 13230 akidhr1d akidhr1d. 13231 ekidhr1e ekidhr1e. 13232 akidhr1e akidhr1e. 13233 ekidhr2a ekidhr2a. 13234 akidhr2a akidhr2a. 13235 ekidhr2b ekidhr2b. 13236 akidhr2b akidhr2b. 13237 ekidhr2c ekidhr2c. 13238 akidhr2c akidhr2c. 13239 ekidhr2d ekidhr2d. 13240 akidhr2d akidhr2d. 13241 ekidhr2e ekidhr2e. 13242 akidhr2e akidhr2e. 13243 edaychaa edaychaa. 13244 adaychaa adaychaa. 13245 edaychab edaychab. 13246 adaychab adaychab. 13247 edaychac edaychac. 13248 adaychac adaychac. 260 The SAS System 11:54 Thursday, June 7, 2012 13249 edaychad edaychad. 13250 adaychad adaychad. 13251 edaychae edaychae. 13252 adaychae adaychae. 13253 epayhela epayhela. 13254 apayhela apayhela. 13255 epayhelb epayhelb. 13256 apayhelb apayhelb. 13257 epayhelc epayhelc. 13258 apayhelc apayhelc. 13259 epayheld epayheld. 13260 apayheld apayheld. 13261 epayhele epayhele. 13262 apayhele apayhele. 13263 ewhopa1a ewhopa1a. 13264 ewhopa2a ewhopa2a. 13265 ewhopa3a ewhopa3a. 13266 ewhopa4a ewhopa4a. 13267 awhopaa awhopaa. 13268 ewhopa1b ewhopa1b. 13269 ewhopa2b ewhopa2b. 13270 ewhopa3b ewhopa3b. 13271 ewhopa4b ewhopa4b. 13272 awhopab awhopab. 13273 ewhopa1c ewhopa1c. 13274 ewhopa2c ewhopa2c. 13275 ewhopa3c ewhopa3c. 13276 ewhopa4c ewhopa4c. 13277 awhopac awhopac. 13278 ewhopa1d ewhopa1d. 13279 ewhopa2d ewhopa2d. 13280 ewhopa3d ewhopa3d. 13281 ewhopa4d ewhopa4d. 13282 awhopad awhopad. 13283 ewhopa1e ewhopa1e. 13284 ewhopa2e ewhopa2e. 13285 ewhopa3e ewhopa3e. 13286 ewhopa4e ewhopa4e. 13287 awhopae awhopae. 13288 esatisa esatisa. 13289 esatisb esatisb. 13290 esatisc esatisc. 13291 esatisd esatisd. 13292 esatise esatise. 13293 elista elista. 13294 alista alista. 13295 elistb elistb. 13296 alistb alistb. 13297 elistc elistc. 13298 alistc alistc. 13299 elistd elistd. 13300 alistd alistd. 13301 eliste eliste. 13302 aliste aliste. 13303 eccunv2 eccunv2l. 13304 eccpnumf $eccpnum. 13305 eccpnumg $eccpnum. 13306 eccpnumh $eccpnum. 261 The SAS System 11:54 Thursday, June 7, 2012 13307 eccpnumi $eccpnum. 13308 eccpnumj $eccpnum. 13309 eccagef eccagef. 13310 eccageg eccageg. 13311 eccageh eccageh. 13312 eccagei eccagei. 13313 eccagej eccagej. 13314 eckd01f eckd01f. 13315 eckd01g eckd01g. 13316 eckd01h eckd01h. 13317 eckd01i eckd01i. 13318 eckd01j eckd01j. 13319 eckd02f eckd02f. 13320 eckd02g eckd02g. 13321 eckd02h eckd02h. 13322 eckd02i eckd02i. 13323 eckd02j eckd02j. 13324 eckd03f eckd03f. 13325 eckd03g eckd03g. 13326 eckd03h eckd03h. 13327 eckd03i eckd03i. 13328 eckd03j eckd03j. 13329 eckd04f eckd04f. 13330 eckd04g eckd04g. 13331 eckd04h eckd04h. 13332 eckd04i eckd04i. 13333 eckd04j eckd04j. 13334 eckd05f eckd05f. 13335 eckd05g eckd05g. 13336 eckd05h eckd05h. 13337 eckd05i eckd05i. 13338 eckd05j eckd05j. 13339 eckd06f eckd06f. 13340 eckd06g eckd06g. 13341 eckd06h eckd06h. 13342 eckd06i eckd06i. 13343 eckd06j eckd06j. 13344 eckd07f eckd07f. 13345 eckd07g eckd07g. 13346 eckd07h eckd07h. 13347 eckd07i eckd07i. 13348 eckd07j eckd07j. 13349 eckd08f eckd08f. 13350 eckd08g eckd08g. 13351 eckd08h eckd08h. 13352 eckd08i eckd08i. 13353 eckd08j eckd08j. 13354 eckd09f eckd09f. 13355 eckd09g eckd09g. 13356 eckd09h eckd09h. 13357 eckd09i eckd09i. 13358 eckd09j eckd09j. 13359 eckd10f eckd10f. 13360 eckd10g eckd10g. 13361 eckd10h eckd10h. 13362 eckd10i eckd10i. 13363 eckd10j eckd10j. 13364 eckd11f eckd11f. 262 The SAS System 11:54 Thursday, June 7, 2012 13365 eckd11g eckd11g. 13366 eckd11h eckd11h. 13367 eckd11i eckd11i. 13368 eckd11j eckd11j. 13369 eckd12f eckd12f. 13370 eckd12g eckd12g. 13371 eckd12h eckd12h. 13372 eckd12i eckd12i. 13373 eckd12j eckd12j. 13374 eckd13f eckd13f. 13375 eckd13g eckd13g. 13376 eckd13h eckd13h. 13377 eckd13i eckd13i. 13378 eckd13j eckd13j. 13379 accaref accaref. 13380 accareg accareg. 13381 accareh accareh. 13382 accarei accarei. 13383 accarej accarej. 13384 ewheparf ewheparf. 13385 awheparf awheparf. 13386 ewheparg ewheparg. 13387 awheparg awheparg. 13388 ewheparh ewheparh. 13389 awheparh awheparh. 13390 ewhepari ewhepari. 13391 awhepari awhepari. 13392 ewheparj ewheparj. 13393 awheparj awheparj. 13394 eparhr1f eparhr1f. 13395 aparhr1f aparhr1f. 13396 eparhr1g eparhr1g. 13397 aparhr1g aparhr1g. 13398 eparhr1h eparhr1h. 13399 aparhr1h aparhr1h. 13400 eparhr1i eparhr1i. 13401 aparhr1i aparhr1i. 13402 eparhr1j eparhr1j. 13403 aparhr1j aparhr1j. 13404 eparhr2f eparhr2f. 13405 aparhr2f aparhr2f. 13406 eparhr2g eparhr2g. 13407 aparhr2g aparhr2g. 13408 eparhr2h eparhr2h. 13409 aparhr2h aparhr2h. 13410 eparhr2i eparhr2i. 13411 aparhr2i aparhr2i. 13412 eparhr2j eparhr2j. 13413 aparhr2j aparhr2j. 13414 ewhselff ewhselff. 13415 awhselff awhselff. 13416 ewhselfg ewhselfg. 13417 awhselfg awhselfg. 13418 ewhselfh ewhselfh. 13419 awhselfh awhselfh. 13420 ewhselfi ewhselfi. 13421 awhselfi awhselfi. 13422 ewhselfj ewhselfj. 263 The SAS System 11:54 Thursday, June 7, 2012 13423 awhselfj awhselfj. 13424 eselfhrf eselfhrf. 13425 aselfhrf aselfhrf. 13426 eselfhrg eselfhrg. 13427 aselfhrg aselfhrg. 13428 eselfhrh eselfhrh. 13429 aselfhrh aselfhrh. 13430 eselfhri eselfhri. 13431 aselfhri aselfhri. 13432 eselfhrj eselfhrj. 13433 aselfhrj aselfhrj. 13434 ewhsb15f ewhsb15f. 13435 awhsb15f awhsb15f. 13436 ewhsb15g ewhsb15g. 13437 awhsb15g awhsb15g. 13438 ewhsb15h ewhsb15h. 13439 awhsb15h awhsb15h. 13440 ewhsb15i ewhsb15i. 13441 awhsb15i awhsb15i. 13442 ewhsb15j ewhsb15j. 13443 awhsb15j awhsb15j. 13444 ewhsbhrf ewhsbhrf. 13445 awhsbhrf awhsbhrf. 13446 ewhsbhrg ewhsbhrg. 13447 awhsbhrg awhsbhrg. 13448 ewhsbhrh ewhsbhrh. 13449 awhsbhrh awhsbhrh. 13450 ewhsbhri ewhsbhri. 13451 awhsbhri awhsbhri. 13452 ewhsbhrj ewhsbhrj. 13453 awhsbhrj awhsbhrj. 13454 ehrsb15f ehrsb15f. 13455 ahrsb15f ahrsb15f. 13456 ehrsb15g ehrsb15g. 13457 ahrsb15g ahrsb15g. 13458 ehrsb15h ehrsb15h. 13459 ahrsb15h ahrsb15h. 13460 ehrsb15i ehrsb15i. 13461 ahrsb15i ahrsb15i. 13462 ehrsb15j ehrsb15j. 13463 ahrsb15j ahrsb15j. 13464 ewhsb14f ewhsb14f. 13465 awhsb14f awhsb14f. 13466 ewhsb14g ewhsb14g. 13467 awhsb14g awhsb14g. 13468 ewhsb14h ewhsb14h. 13469 awhsb14h awhsb14h. 13470 ewhsb14i ewhsb14i. 13471 awhsb14i awhsb14i. 13472 ewhsb14j ewhsb14j. 13473 awhsb14j awhsb14j. 13474 esb14hrf esb14hrf. 13475 asb14hrf asb14hrf. 13476 esb14hrg esb14hrg. 13477 asb14hrg asb14hrg. 13478 esb14hrh esb14hrh. 13479 asb14hrh asb14hrh. 13480 esb14hri esb14hri. 264 The SAS System 11:54 Thursday, June 7, 2012 13481 asb14hri asb14hri. 13482 esb14hrj esb14hrj. 13483 asb14hrj asb14hrj. 13484 ehrsb14f ehrsb14f. 13485 ahrsb14f ahrsb14f. 13486 ehrsb14g ehrsb14g. 13487 ahrsb14g ahrsb14g. 13488 ehrsb14h ehrsb14h. 13489 ahrsb14h ahrsb14h. 13490 ehrsb14i ehrsb14i. 13491 ahrsb14i ahrsb14i. 13492 ehrsb14j ehrsb14j. 13493 ahrsb14j ahrsb14j. 13494 ewhgranf ewhgranf. 13495 awhgranf awhgranf. 13496 ewhgrang ewhgrang. 13497 awhgrang awhgrang. 13498 ewhgranh ewhgranh. 13499 awhgranh awhgranh. 13500 ewhgrani ewhgrani. 13501 awhgrani awhgrani. 13502 ewhgranj ewhgranj. 13503 awhgranj awhgranj. 13504 egranhrf egranhrf. 13505 agranhrf agranhrf. 13506 egranhrg egranhrg. 13507 agranhrg agranhrg. 13508 egranhrh egranhrh. 13509 agranhrh agranhrh. 13510 egranhri egranhri. 13511 agranhri agranhri. 13512 egranhrj egranhrj. 13513 agranhrj agranhrj. 13514 ehrgranf ehrgranf. 13515 ahrgranf ahrgranf. 13516 ehrgrang ehrgrang. 13517 ahrgrang ahrgrang. 13518 ehrgranh ehrgranh. 13519 ahrgranh ahrgranh. 13520 ehrgrani ehrgrani. 13521 ahrgrani ahrgrani. 13522 ehrgranj ehrgranj. 13523 ahrgranj ahrgranj. 13524 epaygraf epaygraf. 13525 apaygraf apaygraf. 13526 epaygrag epaygrag. 13527 apaygrag apaygrag. 13528 epaygrah epaygrah. 13529 apaygrah apaygrah. 13530 epaygrai epaygrai. 13531 apaygrai apaygrai. 13532 epaygraj epaygraj. 13533 apaygraj apaygraj. 13534 tamtgraf tamtgraf. 13535 aamtgraf aamtgraf. 13536 tamtgrag tamtgrag. 13537 aamtgrag aamtgrag. 13538 tamtgrah tamtgrah. 265 The SAS System 11:54 Thursday, June 7, 2012 13539 aamtgrah aamtgrah. 13540 tamtgrai tamtgrai. 13541 aamtgrai aamtgrai. 13542 tamtgraj tamtgraj. 13543 aamtgraj aamtgraj. 13544 ewhrelaf ewhrelaf. 13545 awhrelaf awhrelaf. 13546 ewhrelag ewhrelag. 13547 awhrelag awhrelag. 13548 ewhrelah ewhrelah. 13549 awhrelah awhrelah. 13550 ewhrelai ewhrelai. 13551 awhrelai awhrelai. 13552 ewhrelaj ewhrelaj. 13553 awhrelaj awhrelaj. 13554 erelhr1f erelhr1f. 13555 arelhr1f arelhr1f. 13556 erelhr1g erelhr1g. 13557 arelhr1g arelhr1g. 13558 erelhr1h erelhr1h. 13559 arelhr1h arelhr1h. 13560 erelhr1i erelhr1i. 13561 arelhr1i arelhr1i. 13562 erelhr1j erelhr1j. 13563 arelhr1j arelhr1j. 13564 erelhr2f erelhr2f. 13565 arelhr2f arelhr2f. 13566 erelhr2g erelhr2g. 13567 arelhr2g arelhr2g. 13568 erelhr2h erelhr2h. 13569 arelhr2h arelhr2h. 13570 erelhr2i erelhr2i. 13571 arelhr2i arelhr2i. 13572 erelhr2j erelhr2j. 13573 arelhr2j arelhr2j. 13574 epayrelf epayrelf. 13575 apayrelf apayrelf. 13576 epayrelg epayrelg. 13577 apayrelg apayrelg. 13578 epayrelh epayrelh. 13579 apayrelh apayrelh. 13580 epayreli epayreli. 13581 apayreli apayreli. 13582 epayrelj epayrelj. 13583 apayrelj apayrelj. 13584 tamtrelf tamtrelf. 13585 aamtrelf aamtrelf. 13586 tamtrelg tamtrelg. 13587 aamtrelg aamtrelg. 13588 tamtrelh tamtrelh. 13589 aamtrelh aamtrelh. 13590 tamtreli tamtreli. 13591 aamtreli aamtreli. 13592 tamtrelj tamtrelj. 13593 aamtrelj aamtrelj. 13594 ehrfam1f ehrfam1f. 13595 ahrfam1f ahrfam1f. 13596 ehrfam1g ehrfam1g. 266 The SAS System 11:54 Thursday, June 7, 2012 13597 ahrfam1g ahrfam1g. 13598 ehrfam1h ehrfam1h. 13599 ahrfam1h ahrfam1h. 13600 ehrfam1i ehrfam1i. 13601 ahrfam1i ahrfam1i. 13602 ehrfam1j ehrfam1j. 13603 ahrfam1j ahrfam1j. 13604 ehrfam2f ehrfam2f. 13605 ahrfam2f ahrfam2f. 13606 ehrfam2g ehrfam2g. 13607 ahrfam2g ahrfam2g. 13608 ehrfam2h ehrfam2h. 13609 ahrfam2h ahrfam2h. 13610 ehrfam2i ehrfam2i. 13611 ahrfam2i ahrfam2i. 13612 ehrfam2j ehrfam2j. 13613 ahrfam2j ahrfam2j. 13614 epayfamf epayfamf. 13615 apayfamf apayfamf. 13616 epayfamg epayfamg. 13617 apayfamg apayfamg. 13618 epayfamh epayfamh. 13619 apayfamh apayfamh. 13620 epayfami epayfami. 13621 apayfami apayfami. 13622 epayfamj epayfamj. 13623 apayfamj apayfamj. 13624 tamtfamf tamtfamf. 13625 aamtfamf aamtfamf. 13626 tamtfamg tamtfamg. 13627 aamtfamg aamtfamg. 13628 tamtfamh tamtfamh. 13629 aamtfamh aamtfamh. 13630 tamtfami tamtfami. 13631 aamtfami aamtfami. 13632 tamtfamj tamtfamj. 13633 aamtfamj aamtfamj. 13634 ewhdaycf ewhdaycf. 13635 awhdaycf awhdaycf. 13636 ewhdaycg ewhdaycg. 13637 awhdaycg awhdaycg. 13638 ewhdaych ewhdaych. 13639 awhdaych awhdaych. 13640 ewhdayci ewhdayci. 13641 awhdayci awhdayci. 13642 ewhdaycj ewhdaycj. 13643 awhdaycj awhdaycj. 13644 edayhrsf edayhrsf. 13645 adayhrsf adayhrsf. 13646 edayhrsg edayhrsg. 13647 adayhrsg adayhrsg. 13648 edayhrsh edayhrsh. 13649 adayhrsh adayhrsh. 13650 edayhrsi edayhrsi. 13651 adayhrsi adayhrsi. 13652 edayhrsj edayhrsj. 13653 adayhrsj adayhrsj. 13654 ehrdaycf ehrdaycf. 267 The SAS System 11:54 Thursday, June 7, 2012 13655 ahrdaycf ahrdaycf. 13656 ehrdaycg ehrdaycg. 13657 ahrdaycg ahrdaycg. 13658 ehrdaych ehrdaych. 13659 ahrdaych ahrdaych. 13660 ehrdayci ehrdayci. 13661 ahrdayci ahrdayci. 13662 ehrdaycj ehrdaycj. 13663 ahrdaycj ahrdaycj. 13664 epaydayf epaydayf. 13665 apaydayf apaydayf. 13666 epaydayg epaydayg. 13667 apaydayg apaydayg. 13668 epaydayh epaydayh. 13669 apaydayh apaydayh. 13670 epaydayi epaydayi. 13671 apaydayi apaydayi. 13672 epaydayj epaydayj. 13673 apaydayj apaydayj. 13674 tamtdayf tamtdayf. 13675 aamtdayf aamtdayf. 13676 tamtdayg tamtdayg. 13677 aamtdayg aamtdayg. 13678 tamtdayh tamtdayh. 13679 aamtdayh aamtdayh. 13680 tamtdayi tamtdayi. 13681 aamtdayi aamtdayi. 13682 tamtdayj tamtdayj. 13683 aamtdayj aamtdayj. 13684 ewhsporf ewhsporf. 13685 awhsporf awhsporf. 13686 ewhsporg ewhsporg. 13687 awhsporg awhsporg. 13688 ewhsporh ewhsporh. 13689 awhsporh awhsporh. 13690 ewhspori ewhspori. 13691 awhspori awhspori. 13692 ewhsporj ewhsporj. 13693 awhsporj awhsporj. 13694 ehsportf ehsportf. 13695 ahsportf ahsportf. 13696 ehsportg ehsportg. 13697 ahsportg ahsportg. 13698 ehsporth ehsporth. 13699 ahsporth ahsporth. 13700 ehsporti ehsporti. 13701 ahsporti ahsporti. 13702 ehsportj ehsportj. 13703 ahsportj ahsportj. 13704 ehrsporf ehrsporf. 13705 ahrsporf ahrsporf. 13706 ehrsporg ehrsporg. 13707 ahrsporg ahrsporg. 13708 ehrsporh ehrsporh. 13709 ahrsporh ahrsporh. 13710 ehrspori ehrspori. 13711 ahrspori ahrspori. 13712 ehrsporj ehrsporj. 268 The SAS System 11:54 Thursday, June 7, 2012 13713 ahrsporj ahrsporj. 13714 epayspof epayspof. 13715 apayspof apayspof. 13716 epayspog epayspog. 13717 apayspog apayspog. 13718 epayspoh epayspoh. 13719 apayspoh apayspoh. 13720 epayspoi epayspoi. 13721 apayspoi apayspoi. 13722 epayspoj epayspoj. 13723 apayspoj apayspoj. 13724 tamtspof tamtspof. 13725 aamtspof aamtspof. 13726 tamtspog tamtspog. 13727 aamtspog aamtspog. 13728 tamtspoh tamtspoh. 13729 aamtspoh aamtspoh. 13730 tamtspoi tamtspoi. 13731 aamtspoi aamtspoi. 13732 tamtspoj tamtspoj. 13733 aamtspoj aamtspoj. 13734 ewhlessf ewhlessf. 13735 awhlessf awhlessf. 13736 ewhlessg ewhlessg. 13737 awhlessg awhlessg. 13738 ewhlessh ewhlessh. 13739 awhlessh awhlessh. 13740 ewhlessi ewhlessi. 13741 awhlessi awhlessi. 13742 ewhlessj ewhlessj. 13743 awhlessj awhlessj. 13744 ehrles1f ehrles1f. 13745 ahrles1f ahrles1f. 13746 ehrles1g ehrles1g. 13747 ahrles1g ahrles1g. 13748 ehrles1h ehrles1h. 13749 ahrles1h ahrles1h. 13750 ehrles1i ehrles1i. 13751 ahrles1i ahrles1i. 13752 ehrles1j ehrles1j. 13753 ahrles1j ahrles1j. 13754 ehrles2f ehrles2f. 13755 ahrles2f ahrles2f. 13756 ehrles2g ehrles2g. 13757 ahrles2g ahrles2g. 13758 ehrles2h ehrles2h. 13759 ahrles2h ahrles2h. 13760 ehrles2i ehrles2i. 13761 ahrles2i ahrles2i. 13762 ehrles2j ehrles2j. 13763 ahrles2j ahrles2j. 13764 epaylesf epaylesf. 13765 apaylesf apaylesf. 13766 epaylesg epaylesg. 13767 apaylesg apaylesg. 13768 epaylesh epaylesh. 13769 apaylesh apaylesh. 13770 epaylesi epaylesi. 269 The SAS System 11:54 Thursday, June 7, 2012 13771 apaylesi apaylesi. 13772 epaylesj epaylesj. 13773 apaylesj apaylesj. 13774 tamtlesf tamtlesf. 13775 aamtlesf aamtlesf. 13776 tamtlesg tamtlesg. 13777 aamtlesg aamtlesg. 13778 tamtlesh tamtlesh. 13779 aamtlesh aamtlesh. 13780 tamtlesi tamtlesi. 13781 aamtlesi aamtlesi. 13782 tamtlesj tamtlesj. 13783 aamtlesj aamtlesj. 13784 ewhclubf ewhclubf. 13785 awhclubf awhclubf. 13786 ewhclubg ewhclubg. 13787 awhclubg awhclubg. 13788 ewhclubh ewhclubh. 13789 awhclubh awhclubh. 13790 ewhclubi ewhclubi. 13791 awhclubi awhclubi. 13792 ewhclubj ewhclubj. 13793 awhclubj awhclubj. 13794 eclubhrf eclubhrf. 13795 aclubhrf aclubhrf. 13796 eclubhrg eclubhrg. 13797 aclubhrg aclubhrg. 13798 eclubhrh eclubhrh. 13799 aclubhrh aclubhrh. 13800 eclubhri eclubhri. 13801 aclubhri aclubhri. 13802 eclubhrj eclubhrj. 13803 aclubhrj aclubhrj. 13804 ehrclubf ehrclubf. 13805 ahrclubf ahrclubf. 13806 ehrclubg ehrclubg. 13807 ahrclubg ahrclubg. 13808 ehrclubh ehrclubh. 13809 ahrclubh ahrclubh. 13810 ehrclubi ehrclubi. 13811 ahrclubi ahrclubi. 13812 ehrclubj ehrclubj. 13813 ahrclubj ahrclubj. 13814 epaycluf epaycluf. 13815 apaycluf apaycluf. 13816 epayclug epayclug. 13817 apayclug apayclug. 13818 epaycluh epaycluh. 13819 apaycluh apaycluh. 13820 epayclui epayclui. 13821 apayclui apayclui. 13822 epaycluj epaycluj. 13823 apaycluj apaycluj. 13824 tamtcluf tamtcluf. 13825 aamtcluf aamtcluf. 13826 tamtclug tamtclug. 13827 aamtclug aamtclug. 13828 tamtcluh tamtcluh. 270 The SAS System 11:54 Thursday, June 7, 2012 13829 aamtcluh aamtcluh. 13830 tamtclui tamtclui. 13831 aamtclui aamtclui. 13832 tamtcluj tamtcluj. 13833 aamtcluj aamtcluj. 13834 ewhschof ewhschof. 13835 awhschof awhschof. 13836 ewhschog ewhschog. 13837 awhschog awhschog. 13838 ewhschoh ewhschoh. 13839 awhschoh awhschoh. 13840 ewhschoi ewhschoi. 13841 awhschoi awhschoi. 13842 ewhschoj ewhschoj. 13843 awhschoj awhschoj. 13844 ehscho1f ehscho1f. 13845 ahscho1f ahscho1f. 13846 ehscho1g ehscho1g. 13847 ahscho1g ahscho1g. 13848 ehscho1h ehscho1h. 13849 ahscho1h ahscho1h. 13850 ehscho1i ehscho1i. 13851 ahscho1i ahscho1i. 13852 ehscho1j ehscho1j. 13853 ahscho1j ahscho1j. 13854 ehrsch2f ehrsch2f. 13855 ahrsch2f ahrsch2f. 13856 ehrsch2g ehrsch2g. 13857 ahrsch2g ahrsch2g. 13858 ehrsch2h ehrsch2h. 13859 ahrsch2h ahrsch2h. 13860 ehrsch2i ehrsch2i. 13861 ahrsch2i ahrsch2i. 13862 ehrsch2j ehrsch2j. 13863 ahrsch2j ahrsch2j. 13864 epayschf epayschf. 13865 apayschf apayschf. 13866 epayschg epayschg. 13867 apayschg apayschg. 13868 epayschh epayschh. 13869 apayschh apayschh. 13870 epayschi epayschi. 13871 apayschi apayschi. 13872 epayschj epayschj. 13873 apayschj apayschj. 13874 tamtschf tamtschf. 13875 aamtschf aamtschf. 13876 tamtschg tamtschg. 13877 aamtschg aamtschg. 13878 tamtschh tamtschh. 13879 aamtschh aamtschh. 13880 tamtschi tamtschi. 13881 aamtschi aamtschi. 13882 tamtschj tamtschj. 13883 aamtschj aamtschj. 13884 ewhothef ewhothef. 13885 awhothef awhothef. 13886 ewhotheg ewhotheg. 271 The SAS System 11:54 Thursday, June 7, 2012 13887 awhotheg awhotheg. 13888 ewhotheh ewhotheh. 13889 awhotheh awhotheh. 13890 ewhothei ewhothei. 13891 awhothei awhothei. 13892 ewhothej ewhothej. 13893 awhothej awhothej. 13894 eothehrf eothehrf. 13895 aothehrf aothehrf. 13896 eothehrg eothehrg. 13897 aothehrg aothehrg. 13898 eothehrh eothehrh. 13899 aothehrh aothehrh. 13900 eothehri eothehri. 13901 aothehri aothehri. 13902 eothehrj eothehrj. 13903 aothehrj aothehrj. 13904 ehrothef ehrothef. 13905 ahrothef ahrothef. 13906 ehrotheg ehrotheg. 13907 ahrotheg ahrotheg. 13908 ehrotheh ehrotheh. 13909 ahrotheh ahrotheh. 13910 ehrothei ehrothei. 13911 ahrothei ahrothei. 13912 ehrothej ehrothej. 13913 ahrothej ahrothej. 13914 epayothf epayothf. 13915 apayothf apayothf. 13916 epayothg epayothg. 13917 apayothg apayothg. 13918 epayothh epayothh. 13919 apayothh apayothh. 13920 epayothi epayothi. 13921 apayothi apayothi. 13922 epayothj epayothj. 13923 apayothj apayothj. 13924 tamtothf tamtothf. 13925 aamtothf aamtothf. 13926 tamtothg tamtothg. 13927 aamtothg aamtothg. 13928 tamtothh tamtothh. 13929 aamtothh aamtothh. 13930 tamtothi tamtothi. 13931 aamtothi aamtothi. 13932 tamtothj tamtothj. 13933 aamtothj aamtothj. 13934 eschoowf eschoowf. 13935 aschoowf aschoowf. 13936 eschoowg eschoowg. 13937 aschoowg aschoowg. 13938 eschoowh eschoowh. 13939 aschoowh aschoowh. 13940 eschoowi eschoowi. 13941 aschoowi aschoowi. 13942 eschoowj eschoowj. 13943 aschoowj aschoowj. 13944 ehrschwf ehrschwf. 272 The SAS System 11:54 Thursday, June 7, 2012 13945 ahrschwf ahrschwf. 13946 ehrschwg ehrschwg. 13947 ahrschwg ahrschwg. 13948 ehrschwh ehrschwh. 13949 ahrschwh ahrschwh. 13950 ehrschwi ehrschwi. 13951 ahrschwi ahrschwi. 13952 ehrschwj ehrschwj. 13953 ahrschwj ahrschwj. 13954 ehrschof ehrschof. 13955 ahrschof ahrschof. 13956 ehrschog ehrschog. 13957 ahrschog ahrschog. 13958 ehrschoh ehrschoh. 13959 ahrschoh ahrschoh. 13960 ehrschoi ehrschoi. 13961 ahrschoi ahrschoi. 13962 ehrschoj ehrschoj. 13963 ahrschoj ahrschoj. 13964 eselfcaf eselfcaf. 13965 aselfcaf aselfcaf. 13966 eselfcag eselfcag. 13967 aselfcag aselfcag. 13968 eselfcah eselfcah. 13969 aselfcah aselfcah. 13970 eselfcai eselfcai. 13971 aselfcai aselfcai. 13972 eselfcaj eselfcaj. 13973 aselfcaj aselfcaj. 13974 ekidhr1f ekidhr1f. 13975 akidhr1f akidhr1f. 13976 ekidhr1g ekidhr1g. 13977 akidhr1g akidhr1g. 13978 ekidhr1h ekidhr1h. 13979 akidhr1h akidhr1h. 13980 ekidhr1i ekidhr1i. 13981 akidhr1i akidhr1i. 13982 ekidhr1j ekidhr1j. 13983 akidhr1j akidhr1j. 13984 ekidhr2f ekidhr2f. 13985 akidhr2f akidhr2f. 13986 ekidhr2g ekidhr2g. 13987 akidhr2g akidhr2g. 13988 ekidhr2h ekidhr2h. 13989 akidhr2h akidhr2h. 13990 ekidhr2i ekidhr2i. 13991 akidhr2i akidhr2i. 13992 ekidhr2j ekidhr2j. 13993 akidhr2j akidhr2j. 13994 edaychaf edaychaf. 13995 adaychaf adaychaf. 13996 edaychag edaychag. 13997 adaychag adaychag. 13998 edaychah edaychah. 13999 adaychah adaychah. 14000 edaychai edaychai. 14001 adaychai adaychai. 14002 edaychaj edaychaj. 273 The SAS System 11:54 Thursday, June 7, 2012 14003 adaychaj adaychaj. 14004 epayhelf epayhelf. 14005 apayhelf apayhelf. 14006 epayhelg epayhelg. 14007 apayhelg apayhelg. 14008 epayhelh epayhelh. 14009 apayhelh apayhelh. 14010 epayheli epayheli. 14011 apayheli apayheli. 14012 epayhelj epayhelj. 14013 apayhelj apayhelj. 14014 ewhopa1f ewhopa1f. 14015 ewhopa2f ewhopa2f. 14016 ewhopa3f ewhopa3f. 14017 ewhopa4f ewhopa4f. 14018 awhopaf awhopaf. 14019 ewhopa1g ewhopa1g. 14020 ewhopa2g ewhopa2g. 14021 ewhopa3g ewhopa3g. 14022 ewhopa4g ewhopa4g. 14023 awhopag awhopag. 14024 ewhopa1h ewhopa1h. 14025 ewhopa2h ewhopa2h. 14026 ewhopa3h ewhopa3h. 14027 ewhopa4h ewhopa4h. 14028 awhopah awhopah. 14029 ewhopa1i ewhopa1i. 14030 ewhopa2i ewhopa2i. 14031 ewhopa3i ewhopa3i. 14032 ewhopa4i ewhopa4i. 14033 awhopai awhopai. 14034 ewhopa1j ewhopa1j. 14035 ewhopa2j ewhopa2j. 14036 ewhopa3j ewhopa3j. 14037 ewhopa4j ewhopa4j. 14038 awhopaj awhopaj. 14039 esatisf esatisf. 14040 esatisg esatisg. 14041 esatish esatish. 14042 esatisi esatisi. 14043 esatisj esatisj. 14044 elistf elistf. 14045 alistf alistf. 14046 elistg elistg. 14047 alistg alistg. 14048 elisth elisth. 14049 alisth alisth. 14050 elisti elisti. 14051 alisti alisti. 14052 elistj elistj. 14053 alistj alistj. 14054 eworkmor eworkmor. 14055 aworkmor aworkmor. 14056 etiamt01 etiamt0r. 14057 atiamt01 atiamt0r. 14058 etiamt02 etiamt0k. 14059 atiamt02 atiamt0k. 14060 eairunv eairunv. 274 The SAS System 11:54 Thursday, June 7, 2012 14061 iothrbus iothrbus. 14062 iownbs04 iownbs0s. 14063 ibsform1 ibsforms. 14064 ibsloct1 ibslocts. 14065 iprtown1 iprtowns. 14066 iownrs11 iownrs1s. 14067 iownrs12 iownrs1k. 14068 ihhown1 ihhown1l. 14069 rpcnthh1 rpcnthhs. 14070 rpctown1 rpctowns. 14071 tgrsrcp1 tgrsrcps. 14072 ttotexp1 ttotexps. 14073 tnetinc1 tnetincs. 14074 tnetinc2 tnetinck. 14075 iothinc1 iothincs. 14076 tnetin12 tnetin1s. 14077 tnetin13 tnetin1k. 14078 tnetin22 tnetin2s. 14079 tnetin23 tnetin2k. 14080 ibsform2 ibsformk. 14081 ibsloct2 ibsloctk. 14082 iprtown2 iprtownk. 14083 iownrs21 iownrs2s. 14084 iownrs22 iownrs2k. 14085 ihhown2 ihhown2l. 14086 rpcnthh2 rpcnthhk. 14087 rpctown2 rpctownk. 14088 tgrsrcp2 tgrsrcpk. 14089 ttotexp2 ttotexpk. 14090 tnetinc3 tnetincl. 14091 tnetinc4 tnetincm. 14092 iothinc2 iothinck. 14093 tnetin32 tnetin3s. 14094 tnetin33 tnetin3k. 14095 tnetin42 tnetin4s. 14096 tothinc3 tothincs. 14097 tothinc4 tothinck. 14098 iirayn iirayn. 14099 iiracont iiracont. 14100 ttaxcont ttaxcont. 14101 iirawdl iirawdl. 14102 tamtira tamtira. 14103 tiraearn tiraearn. 14104 iiratyp1 iiratypn. 14105 iiratyp2 iiratypk. 14106 iiratyp3 iiratypl. 14107 iiratyp4 iiratypm. 14108 iiratyp5 iiratypo. 14109 iiratyp6 iiratypp. 14110 iiratyp7 iiratypq. 14111 ikeoghyn ikeoghyn. 14112 ikeoghcn ikeoghcn. 14113 ttxkeogh ttxkeogh. 14114 ikeoghwd ikeoghwd. 14115 tatkeogh tatkeogh. 14116 tkeogher tkeogher. 14117 ikeohtp1 ikeohtpr. 14118 ikeohtp2 ikeohtpk. 275 The SAS System 11:54 Thursday, June 7, 2012 14119 ikeohtp3 ikeohtpl. 14120 ikeohtp4 ikeohtpm. 14121 ikeohtp5 ikeohtpn. 14122 ikeohtp6 ikeohtpo. 14123 ikeohtp7 ikeohtpp. 14124 ithrftyn ithrftyn. 14125 tthftcnt tthftcnt. 14126 ithftwdl ithftwdl. 14127 tthftamt tthftamt. 14128 tthftern tthftern. 14129 ithftyp1 ithftypn. 14130 ithftyp2 ithftypk. 14131 ithftyp3 ithftypl. 14132 ithftyp4 ithftypm. 14133 ithftyp5 ithftypo. 14134 eatxunv eatxunv. 14135 itaxflyn itaxflyn. 14136 itaxcopy itaxcopy. 14137 tfilstat tfilstat. 14138 ttotexmp ttotexmp. 14139 iexemp01 iexemp0p. 14140 iexemp02 iexemp0k. 14141 iexemp03 iexemp0l. 14142 iexemp04 iexemp0m. 14143 iexemp05 iexemp0n. 14144 iexmpout iexmpout. 14145 iexnmout iexnmout. 14146 ioutrl01 ioutrl0t. 14147 ioutrl02 ioutrl0k. 14148 ioutrl03 ioutrl0l. 14149 ioutrl04 ioutrl0m. 14150 ioutrl05 ioutrl0n. 14151 ioutrl06 ioutrl0o. 14152 ioutrl07 ioutrl0p. 14153 ioutrl08 ioutrl0q. 14154 ioutrl09 ioutrl0r. 14155 ioutrl10 ioutrl1t. 14156 ifilform ifilform. 14157 ischeda ischeda. 14158 ischedd ischedd. 14159 tamtdedt tamtdedt. 14160 iccexpen iccexpen. 14161 tccamt tccamt. 14162 icarex01 icarex0t. 14163 icarex02 icarex0k. 14164 icarex03 icarex0l. 14165 icarex04 icarex0m. 14166 icarex05 icarex0n. 14167 icarex06 icarex0o. 14168 icarex07 icarex0p. 14169 icarex08 icarex0q. 14170 icarex09 icarex0r. 14171 icarex10 icarex1t. 14172 icarex11 icarex1k. 14173 icarex12 icarex1l. 14174 icarex13 icarex1m. 14175 icarex14 icarex1n. 14176 icarex15 icarex1o. 276 The SAS System 11:54 Thursday, June 7, 2012 14177 icarex16 icarex1p. 14178 icarex17 icarex1q. 14179 icarex18 icarex1r. 14180 icarex19 icarex1s. 14181 icarex20 icarex2t. 14182 icarex21 icarex2k. 14183 icarex22 icarex2l. 14184 icarex23 icarex2m. 14185 icarex24 icarex2n. 14186 icarex25 icarex2o. 14187 icarex26 icarex2p. 14188 icarex27 icarex2q. 14189 icarex28 icarex2r. 14190 icarex29 icarex2s. 14191 icarex30 icarex3t. 14192 idsabcrd idsabcrd. 14193 tsapgain tsapgain. 14194 tadjincm tadjincm. 14195 tnettax tnettax. 14196 ierndcrd ierndcrd. 14197 terndamt terndamt. 14198 ieicex01 ieicex0t. 14199 ieicex02 ieicex0k. 14200 ieicex03 ieicex0l. 14201 ieicex04 ieicex0m. 14202 ieicex05 ieicex0n. 14203 ieicex06 ieicex0o. 14204 ieicex07 ieicex0p. 14205 ieicex08 ieicex0q. 14206 ieicex09 ieicex0r. 14207 ieicex10 ieicex1t. 14208 ieicex11 ieicex1k. 14209 ieicex12 ieicex1l. 14210 ieicex13 ieicex1m. 14211 ieicex14 ieicex1n. 14212 ieicex15 ieicex1o. 14213 ieicex16 ieicex1p. 14214 ieicex17 ieicex1q. 14215 ieicex18 ieicex1r. 14216 ieicex19 ieicex1s. 14217 ieicex20 ieicex2t. 14218 ieicex21 ieicex2k. 14219 ieicex22 ieicex2l. 14220 ieicex23 ieicex2m. 14221 ieicex24 ieicex2n. 14222 ieicex25 ieicex2o. 14223 ieicex26 ieicex2p. 14224 ieicex27 ieicex2q. 14225 ieicex28 ieicex2r. 14226 ieicex29 ieicex2s. 14227 ieicex30 ieicex3t. 14228 iproptax iproptax. 14229 ipropjnt ipropjnt. 14230 ipropn01 ipropn0t. 14231 ipropn02 ipropn0k. 14232 ipropn03 ipropn0l. 14233 ipropn04 ipropn0m. 14234 ipropn05 ipropn0n. 277 The SAS System 11:54 Thursday, June 7, 2012 14235 ipropn06 ipropn0o. 14236 ipropn07 ipropn0p. 14237 ipropn08 ipropn0q. 14238 ipropn09 ipropn0r. 14239 ipropn10 ipropn1t. 14240 ipropn11 ipropn1k. 14241 ipropn12 ipropn1l. 14242 ipropn13 ipropn1m. 14243 ipropn14 ipropn1n. 14244 ipropn15 ipropn1o. 14245 ipropn16 ipropn1p. 14246 ipropn17 ipropn1q. 14247 ipropn18 ipropn1r. 14248 ipropn19 ipropn1s. 14249 ipropn20 ipropn2t. 14250 ipropn21 ipropn2k. 14251 ipropn22 ipropn2l. 14252 ipropn23 ipropn2m. 14253 ipropn24 ipropn2n. 14254 ipropn25 ipropn2o. 14255 ipropn26 ipropn2p. 14256 ipropn27 ipropn2q. 14257 ipropn28 ipropn2r. 14258 ipropn29 ipropn2s. 14259 ipropn30 ipropn3t. 14260 ttaxbill ttaxbill. 14261 ; NOTE: There were 6 observations read from the data set LIBRARY.SIPPP08PUTM8. NOTE: The PROCEDURE PRINT printed pages 1-43. NOTE: PROCEDURE PRINT used (Total process time): real time 0.84 seconds cpu time 0.74 seconds 14262 proc contents data=library.sippp08putm8; 14263 14264 ** Copyright 2012 shared by the National Bureau of Economic Research and Jean Roth ; 14265 14266 ** National Bureau of Economic Research. ; 14267 ** 1050 Massachusetts Avenue ; 14268 ** Cambridge, MA 02138 ; 14269 ** jroth@nber.org ; 14270 14271 ** This program and all programs referenced in it are free software. You ; 14272 ** can redistribute the program or modify it under the terms of the GNU ; 14273 ** General Public License as published by the Free Software Foundation; 14274 ** either version 2 of the License, or (at your option) any later version. ; 14275 14276 ** This program is distributed in the hope that it will be useful, ; 14277 ** but WITHOUT ANY WARRANTY, without even the implied warranty of ; 14278 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; 14279 ** GNU General Public License for more details. ; 14280 14281 ** You should have received a copy of the GNU General Public License ; 14282 ** along with this program, if not, write to the Free Software ; 14283 ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. ; NOTE: The PROCEDURE CONTENTS printed pages 44-77. 278 The SAS System 11:54 Thursday, June 7, 2012 NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.04 seconds cpu time 0.02 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 12.88 seconds cpu time 5.35 seconds