1 The SAS System 15:27 Thursday, July 3, 2003 NOTE: Copyright (c) 1989-1996 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 6.12 TS020 Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. This sas license runs from Aug 15, 2002 to Aug 15, 2003 with a grace period up till Sep 15, 2003. NOTE: AUTOEXEC processing beginning; file is /usr/sunos/local/sas612/autoexec.sas. NOTE: SAS initialization used: real time 0.190 seconds cpu time 0.076 seconds NOTE: AUTOEXEC processing completed. 1 2 /*------------------------------------------------------------------------------------*/ 3 /*by Jean Roth Thu Jul 3 15:20:53 EDT 2003 4 This program reads the 1986 SIPP Full Panel Data File 5 NOTE: This program is distributed under the GNU GPL. See end of 6 this file and http://www.gnu.org/licenses/ for details. 7 Please report errors to jroth@nber.org 8 Six steps: 9 (1) Uncomment the 'options compress=yes' statement if desired to save space 10 (2) Uncomment 'LENGTH' statement if desired to save space 11 (3) Specify output directories in 'libname' statements 12 (4) Specify the input file name/location in the 'filename' statement 13 (5) On a PC, use backslashes as in C:\ 14 (6) Read in the compressed or uncompressed raw data file. See the 15 'filename' and 'INFILE' statements. 16 Other changes may be user and platform specific. 17 NOTE: A value of -1 (or -1/# of implied decimals) indicates 'Not in Universe' */ 18 /*------------------------------------------------------------------------------------*/ 19 20 options obs=100; 21 *options compress=yes; 22 *Choose compress=yes to save space ; 23 *Choose compress=no if converting to another package using transfer software ; 24 *options pagesize=59 linesize=72; 25 26 /*------------------------------------------------------------------------------------*/ 27 28 29 libname library './'; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V612 Physical Name: /disk/nber10/SCCS/sipp/1986 30 31 *See the codebook for more detail; 32 PROC FORMAT cntlout=library.fsp86fp; 33 34 /* 35 The PROC FORMAT statement will store the formats in a sas data set called fsip86fp 36 To use the stored formats in a subsequent program, include something like this: 37 38 proc format cntlin=library.fsp86fp; 39 PROC freq; 40 tables pesex ; 41 format pesex P135L.; 42 43 For more information, consult the SAS Procedures Guide section of PROC FORMAT 44 */ 45 ; 46 VALUE PP_INTV (default=32) 47 0 = "Not applicable, children" 48 1 = "Interview, self" 49 2 = "Interview, proxy" 50 3 = "Noninterview - type Z refusal" 51 4 = "Noninterview - type Z other" 52 ; NOTE: Format PP_INTV has been output. 53 VALUE PP_MIS (default=32) 2 The SAS System 15:27 Thursday, July 3, 2003 54 0 = "Not matched or not in sample" 55 1 = "Interview" 56 2 = "Noninterview" 57 ; NOTE: Format PP_MIS has been output. 58 VALUE REASLEF (default=32) 59 0 = "Not applicable or not" 60 1 = "Left - deceased" 61 2 = "Left - institutionalized" 62 3 = "Left - living in armed forces" 63 4 = "Left - moved outside of" 64 5 = "Left - separation or divorce" 65 6 = "Left - person #201 or greater" 66 7 = "Left - other" 67 8 = "Entered merged household" 68 9 = "Interviewed in previous wave" 69 ; NOTE: Format REASLEF has been output. 70 VALUE HHINST (default=32) 71 0 = "Not defined for this wave" 72 1 = "Interviewed" 73 2 = "No one home" 74 3 = "Temporarily absent" 75 4 = "Refused" 76 5 = "Unable to locate" 77 6 = "Other" 78 23 = "Entire household out-of-scope" 79 24 = "Moved, address unknown" 80 25 = "Moved within country beyond" 81 26 = "All sample persons relisted" 82 ; NOTE: Format HHINST has been output. 83 VALUE SU_RGC (default=32) 84 0 = "Not applicable for coverage" 85 ; NOTE: Format SU_RGC has been output. 86 VALUE LGTHHT (default=32) 87 0 = "NA, not in a household" 88 1 = "Married couple household" 89 2 = "Other family household, male" 90 3 = "Other family household," 91 4 = "Nonfamily household, male" 92 5 = "Nonfamily household, female" 93 ; NOTE: Format LGTHHT has been output. 94 VALUE LGTKEY (default=32) 95 0 = "Not a key person" 96 ; NOTE: Format LGTKEY has been output. 97 VALUE LGTOTH (default=32) 98 0 = "Not an 'other' person in an" 99 ; NOTE: Format LGTOTH has been output. 100 VALUE SEX (default=32) 101 1 = "Male" 102 2 = "Female" 103 ; NOTE: Format SEX has been output. 104 VALUE RACE (default=32) 105 1 = "White" 106 2 = "Black" 107 3 = "American Indian, Eskimo or" 108 4 = "Asian or Pacific Islander" 109 ; NOTE: Format RACE has been output. 110 VALUE ETHNICTY (default=32) 111 1 = "German" 112 2 = "English" 113 3 = "Irish" 114 4 = "French" 115 5 = "Italian" 116 6 = "Scotish" 117 7 = "Polish" 118 8 = "Dutch" 119 9 = "Swedish" 120 10 = "Norwegian" 3 The SAS System 15:27 Thursday, July 3, 2003 121 11 = "Russian" 122 12 = "Ukranian" 123 13 = "Welsh" 124 14 = "Mexican-American" 125 15 = "Chicano" 126 16 = "Mexican" 127 17 = "Puerto Rican" 128 18 = "Cuban" 129 19 = "Central or South American" 130 20 = "Other Spanish" 131 21 = "Afro-American, Black or Negro" 132 30 = "Another group not listed" 133 39 = "Don't know" 134 ; NOTE: Format ETHNICTY has been output. 135 VALUE RRP (default=32) 136 0 = "Not a sample person, nonmatch" 137 1 = "Household reference person," 138 2 = "Household reference person" 139 3 = "Spouse of household reference" 140 4 = "Child of household reference" 141 5 = "Other relative of household" 142 6 = "Non-relative of household" 143 7 = "Non-relative of household" 144 ; NOTE: Format RRP has been output. 145 VALUE AGE (default=32) 146 0 = "Less than 1 year or not a" 147 85 = "85 years or more" 148 ; NOTE: Format AGE has been output. 149 VALUE MS (default=32) 150 0 = "Not a sample person, nonmatch" 151 1 = "Married, spouse present" 152 2 = "Married, spouse absent" 153 3 = "Widowed" 154 4 = "Divorced" 155 5 = "Separated" 156 6 = "Never married" 157 ; NOTE: Format MS has been output. 158 VALUE FAMTYP (default=32) 159 0 = "Primary family or not a" 160 1 = "Secondary individual, not a" 161 2 = "Unrelated sub, secondary" 162 3 = "Related subfamily" 163 4 = "Primary individual" 164 ; NOTE: Format FAMTYP has been output. 165 VALUE FAMREL (default=32) 166 0 = "Not applicable, not in" 167 1 = "Reference person of family" 168 2 = "Spouse of family reference" 169 3 = "Child of family reference" 170 ; NOTE: Format FAMREL has been output. 171 VALUE FAMNUM (default=32) 172 0 = "Not applicable, not in" 173 ; NOTE: Format FAMNUM has been output. 174 VALUE PNSP (default=32) 175 0 = "Not a sample person, nonmatch" 176 999 = "Not applicable" 177 ; NOTE: Format PNSP has been output. 178 VALUE ENT_SP (default=32) 179 0 = "Not in sample or nonmatch" 180 99 = "Not applicable" 181 ; NOTE: Format ENT_SP has been output. 182 VALUE PNPT (default=32) 183 0 = "Not a sample person, nonmatch" 184 999 = "Not applicable" 185 ; NOTE: Format PNPT has been output. 186 VALUE ENT_PT (default=32) 4 The SAS System 15:27 Thursday, July 3, 2003 187 0 = "Not in sample or nonmatch" 188 99 = "Not applicable" 189 ; NOTE: Format ENT_PT has been output. 190 VALUE HIGRADE (default=32) 191 0 = "Not applicable if under 15," 192 ; NOTE: Format HIGRADE has been output. 193 VALUE GRD_CMP (default=32) 194 0 = "Not applicable, not in" 195 1 = "Yes" 196 2 = "No" 197 ; NOTE: Format GRD_CMP has been output. 198 VALUE U_VET (default=32) 199 0 = "Not applicable" 200 1 = "Yes" 201 2 = "No" 202 ; NOTE: Format U_VET has been output. 203 VALUE IN_AF (default=32) 204 0 = "Not applicable if under 15," 205 1 = "Yes" 206 2 = "No" 207 ; NOTE: Format IN_AF has been output. 208 VALUE USRV1L (default=32) 209 0 = "Not applicable, not in" 210 1 = "Vietnam era, Aug'64-Apr'75" 211 2 = "Korean conflict" 212 3 = "World War II, Sept'40-July'47" 213 4 = "World War I, Apr'17-Nov'18" 214 5 = "May 1975 to August 1980" 215 6 = "September 1980 or later" 216 7 = "Other service" 217 9 = "Not answered" 218 ; NOTE: Format USRV1L has been output. 219 VALUE USRV2L (default=32) 220 0 = "Not applicable, not in" 221 1 = "Vietnam era, Aug'64-Apr'75" 222 2 = "Korean conflict" 223 3 = "World War II, Sept'40-July'47" 224 4 = "World War I, Apr'17-Nov'18" 225 5 = "May 1975 to August 1980" 226 6 = "September 1980 or later" 227 7 = "Other service" 228 9 = "Not answered" 229 ; NOTE: Format USRV2L has been output. 230 VALUE USRV3L (default=32) 231 0 = "Not applicable, not in" 232 1 = "Vietnam era, Aug'64-Apr'75" 233 2 = "Korean conflict" 234 3 = "World War II, Sept'40-July'47" 235 4 = "World War I, Apr'17-Nov'18" 236 5 = "May 1975 to August 1980" 237 6 = "September 1980 or later" 238 7 = "Other service" 239 9 = "Not answered" 240 ; NOTE: Format USRV3L has been output. 241 VALUE BRTHMN (default=32) 242 -9 = "Not answered" 243 ; NOTE: Format BRTHMN has been output. 244 VALUE BRTHYR (default=32) 245 -9 = "Not answered" 246 1902 = "1902 or earlier" 247 ; NOTE: Format BRTHYR has been output. 248 VALUE U_PNGD (default=32) 249 -9 = "Not answered" 250 0 = "Not in universe, not in" 251 999 = "Not applicable" 252 ; 5 The SAS System 15:27 Thursday, July 3, 2003 NOTE: Format U_PNGD has been output. 253 VALUE ENTID_G (default=32) 254 0 = "Not in universe, not in" 255 99 = "Not applicable" 256 ; NOTE: Format ENTID_G has been output. 257 VALUE U_LVQT (default=32) 258 0 = "Not applicable, not in" 259 1 = "House, apartment, flat" 260 2 = "HU in nontransient hotel," 261 3 = "HU, permanent in transient" 262 4 = "HU in rooming house" 263 5 = "Mobile home or trailer with" 264 6 = "Mobile home or trailer with" 265 7 = "HU not specified above" 266 8 = "Quarters not hu in rooming or" 267 9 = "Unit not permanent in" 268 10 = "Unoccupied tent or trailer" 269 11 = "Other unit not specified above" 270 ; NOTE: Format U_LVQT has been output. 271 VALUE TENURE (default=32) 272 0 = "Not in sample, nonmatch" 273 1 = "Owned or being bought by" 274 2 = "Rented for cash" 275 3 = "Occupied without payment of" 276 ; NOTE: Format TENURE has been output. 277 VALUE PUBHS (default=32) 278 0 = "Not applicable, not in" 279 1 = "Yes" 280 2 = "No" 281 ; NOTE: Format PUBHS has been output. 282 VALUE LOW_RE (default=32) 283 0 = "Not applicable, not in" 284 1 = "Yes" 285 2 = "No" 286 ; NOTE: Format LOW_RE has been output. 287 VALUE ENRGY_Y (default=32) 288 0 = "Not in universe, not in" 289 1 = "Yes" 290 2 = "No" 291 ; NOTE: Format ENRGY_Y has been output. 292 VALUE H_ENRGY (default=32) 293 0 = "Not applicable, not in sample" 294 1 = "Checks sent to household" 295 2 = "Coupons or vouchers sent to" 296 3 = "Payments sent elsewhere" 297 4 = "Checks and coupons or" 298 5 = "Checks sent to household and" 299 6 = "Coupons or voucher sent to" 300 7 = "All three types of assistance" 301 ; NOTE: Format H_ENRGY has been output. 302 VALUE H_4824L (default=32) 303 0 = "Not in universe, not in" 304 ; NOTE: Format H_4824L has been output. 305 VALUE H_LUNCH (default=32) 306 0 = "Not applicable, not in sample" 307 1 = "Free" 308 2 = "Reduced-price" 309 3 = "Both" 310 ; NOTE: Format H_LUNCH has been output. 311 VALUE H_4834L (default=32) 312 0 = "Not in universe, not in" 313 ; NOTE: Format H_4834L has been output. 314 VALUE H_BREAK (default=32) 315 0 = "Not applicable, not in sample" 316 1 = "Free" 317 2 = "Reduced-price" 6 The SAS System 15:27 Thursday, July 3, 2003 318 3 = "Both" 319 ; NOTE: Format H_BREAK has been output. 320 VALUE H_4830L (default=32) 321 0 = "Not in universe, not in" 322 ; NOTE: Format H_4830L has been output. 323 VALUE PUBRNTYN (default=32) 324 0 = "Not in sample in wave 1" 325 1 = "Yes" 326 2 = "No" 327 ; NOTE: Format PUBRNTYN has been output. 328 VALUE PUBRNAMT (default=32) 329 0 = "Not applicable" 330 ; NOTE: Format PUBRNAMT has been output. 331 VALUE UTLPAYYN (default=32) 332 0 = "Not applicable" 333 1 = "Yes" 334 2 = "No" 335 ; NOTE: Format UTLPAYYN has been output. 336 VALUE FULLRENT (default=32) 337 0 = "Not applicable" 338 ; NOTE: Format FULLRENT has been output. 339 VALUE STATE (default=32) 340 0 = "Nonmatch" 341 1 = "Alabama" 342 4 = "Arizona" 343 5 = "Arkansas" 344 6 = "California" 345 8 = "Colorado" 346 9 = "Connecticut" 347 10 = "Delaware" 348 11 = "District of Columbia" 349 12 = "Florida" 350 13 = "Georgia" 351 15 = "Hawaii" 352 17 = "Illinois" 353 18 = "Indiana" 354 20 = "Kansas" 355 21 = "Kentucky" 356 22 = "Louisiana" 357 24 = "Maryland" 358 25 = "Massachusetts" 359 26 = "Michigan" 360 27 = "Minnesota" 361 28 = "Mississippi" 362 29 = "Missouri" 363 31 = "Nebraska" 364 32 = "Nevada" 365 33 = "New Hampshire" 366 34 = "New Jersey" 367 35 = "New Mexico" 368 36 = "New York" 369 37 = "North Carolina" 370 39 = "Ohio" 371 40 = "Oklahoma" 372 41 = "Oregon" 373 42 = "Pennsylvania" 374 44 = "Rhode Island" 375 45 = "South Carolina" 376 47 = "Tennessee" 377 48 = "Texas" 378 49 = "Utah" 379 51 = "Virginia" 380 53 = "Washington" 381 54 = "West Virginia" 382 55 = "Wisconsin" 383 61 = "Maine, Vermont" 384 62 = "Iowa, North Dakota, South" 385 63 = "Alaska, Idaho, Montana," 386 ; NOTE: Format STATE has been output. 7 The SAS System 15:27 Thursday, July 3, 2003 387 VALUE SC1332L (default=32) 388 -1 = "Don't know" 389 0 = "Not in universe, not in" 390 1 = "Less than 6 months" 391 2 = "6 to 23 months" 392 3 = "2 to 19 years" 393 4 = "20 or more years" 394 ; NOTE: Format SC1332L has been output. 395 VALUE SC1334L (default=32) 396 -1 = "Don't know" 397 0 = "Not in universe, not in" 398 1 = "Yes" 399 2 = "No" 400 ; NOTE: Format SC1334L has been output. 401 VALUE SC1336L (default=32) 402 -2 = "Refused" 403 -1 = "Don't know" 404 0 = "Not in universe, not in" 405 1 = "1-10%" 406 2 = "11-29%" 407 3 = "30-49%" 408 4 = "50%" 409 5 = "51-89%" 410 6 = "90-99%" 411 7 = "100%" 412 101 = "No rating" 413 ; NOTE: Format SC1336L has been output. 414 VALUE SC1346L (default=32) 415 -1 = "Don't know" 416 0 = "Not in universe, not in" 417 1 = "Retired" 418 2 = "Disabled" 419 3 = "Widowed or surviving child" 420 4 = "Spouse or dependent child" 421 5 = "Some other reason" 422 ; NOTE: Format SC1346L has been output. 423 VALUE SC1348L (default=32) 424 -1 = "Don't know" 425 0 = "Not in universe, not in" 426 1 = "Retired" 427 2 = "Disabled" 428 3 = "Widow,ed or surviving child" 429 4 = "Spouse or dependent child" 430 5 = "No other reason" 431 ; NOTE: Format SC1348L has been output. 432 VALUE SC1360L (default=32) 433 0 = "Not in universe, not in" 434 1 = "Yes" 435 2 = "No" 436 ; NOTE: Format SC1360L has been output. 437 VALUE SC1418L (default=32) 438 0 = "Not in universe, not in" 439 1 = "Widowed" 440 2 = "Divorced" 441 3 = "Both widowed and divorced" 442 4 = "No" 443 ; NOTE: Format SC1418L has been output. 444 VALUE SC1456L (default=32) 445 0 = "Not in universe, not in" 446 1 = "Yes, in the service" 447 2 = "Yes, from service-related" 448 3 = "No" 449 ; NOTE: Format SC1456L has been output. 450 VALUE MEDCODE (default=32) 451 0 = "Not in universe" 452 1 = "Retired or disabled worker" 453 2 = "Spouse of retired or disabled" 454 3 = "Widow of retired or" 8 The SAS System 15:27 Thursday, July 3, 2003 455 4 = "Adult disabled as a child" 456 5 = "Uninsured" 457 7 = "Other or invalid code" 458 8 = "Missing code" 459 ; NOTE: Format MEDCODE has been output. 460 VALUE SC1468L (default=32) 461 0 = "Not in universe or" 462 1 = "Hospital only, Type A" 463 2 = "Medical only, Type B" 464 3 = "Both hospital and medical" 465 4 = "Card not available" 466 ; NOTE: Format SC1468L has been output. 467 VALUE SC1472L (default=32) 468 -1 = "Don't know" 469 0 = "Not in universe" 470 1 = "Yes" 471 2 = "No" 472 ; NOTE: Format SC1472L has been output. 473 VALUE DISAB (default=32) 474 0 = "Not in universe, under 15" 475 1 = "Ever disabled marked on the" 476 ; NOTE: Format DISAB has been output. 477 VALUE ATT_SCH (default=32) 478 0 = "Not in universe" 479 1 = "Yes, full-time" 480 2 = "Yes, part-time" 481 3 = "No - skip to SC1694" 482 ; NOTE: Format ATT_SCH has been output. 483 VALUE ENRL_M (default=32) 484 0 = "Not enrolled, not in" 485 1 = "Enrolled during that month" 486 ; NOTE: Format ENRL_M has been output. 487 VALUE ED_LEVE (default=32) 488 0 = "Not in universe, not in" 489 1 = "Elementary grades 1-8" 490 2 = "High school grades 9-12" 491 3 = "College year 1" 492 4 = "College year 2" 493 5 = "College year 3" 494 6 = "College year 4" 495 7 = "College year 5" 496 8 = "College year 6" 497 9 = "Vocational school" 498 10 = "Technical school" 499 11 = "Business school" 500 ; NOTE: Format ED_LEVE has been output. 501 VALUE ED_FINA (default=32) 502 0 = "Not in universe" 503 1 = "Yes" 504 2 = "No" 505 ; NOTE: Format ED_FINA has been output. 506 VALUE SC1672L (default=32) 507 0 = "Not marked as a kind of" 508 1 = "Marked as a kind of" 509 ; NOTE: Format SC1672L has been output. 510 VALUE SC1674L (default=32) 511 0 = "Not marked as a kind of" 512 1 = "Marked as a kind of" 513 ; NOTE: Format SC1674L has been output. 514 VALUE SC1676L (default=32) 515 0 = "Not marked as a kind of" 516 1 = "Marked as a kind of" 517 ; NOTE: Format SC1676L has been output. 518 VALUE SC1678L (default=32) 519 0 = "Not marked as a kind of" 9 The SAS System 15:27 Thursday, July 3, 2003 520 1 = "Marked as a kind of" 521 ; NOTE: Format SC1678L has been output. 522 VALUE SC1680L (default=32) 523 0 = "Not marked as a kind of" 524 1 = "Marked as a kind of" 525 ; NOTE: Format SC1680L has been output. 526 VALUE SC1682L (default=32) 527 0 = "Not marked as a kind of" 528 1 = "Marked as a kind of" 529 ; NOTE: Format SC1682L has been output. 530 VALUE SC1684L (default=32) 531 0 = "Not marked as a kind of" 532 1 = "Marked as a kind of" 533 ; NOTE: Format SC1684L has been output. 534 VALUE SC1686L (default=32) 535 0 = "Not marked as a kind of" 536 1 = "Marked as a kind of" 537 ; NOTE: Format SC1686L has been output. 538 VALUE SC1688L (default=32) 539 0 = "Not marked as a kind of" 540 1 = "Marked as a kind of" 541 ; NOTE: Format SC1688L has been output. 542 VALUE SC1690L (default=32) 543 0 = "Not marked as a kind of" 544 1 = "Marked as a kind of" 545 ; NOTE: Format SC1690L has been output. 546 VALUE SC1692L (default=32) 547 0 = "Not marked as a kind of" 548 1 = "Marked as a kind of" 549 ; NOTE: Format SC1692L has been output. 550 VALUE SC1696L (default=32) 551 0 = "Not in universe" 552 1 = "Yes" 553 2 = "No" 554 ; NOTE: Format SC1696L has been output. 555 VALUE TELEPHON (default=32) 556 1 = "Telephone sample" 557 2 = "Personal visit" 558 ; NOTE: Format TELEPHON has been output. 559 VALUE ESR (default=32) 560 0 = "Not applicable, not in" 561 1 = "With a job entire month," 562 2 = "With a job entire month," 563 3 = "With a job entire month," 564 4 = "With job one or more weeks," 565 5 = "With job one or more weeks," 566 6 = "No job during month, spent" 567 7 = "No job during month, spent" 568 8 = "No job during month, no time" 569 ; NOTE: Format ESR has been output. 570 VALUE WKSPER (default=32) 571 0 = "Not applicable, not in" 572 4 = "Four weeks" 573 5 = "Five weeks" 574 ; NOTE: Format WKSPER has been output. 575 VALUE WKSJB (default=32) 576 0 = "0 weeks or not applicable," 577 1 = "1 weeks" 578 2 = "2 weeks" 579 3 = "3 weeks" 580 4 = "4 weeks" 581 5 = "5 weeks, only applicable for" 582 ; NOTE: Format WKSJB has been output. 10 The SAS System 15:27 Thursday, July 3, 2003 583 VALUE MTHWOP (default=32) 584 0 = "0 weeks or not applicable," 585 1 = "1 week" 586 2 = "2 weeks" 587 3 = "3 weeks" 588 4 = "4 weeks" 589 5 = "5 weeks, only applicable for" 590 ; NOTE: Format MTHWOP has been output. 591 VALUE WEEKSL (default=32) 592 0 = "None or not applicable, not" 593 1 = "1 week" 594 2 = "2 weeks" 595 3 = "3 weeks" 596 4 = "4 weeks" 597 5 = "5 weeks, only applicable for" 598 ; NOTE: Format WEEKSL has been output. 599 VALUE SC1230L (default=32) 600 0 = "Not in universe" 601 ; NOTE: Format SC1230L has been output. 602 VALUE WS1_EI (default=32) 603 0 = "Not in universe, not in" 604 ; NOTE: Format WS1_EI has been output. 605 VALUE WS2_EI (default=32) 606 0 = "Not in universe, not in" 607 ; NOTE: Format WS2_EI has been output. 608 VALUE WS1_CL (default=32) 609 0 = "Not in universe, not in" 610 1 = "A private company or" 611 2 = "Federal government, exclude" 612 3 = "State government" 613 4 = "Local government" 614 5 = "Armed Forces" 615 6 = "Unpaid in family business or" 616 ; NOTE: Format WS1_CL has been output. 617 VALUE WS2_CL (default=32) 618 0 = "Not in universe, not in" 619 1 = "A private company or" 620 2 = "Federal government, exclude" 621 3 = "State government" 622 4 = "Local government" 623 5 = "Armed Forces" 624 6 = "Unpaid in family business or" 625 ; NOTE: Format WS2_CL has been output. 626 VALUE WS1_WK (default=32) 627 0 = "None or not in universe if" 628 1 = "1 week" 629 2 = "2 weeks" 630 3 = "3 weeks" 631 4 = "4 weeks" 632 5 = "5 weeks" 633 ; NOTE: Format WS1_WK has been output. 634 VALUE WS2_WK (default=32) 635 0 = "None or not in universe if" 636 1 = "1 week" 637 2 = "2 weeks" 638 3 = "3 weeks" 639 4 = "4 weeks" 640 5 = "5 weeks" 641 ; NOTE: Format WS2_WK has been output. 642 VALUE W2024L (default=32) 643 -3 = "None" 644 0 = "Not in universe, not in" 645 ; NOTE: Format W2024L has been output. 646 VALUE W2124L (default=32) 647 0 = "Not in universe, not in" 648 ; 11 The SAS System 15:27 Thursday, July 3, 2003 NOTE: Format W2124L has been output. 649 VALUE W2028L (default=32) 650 0 = "Not in universe, not in" 651 ; NOTE: Format W2028L has been output. 652 VALUE W2128L (default=32) 653 0 = "Not in universe, not in" 654 ; NOTE: Format W2128L has been output. 655 VALUE S2202L (default=32) 656 0 = "Not in universe, not in" 657 ; NOTE: Format S2202L has been output. 658 VALUE S2302L (default=32) 659 0 = "Not in universe, not in" 660 ; NOTE: Format S2302L has been output. 661 VALUE SE1_TY (default=32) 662 0 = "Not in universe, not in" 663 1 = "Sole proprietorship" 664 2 = "Partnership" 665 3 = "Corporation" 666 ; NOTE: Format SE1_TY has been output. 667 VALUE SE2_TY (default=32) 668 0 = "Not in universe, not in" 669 1 = "Sole proprietorship" 670 2 = "Partnership" 671 3 = "Corporation" 672 ; NOTE: Format SE2_TY has been output. 673 VALUE SE1_IN (default=32) 674 1 = "Agriculture, forestry," 675 2 = "Mining" 676 3 = "Construction" 677 4 = "Manufacturing-nondurable goods" 678 5 = "Manufacturing-durable goods" 679 6 = "Transportation, comm." 680 7 = "Wholesale trade-durable goods" 681 8 = "Wholesale trade-nondurable goods" 682 9 = "Retail trade" 683 10 = "Finance, insurance, r.estate" 684 11 = "Business and repair services" 685 12 = "Personal services" 686 13 = "Entertainment and rec. services" 687 14 = "Professional and rel. services" 688 15 = "Public administration" 689 16 = "Industry not reported" 690 ; NOTE: Format SE1_IN has been output. 691 VALUE SE2_IN (default=32) 692 1 = "Agriculture, forestry," 693 2 = "Mining" 694 3 = "Construction" 695 4 = "Manufacturing-nondurable goods" 696 5 = "Manufacturing-durable goods" 697 6 = "Transportation, comm." 698 7 = "Wholesale trade-durable goods" 699 8 = "Wholesale trade-nondurable goods" 700 9 = "Retail trade" 701 10 = "Finance, insurance, r.estate" 702 11 = "Business and repair services" 703 12 = "Personal services" 704 13 = "Entertainment and rec. services" 705 14 = "Professional and rel. services" 706 15 = "Public administration" 707 16 = "Industry not reported" 708 ; NOTE: Format SE2_IN has been output. 709 VALUE SE1_WK (default=32) 710 0 = "None, not in universe, not in" 711 1 = "1 week" 712 2 = "2 weeks" 713 3 = "3 weeks" 714 4 = "4 weeks" 715 5 = "5 weeks" 12 The SAS System 15:27 Thursday, July 3, 2003 716 ; NOTE: Format SE1_WK has been output. 717 VALUE SE2_WK (default=32) 718 0 = "None, not in universe, not in" 719 1 = "1 week" 720 2 = "2 weeks" 721 3 = "3 weeks" 722 4 = "4 weeks" 723 5 = "5 weeks" 724 ; NOTE: Format SE2_WK has been output. 725 VALUE S2212L (default=32) 726 0 = "Not in universe, not in" 727 ; NOTE: Format S2212L has been output. 728 VALUE S2312L (default=32) 729 0 = "Not in universe, not in" 730 ; NOTE: Format S2312L has been output. 731 VALUE G1SRC1L (default=32) 732 0 = "Not applicable, not in" 733 1 = "Social Security" 734 2 = "Railroad Retirement" 735 3 = "Federal Supplemental Security" 736 5 = "State unemployment" 737 6 = "Supplemental unemployment" 738 7 = "Other unemployment" 739 8 = "Veterans compensation or" 740 10 = "Workers compensation" 741 12 = "Employer or union temporary" 742 13 = "Payments from a sickness," 743 20 = "Aid to families with" 744 21 = "General assistance or general" 745 23 = "Foster child care payments" 746 24 = "Other welfare" 747 25 = "WIC" 748 27 = "Food stamps" 749 28 = "Child support payments" 750 29 = "Alimony payments" 751 30 = "Pension from company or union" 752 31 = "Federal civil service or" 753 32 = "U.S. military retirement pay" 754 34 = "State government pensions" 755 35 = "Local government pensions" 756 36 = "Income from paid up life" 757 37 = "Estates and trusts" 758 38 = "Other payments for" 759 40 = "GI bill education benefits" 760 41 = "Other VA educational" 761 50 = "Income assistance from a" 762 51 = "Money from relatives or" 763 52 = "Lump sum payments" 764 53 = "Income from roomers or" 765 54 = "National guard or reserve pay" 766 55 = "Incidental or casual earnings" 767 56 = "Other cash income not" 768 75 = "State SSI/black lung/state" 769 ; NOTE: Format G1SRC1L has been output. 770 VALUE G1SRC2L (default=32) 771 0 = "Not applicable, not in" 772 1 = "Social Security" 773 2 = "Railroad Retirement" 774 3 = "Federal Supplemental Security" 775 5 = "State unemployment" 776 6 = "Supplemental unemployment" 777 7 = "Other unemployment" 778 8 = "Veterans compensation or" 779 10 = "Workers compensation" 780 12 = "Employer or union temporary" 781 13 = "Payments from a sickness," 782 20 = "Aid to families with" 783 21 = "General assistance or general" 784 23 = "Foster child care payments" 785 24 = "Other welfare" 786 25 = "WIC" 13 The SAS System 15:27 Thursday, July 3, 2003 787 27 = "Food stamps" 788 28 = "Child support payments" 789 29 = "Alimony payments" 790 30 = "Pension from company or union" 791 31 = "Federal civil service or" 792 32 = "U.S. military retirement pay" 793 34 = "State government pensions" 794 35 = "Local government pensions" 795 36 = "Income from paid up life" 796 37 = "Estates and trusts" 797 38 = "Other payments for" 798 40 = "GI bill education benefits" 799 41 = "Other VA educational" 800 50 = "Income assistance from a" 801 51 = "Money from relatives or" 802 52 = "Lump sum payments" 803 53 = "Income from roomers or" 804 54 = "National guard or reserve pay" 805 55 = "Incidental or casual earnings" 806 56 = "Other cash income not" 807 75 = "State SSI/black lung/state" 808 ; NOTE: Format G1SRC2L has been output. 809 VALUE G1SRC3L (default=32) 810 0 = "Not applicable, not in" 811 1 = "Social Security" 812 2 = "Railroad Retirement" 813 3 = "Federal Supplemental Security" 814 5 = "State unemployment" 815 6 = "Supplemental unemployment" 816 7 = "Other unemployment" 817 8 = "Veterans compensation or" 818 10 = "Workers compensation" 819 12 = "Employer or union temporary" 820 13 = "Payments from a sickness," 821 20 = "Aid to families with" 822 21 = "General assistance or general" 823 23 = "Foster child care payments" 824 24 = "Other welfare" 825 25 = "WIC" 826 27 = "Food stamps" 827 28 = "Child support payments" 828 29 = "Alimony payments" 829 30 = "Pension from company or union" 830 31 = "Federal civil service or" 831 32 = "U.S. military retirement pay" 832 34 = "State government pensions" 833 35 = "Local government pensions" 834 36 = "Income from paid up life" 835 37 = "Estates and trusts" 836 38 = "Other payments for" 837 40 = "GI bill education benefits" 838 41 = "Other VA educational" 839 50 = "Income assistance from a" 840 51 = "Money from relatives or" 841 52 = "Lump sum payments" 842 53 = "Income from roomers or" 843 54 = "National guard or reserve pay" 844 55 = "Incidental or casual earnings" 845 56 = "Other cash income not" 846 75 = "State SSI/black lung/state" 847 ; NOTE: Format G1SRC3L has been output. 848 VALUE G1SRC4L (default=32) 849 0 = "Not applicable, not in" 850 1 = "Social Security" 851 2 = "Railroad Retirement" 852 3 = "Federal Supplemental Security" 853 5 = "State unemployment" 854 6 = "Supplemental unemployment" 855 7 = "Other unemployment" 856 8 = "Veterans compensation or" 857 10 = "Workers compensation" 858 12 = "Employer or union temporary" 859 13 = "Payments from a sickness," 860 20 = "Aid to families with" 14 The SAS System 15:27 Thursday, July 3, 2003 861 21 = "General assistance or general" 862 23 = "Foster child care payments" 863 24 = "Other welfare" 864 25 = "WIC" 865 27 = "Food stamps" 866 28 = "Child support payments" 867 29 = "Alimony payments" 868 30 = "Pension from company or union" 869 31 = "Federal civil service or" 870 32 = "U.S. military retirement pay" 871 34 = "State government pensions" 872 35 = "Local government pensions" 873 36 = "Income from paid up life" 874 37 = "Estates and trusts" 875 38 = "Other payments for" 876 40 = "GI bill education benefits" 877 41 = "Other VA educational" 878 50 = "Income assistance from a" 879 51 = "Money from relatives or" 880 52 = "Lump sum payments" 881 53 = "Income from roomers or" 882 54 = "National guard or reserve pay" 883 55 = "Incidental or casual earnings" 884 56 = "Other cash income not" 885 75 = "State SSI/black lung/state" 886 ; NOTE: Format G1SRC4L has been output. 887 VALUE G1SRC5L (default=32) 888 0 = "Not applicable, not in" 889 1 = "Social Security" 890 2 = "Railroad Retirement" 891 3 = "Federal Supplemental Security" 892 5 = "State unemployment" 893 6 = "Supplemental unemployment" 894 7 = "Other unemployment" 895 8 = "Veterans compensation or" 896 10 = "Workers compensation" 897 12 = "Employer or union temporary" 898 13 = "Payments from a sickness," 899 20 = "Aid to families with" 900 21 = "General assistance or general" 901 23 = "Foster child care payments" 902 24 = "Other welfare" 903 25 = "WIC" 904 27 = "Food stamps" 905 28 = "Child support payments" 906 29 = "Alimony payments" 907 30 = "Pension from company or union" 908 31 = "Federal civil service or" 909 32 = "U.S. military retirement pay" 910 34 = "State government pensions" 911 35 = "Local government pensions" 912 36 = "Income from paid up life" 913 37 = "Estates and trusts" 914 38 = "Other payments for" 915 40 = "GI bill education benefits" 916 41 = "Other VA educational" 917 50 = "Income assistance from a" 918 51 = "Money from relatives or" 919 52 = "Lump sum payments" 920 53 = "Income from roomers or" 921 54 = "National guard or reserve pay" 922 55 = "Incidental or casual earnings" 923 56 = "Other cash income not" 924 75 = "State SSI/black lung/state" 925 ; NOTE: Format G1SRC5L has been output. 926 VALUE G1SRC6L (default=32) 927 0 = "Not applicable, not in" 928 1 = "Social Security" 929 2 = "Railroad Retirement" 930 3 = "Federal Supplemental Security" 931 5 = "State unemployment" 932 6 = "Supplemental unemployment" 933 7 = "Other unemployment" 934 8 = "Veterans compensation or" 15 The SAS System 15:27 Thursday, July 3, 2003 935 10 = "Workers compensation" 936 12 = "Employer or union temporary" 937 13 = "Payments from a sickness," 938 20 = "Aid to families with" 939 21 = "General assistance or general" 940 23 = "Foster child care payments" 941 24 = "Other welfare" 942 25 = "WIC" 943 27 = "Food stamps" 944 28 = "Child support payments" 945 29 = "Alimony payments" 946 30 = "Pension from company or union" 947 31 = "Federal civil service or" 948 32 = "U.S. military retirement pay" 949 34 = "State government pensions" 950 35 = "Local government pensions" 951 36 = "Income from paid up life" 952 37 = "Estates and trusts" 953 38 = "Other payments for" 954 40 = "GI bill education benefits" 955 41 = "Other VA educational" 956 50 = "Income assistance from a" 957 51 = "Money from relatives or" 958 52 = "Lump sum payments" 959 53 = "Income from roomers or" 960 54 = "National guard or reserve pay" 961 55 = "Incidental or casual earnings" 962 56 = "Other cash income not" 963 75 = "State SSI/black lung/state" 964 ; NOTE: Format G1SRC6L has been output. 965 VALUE G1SRC7L (default=32) 966 0 = "Not applicable, not in" 967 1 = "Social Security" 968 2 = "Railroad Retirement" 969 3 = "Federal Supplemental Security" 970 5 = "State unemployment" 971 6 = "Supplemental unemployment" 972 7 = "Other unemployment" 973 8 = "Veterans compensation or" 974 10 = "Workers compensation" 975 12 = "Employer or union temporary" 976 13 = "Payments from a sickness," 977 20 = "Aid to families with" 978 21 = "General assistance or general" 979 23 = "Foster child care payments" 980 24 = "Other welfare" 981 25 = "WIC" 982 27 = "Food stamps" 983 28 = "Child support payments" 984 29 = "Alimony payments" 985 30 = "Pension from company or union" 986 31 = "Federal civil service or" 987 32 = "U.S. military retirement pay" 988 34 = "State government pensions" 989 35 = "Local government pensions" 990 36 = "Income from paid up life" 991 37 = "Estates and trusts" 992 38 = "Other payments for" 993 40 = "GI bill education benefits" 994 41 = "Other VA educational" 995 50 = "Income assistance from a" 996 51 = "Money from relatives or" 997 52 = "Lump sum payments" 998 53 = "Income from roomers or" 999 54 = "National guard or reserve pay" 1000 55 = "Incidental or casual earnings" 1001 56 = "Other cash income not" 1002 75 = "State SSI/black lung/state" 1003 ; NOTE: Format G1SRC7L has been output. 1004 VALUE G1SRC8L (default=32) 1005 0 = "Not applicable, not in" 1006 1 = "Social Security" 1007 2 = "Railroad Retirement" 1008 3 = "Federal Supplemental Security" 16 The SAS System 15:27 Thursday, July 3, 2003 1009 5 = "State unemployment" 1010 6 = "Supplemental unemployment" 1011 7 = "Other unemployment" 1012 8 = "Veterans compensation or" 1013 10 = "Workers compensation" 1014 12 = "Employer or union temporary" 1015 13 = "Payments from a sickness," 1016 20 = "Aid to families with" 1017 21 = "General assistance or general" 1018 23 = "Foster child care payments" 1019 24 = "Other welfare" 1020 25 = "WIC" 1021 27 = "Food stamps" 1022 28 = "Child support payments" 1023 29 = "Alimony payments" 1024 30 = "Pension from company or union" 1025 31 = "Federal civil service or" 1026 32 = "U.S. military retirement pay" 1027 34 = "State government pensions" 1028 35 = "Local government pensions" 1029 36 = "Income from paid up life" 1030 37 = "Estates and trusts" 1031 38 = "Other payments for" 1032 40 = "GI bill education benefits" 1033 41 = "Other VA educational" 1034 50 = "Income assistance from a" 1035 51 = "Money from relatives or" 1036 52 = "Lump sum payments" 1037 53 = "Income from roomers or" 1038 54 = "National guard or reserve pay" 1039 55 = "Incidental or casual earnings" 1040 56 = "Other cash income not" 1041 75 = "State SSI/black lung/state" 1042 ; NOTE: Format G1SRC8L has been output. 1043 VALUE G1SRC9L (default=32) 1044 0 = "Not applicable, not in" 1045 1 = "Social Security" 1046 2 = "Railroad Retirement" 1047 3 = "Federal Supplemental Security" 1048 5 = "State unemployment" 1049 6 = "Supplemental unemployment" 1050 7 = "Other unemployment" 1051 8 = "Veterans compensation or" 1052 10 = "Workers compensation" 1053 12 = "Employer or union temporary" 1054 13 = "Payments from a sickness," 1055 20 = "Aid to families with" 1056 21 = "General assistance or general" 1057 23 = "Foster child care payments" 1058 24 = "Other welfare" 1059 25 = "WIC" 1060 27 = "Food stamps" 1061 28 = "Child support payments" 1062 29 = "Alimony payments" 1063 30 = "Pension from company or union" 1064 31 = "Federal civil service or" 1065 32 = "U.S. military retirement pay" 1066 34 = "State government pensions" 1067 35 = "Local government pensions" 1068 36 = "Income from paid up life" 1069 37 = "Estates and trusts" 1070 38 = "Other payments for" 1071 40 = "GI bill education benefits" 1072 41 = "Other VA educational" 1073 50 = "Income assistance from a" 1074 51 = "Money from relatives or" 1075 52 = "Lump sum payments" 1076 53 = "Income from roomers or" 1077 54 = "National guard or reserve pay" 1078 55 = "Incidental or casual earnings" 1079 56 = "Other cash income not" 1080 75 = "State SSI/black lung/state" 1081 ; NOTE: Format G1SRC9L has been output. 1082 VALUE G1SRC10L (default=32) 17 The SAS System 15:27 Thursday, July 3, 2003 1083 0 = "Not applicable, not in" 1084 1 = "Social Security" 1085 2 = "Railroad Retirement" 1086 3 = "Federal Supplemental Security" 1087 5 = "State unemployment" 1088 6 = "Supplemental unemployment" 1089 7 = "Other unemployment" 1090 8 = "Veterans compensation or" 1091 10 = "Workers compensation" 1092 12 = "Employer or union temporary" 1093 13 = "Payments from a sickness," 1094 20 = "Aid to families with" 1095 21 = "General assistance or general" 1096 23 = "Foster child care payments" 1097 24 = "Other welfare" 1098 25 = "WIC" 1099 27 = "Food stamps" 1100 28 = "Child support payments" 1101 29 = "Alimony payments" 1102 30 = "Pension from company or union" 1103 31 = "Federal civil service or" 1104 32 = "U.S. military retirement pay" 1105 34 = "State government pensions" 1106 35 = "Local government pensions" 1107 36 = "Income from paid up life" 1108 37 = "Estates and trusts" 1109 38 = "Other payments for" 1110 40 = "GI bill education benefits" 1111 41 = "Other VA educational" 1112 50 = "Income assistance from a" 1113 51 = "Money from relatives or" 1114 52 = "Lump sum payments" 1115 53 = "Income from roomers or" 1116 54 = "National guard or reserve pay" 1117 55 = "Incidental or casual earnings" 1118 56 = "Other cash income not" 1119 75 = "State SSI/black lung/state" 1120 ; NOTE: Format G1SRC10L has been output. 1121 VALUE SSRECIN (default=32) 1122 0 = "Not in universe" 1123 1 = "Adult benefits received in" 1124 2 = "Only adult benefits received" 1125 3 = "Only child benefits received" 1126 4 = "Adult benefits received in" 1127 5 = "Adult benefits received" 1128 ; NOTE: Format SSRECIN has been output. 1129 VALUE RRRECIN (default=32) 1130 0 = "Not in universe" 1131 1 = "Adult benefits received in" 1132 2 = "Only adult benefits received" 1133 3 = "Only child benefits received" 1134 4 = "Adult benefits received in" 1135 5 = "Adult benefits received" 1136 ; NOTE: Format RRRECIN has been output. 1137 VALUE VET3060L (default=32) 1138 -1 = "Don't know" 1139 0 = "Not in universe or don't know" 1140 1 = "Yes" 1141 2 = "No" 1142 ; NOTE: Format VET3060L has been output. 1143 VALUE AST100L (default=32) 1144 0 = "Not applicable" 1145 1 = "Yes" 1146 2 = "No" 1147 ; NOTE: Format AST100L has been output. 1148 VALUE AST101L (default=32) 1149 0 = "Not applicable" 1150 1 = "Yes" 1151 2 = "No" 1152 ; NOTE: Format AST101L has been output. 18 The SAS System 15:27 Thursday, July 3, 2003 1153 VALUE AST102L (default=32) 1154 0 = "Not applicable" 1155 1 = "Yes" 1156 2 = "No" 1157 ; NOTE: Format AST102L has been output. 1158 VALUE AST103L (default=32) 1159 0 = "Not applicable" 1160 1 = "Yes" 1161 2 = "No" 1162 ; NOTE: Format AST103L has been output. 1163 VALUE AST104L (default=32) 1164 0 = "Not applicable" 1165 1 = "Yes" 1166 2 = "No" 1167 ; NOTE: Format AST104L has been output. 1168 VALUE AST105L (default=32) 1169 0 = "Not applicable" 1170 1 = "Yes" 1171 2 = "No" 1172 ; NOTE: Format AST105L has been output. 1173 VALUE AST106L (default=32) 1174 0 = "Not applicable" 1175 1 = "Yes" 1176 2 = "No" 1177 ; NOTE: Format AST106L has been output. 1178 VALUE AST107L (default=32) 1179 0 = "Not applicable" 1180 1 = "Yes" 1181 2 = "NO" 1182 ; NOTE: Format AST107L has been output. 1183 VALUE AST110L (default=32) 1184 0 = "Not Applicable" 1185 1 = "Yes" 1186 2 = "No" 1187 ; NOTE: Format AST110L has been output. 1188 VALUE RR_PID (default=32) 1189 0 = "Not in universe, not in" 1190 ; NOTE: Format RR_PID has been output. 1191 VALUE VA_PID (default=32) 1192 0 = "Not in universe, not in" 1193 ; NOTE: Format VA_PID has been output. 1194 VALUE AFDCPI (default=32) 1195 0 = "Not in universe, not in" 1196 ; NOTE: Format AFDCPI has been output. 1197 VALUE GA_PID (default=32) 1198 0 = "Not in universe, not in" 1199 ; NOTE: Format GA_PID has been output. 1200 VALUE FOSTPI (default=32) 1201 0 = "Not in universe, not in" 1202 ; NOTE: Format FOSTPI has been output. 1203 VALUE OTH_PI (default=32) 1204 0 = "Not in universe, not in" 1205 ; NOTE: Format OTH_PI has been output. 1206 VALUE WIC_PI (default=32) 1207 0 = "Not in universe, not in" 1208 ; NOTE: Format WIC_PI has been output. 1209 VALUE FS_PID (default=32) 1210 0 = "Not in universe, not in" 1211 ; NOTE: Format FS_PID has been output. 1212 VALUE WS1_IM (default=32) 1213 0 = "Not imputed" 19 The SAS System 15:27 Thursday, July 3, 2003 1214 1 = "Imputed" 1215 ; NOTE: Format WS1_IM has been output. 1216 VALUE WS2_IM (default=32) 1217 0 = "Not imputed" 1218 1 = "Imputed" 1219 ; NOTE: Format WS2_IM has been output. 1220 VALUE SE1_IM (default=32) 1221 0 = "Not imputed" 1222 1 = "Imputed" 1223 ; NOTE: Format SE1_IM has been output. 1224 VALUE SE2_IM (default=32) 1225 0 = "Not imputed" 1226 1 = "Imputed" 1227 ; NOTE: Format SE2_IM has been output. 1228 VALUE G1_I1L (default=32) 1229 0 = "Not imputed" 1230 1 = "Imputed" 1231 ; NOTE: Format G1_I1L has been output. 1232 VALUE G1_I2L (default=32) 1233 0 = "Not imputed" 1234 1 = "Imputed" 1235 ; NOTE: Format G1_I2L has been output. 1236 VALUE G1_I3L (default=32) 1237 0 = "Not imputed" 1238 1 = "Imputed" 1239 ; NOTE: Format G1_I3L has been output. 1240 VALUE G1_I4L (default=32) 1241 0 = "Not imputed" 1242 1 = "Imputed" 1243 ; NOTE: Format G1_I4L has been output. 1244 VALUE G11_IM (default=32) 1245 0 = "Not imputed" 1246 1 = "Imputed" 1247 ; NOTE: Format G11_IM has been output. 1248 VALUE G1_I6L (default=32) 1249 0 = "Not imputed" 1250 1 = "Imputed" 1251 ; NOTE: Format G1_I6L has been output. 1252 VALUE G1_I7L (default=32) 1253 0 = "Not imputed" 1254 1 = "Imputed" 1255 ; NOTE: Format G1_I7L has been output. 1256 VALUE G1_I8L (default=32) 1257 0 = "Not imputed" 1258 1 = "Imputed" 1259 ; NOTE: Format G1_I8L has been output. 1260 VALUE G1_I9L (default=32) 1261 0 = "Not imputed" 1262 1 = "Imputed" 1263 ; NOTE: Format G1_I9L has been output. 1264 VALUE G1_I10L (default=32) 1265 0 = "Not imputed" 1266 1 = "Imputed" 1267 ; NOTE: Format G1_I10L has been output. 1268 VALUE G2I100L (default=32) 1269 0 = "Not imputed" 1270 1 = "Imputed" 1271 ; NOTE: Format G2I100L has been output. 1272 VALUE G2I104L (default=32) 1273 0 = "Not imputed" 1274 1 = "Imputed" 20 The SAS System 15:27 Thursday, July 3, 2003 1275 ; NOTE: Format G2I104L has been output. 1276 VALUE G2I110L (default=32) 1277 0 = "Not imputed" 1278 1 = "Imputed" 1279 ; NOTE: Format G2I110L has been output. 1280 VALUE G2I120L (default=32) 1281 0 = "Not imputed" 1282 1 = "Imputed" 1283 ; NOTE: Format G2I120L has been output. 1284 VALUE G2I130L (default=32) 1285 0 = "Not imputed" 1286 1 = "Imputed" 1287 ; NOTE: Format G2I130L has been output. 1288 VALUE G2I140L (default=32) 1289 0 = "Not imputed" 1290 1 = "Imputed" 1291 ; NOTE: Format G2I140L has been output. 1292 1293 filename raw pipe "unzip -p /homes/data/sipp/1986/sipp86fp.zip "; 1294 NOTE: The data set LIBRARY.FSP86FP has 940 observations and 17 variables. NOTE: PROCEDURE FORMAT used: real time 2.560 seconds cpu time 0.508 seconds 1295 data library.sip86fp; 1296 1297 missing A; 1298 infile raw lrecl = 20000 missover ; 1299 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 1300 * On a PC, you may need to change the direction of the slashes as in C:\; 1301 *INFILE '/homes/data/sipp/1986/sipp86fp.dat' LRECL=20000 PAD END=EOF; 1302 1303 1304 1305 *LENGTH 1306 SUSEQNUM 4 1307 SU_ID $9 1308 PP_ENTRY $2 1309 HH_ADD01 $2 1310 HH_ADD02 $2 1311 HH_ADD03 $2 1312 HH_ADD04 $2 1313 HH_ADD05 $2 1314 HH_ADD06 $2 1315 HH_ADD07 $2 1316 HH_ADD08 $2 1317 HH_ADD09 $2 1318 HH_ADD10 $2 1319 HH_ADD11 $2 1320 HH_ADD12 $2 1321 HH_ADD13 $2 1322 HH_ADD14 $2 1323 HH_ADD15 $2 1324 HH_ADD16 $2 1325 HH_ADD17 $2 1326 HH_ADD18 $2 1327 HH_ADD19 $2 1328 HH_ADD20 $2 1329 HH_ADD21 $2 1330 HH_ADD22 $2 1331 HH_ADD23 $2 1332 HH_ADD24 $2 1333 HH_ADD25 $2 1334 HH_ADD26 $2 1335 HH_ADD27 $2 1336 HH_ADD28 $2 1337 HH_ADD29 $2 1338 HH_ADD30 $2 21 The SAS System 15:27 Thursday, July 3, 2003 1339 HH_ADD31 $2 1340 HH_ADD32 $2 1341 PNLWGT 8 1342 FNLWGT86 8 1343 FNLWGT87 8 1344 LGTFA101 8 1345 LGTFA102 8 1346 LGTFA103 8 1347 LGTFA104 8 1348 LGTFA105 8 1349 LGTFA106 8 1350 LGTFA107 8 1351 LGTFA108 8 1352 LGTFA109 8 1353 LGTFA110 8 1354 LGTFA111 8 1355 LGTFA112 8 1356 LGTFA113 8 1357 LGTFA114 8 1358 LGTFA115 8 1359 LGTFA116 8 1360 LGTFA117 8 1361 LGTFA118 8 1362 LGTFA119 8 1363 LGTFA120 8 1364 LGTFA121 8 1365 LGTFA122 8 1366 LGTFA123 8 1367 LGTFA124 8 1368 LGTFA125 8 1369 LGTFA126 8 1370 LGTFA127 8 1371 LGTFA128 8 1372 LGTFA129 8 1373 LGTFA130 8 1374 LGTFA131 8 1375 LGTFA132 8 1376 LGTFA201 8 1377 LGTFA202 8 1378 LGTFA203 8 1379 LGTFA204 8 1380 LGTFA205 8 1381 LGTFA206 8 1382 LGTFA207 8 1383 LGTFA208 8 1384 LGTFA209 8 1385 LGTFA210 8 1386 LGTFA211 8 1387 LGTFA212 8 1388 LGTFA213 8 1389 LGTFA214 8 1390 LGTFA215 8 1391 LGTFA216 8 1392 LGTFA217 8 1393 LGTFA218 8 1394 LGTFA219 8 1395 LGTFA220 8 1396 LGTFA221 8 1397 LGTFA222 8 1398 LGTFA223 8 1399 LGTFA224 8 1400 LGTFA225 8 1401 LGTFA226 8 1402 LGTFA227 8 1403 LGTFA228 8 1404 LGTFA229 8 1405 LGTFA230 8 1406 LGTFA231 8 1407 LGTFA232 8 1408 BRTHYR 4 1409 H_48241 4 1410 H_48242 4 1411 H_48243 4 1412 H_48244 4 1413 H_48245 4 1414 H_48246 4 22 The SAS System 15:27 Thursday, July 3, 2003 1415 H_48247 4 1416 H_48248 4 1417 PUBRNAMT 4 1418 FULLRENT 4 1419 PP_INC01 5 1420 PP_INC02 5 1421 PP_INC03 5 1422 PP_INC04 5 1423 PP_INC05 5 1424 PP_INC06 5 1425 PP_INC07 5 1426 PP_INC08 5 1427 PP_INC09 5 1428 PP_INC10 5 1429 PP_INC11 5 1430 PP_INC12 5 1431 PP_INC13 5 1432 PP_INC14 5 1433 PP_INC15 5 1434 PP_INC16 5 1435 PP_INC17 5 1436 PP_INC18 5 1437 PP_INC19 5 1438 PP_INC20 5 1439 PP_INC21 5 1440 PP_INC22 5 1441 PP_INC23 5 1442 PP_INC24 5 1443 PP_INC25 5 1444 PP_INC26 5 1445 PP_INC27 5 1446 PP_INC28 5 1447 PP_INC29 5 1448 PP_INC30 5 1449 PP_INC31 5 1450 PP_INC32 5 1451 PP_EAR01 5 1452 PP_EAR02 5 1453 PP_EAR03 5 1454 PP_EAR04 5 1455 PP_EAR05 5 1456 PP_EAR06 5 1457 PP_EAR07 5 1458 PP_EAR08 5 1459 PP_EAR09 5 1460 PP_EAR10 5 1461 PP_EAR11 5 1462 PP_EAR12 5 1463 PP_EAR13 5 1464 PP_EAR14 5 1465 PP_EAR15 5 1466 PP_EAR16 5 1467 PP_EAR17 5 1468 PP_EAR18 5 1469 PP_EAR19 5 1470 PP_EAR20 5 1471 PP_EAR21 5 1472 PP_EAR22 5 1473 PP_EAR23 5 1474 PP_EAR24 5 1475 PP_EAR25 5 1476 PP_EAR26 5 1477 PP_EAR27 5 1478 PP_EAR28 5 1479 PP_EAR29 5 1480 PP_EAR30 5 1481 PP_EAR31 5 1482 PP_EAR32 5 1483 FF_INC01 5 1484 FF_INC02 5 1485 FF_INC03 5 1486 FF_INC04 5 1487 FF_INC05 5 1488 FF_INC06 5 1489 FF_INC07 5 1490 FF_INC08 5 23 The SAS System 15:27 Thursday, July 3, 2003 1491 FF_INC09 5 1492 FF_INC10 5 1493 FF_INC11 5 1494 FF_INC12 5 1495 FF_INC13 5 1496 FF_INC14 5 1497 FF_INC15 5 1498 FF_INC16 5 1499 FF_INC17 5 1500 FF_INC18 5 1501 FF_INC19 5 1502 FF_INC20 5 1503 FF_INC21 5 1504 FF_INC22 5 1505 FF_INC23 5 1506 FF_INC24 5 1507 FF_INC25 5 1508 FF_INC26 5 1509 FF_INC27 5 1510 FF_INC28 5 1511 FF_INC29 5 1512 FF_INC30 5 1513 FF_INC31 5 1514 FF_INC32 5 1515 FF_EAR01 4 1516 FF_EAR02 4 1517 FF_EAR03 4 1518 FF_EAR04 4 1519 FF_EAR05 4 1520 FF_EAR06 4 1521 FF_EAR07 4 1522 FF_EAR08 4 1523 FF_EAR09 4 1524 FF_EAR10 4 1525 FF_EAR11 4 1526 FF_EAR12 4 1527 FF_EAR13 4 1528 FF_EAR14 4 1529 FF_EAR15 4 1530 FF_EAR16 4 1531 FF_EAR17 4 1532 FF_EAR18 4 1533 FF_EAR19 4 1534 FF_EAR20 4 1535 FF_EAR21 4 1536 FF_EAR22 4 1537 FF_EAR23 4 1538 FF_EAR24 4 1539 FF_EAR25 4 1540 FF_EAR26 4 1541 FF_EAR27 4 1542 FF_EAR28 4 1543 FF_EAR29 4 1544 FF_EAR30 4 1545 FF_EAR31 4 1546 FF_EAR32 4 1547 FF_PRO01 4 1548 FF_PRO02 4 1549 FF_PRO03 4 1550 FF_PRO04 4 1551 FF_PRO05 4 1552 FF_PRO06 4 1553 FF_PRO07 4 1554 FF_PRO08 4 1555 FF_PRO09 4 1556 FF_PRO10 4 1557 FF_PRO11 4 1558 FF_PRO12 4 1559 FF_PRO13 4 1560 FF_PRO14 4 1561 FF_PRO15 4 1562 FF_PRO16 4 1563 FF_PRO17 4 1564 FF_PRO18 4 1565 FF_PRO19 4 1566 FF_PRO20 4 24 The SAS System 15:27 Thursday, July 3, 2003 1567 FF_PRO21 4 1568 FF_PRO22 4 1569 FF_PRO23 4 1570 FF_PRO24 4 1571 FF_PRO25 4 1572 FF_PRO26 4 1573 FF_PRO27 4 1574 FF_PRO28 4 1575 FF_PRO29 4 1576 FF_PRO30 4 1577 FF_PRO31 4 1578 FF_PRO32 4 1579 FF_TRA01 4 1580 FF_TRA02 4 1581 FF_TRA03 4 1582 FF_TRA04 4 1583 FF_TRA05 4 1584 FF_TRA06 4 1585 FF_TRA07 4 1586 FF_TRA08 4 1587 FF_TRA09 4 1588 FF_TRA10 4 1589 FF_TRA11 4 1590 FF_TRA12 4 1591 FF_TRA13 4 1592 FF_TRA14 4 1593 FF_TRA15 4 1594 FF_TRA16 4 1595 FF_TRA17 4 1596 FF_TRA18 4 1597 FF_TRA19 4 1598 FF_TRA20 4 1599 FF_TRA21 4 1600 FF_TRA22 4 1601 FF_TRA23 4 1602 FF_TRA24 4 1603 FF_TRA25 4 1604 FF_TRA26 4 1605 FF_TRA27 4 1606 FF_TRA28 4 1607 FF_TRA29 4 1608 FF_TRA30 4 1609 FF_TRA31 4 1610 FF_TRA32 4 1611 FF_OTH01 4 1612 FF_OTH02 4 1613 FF_OTH03 4 1614 FF_OTH04 4 1615 FF_OTH05 4 1616 FF_OTH06 4 1617 FF_OTH07 4 1618 FF_OTH08 4 1619 FF_OTH09 4 1620 FF_OTH10 4 1621 FF_OTH11 4 1622 FF_OTH12 4 1623 FF_OTH13 4 1624 FF_OTH14 4 1625 FF_OTH15 4 1626 FF_OTH16 4 1627 FF_OTH17 4 1628 FF_OTH18 4 1629 FF_OTH19 4 1630 FF_OTH20 4 1631 FF_OTH21 4 1632 FF_OTH22 4 1633 FF_OTH23 4 1634 FF_OTH24 4 1635 FF_OTH25 4 1636 FF_OTH26 4 1637 FF_OTH27 4 1638 FF_OTH28 4 1639 FF_OTH29 4 1640 FF_OTH30 4 1641 FF_OTH31 4 1642 FF_OTH32 4 25 The SAS System 15:27 Thursday, July 3, 2003 1643 HH_INC01 5 1644 HH_INC02 5 1645 HH_INC03 5 1646 HH_INC04 5 1647 HH_INC05 5 1648 HH_INC06 5 1649 HH_INC07 5 1650 HH_INC08 5 1651 HH_INC09 5 1652 HH_INC10 5 1653 HH_INC11 5 1654 HH_INC12 5 1655 HH_INC13 5 1656 HH_INC14 5 1657 HH_INC15 5 1658 HH_INC16 5 1659 HH_INC17 5 1660 HH_INC18 5 1661 HH_INC19 5 1662 HH_INC20 5 1663 HH_INC21 5 1664 HH_INC22 5 1665 HH_INC23 5 1666 HH_INC24 5 1667 HH_INC25 5 1668 HH_INC26 5 1669 HH_INC27 5 1670 HH_INC28 5 1671 HH_INC29 5 1672 HH_INC30 5 1673 HH_INC31 5 1674 HH_INC32 5 1675 HH_EAR01 4 1676 HH_EAR02 4 1677 HH_EAR03 4 1678 HH_EAR04 4 1679 HH_EAR05 4 1680 HH_EAR06 4 1681 HH_EAR07 4 1682 HH_EAR08 4 1683 HH_EAR09 4 1684 HH_EAR10 4 1685 HH_EAR11 4 1686 HH_EAR12 4 1687 HH_EAR13 4 1688 HH_EAR14 4 1689 HH_EAR15 4 1690 HH_EAR16 4 1691 HH_EAR17 4 1692 HH_EAR18 4 1693 HH_EAR19 4 1694 HH_EAR20 4 1695 HH_EAR21 4 1696 HH_EAR22 4 1697 HH_EAR23 4 1698 HH_EAR24 4 1699 HH_EAR25 4 1700 HH_EAR26 4 1701 HH_EAR27 4 1702 HH_EAR28 4 1703 HH_EAR29 4 1704 HH_EAR30 4 1705 HH_EAR31 4 1706 HH_EAR32 4 1707 HH_PRO01 4 1708 HH_PRO02 4 1709 HH_PRO03 4 1710 HH_PRO04 4 1711 HH_PRO05 4 1712 HH_PRO06 4 1713 HH_PRO07 4 1714 HH_PRO08 4 1715 HH_PRO09 4 1716 HH_PRO10 4 1717 HH_PRO11 4 1718 HH_PRO12 4 26 The SAS System 15:27 Thursday, July 3, 2003 1719 HH_PRO13 4 1720 HH_PRO14 4 1721 HH_PRO15 4 1722 HH_PRO16 4 1723 HH_PRO17 4 1724 HH_PRO18 4 1725 HH_PRO19 4 1726 HH_PRO20 4 1727 HH_PRO21 4 1728 HH_PRO22 4 1729 HH_PRO23 4 1730 HH_PRO24 4 1731 HH_PRO25 4 1732 HH_PRO26 4 1733 HH_PRO27 4 1734 HH_PRO28 4 1735 HH_PRO29 4 1736 HH_PRO30 4 1737 HH_PRO31 4 1738 HH_PRO32 4 1739 HH_TRA01 4 1740 HH_TRA02 4 1741 HH_TRA03 4 1742 HH_TRA04 4 1743 HH_TRA05 4 1744 HH_TRA06 4 1745 HH_TRA07 4 1746 HH_TRA08 4 1747 HH_TRA09 4 1748 HH_TRA10 4 1749 HH_TRA11 4 1750 HH_TRA12 4 1751 HH_TRA13 4 1752 HH_TRA14 4 1753 HH_TRA15 4 1754 HH_TRA16 4 1755 HH_TRA17 4 1756 HH_TRA18 4 1757 HH_TRA19 4 1758 HH_TRA20 4 1759 HH_TRA21 4 1760 HH_TRA22 4 1761 HH_TRA23 4 1762 HH_TRA24 4 1763 HH_TRA25 4 1764 HH_TRA26 4 1765 HH_TRA27 4 1766 HH_TRA28 4 1767 HH_TRA29 4 1768 HH_TRA30 4 1769 HH_TRA31 4 1770 HH_TRA32 4 1771 HH_OTH01 4 1772 HH_OTH02 4 1773 HH_OTH03 4 1774 HH_OTH04 4 1775 HH_OTH05 4 1776 HH_OTH06 4 1777 HH_OTH07 4 1778 HH_OTH08 4 1779 HH_OTH09 4 1780 HH_OTH10 4 1781 HH_OTH11 4 1782 HH_OTH12 4 1783 HH_OTH13 4 1784 HH_OTH14 4 1785 HH_OTH15 4 1786 HH_OTH16 4 1787 HH_OTH17 4 1788 HH_OTH18 4 1789 HH_OTH19 4 1790 HH_OTH20 4 1791 HH_OTH21 4 1792 HH_OTH22 4 1793 HH_OTH23 4 1794 HH_OTH24 4 27 The SAS System 15:27 Thursday, July 3, 2003 1795 HH_OTH25 4 1796 HH_OTH26 4 1797 HH_OTH27 4 1798 HH_OTH28 4 1799 HH_OTH29 4 1800 HH_OTH30 4 1801 HH_OTH31 4 1802 HH_OTH32 4 1803 FF_POV01 4 1804 FF_POV02 4 1805 FF_POV03 4 1806 FF_POV04 4 1807 FF_POV05 4 1808 FF_POV06 4 1809 FF_POV07 4 1810 FF_POV08 4 1811 FF_POV09 4 1812 FF_POV10 4 1813 FF_POV11 4 1814 FF_POV12 4 1815 FF_POV13 4 1816 FF_POV14 4 1817 FF_POV15 4 1818 FF_POV16 4 1819 FF_POV17 4 1820 FF_POV18 4 1821 FF_POV19 4 1822 FF_POV20 4 1823 FF_POV21 4 1824 FF_POV22 4 1825 FF_POV23 4 1826 FF_POV24 4 1827 FF_POV25 4 1828 FF_POV26 4 1829 FF_POV27 4 1830 FF_POV28 4 1831 FF_POV29 4 1832 FF_POV30 4 1833 FF_POV31 4 1834 FF_POV32 4 1835 WS1_AM01 4 1836 WS1_AM02 4 1837 WS1_AM03 4 1838 WS1_AM04 4 1839 WS1_AM05 4 1840 WS1_AM06 4 1841 WS1_AM07 4 1842 WS1_AM08 4 1843 WS1_AM09 4 1844 WS1_AM10 4 1845 WS1_AM11 4 1846 WS1_AM12 4 1847 WS1_AM13 4 1848 WS1_AM14 4 1849 WS1_AM15 4 1850 WS1_AM16 4 1851 WS1_AM17 4 1852 WS1_AM18 4 1853 WS1_AM19 4 1854 WS1_AM20 4 1855 WS1_AM21 4 1856 WS1_AM22 4 1857 WS1_AM23 4 1858 WS1_AM24 4 1859 WS1_AM25 4 1860 WS1_AM26 4 1861 WS1_AM27 4 1862 WS1_AM28 4 1863 WS1_AM29 4 1864 WS1_AM30 4 1865 WS1_AM31 4 1866 WS1_AM32 4 1867 WS2_AM01 4 1868 WS2_AM02 4 1869 WS2_AM03 4 1870 WS2_AM04 4 28 The SAS System 15:27 Thursday, July 3, 2003 1871 WS2_AM05 4 1872 WS2_AM06 4 1873 WS2_AM07 4 1874 WS2_AM08 4 1875 WS2_AM09 4 1876 WS2_AM10 4 1877 WS2_AM11 4 1878 WS2_AM12 4 1879 WS2_AM13 4 1880 WS2_AM14 4 1881 WS2_AM15 4 1882 WS2_AM16 4 1883 WS2_AM17 4 1884 WS2_AM18 4 1885 WS2_AM19 4 1886 WS2_AM20 4 1887 WS2_AM21 4 1888 WS2_AM22 4 1889 WS2_AM23 4 1890 WS2_AM24 4 1891 WS2_AM25 4 1892 WS2_AM26 4 1893 WS2_AM27 4 1894 WS2_AM28 4 1895 WS2_AM29 4 1896 WS2_AM30 4 1897 WS2_AM31 4 1898 WS2_AM32 4 1899 W2028_01 8 1900 W2028_02 8 1901 W2028_03 8 1902 W2028_04 8 1903 W2028_05 8 1904 W2028_06 8 1905 W2028_07 8 1906 W2028_08 8 1907 W2028_09 8 1908 W2028_10 8 1909 W2028_11 8 1910 W2028_12 8 1911 W2028_13 8 1912 W2028_14 8 1913 W2028_15 8 1914 W2028_16 8 1915 W2028_17 8 1916 W2028_18 8 1917 W2028_19 8 1918 W2028_20 8 1919 W2028_21 8 1920 W2028_22 8 1921 W2028_23 8 1922 W2028_24 8 1923 W2028_25 8 1924 W2028_26 8 1925 W2028_27 8 1926 W2028_28 8 1927 W2028_29 8 1928 W2028_30 8 1929 W2028_31 8 1930 W2028_32 8 1931 W2128_01 8 1932 W2128_02 8 1933 W2128_03 8 1934 W2128_04 8 1935 W2128_05 8 1936 W2128_06 8 1937 W2128_07 8 1938 W2128_08 8 1939 W2128_09 8 1940 W2128_10 8 1941 W2128_11 8 1942 W2128_12 8 1943 W2128_13 8 1944 W2128_14 8 1945 W2128_15 8 1946 W2128_16 8 29 The SAS System 15:27 Thursday, July 3, 2003 1947 W2128_17 8 1948 W2128_18 8 1949 W2128_19 8 1950 W2128_20 8 1951 W2128_21 8 1952 W2128_22 8 1953 W2128_23 8 1954 W2128_24 8 1955 W2128_25 8 1956 W2128_26 8 1957 W2128_27 8 1958 W2128_28 8 1959 W2128_29 8 1960 W2128_30 8 1961 W2128_31 8 1962 W2128_32 8 1963 SE1_AM01 4 1964 SE1_AM02 4 1965 SE1_AM03 4 1966 SE1_AM04 4 1967 SE1_AM05 4 1968 SE1_AM06 4 1969 SE1_AM07 4 1970 SE1_AM08 4 1971 SE1_AM09 4 1972 SE1_AM10 4 1973 SE1_AM11 4 1974 SE1_AM12 4 1975 SE1_AM13 4 1976 SE1_AM14 4 1977 SE1_AM15 4 1978 SE1_AM16 4 1979 SE1_AM17 4 1980 SE1_AM18 4 1981 SE1_AM19 4 1982 SE1_AM20 4 1983 SE1_AM21 4 1984 SE1_AM22 4 1985 SE1_AM23 4 1986 SE1_AM24 4 1987 SE1_AM25 4 1988 SE1_AM26 4 1989 SE1_AM27 4 1990 SE1_AM28 4 1991 SE1_AM29 4 1992 SE1_AM30 4 1993 SE1_AM31 4 1994 SE1_AM32 4 1995 SE2_AM01 4 1996 SE2_AM02 4 1997 SE2_AM03 4 1998 SE2_AM04 4 1999 SE2_AM05 4 2000 SE2_AM06 4 2001 SE2_AM07 4 2002 SE2_AM08 4 2003 SE2_AM09 4 2004 SE2_AM10 4 2005 SE2_AM11 4 2006 SE2_AM12 4 2007 SE2_AM13 4 2008 SE2_AM14 4 2009 SE2_AM15 4 2010 SE2_AM16 4 2011 SE2_AM17 4 2012 SE2_AM18 4 2013 SE2_AM19 4 2014 SE2_AM20 4 2015 SE2_AM21 4 2016 SE2_AM22 4 2017 SE2_AM23 4 2018 SE2_AM24 4 2019 SE2_AM25 4 2020 SE2_AM26 4 2021 SE2_AM27 4 2022 SE2_AM28 4 30 The SAS System 15:27 Thursday, July 3, 2003 2023 SE2_AM29 4 2024 SE2_AM30 4 2025 SE2_AM31 4 2026 SE2_AM32 4 2027 G1_A1_01 4 2028 G1_A1_02 4 2029 G1_A1_03 4 2030 G1_A1_04 4 2031 G1_A1_05 4 2032 G1_A1_06 4 2033 G1_A1_07 4 2034 G1_A1_08 4 2035 G1_A1_09 4 2036 G1_A1_10 4 2037 G1_A1_11 4 2038 G1_A1_12 4 2039 G1_A1_13 4 2040 G1_A1_14 4 2041 G1_A1_15 4 2042 G1_A1_16 4 2043 G1_A1_17 4 2044 G1_A1_18 4 2045 G1_A1_19 4 2046 G1_A1_20 4 2047 G1_A1_21 4 2048 G1_A1_22 4 2049 G1_A1_23 4 2050 G1_A1_24 4 2051 G1_A1_25 4 2052 G1_A1_26 4 2053 G1_A1_27 4 2054 G1_A1_28 4 2055 G1_A1_29 4 2056 G1_A1_30 4 2057 G1_A1_31 4 2058 G1_A1_32 4 2059 G1_A2_01 4 2060 G1_A2_02 4 2061 G1_A2_03 4 2062 G1_A2_04 4 2063 G1_A2_05 4 2064 G1_A2_06 4 2065 G1_A2_07 4 2066 G1_A2_08 4 2067 G1_A2_09 4 2068 G1_A2_10 4 2069 G1_A2_11 4 2070 G1_A2_12 4 2071 G1_A2_13 4 2072 G1_A2_14 4 2073 G1_A2_15 4 2074 G1_A2_16 4 2075 G1_A2_17 4 2076 G1_A2_18 4 2077 G1_A2_19 4 2078 G1_A2_20 4 2079 G1_A2_21 4 2080 G1_A2_22 4 2081 G1_A2_23 4 2082 G1_A2_24 4 2083 G1_A2_25 4 2084 G1_A2_26 4 2085 G1_A2_27 4 2086 G1_A2_28 4 2087 G1_A2_29 4 2088 G1_A2_30 4 2089 G1_A2_31 4 2090 G1_A2_32 4 2091 G1_A3_01 4 2092 G1_A3_02 4 2093 G1_A3_03 4 2094 G1_A3_04 4 2095 G1_A3_05 4 2096 G1_A3_06 4 2097 G1_A3_07 4 2098 G1_A3_08 4 31 The SAS System 15:27 Thursday, July 3, 2003 2099 G1_A3_09 4 2100 G1_A3_10 4 2101 G1_A3_11 4 2102 G1_A3_12 4 2103 G1_A3_13 4 2104 G1_A3_14 4 2105 G1_A3_15 4 2106 G1_A3_16 4 2107 G1_A3_17 4 2108 G1_A3_18 4 2109 G1_A3_19 4 2110 G1_A3_20 4 2111 G1_A3_21 4 2112 G1_A3_22 4 2113 G1_A3_23 4 2114 G1_A3_24 4 2115 G1_A3_25 4 2116 G1_A3_26 4 2117 G1_A3_27 4 2118 G1_A3_28 4 2119 G1_A3_29 4 2120 G1_A3_30 4 2121 G1_A3_31 4 2122 G1_A3_32 4 2123 G1_A4_01 4 2124 G1_A4_02 4 2125 G1_A4_03 4 2126 G1_A4_04 4 2127 G1_A4_05 4 2128 G1_A4_06 4 2129 G1_A4_07 4 2130 G1_A4_08 4 2131 G1_A4_09 4 2132 G1_A4_10 4 2133 G1_A4_11 4 2134 G1_A4_12 4 2135 G1_A4_13 4 2136 G1_A4_14 4 2137 G1_A4_15 4 2138 G1_A4_16 4 2139 G1_A4_17 4 2140 G1_A4_18 4 2141 G1_A4_19 4 2142 G1_A4_20 4 2143 G1_A4_21 4 2144 G1_A4_22 4 2145 G1_A4_23 4 2146 G1_A4_24 4 2147 G1_A4_25 4 2148 G1_A4_26 4 2149 G1_A4_27 4 2150 G1_A4_28 4 2151 G1_A4_29 4 2152 G1_A4_30 4 2153 G1_A4_31 4 2154 G1_A4_32 4 2155 G1_A5_01 4 2156 G1_A5_02 4 2157 G1_A5_03 4 2158 G1_A5_04 4 2159 G1_A5_05 4 2160 G1_A5_06 4 2161 G1_A5_07 4 2162 G1_A5_08 4 2163 G1_A5_09 4 2164 G1_A5_10 4 2165 G1_A5_11 4 2166 G1_A5_12 4 2167 G1_A5_13 4 2168 G1_A5_14 4 2169 G1_A5_15 4 2170 G1_A5_16 4 2171 G1_A5_17 4 2172 G1_A5_18 4 2173 G1_A5_19 4 2174 G1_A5_20 4 32 The SAS System 15:27 Thursday, July 3, 2003 2175 G1_A5_21 4 2176 G1_A5_22 4 2177 G1_A5_23 4 2178 G1_A5_24 4 2179 G1_A5_25 4 2180 G1_A5_26 4 2181 G1_A5_27 4 2182 G1_A5_28 4 2183 G1_A5_29 4 2184 G1_A5_30 4 2185 G1_A5_31 4 2186 G1_A5_32 4 2187 G1_A6_01 4 2188 G1_A6_02 4 2189 G1_A6_03 4 2190 G1_A6_04 4 2191 G1_A6_05 4 2192 G1_A6_06 4 2193 G1_A6_07 4 2194 G1_A6_08 4 2195 G1_A6_09 4 2196 G1_A6_10 4 2197 G1_A6_11 4 2198 G1_A6_12 4 2199 G1_A6_13 4 2200 G1_A6_14 4 2201 G1_A6_15 4 2202 G1_A6_16 4 2203 G1_A6_17 4 2204 G1_A6_18 4 2205 G1_A6_19 4 2206 G1_A6_20 4 2207 G1_A6_21 4 2208 G1_A6_22 4 2209 G1_A6_23 4 2210 G1_A6_24 4 2211 G1_A6_25 4 2212 G1_A6_26 4 2213 G1_A6_27 4 2214 G1_A6_28 4 2215 G1_A6_29 4 2216 G1_A6_30 4 2217 G1_A6_31 4 2218 G1_A6_32 4 2219 G1_A7_01 4 2220 G1_A7_02 4 2221 G1_A7_03 4 2222 G1_A7_04 4 2223 G1_A7_05 4 2224 G1_A7_06 4 2225 G1_A7_07 4 2226 G1_A7_08 4 2227 G1_A7_09 4 2228 G1_A7_10 4 2229 G1_A7_11 4 2230 G1_A7_12 4 2231 G1_A7_13 4 2232 G1_A7_14 4 2233 G1_A7_15 4 2234 G1_A7_16 4 2235 G1_A7_17 4 2236 G1_A7_18 4 2237 G1_A7_19 4 2238 G1_A7_20 4 2239 G1_A7_21 4 2240 G1_A7_22 4 2241 G1_A7_23 4 2242 G1_A7_24 4 2243 G1_A7_25 4 2244 G1_A7_26 4 2245 G1_A7_27 4 2246 G1_A7_28 4 2247 G1_A7_29 4 2248 G1_A7_30 4 2249 G1_A7_31 4 2250 G1_A7_32 4 33 The SAS System 15:27 Thursday, July 3, 2003 2251 G1_A8_01 4 2252 G1_A8_02 4 2253 G1_A8_03 4 2254 G1_A8_04 4 2255 G1_A8_05 4 2256 G1_A8_06 4 2257 G1_A8_07 4 2258 G1_A8_08 4 2259 G1_A8_09 4 2260 G1_A8_10 4 2261 G1_A8_11 4 2262 G1_A8_12 4 2263 G1_A8_13 4 2264 G1_A8_14 4 2265 G1_A8_15 4 2266 G1_A8_16 4 2267 G1_A8_17 4 2268 G1_A8_18 4 2269 G1_A8_19 4 2270 G1_A8_20 4 2271 G1_A8_21 4 2272 G1_A8_22 4 2273 G1_A8_23 4 2274 G1_A8_24 4 2275 G1_A8_25 4 2276 G1_A8_26 4 2277 G1_A8_27 4 2278 G1_A8_28 4 2279 G1_A8_29 4 2280 G1_A8_30 4 2281 G1_A8_31 4 2282 G1_A8_32 4 2283 G1_A9_01 4 2284 G1_A9_02 4 2285 G1_A9_03 4 2286 G1_A9_04 4 2287 G1_A9_05 4 2288 G1_A9_06 4 2289 G1_A9_07 4 2290 G1_A9_08 4 2291 G1_A9_09 4 2292 G1_A9_10 4 2293 G1_A9_11 4 2294 G1_A9_12 4 2295 G1_A9_13 4 2296 G1_A9_14 4 2297 G1_A9_15 4 2298 G1_A9_16 4 2299 G1_A9_17 4 2300 G1_A9_18 4 2301 G1_A9_19 4 2302 G1_A9_20 4 2303 G1_A9_21 4 2304 G1_A9_22 4 2305 G1_A9_23 4 2306 G1_A9_24 4 2307 G1_A9_25 4 2308 G1_A9_26 4 2309 G1_A9_27 4 2310 G1_A9_28 4 2311 G1_A9_29 4 2312 G1_A9_30 4 2313 G1_A9_31 4 2314 G1_A9_32 4 2315 G1_A1001 4 2316 G1_A1002 4 2317 G1_A1003 4 2318 G1_A1004 4 2319 G1_A1005 4 2320 G1_A1006 4 2321 G1_A1007 4 2322 G1_A1008 4 2323 G1_A1009 4 2324 G1_A1010 4 2325 G1_A1011 4 2326 G1_A1012 4 34 The SAS System 15:27 Thursday, July 3, 2003 2327 G1_A1013 4 2328 G1_A1014 4 2329 G1_A1015 4 2330 G1_A1016 4 2331 G1_A1017 4 2332 G1_A1018 4 2333 G1_A1019 4 2334 G1_A1020 4 2335 G1_A1021 4 2336 G1_A1022 4 2337 G1_A1023 4 2338 G1_A1024 4 2339 G1_A1025 4 2340 G1_A1026 4 2341 G1_A1027 4 2342 G1_A1028 4 2343 G1_A1029 4 2344 G1_A1030 4 2345 G1_A1031 4 2346 G1_A1032 4 2347 G2A10001 5 2348 G2A10002 5 2349 G2A10003 5 2350 G2A10004 5 2351 G2A10005 5 2352 G2A10006 5 2353 G2A10007 5 2354 G2A10008 5 2355 G2A10009 5 2356 G2A10010 5 2357 G2A10011 5 2358 G2A10012 5 2359 G2A10013 5 2360 G2A10014 5 2361 G2A10015 5 2362 G2A10016 5 2363 G2A10017 5 2364 G2A10018 5 2365 G2A10019 5 2366 G2A10020 5 2367 G2A10021 5 2368 G2A10022 5 2369 G2A10023 5 2370 G2A10024 5 2371 G2A10025 5 2372 G2A10026 5 2373 G2A10027 5 2374 G2A10028 5 2375 G2A10029 5 2376 G2A10030 5 2377 G2A10031 5 2378 G2A10032 5 2379 G2A10401 5 2380 G2A10402 5 2381 G2A10403 5 2382 G2A10404 5 2383 G2A10405 5 2384 G2A10406 5 2385 G2A10407 5 2386 G2A10408 5 2387 G2A10409 5 2388 G2A10410 5 2389 G2A10411 5 2390 G2A10412 5 2391 G2A10413 5 2392 G2A10414 5 2393 G2A10415 5 2394 G2A10416 5 2395 G2A10417 5 2396 G2A10418 5 2397 G2A10419 5 2398 G2A10420 5 2399 G2A10421 5 2400 G2A10422 5 2401 G2A10423 5 2402 G2A10424 5 35 The SAS System 15:27 Thursday, July 3, 2003 2403 G2A10425 5 2404 G2A10426 5 2405 G2A10427 5 2406 G2A10428 5 2407 G2A10429 5 2408 G2A10430 5 2409 G2A10431 5 2410 G2A10432 5 2411 G2A11001 5 2412 G2A11002 5 2413 G2A11003 5 2414 G2A11004 5 2415 G2A11005 5 2416 G2A11006 5 2417 G2A11007 5 2418 G2A11008 5 2419 G2A11009 5 2420 G2A11010 5 2421 G2A11011 5 2422 G2A11012 5 2423 G2A11013 5 2424 G2A11014 5 2425 G2A11015 5 2426 G2A11016 5 2427 G2A11017 5 2428 G2A11018 5 2429 G2A11019 5 2430 G2A11020 5 2431 G2A11021 5 2432 G2A11022 5 2433 G2A11023 5 2434 G2A11024 5 2435 G2A11025 5 2436 G2A11026 5 2437 G2A11027 5 2438 G2A11028 5 2439 G2A11029 5 2440 G2A11030 5 2441 G2A11031 5 2442 G2A11032 5 2443 G2A12001 5 2444 G2A12002 5 2445 G2A12003 5 2446 G2A12004 5 2447 G2A12005 5 2448 G2A12006 5 2449 G2A12007 5 2450 G2A12008 5 2451 G2A12009 5 2452 G2A12010 5 2453 G2A12011 5 2454 G2A12012 5 2455 G2A12013 5 2456 G2A12014 5 2457 G2A12015 5 2458 G2A12016 5 2459 G2A12017 5 2460 G2A12018 5 2461 G2A12019 5 2462 G2A12020 5 2463 G2A12021 5 2464 G2A12022 5 2465 G2A12023 5 2466 G2A12024 5 2467 G2A12025 5 2468 G2A12026 5 2469 G2A12027 5 2470 G2A12028 5 2471 G2A12029 5 2472 G2A12030 5 2473 G2A12031 5 2474 G2A12032 5 2475 G2A13001 5 2476 G2A13002 5 2477 G2A13003 5 2478 G2A13004 5 36 The SAS System 15:27 Thursday, July 3, 2003 2479 G2A13005 5 2480 G2A13006 5 2481 G2A13007 5 2482 G2A13008 5 2483 G2A13009 5 2484 G2A13010 5 2485 G2A13011 5 2486 G2A13012 5 2487 G2A13013 5 2488 G2A13014 5 2489 G2A13015 5 2490 G2A13016 5 2491 G2A13017 5 2492 G2A13018 5 2493 G2A13019 5 2494 G2A13020 5 2495 G2A13021 5 2496 G2A13022 5 2497 G2A13023 5 2498 G2A13024 5 2499 G2A13025 5 2500 G2A13026 5 2501 G2A13027 5 2502 G2A13028 5 2503 G2A13029 5 2504 G2A13030 5 2505 G2A13031 5 2506 G2A13032 5 2507 G2A14001 5 2508 G2A14002 5 2509 G2A14003 5 2510 G2A14004 5 2511 G2A14005 5 2512 G2A14006 5 2513 G2A14007 5 2514 G2A14008 5 2515 G2A14009 5 2516 G2A14010 5 2517 G2A14011 5 2518 G2A14012 5 2519 G2A14013 5 2520 G2A14014 5 2521 G2A14015 5 2522 G2A14016 5 2523 G2A14017 5 2524 G2A14018 5 2525 G2A14019 5 2526 G2A14020 5 2527 G2A14021 5 2528 G2A14022 5 2529 G2A14023 5 2530 G2A14024 5 2531 G2A14025 5 2532 G2A14026 5 2533 G2A14027 5 2534 G2A14028 5 2535 G2A14029 5 2536 G2A14030 5 2537 G2A14031 5 2538 G2A14032 5 2539 DEFAULT=3; 2540 2541 2542 /*-------------------------------------------------------------------------------------*/ 2543 /* The following changes in variable names have been made, if necessary: 2544 '$' to 'd'; '-' to '_'; '%' to 'p'; 2545 2546 Note: Variable names in SAS are not case-sensitive */ 2547 2548 /*-------------------------------------------------------------------------------------*/ 2549 2550 INPUT 2551 2552 @1 SUSEQNUM 6. 2553 @7 ROT 1. 2554 @8 SU_ID $9. 37 The SAS System 15:27 Thursday, July 3, 2003 2555 @17 PP_ENTRY $2. 2556 @19 PP_PNUM $3. 2557 @22 SU_TOTPP 2. 2558 @24 PP_RCSEQ 2. 2559 @26 HH_ADD01 $2. 2560 @28 HH_ADD02 $2. 2561 @30 HH_ADD03 $2. 2562 @32 HH_ADD04 $2. 2563 @34 HH_ADD05 $2. 2564 @36 HH_ADD06 $2. 2565 @38 HH_ADD07 $2. 2566 @40 HH_ADD08 $2. 2567 @42 HH_ADD09 $2. 2568 @44 HH_ADD10 $2. 2569 @46 HH_ADD11 $2. 2570 @48 HH_ADD12 $2. 2571 @50 HH_ADD13 $2. 2572 @52 HH_ADD14 $2. 2573 @54 HH_ADD15 $2. 2574 @56 HH_ADD16 $2. 2575 @58 HH_ADD17 $2. 2576 @60 HH_ADD18 $2. 2577 @62 HH_ADD19 $2. 2578 @64 HH_ADD20 $2. 2579 @66 HH_ADD21 $2. 2580 @68 HH_ADD22 $2. 2581 @70 HH_ADD23 $2. 2582 @72 HH_ADD24 $2. 2583 @74 HH_ADD25 $2. 2584 @76 HH_ADD26 $2. 2585 @78 HH_ADD27 $2. 2586 @80 HH_ADD28 $2. 2587 @82 HH_ADD29 $2. 2588 @84 HH_ADD30 $2. 2589 @86 HH_ADD31 $2. 2590 @88 HH_ADD32 $2. 2591 @90 PP_INTV1 1. 2592 @91 PP_INTV2 1. 2593 @92 PP_INTV3 1. 2594 @93 PP_INTV4 1. 2595 @94 PP_INTV5 1. 2596 @95 PP_INTV6 1. 2597 @96 PP_INTV7 1. 2598 @97 PP_INTV8 1. 2599 @98 PP_MIS01 1. 2600 @99 PP_MIS02 1. 2601 @100 PP_MIS03 1. 2602 @101 PP_MIS04 1. 2603 @102 PP_MIS05 1. 2604 @103 PP_MIS06 1. 2605 @104 PP_MIS07 1. 2606 @105 PP_MIS08 1. 2607 @106 PP_MIS09 1. 2608 @107 PP_MIS10 1. 2609 @108 PP_MIS11 1. 2610 @109 PP_MIS12 1. 2611 @110 PP_MIS13 1. 2612 @111 PP_MIS14 1. 2613 @112 PP_MIS15 1. 2614 @113 PP_MIS16 1. 2615 @114 PP_MIS17 1. 2616 @115 PP_MIS18 1. 2617 @116 PP_MIS19 1. 2618 @117 PP_MIS20 1. 2619 @118 PP_MIS21 1. 2620 @119 PP_MIS22 1. 2621 @120 PP_MIS23 1. 2622 @121 PP_MIS24 1. 2623 @122 PP_MIS25 1. 2624 @123 PP_MIS26 1. 2625 @124 PP_MIS27 1. 2626 @125 PP_MIS28 1. 2627 @126 PP_MIS29 1. 2628 @127 PP_MIS30 1. 2629 @128 PP_MIS31 1. 2630 @129 PP_MIS32 1. 38 The SAS System 15:27 Thursday, July 3, 2003 2631 @130 REASLEF1 1. 2632 @131 REASLEF2 1. 2633 @132 REASLEF3 1. 2634 @133 REASLEF4 1. 2635 @134 REASLEF5 1. 2636 @135 REASLEF6 1. 2637 @136 REASLEF7 1. 2638 @137 REASLEF8 1. 2639 @138 HHINST01 2. 2640 @140 HHINST02 2. 2641 @142 HHINST03 2. 2642 @144 HHINST04 2. 2643 @146 HHINST05 2. 2644 @148 HHINST06 2. 2645 @150 HHINST07 2. 2646 @152 HHINST08 2. 2647 @154 HHINST09 2. 2648 @156 HHINST10 2. 2649 @158 HHINST11 2. 2650 @160 HHINST12 2. 2651 @162 HHINST13 2. 2652 @164 HHINST14 2. 2653 @166 HHINST15 2. 2654 @168 HHINST16 2. 2655 @170 HHINST17 2. 2656 @172 HHINST18 2. 2657 @174 HHINST19 2. 2658 @176 HHINST20 2. 2659 @178 HHINST21 2. 2660 @180 HHINST22 2. 2661 @182 HHINST23 2. 2662 @184 HHINST24 2. 2663 @186 HHINST25 2. 2664 @188 HHINST26 2. 2665 @190 HHINST27 2. 2666 @192 HHINST28 2. 2667 @194 HHINST29 2. 2668 @196 HHINST30 2. 2669 @198 HHINST31 2. 2670 @200 HHINST32 2. 2671 @202 PNLWGT 12.4 2672 @214 FNLWGT86 12.4 2673 @226 FNLWGT87 12.4 2674 @238 SU_RGC 3. 2675 @241 HSC 1. 2676 @242 STRAT 2. 2677 @244 LGTHHT01 1. 2678 @245 LGTHHT02 1. 2679 @246 LGTHHT03 1. 2680 @247 LGTHHT04 1. 2681 @248 LGTHHT05 1. 2682 @249 LGTHHT06 1. 2683 @250 LGTHHT07 1. 2684 @251 LGTHHT08 1. 2685 @252 LGTHHT09 1. 2686 @253 LGTHHT10 1. 2687 @254 LGTHHT11 1. 2688 @255 LGTHHT12 1. 2689 @256 LGTHHT13 1. 2690 @257 LGTHHT14 1. 2691 @258 LGTHHT15 1. 2692 @259 LGTHHT16 1. 2693 @260 LGTHHT17 1. 2694 @261 LGTHHT18 1. 2695 @262 LGTHHT19 1. 2696 @263 LGTHHT20 1. 2697 @264 LGTHHT21 1. 2698 @265 LGTHHT22 1. 2699 @266 LGTHHT23 1. 2700 @267 LGTHHT24 1. 2701 @268 LGTHHT25 1. 2702 @269 LGTHHT26 1. 2703 @270 LGTHHT27 1. 2704 @271 LGTHHT28 1. 2705 @272 LGTHHT29 1. 2706 @273 LGTHHT30 1. 39 The SAS System 15:27 Thursday, July 3, 2003 2707 @274 LGTHHT31 1. 2708 @275 LGTHHT32 1. 2709 @276 LGTKEY01 3. 2710 @279 LGTKEY02 3. 2711 @282 LGTKEY03 3. 2712 @285 LGTKEY04 3. 2713 @288 LGTKEY05 3. 2714 @291 LGTKEY06 3. 2715 @294 LGTKEY07 3. 2716 @297 LGTKEY08 3. 2717 @300 LGTKEY09 3. 2718 @303 LGTKEY10 3. 2719 @306 LGTKEY11 3. 2720 @309 LGTKEY12 3. 2721 @312 LGTKEY13 3. 2722 @315 LGTKEY14 3. 2723 @318 LGTKEY15 3. 2724 @321 LGTKEY16 3. 2725 @324 LGTKEY17 3. 2726 @327 LGTKEY18 3. 2727 @330 LGTKEY19 3. 2728 @333 LGTKEY20 3. 2729 @336 LGTKEY21 3. 2730 @339 LGTKEY22 3. 2731 @342 LGTKEY23 3. 2732 @345 LGTKEY24 3. 2733 @348 LGTKEY25 3. 2734 @351 LGTKEY26 3. 2735 @354 LGTKEY27 3. 2736 @357 LGTKEY28 3. 2737 @360 LGTKEY29 3. 2738 @363 LGTKEY30 3. 2739 @366 LGTKEY31 3. 2740 @369 LGTKEY32 3. 2741 @372 LGTOTH01 3. 2742 @375 LGTOTH02 3. 2743 @378 LGTOTH03 3. 2744 @381 LGTOTH04 3. 2745 @384 LGTOTH05 3. 2746 @387 LGTOTH06 3. 2747 @390 LGTOTH07 3. 2748 @393 LGTOTH08 3. 2749 @396 LGTOTH09 3. 2750 @399 LGTOTH10 3. 2751 @402 LGTOTH11 3. 2752 @405 LGTOTH12 3. 2753 @408 LGTOTH13 3. 2754 @411 LGTOTH14 3. 2755 @414 LGTOTH15 3. 2756 @417 LGTOTH16 3. 2757 @420 LGTOTH17 3. 2758 @423 LGTOTH18 3. 2759 @426 LGTOTH19 3. 2760 @429 LGTOTH20 3. 2761 @432 LGTOTH21 3. 2762 @435 LGTOTH22 3. 2763 @438 LGTOTH23 3. 2764 @441 LGTOTH24 3. 2765 @444 LGTOTH25 3. 2766 @447 LGTOTH26 3. 2767 @450 LGTOTH27 3. 2768 @453 LGTOTH28 3. 2769 @456 LGTOTH29 3. 2770 @459 LGTOTH30 3. 2771 @462 LGTOTH31 3. 2772 @465 LGTOTH32 3. 2773 @468 LGTFA101 12.4 2774 @480 LGTFA102 12.4 2775 @492 LGTFA103 12.4 2776 @504 LGTFA104 12.4 2777 @516 LGTFA105 12.4 2778 @528 LGTFA106 12.4 2779 @540 LGTFA107 12.4 2780 @552 LGTFA108 12.4 2781 @564 LGTFA109 12.4 2782 @576 LGTFA110 12.4 40 The SAS System 15:27 Thursday, July 3, 2003 2783 @588 LGTFA111 12.4 2784 @600 LGTFA112 12.4 2785 @612 LGTFA113 12.4 2786 @624 LGTFA114 12.4 2787 @636 LGTFA115 12.4 2788 @648 LGTFA116 12.4 2789 @660 LGTFA117 12.4 2790 @672 LGTFA118 12.4 2791 @684 LGTFA119 12.4 2792 @696 LGTFA120 12.4 2793 @708 LGTFA121 12.4 2794 @720 LGTFA122 12.4 2795 @732 LGTFA123 12.4 2796 @744 LGTFA124 12.4 2797 @756 LGTFA125 12.4 2798 @768 LGTFA126 12.4 2799 @780 LGTFA127 12.4 2800 @792 LGTFA128 12.4 2801 @804 LGTFA129 12.4 2802 @816 LGTFA130 12.4 2803 @828 LGTFA131 12.4 2804 @840 LGTFA132 12.4 2805 @852 LGTFA201 12.4 2806 @864 LGTFA202 12.4 2807 @876 LGTFA203 12.4 2808 @888 LGTFA204 12.4 2809 @900 LGTFA205 12.4 2810 @912 LGTFA206 12.4 2811 @924 LGTFA207 12.4 2812 @936 LGTFA208 12.4 2813 @948 LGTFA209 12.4 2814 @960 LGTFA210 12.4 2815 @972 LGTFA211 12.4 2816 @984 LGTFA212 12.4 2817 @996 LGTFA213 12.4 2818 @1008 LGTFA214 12.4 2819 @1020 LGTFA215 12.4 2820 @1032 LGTFA216 12.4 2821 @1044 LGTFA217 12.4 2822 @1056 LGTFA218 12.4 2823 @1068 LGTFA219 12.4 2824 @1080 LGTFA220 12.4 2825 @1092 LGTFA221 12.4 2826 @1104 LGTFA222 12.4 2827 @1116 LGTFA223 12.4 2828 @1128 LGTFA224 12.4 2829 @1140 LGTFA225 12.4 2830 @1152 LGTFA226 12.4 2831 @1164 LGTFA227 12.4 2832 @1176 LGTFA228 12.4 2833 @1188 LGTFA229 12.4 2834 @1200 LGTFA230 12.4 2835 @1212 LGTFA231 12.4 2836 @1224 LGTFA232 12.4 2837 @1236 SEX 1. 2838 @1237 RACE 1. 2839 @1238 ETHNICTY 2. 2840 @1240 RRP_01 1. 2841 @1241 RRP_02 1. 2842 @1242 RRP_03 1. 2843 @1243 RRP_04 1. 2844 @1244 RRP_05 1. 2845 @1245 RRP_06 1. 2846 @1246 RRP_07 1. 2847 @1247 RRP_08 1. 2848 @1248 RRP_09 1. 2849 @1249 RRP_10 1. 2850 @1250 RRP_11 1. 2851 @1251 RRP_12 1. 2852 @1252 RRP_13 1. 2853 @1253 RRP_14 1. 2854 @1254 RRP_15 1. 2855 @1255 RRP_16 1. 2856 @1256 RRP_17 1. 2857 @1257 RRP_18 1. 2858 @1258 RRP_19 1. 41 The SAS System 15:27 Thursday, July 3, 2003 2859 @1259 RRP_20 1. 2860 @1260 RRP_21 1. 2861 @1261 RRP_22 1. 2862 @1262 RRP_23 1. 2863 @1263 RRP_24 1. 2864 @1264 RRP_25 1. 2865 @1265 RRP_26 1. 2866 @1266 RRP_27 1. 2867 @1267 RRP_28 1. 2868 @1268 RRP_29 1. 2869 @1269 RRP_30 1. 2870 @1270 RRP_31 1. 2871 @1271 RRP_32 1. 2872 @1272 AGE_01 2. 2873 @1274 AGE_02 2. 2874 @1276 AGE_03 2. 2875 @1278 AGE_04 2. 2876 @1280 AGE_05 2. 2877 @1282 AGE_06 2. 2878 @1284 AGE_07 2. 2879 @1286 AGE_08 2. 2880 @1288 AGE_09 2. 2881 @1290 AGE_10 2. 2882 @1292 AGE_11 2. 2883 @1294 AGE_12 2. 2884 @1296 AGE_13 2. 2885 @1298 AGE_14 2. 2886 @1300 AGE_15 2. 2887 @1302 AGE_16 2. 2888 @1304 AGE_17 2. 2889 @1306 AGE_18 2. 2890 @1308 AGE_19 2. 2891 @1310 AGE_20 2. 2892 @1312 AGE_21 2. 2893 @1314 AGE_22 2. 2894 @1316 AGE_23 2. 2895 @1318 AGE_24 2. 2896 @1320 AGE_25 2. 2897 @1322 AGE_26 2. 2898 @1324 AGE_27 2. 2899 @1326 AGE_28 2. 2900 @1328 AGE_29 2. 2901 @1330 AGE_30 2. 2902 @1332 AGE_31 2. 2903 @1334 AGE_32 2. 2904 @1336 MS_01 1. 2905 @1337 MS_02 1. 2906 @1338 MS_03 1. 2907 @1339 MS_04 1. 2908 @1340 MS_05 1. 2909 @1341 MS_06 1. 2910 @1342 MS_07 1. 2911 @1343 MS_08 1. 2912 @1344 MS_09 1. 2913 @1345 MS_10 1. 2914 @1346 MS_11 1. 2915 @1347 MS_12 1. 2916 @1348 MS_13 1. 2917 @1349 MS_14 1. 2918 @1350 MS_15 1. 2919 @1351 MS_16 1. 2920 @1352 MS_17 1. 2921 @1353 MS_18 1. 2922 @1354 MS_19 1. 2923 @1355 MS_20 1. 2924 @1356 MS_21 1. 2925 @1357 MS_22 1. 2926 @1358 MS_23 1. 2927 @1359 MS_24 1. 2928 @1360 MS_25 1. 2929 @1361 MS_26 1. 2930 @1362 MS_27 1. 2931 @1363 MS_28 1. 2932 @1364 MS_29 1. 2933 @1365 MS_30 1. 2934 @1366 MS_31 1. 42 The SAS System 15:27 Thursday, July 3, 2003 2935 @1367 MS_32 1. 2936 @1368 FAMTYP01 1. 2937 @1369 FAMTYP02 1. 2938 @1370 FAMTYP03 1. 2939 @1371 FAMTYP04 1. 2940 @1372 FAMTYP05 1. 2941 @1373 FAMTYP06 1. 2942 @1374 FAMTYP07 1. 2943 @1375 FAMTYP08 1. 2944 @1376 FAMTYP09 1. 2945 @1377 FAMTYP10 1. 2946 @1378 FAMTYP11 1. 2947 @1379 FAMTYP12 1. 2948 @1380 FAMTYP13 1. 2949 @1381 FAMTYP14 1. 2950 @1382 FAMTYP15 1. 2951 @1383 FAMTYP16 1. 2952 @1384 FAMTYP17 1. 2953 @1385 FAMTYP18 1. 2954 @1386 FAMTYP19 1. 2955 @1387 FAMTYP20 1. 2956 @1388 FAMTYP21 1. 2957 @1389 FAMTYP22 1. 2958 @1390 FAMTYP23 1. 2959 @1391 FAMTYP24 1. 2960 @1392 FAMTYP25 1. 2961 @1393 FAMTYP26 1. 2962 @1394 FAMTYP27 1. 2963 @1395 FAMTYP28 1. 2964 @1396 FAMTYP29 1. 2965 @1397 FAMTYP30 1. 2966 @1398 FAMTYP31 1. 2967 @1399 FAMTYP32 1. 2968 @1400 FAMREL01 1. 2969 @1401 FAMREL02 1. 2970 @1402 FAMREL03 1. 2971 @1403 FAMREL04 1. 2972 @1404 FAMREL05 1. 2973 @1405 FAMREL06 1. 2974 @1406 FAMREL07 1. 2975 @1407 FAMREL08 1. 2976 @1408 FAMREL09 1. 2977 @1409 FAMREL10 1. 2978 @1410 FAMREL11 1. 2979 @1411 FAMREL12 1. 2980 @1412 FAMREL13 1. 2981 @1413 FAMREL14 1. 2982 @1414 FAMREL15 1. 2983 @1415 FAMREL16 1. 2984 @1416 FAMREL17 1. 2985 @1417 FAMREL18 1. 2986 @1418 FAMREL19 1. 2987 @1419 FAMREL20 1. 2988 @1420 FAMREL21 1. 2989 @1421 FAMREL22 1. 2990 @1422 FAMREL23 1. 2991 @1423 FAMREL24 1. 2992 @1424 FAMREL25 1. 2993 @1425 FAMREL26 1. 2994 @1426 FAMREL27 1. 2995 @1427 FAMREL28 1. 2996 @1428 FAMREL29 1. 2997 @1429 FAMREL30 1. 2998 @1430 FAMREL31 1. 2999 @1431 FAMREL32 1. 3000 @1432 FAMNUM01 1. 3001 @1433 FAMNUM02 1. 3002 @1434 FAMNUM03 1. 3003 @1435 FAMNUM04 1. 3004 @1436 FAMNUM05 1. 3005 @1437 FAMNUM06 1. 3006 @1438 FAMNUM07 1. 3007 @1439 FAMNUM08 1. 3008 @1440 FAMNUM09 1. 3009 @1441 FAMNUM10 1. 3010 @1442 FAMNUM11 1. 43 The SAS System 15:27 Thursday, July 3, 2003 3011 @1443 FAMNUM12 1. 3012 @1444 FAMNUM13 1. 3013 @1445 FAMNUM14 1. 3014 @1446 FAMNUM15 1. 3015 @1447 FAMNUM16 1. 3016 @1448 FAMNUM17 1. 3017 @1449 FAMNUM18 1. 3018 @1450 FAMNUM19 1. 3019 @1451 FAMNUM20 1. 3020 @1452 FAMNUM21 1. 3021 @1453 FAMNUM22 1. 3022 @1454 FAMNUM23 1. 3023 @1455 FAMNUM24 1. 3024 @1456 FAMNUM25 1. 3025 @1457 FAMNUM26 1. 3026 @1458 FAMNUM27 1. 3027 @1459 FAMNUM28 1. 3028 @1460 FAMNUM29 1. 3029 @1461 FAMNUM30 1. 3030 @1462 FAMNUM31 1. 3031 @1463 FAMNUM32 1. 3032 @1464 PNSP_01 3. 3033 @1467 PNSP_02 3. 3034 @1470 PNSP_03 3. 3035 @1473 PNSP_04 3. 3036 @1476 PNSP_05 3. 3037 @1479 PNSP_06 3. 3038 @1482 PNSP_07 3. 3039 @1485 PNSP_08 3. 3040 @1488 PNSP_09 3. 3041 @1491 PNSP_10 3. 3042 @1494 PNSP_11 3. 3043 @1497 PNSP_12 3. 3044 @1500 PNSP_13 3. 3045 @1503 PNSP_14 3. 3046 @1506 PNSP_15 3. 3047 @1509 PNSP_16 3. 3048 @1512 PNSP_17 3. 3049 @1515 PNSP_18 3. 3050 @1518 PNSP_19 3. 3051 @1521 PNSP_20 3. 3052 @1524 PNSP_21 3. 3053 @1527 PNSP_22 3. 3054 @1530 PNSP_23 3. 3055 @1533 PNSP_24 3. 3056 @1536 PNSP_25 3. 3057 @1539 PNSP_26 3. 3058 @1542 PNSP_27 3. 3059 @1545 PNSP_28 3. 3060 @1548 PNSP_29 3. 3061 @1551 PNSP_30 3. 3062 @1554 PNSP_31 3. 3063 @1557 PNSP_32 3. 3064 @1560 ENT_SP01 2. 3065 @1562 ENT_SP02 2. 3066 @1564 ENT_SP03 2. 3067 @1566 ENT_SP04 2. 3068 @1568 ENT_SP05 2. 3069 @1570 ENT_SP06 2. 3070 @1572 ENT_SP07 2. 3071 @1574 ENT_SP08 2. 3072 @1576 ENT_SP09 2. 3073 @1578 ENT_SP10 2. 3074 @1580 ENT_SP11 2. 3075 @1582 ENT_SP12 2. 3076 @1584 ENT_SP13 2. 3077 @1586 ENT_SP14 2. 3078 @1588 ENT_SP15 2. 3079 @1590 ENT_SP16 2. 3080 @1592 ENT_SP17 2. 3081 @1594 ENT_SP18 2. 3082 @1596 ENT_SP19 2. 3083 @1598 ENT_SP20 2. 3084 @1600 ENT_SP21 2. 3085 @1602 ENT_SP22 2. 3086 @1604 ENT_SP23 2. 44 The SAS System 15:27 Thursday, July 3, 2003 3087 @1606 ENT_SP24 2. 3088 @1608 ENT_SP25 2. 3089 @1610 ENT_SP26 2. 3090 @1612 ENT_SP27 2. 3091 @1614 ENT_SP28 2. 3092 @1616 ENT_SP29 2. 3093 @1618 ENT_SP30 2. 3094 @1620 ENT_SP31 2. 3095 @1622 ENT_SP32 2. 3096 @1624 PNPT_01 3. 3097 @1627 PNPT_02 3. 3098 @1630 PNPT_03 3. 3099 @1633 PNPT_04 3. 3100 @1636 PNPT_05 3. 3101 @1639 PNPT_06 3. 3102 @1642 PNPT_07 3. 3103 @1645 PNPT_08 3. 3104 @1648 PNPT_09 3. 3105 @1651 PNPT_10 3. 3106 @1654 PNPT_11 3. 3107 @1657 PNPT_12 3. 3108 @1660 PNPT_13 3. 3109 @1663 PNPT_14 3. 3110 @1666 PNPT_15 3. 3111 @1669 PNPT_16 3. 3112 @1672 PNPT_17 3. 3113 @1675 PNPT_18 3. 3114 @1678 PNPT_19 3. 3115 @1681 PNPT_20 3. 3116 @1684 PNPT_21 3. 3117 @1687 PNPT_22 3. 3118 @1690 PNPT_23 3. 3119 @1693 PNPT_24 3. 3120 @1696 PNPT_25 3. 3121 @1699 PNPT_26 3. 3122 @1702 PNPT_27 3. 3123 @1705 PNPT_28 3. 3124 @1708 PNPT_29 3. 3125 @1711 PNPT_30 3. 3126 @1714 PNPT_31 3. 3127 @1717 PNPT_32 3. 3128 @1720 ENT_PT01 2. 3129 @1722 ENT_PT02 2. 3130 @1724 ENT_PT03 2. 3131 @1726 ENT_PT04 2. 3132 @1728 ENT_PT05 2. 3133 @1730 ENT_PT06 2. 3134 @1732 ENT_PT07 2. 3135 @1734 ENT_PT08 2. 3136 @1736 ENT_PT09 2. 3137 @1738 ENT_PT10 2. 3138 @1740 ENT_PT11 2. 3139 @1742 ENT_PT12 2. 3140 @1744 ENT_PT13 2. 3141 @1746 ENT_PT14 2. 3142 @1748 ENT_PT15 2. 3143 @1750 ENT_PT16 2. 3144 @1752 ENT_PT17 2. 3145 @1754 ENT_PT18 2. 3146 @1756 ENT_PT19 2. 3147 @1758 ENT_PT20 2. 3148 @1760 ENT_PT21 2. 3149 @1762 ENT_PT22 2. 3150 @1764 ENT_PT23 2. 3151 @1766 ENT_PT24 2. 3152 @1768 ENT_PT25 2. 3153 @1770 ENT_PT26 2. 3154 @1772 ENT_PT27 2. 3155 @1774 ENT_PT28 2. 3156 @1776 ENT_PT29 2. 3157 @1778 ENT_PT30 2. 3158 @1780 ENT_PT31 2. 3159 @1782 ENT_PT32 2. 3160 @1784 HIGRADE1 2. 3161 @1786 HIGRADE2 2. 3162 @1788 HIGRADE3 2. 45 The SAS System 15:27 Thursday, July 3, 2003 3163 @1790 HIGRADE4 2. 3164 @1792 HIGRADE5 2. 3165 @1794 HIGRADE6 2. 3166 @1796 HIGRADE7 2. 3167 @1798 HIGRADE8 2. 3168 @1800 GRD_CMP1 1. 3169 @1801 GRD_CMP2 1. 3170 @1802 GRD_CMP3 1. 3171 @1803 GRD_CMP4 1. 3172 @1804 GRD_CMP5 1. 3173 @1805 GRD_CMP6 1. 3174 @1806 GRD_CMP7 1. 3175 @1807 GRD_CMP8 1. 3176 @1808 U_VET_1 1. 3177 @1809 U_VET_2 1. 3178 @1810 U_VET_3 1. 3179 @1811 U_VET_4 1. 3180 @1812 U_VET_5 1. 3181 @1813 U_VET_6 1. 3182 @1814 U_VET_7 1. 3183 @1815 U_VET_8 1. 3184 @1816 IN_AF_1 1. 3185 @1817 IN_AF_2 1. 3186 @1818 IN_AF_3 1. 3187 @1819 IN_AF_4 1. 3188 @1820 IN_AF_5 1. 3189 @1821 IN_AF_6 1. 3190 @1822 IN_AF_7 1. 3191 @1823 IN_AF_8 1. 3192 @1824 USRV1_1 1. 3193 @1825 USRV1_2 1. 3194 @1826 USRV1_3 1. 3195 @1827 USRV1_4 1. 3196 @1828 USRV1_5 1. 3197 @1829 USRV1_6 1. 3198 @1830 USRV1_7 1. 3199 @1831 USRV1_8 1. 3200 @1832 USRV2_1 1. 3201 @1833 USRV2_2 1. 3202 @1834 USRV2_3 1. 3203 @1835 USRV2_4 1. 3204 @1836 USRV2_5 1. 3205 @1837 USRV2_6 1. 3206 @1838 USRV2_7 1. 3207 @1839 USRV2_8 1. 3208 @1840 USRV3_1 1. 3209 @1841 USRV3_2 1. 3210 @1842 USRV3_3 1. 3211 @1843 USRV3_4 1. 3212 @1844 USRV3_5 1. 3213 @1845 USRV3_6 1. 3214 @1846 USRV3_7 1. 3215 @1847 USRV3_8 1. 3216 @1848 BRTHMN 2. 3217 @1850 BRTHYR 4. 3218 @1854 U_PNGD1 3. 3219 @1857 U_PNGD2 3. 3220 @1860 U_PNGD3 3. 3221 @1863 U_PNGD4 3. 3222 @1866 U_PNGD5 3. 3223 @1869 U_PNGD6 3. 3224 @1872 U_PNGD7 3. 3225 @1875 U_PNGD8 3. 3226 @1878 ENTID_G1 2. 3227 @1880 ENTID_G2 2. 3228 @1882 ENTID_G3 2. 3229 @1884 ENTID_G4 2. 3230 @1886 ENTID_G5 2. 3231 @1888 ENTID_G6 2. 3232 @1890 ENTID_G7 2. 3233 @1892 ENTID_G8 2. 3234 @1894 U_LVQT01 2. 3235 @1896 U_LVQT02 2. 3236 @1898 U_LVQT03 2. 3237 @1900 U_LVQT04 2. 3238 @1902 U_LVQT05 2. 46 The SAS System 15:27 Thursday, July 3, 2003 3239 @1904 U_LVQT06 2. 3240 @1906 U_LVQT07 2. 3241 @1908 U_LVQT08 2. 3242 @1910 U_LVQT09 2. 3243 @1912 U_LVQT10 2. 3244 @1914 U_LVQT11 2. 3245 @1916 U_LVQT12 2. 3246 @1918 U_LVQT13 2. 3247 @1920 U_LVQT14 2. 3248 @1922 U_LVQT15 2. 3249 @1924 U_LVQT16 2. 3250 @1926 U_LVQT17 2. 3251 @1928 U_LVQT18 2. 3252 @1930 U_LVQT19 2. 3253 @1932 U_LVQT20 2. 3254 @1934 U_LVQT21 2. 3255 @1936 U_LVQT22 2. 3256 @1938 U_LVQT23 2. 3257 @1940 U_LVQT24 2. 3258 @1942 U_LVQT25 2. 3259 @1944 U_LVQT26 2. 3260 @1946 U_LVQT27 2. 3261 @1948 U_LVQT28 2. 3262 @1950 U_LVQT29 2. 3263 @1952 U_LVQT30 2. 3264 @1954 U_LVQT31 2. 3265 @1956 U_LVQT32 2. 3266 @1958 TENURE01 1. 3267 @1959 TENURE02 1. 3268 @1960 TENURE03 1. 3269 @1961 TENURE04 1. 3270 @1962 TENURE05 1. 3271 @1963 TENURE06 1. 3272 @1964 TENURE07 1. 3273 @1965 TENURE08 1. 3274 @1966 TENURE09 1. 3275 @1967 TENURE10 1. 3276 @1968 TENURE11 1. 3277 @1969 TENURE12 1. 3278 @1970 TENURE13 1. 3279 @1971 TENURE14 1. 3280 @1972 TENURE15 1. 3281 @1973 TENURE16 1. 3282 @1974 TENURE17 1. 3283 @1975 TENURE18 1. 3284 @1976 TENURE19 1. 3285 @1977 TENURE20 1. 3286 @1978 TENURE21 1. 3287 @1979 TENURE22 1. 3288 @1980 TENURE23 1. 3289 @1981 TENURE24 1. 3290 @1982 TENURE25 1. 3291 @1983 TENURE26 1. 3292 @1984 TENURE27 1. 3293 @1985 TENURE28 1. 3294 @1986 TENURE29 1. 3295 @1987 TENURE30 1. 3296 @1988 TENURE31 1. 3297 @1989 TENURE32 1. 3298 @1990 PUBHS_01 1. 3299 @1991 PUBHS_02 1. 3300 @1992 PUBHS_03 1. 3301 @1993 PUBHS_04 1. 3302 @1994 PUBHS_05 1. 3303 @1995 PUBHS_06 1. 3304 @1996 PUBHS_07 1. 3305 @1997 PUBHS_08 1. 3306 @1998 PUBHS_09 1. 3307 @1999 PUBHS_10 1. 3308 @2000 PUBHS_11 1. 3309 @2001 PUBHS_12 1. 3310 @2002 PUBHS_13 1. 3311 @2003 PUBHS_14 1. 3312 @2004 PUBHS_15 1. 3313 @2005 PUBHS_16 1. 3314 @2006 PUBHS_17 1. 47 The SAS System 15:27 Thursday, July 3, 2003 3315 @2007 PUBHS_18 1. 3316 @2008 PUBHS_19 1. 3317 @2009 PUBHS_20 1. 3318 @2010 PUBHS_21 1. 3319 @2011 PUBHS_22 1. 3320 @2012 PUBHS_23 1. 3321 @2013 PUBHS_24 1. 3322 @2014 PUBHS_25 1. 3323 @2015 PUBHS_26 1. 3324 @2016 PUBHS_27 1. 3325 @2017 PUBHS_28 1. 3326 @2018 PUBHS_29 1. 3327 @2019 PUBHS_30 1. 3328 @2020 PUBHS_31 1. 3329 @2021 PUBHS_32 1. 3330 @2022 LOW_RE01 1. 3331 @2023 LOW_RE02 1. 3332 @2024 LOW_RE03 1. 3333 @2025 LOW_RE04 1. 3334 @2026 LOW_RE05 1. 3335 @2027 LOW_RE06 1. 3336 @2028 LOW_RE07 1. 3337 @2029 LOW_RE08 1. 3338 @2030 LOW_RE09 1. 3339 @2031 LOW_RE10 1. 3340 @2032 LOW_RE11 1. 3341 @2033 LOW_RE12 1. 3342 @2034 LOW_RE13 1. 3343 @2035 LOW_RE14 1. 3344 @2036 LOW_RE15 1. 3345 @2037 LOW_RE16 1. 3346 @2038 LOW_RE17 1. 3347 @2039 LOW_RE18 1. 3348 @2040 LOW_RE19 1. 3349 @2041 LOW_RE20 1. 3350 @2042 LOW_RE21 1. 3351 @2043 LOW_RE22 1. 3352 @2044 LOW_RE23 1. 3353 @2045 LOW_RE24 1. 3354 @2046 LOW_RE25 1. 3355 @2047 LOW_RE26 1. 3356 @2048 LOW_RE27 1. 3357 @2049 LOW_RE28 1. 3358 @2050 LOW_RE29 1. 3359 @2051 LOW_RE30 1. 3360 @2052 LOW_RE31 1. 3361 @2053 LOW_RE32 1. 3362 @2054 ADDID51 2. 3363 @2056 ADDID52 2. 3364 @2058 ADDID53 2. 3365 @2060 ADDID54 2. 3366 @2062 ADDID55 2. 3367 @2064 ADDID56 2. 3368 @2066 ADDID57 2. 3369 @2068 ADDID58 2. 3370 @2070 ENRGY_Y1 1. 3371 @2071 ENRGY_Y2 1. 3372 @2072 ENRGY_Y3 1. 3373 @2073 ENRGY_Y4 1. 3374 @2074 ENRGY_Y5 1. 3375 @2075 ENRGY_Y6 1. 3376 @2076 ENRGY_Y7 1. 3377 @2077 ENRGY_Y8 1. 3378 @2078 H_ENRGY1 1. 3379 @2079 H_ENRGY2 1. 3380 @2080 H_ENRGY3 1. 3381 @2081 H_ENRGY4 1. 3382 @2082 H_ENRGY5 1. 3383 @2083 H_ENRGY6 1. 3384 @2084 H_ENRGY7 1. 3385 @2085 H_ENRGY8 1. 3386 @2086 H_48241 6. 3387 @2092 H_48242 6. 3388 @2098 H_48243 6. 3389 @2104 H_48244 6. 3390 @2110 H_48245 6. 48 The SAS System 15:27 Thursday, July 3, 2003 3391 @2116 H_48246 6. 3392 @2122 H_48247 6. 3393 @2128 H_48248 6. 3394 @2134 H_LUNCH1 1. 3395 @2135 H_LUNCH2 1. 3396 @2136 H_LUNCH3 1. 3397 @2137 H_LUNCH4 1. 3398 @2138 H_LUNCH5 1. 3399 @2139 H_LUNCH6 1. 3400 @2140 H_LUNCH7 1. 3401 @2141 H_LUNCH8 1. 3402 @2142 H_48341 2. 3403 @2144 H_48342 2. 3404 @2146 H_48343 2. 3405 @2148 H_48344 2. 3406 @2150 H_48345 2. 3407 @2152 H_48346 2. 3408 @2154 H_48347 2. 3409 @2156 H_48348 2. 3410 @2158 H_BREAK1 1. 3411 @2159 H_BREAK2 1. 3412 @2160 H_BREAK3 1. 3413 @2161 H_BREAK4 1. 3414 @2162 H_BREAK5 1. 3415 @2163 H_BREAK6 1. 3416 @2164 H_BREAK7 1. 3417 @2165 H_BREAK8 1. 3418 @2166 H_48301 2. 3419 @2168 H_48302 2. 3420 @2170 H_48303 2. 3421 @2172 H_48304 2. 3422 @2174 H_48305 2. 3423 @2176 H_48306 2. 3424 @2178 H_48307 2. 3425 @2180 H_48308 2. 3426 @2182 PUBRNTYN 1. 3427 @2183 PUBRNAMT 6. 3428 @2189 UTLPAYYN 1. 3429 @2190 FULLRENT 6. 3430 @2196 STATE_1 2. 3431 @2198 STATE_2 2. 3432 @2200 STATE_3 2. 3433 @2202 STATE_4 2. 3434 @2204 STATE_5 2. 3435 @2206 STATE_6 2. 3436 @2208 STATE_7 2. 3437 @2210 STATE_8 2. 3438 @2212 SC1332 2. 3439 @2214 SC1334 2. 3440 @2216 SC1336 3. 3441 @2219 SC1346 2. 3442 @2221 SC1348 2. 3443 @2223 SC1360 1. 3444 @2224 SC1418 1. 3445 @2225 SC1456 1. 3446 @2226 MEDCODE 2. 3447 @2228 SC1468 1. 3448 @2229 SC1472 2. 3449 @2231 DISAB 1. 3450 @2232 ATT_SCH1 1. 3451 @2233 ATT_SCH2 1. 3452 @2234 ATT_SCH3 1. 3453 @2235 ATT_SCH4 1. 3454 @2236 ATT_SCH5 1. 3455 @2237 ATT_SCH6 1. 3456 @2238 ATT_SCH7 1. 3457 @2239 ATT_SCH8 1. 3458 @2240 ENRL_M01 1. 3459 @2241 ENRL_M02 1. 3460 @2242 ENRL_M03 1. 3461 @2243 ENRL_M04 1. 3462 @2244 ENRL_M05 1. 3463 @2245 ENRL_M06 1. 3464 @2246 ENRL_M07 1. 3465 @2247 ENRL_M08 1. 3466 @2248 ENRL_M09 1. 49 The SAS System 15:27 Thursday, July 3, 2003 3467 @2249 ENRL_M10 1. 3468 @2250 ENRL_M11 1. 3469 @2251 ENRL_M12 1. 3470 @2252 ENRL_M13 1. 3471 @2253 ENRL_M14 1. 3472 @2254 ENRL_M15 1. 3473 @2255 ENRL_M16 1. 3474 @2256 ENRL_M17 1. 3475 @2257 ENRL_M18 1. 3476 @2258 ENRL_M19 1. 3477 @2259 ENRL_M20 1. 3478 @2260 ENRL_M21 1. 3479 @2261 ENRL_M22 1. 3480 @2262 ENRL_M23 1. 3481 @2263 ENRL_M24 1. 3482 @2264 ENRL_M25 1. 3483 @2265 ENRL_M26 1. 3484 @2266 ENRL_M27 1. 3485 @2267 ENRL_M28 1. 3486 @2268 ENRL_M29 1. 3487 @2269 ENRL_M30 1. 3488 @2270 ENRL_M31 1. 3489 @2271 ENRL_M32 1. 3490 @2272 ED_LEVE1 2. 3491 @2274 ED_LEVE2 2. 3492 @2276 ED_LEVE3 2. 3493 @2278 ED_LEVE4 2. 3494 @2280 ED_LEVE5 2. 3495 @2282 ED_LEVE6 2. 3496 @2284 ED_LEVE7 2. 3497 @2286 ED_LEVE8 2. 3498 @2288 ED_FINA1 1. 3499 @2289 ED_FINA2 1. 3500 @2290 ED_FINA3 1. 3501 @2291 ED_FINA4 1. 3502 @2292 ED_FINA5 1. 3503 @2293 ED_FINA6 1. 3504 @2294 ED_FINA7 1. 3505 @2295 ED_FINA8 1. 3506 @2296 SC16721 1. 3507 @2297 SC16722 1. 3508 @2298 SC16723 1. 3509 @2299 SC16724 1. 3510 @2300 SC16725 1. 3511 @2301 SC16726 1. 3512 @2302 SC16727 1. 3513 @2303 SC16728 1. 3514 @2304 SC16741 1. 3515 @2305 SC16742 1. 3516 @2306 SC16743 1. 3517 @2307 SC16744 1. 3518 @2308 SC16745 1. 3519 @2309 SC16746 1. 3520 @2310 SC16747 1. 3521 @2311 SC16748 1. 3522 @2312 SC16761 1. 3523 @2313 SC16762 1. 3524 @2314 SC16763 1. 3525 @2315 SC16764 1. 3526 @2316 SC16765 1. 3527 @2317 SC16766 1. 3528 @2318 SC16767 1. 3529 @2319 SC16768 1. 3530 @2320 SC16781 1. 3531 @2321 SC16782 1. 3532 @2322 SC16783 1. 3533 @2323 SC16784 1. 3534 @2324 SC16785 1. 3535 @2325 SC16786 1. 3536 @2326 SC16787 1. 3537 @2327 SC16788 1. 3538 @2328 SC16801 1. 3539 @2329 SC16802 1. 3540 @2330 SC16803 1. 3541 @2331 SC16804 1. 3542 @2332 SC16805 1. 50 The SAS System 15:27 Thursday, July 3, 2003 3543 @2333 SC16806 1. 3544 @2334 SC16807 1. 3545 @2335 SC16808 1. 3546 @2336 SC16821 1. 3547 @2337 SC16822 1. 3548 @2338 SC16823 1. 3549 @2339 SC16824 1. 3550 @2340 SC16825 1. 3551 @2341 SC16826 1. 3552 @2342 SC16827 1. 3553 @2343 SC16828 1. 3554 @2344 SC16841 1. 3555 @2345 SC16842 1. 3556 @2346 SC16843 1. 3557 @2347 SC16844 1. 3558 @2348 SC16845 1. 3559 @2349 SC16846 1. 3560 @2350 SC16847 1. 3561 @2351 SC16848 1. 3562 @2352 SC16861 1. 3563 @2353 SC16862 1. 3564 @2354 SC16863 1. 3565 @2355 SC16864 1. 3566 @2356 SC16865 1. 3567 @2357 SC16866 1. 3568 @2358 SC16867 1. 3569 @2359 SC16868 1. 3570 @2360 SC16881 1. 3571 @2361 SC16882 1. 3572 @2362 SC16883 1. 3573 @2363 SC16884 1. 3574 @2364 SC16885 1. 3575 @2365 SC16886 1. 3576 @2366 SC16887 1. 3577 @2367 SC16888 1. 3578 @2368 SC16901 1. 3579 @2369 SC16902 1. 3580 @2370 SC16903 1. 3581 @2371 SC16904 1. 3582 @2372 SC16905 1. 3583 @2373 SC16906 1. 3584 @2374 SC16907 1. 3585 @2375 SC16908 1. 3586 @2376 SC16921 1. 3587 @2377 SC16922 1. 3588 @2378 SC16923 1. 3589 @2379 SC16924 1. 3590 @2380 SC16925 1. 3591 @2381 SC16926 1. 3592 @2382 SC16927 1. 3593 @2383 SC16928 1. 3594 @2384 SC16961 1. 3595 @2385 SC16962 1. 3596 @2386 SC16963 1. 3597 @2387 SC16964 1. 3598 @2388 SC16965 1. 3599 @2389 SC16966 1. 3600 @2390 SC16967 1. 3601 @2391 SC16968 1. 3602 @2392 PP_INC01 8. 3603 @2400 PP_INC02 8. 3604 @2408 PP_INC03 8. 3605 @2416 PP_INC04 8. 3606 @2424 PP_INC05 8. 3607 @2432 PP_INC06 8. 3608 @2440 PP_INC07 8. 3609 @2448 PP_INC08 8. 3610 @2456 PP_INC09 8. 3611 @2464 PP_INC10 8. 3612 @2472 PP_INC11 8. 3613 @2480 PP_INC12 8. 3614 @2488 PP_INC13 8. 3615 @2496 PP_INC14 8. 3616 @2504 PP_INC15 8. 3617 @2512 PP_INC16 8. 3618 @2520 PP_INC17 8. 51 The SAS System 15:27 Thursday, July 3, 2003 3619 @2528 PP_INC18 8. 3620 @2536 PP_INC19 8. 3621 @2544 PP_INC20 8. 3622 @2552 PP_INC21 8. 3623 @2560 PP_INC22 8. 3624 @2568 PP_INC23 8. 3625 @2576 PP_INC24 8. 3626 @2584 PP_INC25 8. 3627 @2592 PP_INC26 8. 3628 @2600 PP_INC27 8. 3629 @2608 PP_INC28 8. 3630 @2616 PP_INC29 8. 3631 @2624 PP_INC30 8. 3632 @2632 PP_INC31 8. 3633 @2640 PP_INC32 8. 3634 @2648 PP_EAR01 7. 3635 @2655 PP_EAR02 7. 3636 @2662 PP_EAR03 7. 3637 @2669 PP_EAR04 7. 3638 @2676 PP_EAR05 7. 3639 @2683 PP_EAR06 7. 3640 @2690 PP_EAR07 7. 3641 @2697 PP_EAR08 7. 3642 @2704 PP_EAR09 7. 3643 @2711 PP_EAR10 7. 3644 @2718 PP_EAR11 7. 3645 @2725 PP_EAR12 7. 3646 @2732 PP_EAR13 7. 3647 @2739 PP_EAR14 7. 3648 @2746 PP_EAR15 7. 3649 @2753 PP_EAR16 7. 3650 @2760 PP_EAR17 7. 3651 @2767 PP_EAR18 7. 3652 @2774 PP_EAR19 7. 3653 @2781 PP_EAR20 7. 3654 @2788 PP_EAR21 7. 3655 @2795 PP_EAR22 7. 3656 @2802 PP_EAR23 7. 3657 @2809 PP_EAR24 7. 3658 @2816 PP_EAR25 7. 3659 @2823 PP_EAR26 7. 3660 @2830 PP_EAR27 7. 3661 @2837 PP_EAR28 7. 3662 @2844 PP_EAR29 7. 3663 @2851 PP_EAR30 7. 3664 @2858 PP_EAR31 7. 3665 @2865 PP_EAR32 7. 3666 @2872 FF_INC01 8. 3667 @2880 FF_INC02 8. 3668 @2888 FF_INC03 8. 3669 @2896 FF_INC04 8. 3670 @2904 FF_INC05 8. 3671 @2912 FF_INC06 8. 3672 @2920 FF_INC07 8. 3673 @2928 FF_INC08 8. 3674 @2936 FF_INC09 8. 3675 @2944 FF_INC10 8. 3676 @2952 FF_INC11 8. 3677 @2960 FF_INC12 8. 3678 @2968 FF_INC13 8. 3679 @2976 FF_INC14 8. 3680 @2984 FF_INC15 8. 3681 @2992 FF_INC16 8. 3682 @3000 FF_INC17 8. 3683 @3008 FF_INC18 8. 3684 @3016 FF_INC19 8. 3685 @3024 FF_INC20 8. 3686 @3032 FF_INC21 8. 3687 @3040 FF_INC22 8. 3688 @3048 FF_INC23 8. 3689 @3056 FF_INC24 8. 3690 @3064 FF_INC25 8. 3691 @3072 FF_INC26 8. 3692 @3080 FF_INC27 8. 3693 @3088 FF_INC28 8. 3694 @3096 FF_INC29 8. 52 The SAS System 15:27 Thursday, July 3, 2003 3695 @3104 FF_INC30 8. 3696 @3112 FF_INC31 8. 3697 @3120 FF_INC32 8. 3698 @3128 FF_EAR01 6. 3699 @3134 FF_EAR02 6. 3700 @3140 FF_EAR03 6. 3701 @3146 FF_EAR04 6. 3702 @3152 FF_EAR05 6. 3703 @3158 FF_EAR06 6. 3704 @3164 FF_EAR07 6. 3705 @3170 FF_EAR08 6. 3706 @3176 FF_EAR09 6. 3707 @3182 FF_EAR10 6. 3708 @3188 FF_EAR11 6. 3709 @3194 FF_EAR12 6. 3710 @3200 FF_EAR13 6. 3711 @3206 FF_EAR14 6. 3712 @3212 FF_EAR15 6. 3713 @3218 FF_EAR16 6. 3714 @3224 FF_EAR17 6. 3715 @3230 FF_EAR18 6. 3716 @3236 FF_EAR19 6. 3717 @3242 FF_EAR20 6. 3718 @3248 FF_EAR21 6. 3719 @3254 FF_EAR22 6. 3720 @3260 FF_EAR23 6. 3721 @3266 FF_EAR24 6. 3722 @3272 FF_EAR25 6. 3723 @3278 FF_EAR26 6. 3724 @3284 FF_EAR27 6. 3725 @3290 FF_EAR28 6. 3726 @3296 FF_EAR29 6. 3727 @3302 FF_EAR30 6. 3728 @3308 FF_EAR31 6. 3729 @3314 FF_EAR32 6. 3730 @3320 FF_PRO01 6. 3731 @3326 FF_PRO02 6. 3732 @3332 FF_PRO03 6. 3733 @3338 FF_PRO04 6. 3734 @3344 FF_PRO05 6. 3735 @3350 FF_PRO06 6. 3736 @3356 FF_PRO07 6. 3737 @3362 FF_PRO08 6. 3738 @3368 FF_PRO09 6. 3739 @3374 FF_PRO10 6. 3740 @3380 FF_PRO11 6. 3741 @3386 FF_PRO12 6. 3742 @3392 FF_PRO13 6. 3743 @3398 FF_PRO14 6. 3744 @3404 FF_PRO15 6. 3745 @3410 FF_PRO16 6. 3746 @3416 FF_PRO17 6. 3747 @3422 FF_PRO18 6. 3748 @3428 FF_PRO19 6. 3749 @3434 FF_PRO20 6. 3750 @3440 FF_PRO21 6. 3751 @3446 FF_PRO22 6. 3752 @3452 FF_PRO23 6. 3753 @3458 FF_PRO24 6. 3754 @3464 FF_PRO25 6. 3755 @3470 FF_PRO26 6. 3756 @3476 FF_PRO27 6. 3757 @3482 FF_PRO28 6. 3758 @3488 FF_PRO29 6. 3759 @3494 FF_PRO30 6. 3760 @3500 FF_PRO31 6. 3761 @3506 FF_PRO32 6. 3762 @3512 FF_TRA01 6. 3763 @3518 FF_TRA02 6. 3764 @3524 FF_TRA03 6. 3765 @3530 FF_TRA04 6. 3766 @3536 FF_TRA05 6. 3767 @3542 FF_TRA06 6. 3768 @3548 FF_TRA07 6. 3769 @3554 FF_TRA08 6. 3770 @3560 FF_TRA09 6. 53 The SAS System 15:27 Thursday, July 3, 2003 3771 @3566 FF_TRA10 6. 3772 @3572 FF_TRA11 6. 3773 @3578 FF_TRA12 6. 3774 @3584 FF_TRA13 6. 3775 @3590 FF_TRA14 6. 3776 @3596 FF_TRA15 6. 3777 @3602 FF_TRA16 6. 3778 @3608 FF_TRA17 6. 3779 @3614 FF_TRA18 6. 3780 @3620 FF_TRA19 6. 3781 @3626 FF_TRA20 6. 3782 @3632 FF_TRA21 6. 3783 @3638 FF_TRA22 6. 3784 @3644 FF_TRA23 6. 3785 @3650 FF_TRA24 6. 3786 @3656 FF_TRA25 6. 3787 @3662 FF_TRA26 6. 3788 @3668 FF_TRA27 6. 3789 @3674 FF_TRA28 6. 3790 @3680 FF_TRA29 6. 3791 @3686 FF_TRA30 6. 3792 @3692 FF_TRA31 6. 3793 @3698 FF_TRA32 6. 3794 @3704 FF_OTH01 6. 3795 @3710 FF_OTH02 6. 3796 @3716 FF_OTH03 6. 3797 @3722 FF_OTH04 6. 3798 @3728 FF_OTH05 6. 3799 @3734 FF_OTH06 6. 3800 @3740 FF_OTH07 6. 3801 @3746 FF_OTH08 6. 3802 @3752 FF_OTH09 6. 3803 @3758 FF_OTH10 6. 3804 @3764 FF_OTH11 6. 3805 @3770 FF_OTH12 6. 3806 @3776 FF_OTH13 6. 3807 @3782 FF_OTH14 6. 3808 @3788 FF_OTH15 6. 3809 @3794 FF_OTH16 6. 3810 @3800 FF_OTH17 6. 3811 @3806 FF_OTH18 6. 3812 @3812 FF_OTH19 6. 3813 @3818 FF_OTH20 6. 3814 @3824 FF_OTH21 6. 3815 @3830 FF_OTH22 6. 3816 @3836 FF_OTH23 6. 3817 @3842 FF_OTH24 6. 3818 @3848 FF_OTH25 6. 3819 @3854 FF_OTH26 6. 3820 @3860 FF_OTH27 6. 3821 @3866 FF_OTH28 6. 3822 @3872 FF_OTH29 6. 3823 @3878 FF_OTH30 6. 3824 @3884 FF_OTH31 6. 3825 @3890 FF_OTH32 6. 3826 @3896 HH_INC01 8. 3827 @3904 HH_INC02 8. 3828 @3912 HH_INC03 8. 3829 @3920 HH_INC04 8. 3830 @3928 HH_INC05 8. 3831 @3936 HH_INC06 8. 3832 @3944 HH_INC07 8. 3833 @3952 HH_INC08 8. 3834 @3960 HH_INC09 8. 3835 @3968 HH_INC10 8. 3836 @3976 HH_INC11 8. 3837 @3984 HH_INC12 8. 3838 @3992 HH_INC13 8. 3839 @4000 HH_INC14 8. 3840 @4008 HH_INC15 8. 3841 @4016 HH_INC16 8. 3842 @4024 HH_INC17 8. 3843 @4032 HH_INC18 8. 3844 @4040 HH_INC19 8. 3845 @4048 HH_INC20 8. 3846 @4056 HH_INC21 8. 54 The SAS System 15:27 Thursday, July 3, 2003 3847 @4064 HH_INC22 8. 3848 @4072 HH_INC23 8. 3849 @4080 HH_INC24 8. 3850 @4088 HH_INC25 8. 3851 @4096 HH_INC26 8. 3852 @4104 HH_INC27 8. 3853 @4112 HH_INC28 8. 3854 @4120 HH_INC29 8. 3855 @4128 HH_INC30 8. 3856 @4136 HH_INC31 8. 3857 @4144 HH_INC32 8. 3858 @4152 HH_EAR01 6. 3859 @4158 HH_EAR02 6. 3860 @4164 HH_EAR03 6. 3861 @4170 HH_EAR04 6. 3862 @4176 HH_EAR05 6. 3863 @4182 HH_EAR06 6. 3864 @4188 HH_EAR07 6. 3865 @4194 HH_EAR08 6. 3866 @4200 HH_EAR09 6. 3867 @4206 HH_EAR10 6. 3868 @4212 HH_EAR11 6. 3869 @4218 HH_EAR12 6. 3870 @4224 HH_EAR13 6. 3871 @4230 HH_EAR14 6. 3872 @4236 HH_EAR15 6. 3873 @4242 HH_EAR16 6. 3874 @4248 HH_EAR17 6. 3875 @4254 HH_EAR18 6. 3876 @4260 HH_EAR19 6. 3877 @4266 HH_EAR20 6. 3878 @4272 HH_EAR21 6. 3879 @4278 HH_EAR22 6. 3880 @4284 HH_EAR23 6. 3881 @4290 HH_EAR24 6. 3882 @4296 HH_EAR25 6. 3883 @4302 HH_EAR26 6. 3884 @4308 HH_EAR27 6. 3885 @4314 HH_EAR28 6. 3886 @4320 HH_EAR29 6. 3887 @4326 HH_EAR30 6. 3888 @4332 HH_EAR31 6. 3889 @4338 HH_EAR32 6. 3890 @4344 HH_PRO01 6. 3891 @4350 HH_PRO02 6. 3892 @4356 HH_PRO03 6. 3893 @4362 HH_PRO04 6. 3894 @4368 HH_PRO05 6. 3895 @4374 HH_PRO06 6. 3896 @4380 HH_PRO07 6. 3897 @4386 HH_PRO08 6. 3898 @4392 HH_PRO09 6. 3899 @4398 HH_PRO10 6. 3900 @4404 HH_PRO11 6. 3901 @4410 HH_PRO12 6. 3902 @4416 HH_PRO13 6. 3903 @4422 HH_PRO14 6. 3904 @4428 HH_PRO15 6. 3905 @4434 HH_PRO16 6. 3906 @4440 HH_PRO17 6. 3907 @4446 HH_PRO18 6. 3908 @4452 HH_PRO19 6. 3909 @4458 HH_PRO20 6. 3910 @4464 HH_PRO21 6. 3911 @4470 HH_PRO22 6. 3912 @4476 HH_PRO23 6. 3913 @4482 HH_PRO24 6. 3914 @4488 HH_PRO25 6. 3915 @4494 HH_PRO26 6. 3916 @4500 HH_PRO27 6. 3917 @4506 HH_PRO28 6. 3918 @4512 HH_PRO29 6. 3919 @4518 HH_PRO30 6. 3920 @4524 HH_PRO31 6. 3921 @4530 HH_PRO32 6. 3922 @4536 HH_TRA01 6. 55 The SAS System 15:27 Thursday, July 3, 2003 3923 @4542 HH_TRA02 6. 3924 @4548 HH_TRA03 6. 3925 @4554 HH_TRA04 6. 3926 @4560 HH_TRA05 6. 3927 @4566 HH_TRA06 6. 3928 @4572 HH_TRA07 6. 3929 @4578 HH_TRA08 6. 3930 @4584 HH_TRA09 6. 3931 @4590 HH_TRA10 6. 3932 @4596 HH_TRA11 6. 3933 @4602 HH_TRA12 6. 3934 @4608 HH_TRA13 6. 3935 @4614 HH_TRA14 6. 3936 @4620 HH_TRA15 6. 3937 @4626 HH_TRA16 6. 3938 @4632 HH_TRA17 6. 3939 @4638 HH_TRA18 6. 3940 @4644 HH_TRA19 6. 3941 @4650 HH_TRA20 6. 3942 @4656 HH_TRA21 6. 3943 @4662 HH_TRA22 6. 3944 @4668 HH_TRA23 6. 3945 @4674 HH_TRA24 6. 3946 @4680 HH_TRA25 6. 3947 @4686 HH_TRA26 6. 3948 @4692 HH_TRA27 6. 3949 @4698 HH_TRA28 6. 3950 @4704 HH_TRA29 6. 3951 @4710 HH_TRA30 6. 3952 @4716 HH_TRA31 6. 3953 @4722 HH_TRA32 6. 3954 @4728 HH_OTH01 6. 3955 @4734 HH_OTH02 6. 3956 @4740 HH_OTH03 6. 3957 @4746 HH_OTH04 6. 3958 @4752 HH_OTH05 6. 3959 @4758 HH_OTH06 6. 3960 @4764 HH_OTH07 6. 3961 @4770 HH_OTH08 6. 3962 @4776 HH_OTH09 6. 3963 @4782 HH_OTH10 6. 3964 @4788 HH_OTH11 6. 3965 @4794 HH_OTH12 6. 3966 @4800 HH_OTH13 6. 3967 @4806 HH_OTH14 6. 3968 @4812 HH_OTH15 6. 3969 @4818 HH_OTH16 6. 3970 @4824 HH_OTH17 6. 3971 @4830 HH_OTH18 6. 3972 @4836 HH_OTH19 6. 3973 @4842 HH_OTH20 6. 3974 @4848 HH_OTH21 6. 3975 @4854 HH_OTH22 6. 3976 @4860 HH_OTH23 6. 3977 @4866 HH_OTH24 6. 3978 @4872 HH_OTH25 6. 3979 @4878 HH_OTH26 6. 3980 @4884 HH_OTH27 6. 3981 @4890 HH_OTH28 6. 3982 @4896 HH_OTH29 6. 3983 @4902 HH_OTH30 6. 3984 @4908 HH_OTH31 6. 3985 @4914 HH_OTH32 6. 3986 @4920 FF_POV01 5. 3987 @4925 FF_POV02 5. 3988 @4930 FF_POV03 5. 3989 @4935 FF_POV04 5. 3990 @4940 FF_POV05 5. 3991 @4945 FF_POV06 5. 3992 @4950 FF_POV07 5. 3993 @4955 FF_POV08 5. 3994 @4960 FF_POV09 5. 3995 @4965 FF_POV10 5. 3996 @4970 FF_POV11 5. 3997 @4975 FF_POV12 5. 3998 @4980 FF_POV13 5. 56 The SAS System 15:27 Thursday, July 3, 2003 3999 @4985 FF_POV14 5. 4000 @4990 FF_POV15 5. 4001 @4995 FF_POV16 5. 4002 @5000 FF_POV17 5. 4003 @5005 FF_POV18 5. 4004 @5010 FF_POV19 5. 4005 @5015 FF_POV20 5. 4006 @5020 FF_POV21 5. 4007 @5025 FF_POV22 5. 4008 @5030 FF_POV23 5. 4009 @5035 FF_POV24 5. 4010 @5040 FF_POV25 5. 4011 @5045 FF_POV26 5. 4012 @5050 FF_POV27 5. 4013 @5055 FF_POV28 5. 4014 @5060 FF_POV29 5. 4015 @5065 FF_POV30 5. 4016 @5070 FF_POV31 5. 4017 @5075 FF_POV32 5. 4018 @5080 TELEPHON 1. 4019 @5081 ESR_01 1. 4020 @5082 ESR_02 1. 4021 @5083 ESR_03 1. 4022 @5084 ESR_04 1. 4023 @5085 ESR_05 1. 4024 @5086 ESR_06 1. 4025 @5087 ESR_07 1. 4026 @5088 ESR_08 1. 4027 @5089 ESR_09 1. 4028 @5090 ESR_10 1. 4029 @5091 ESR_11 1. 4030 @5092 ESR_12 1. 4031 @5093 ESR_13 1. 4032 @5094 ESR_14 1. 4033 @5095 ESR_15 1. 4034 @5096 ESR_16 1. 4035 @5097 ESR_17 1. 4036 @5098 ESR_18 1. 4037 @5099 ESR_19 1. 4038 @5100 ESR_20 1. 4039 @5101 ESR_21 1. 4040 @5102 ESR_22 1. 4041 @5103 ESR_23 1. 4042 @5104 ESR_24 1. 4043 @5105 ESR_25 1. 4044 @5106 ESR_26 1. 4045 @5107 ESR_27 1. 4046 @5108 ESR_28 1. 4047 @5109 ESR_29 1. 4048 @5110 ESR_30 1. 4049 @5111 ESR_31 1. 4050 @5112 ESR_32 1. 4051 @5113 WKSPER01 1. 4052 @5114 WKSPER02 1. 4053 @5115 WKSPER03 1. 4054 @5116 WKSPER04 1. 4055 @5117 WKSPER05 1. 4056 @5118 WKSPER06 1. 4057 @5119 WKSPER07 1. 4058 @5120 WKSPER08 1. 4059 @5121 WKSPER09 1. 4060 @5122 WKSPER10 1. 4061 @5123 WKSPER11 1. 4062 @5124 WKSPER12 1. 4063 @5125 WKSPER13 1. 4064 @5126 WKSPER14 1. 4065 @5127 WKSPER15 1. 4066 @5128 WKSPER16 1. 4067 @5129 WKSPER17 1. 4068 @5130 WKSPER18 1. 4069 @5131 WKSPER19 1. 4070 @5132 WKSPER20 1. 4071 @5133 WKSPER21 1. 4072 @5134 WKSPER22 1. 4073 @5135 WKSPER23 1. 4074 @5136 WKSPER24 1. 57 The SAS System 15:27 Thursday, July 3, 2003 4075 @5137 WKSPER25 1. 4076 @5138 WKSPER26 1. 4077 @5139 WKSPER27 1. 4078 @5140 WKSPER28 1. 4079 @5141 WKSPER29 1. 4080 @5142 WKSPER30 1. 4081 @5143 WKSPER31 1. 4082 @5144 WKSPER32 1. 4083 @5145 WKSJB_01 1. 4084 @5146 WKSJB_02 1. 4085 @5147 WKSJB_03 1. 4086 @5148 WKSJB_04 1. 4087 @5149 WKSJB_05 1. 4088 @5150 WKSJB_06 1. 4089 @5151 WKSJB_07 1. 4090 @5152 WKSJB_08 1. 4091 @5153 WKSJB_09 1. 4092 @5154 WKSJB_10 1. 4093 @5155 WKSJB_11 1. 4094 @5156 WKSJB_12 1. 4095 @5157 WKSJB_13 1. 4096 @5158 WKSJB_14 1. 4097 @5159 WKSJB_15 1. 4098 @5160 WKSJB_16 1. 4099 @5161 WKSJB_17 1. 4100 @5162 WKSJB_18 1. 4101 @5163 WKSJB_19 1. 4102 @5164 WKSJB_20 1. 4103 @5165 WKSJB_21 1. 4104 @5166 WKSJB_22 1. 4105 @5167 WKSJB_23 1. 4106 @5168 WKSJB_24 1. 4107 @5169 WKSJB_25 1. 4108 @5170 WKSJB_26 1. 4109 @5171 WKSJB_27 1. 4110 @5172 WKSJB_28 1. 4111 @5173 WKSJB_29 1. 4112 @5174 WKSJB_30 1. 4113 @5175 WKSJB_31 1. 4114 @5176 WKSJB_32 1. 4115 @5177 MTHWOP01 1. 4116 @5178 MTHWOP02 1. 4117 @5179 MTHWOP03 1. 4118 @5180 MTHWOP04 1. 4119 @5181 MTHWOP05 1. 4120 @5182 MTHWOP06 1. 4121 @5183 MTHWOP07 1. 4122 @5184 MTHWOP08 1. 4123 @5185 MTHWOP09 1. 4124 @5186 MTHWOP10 1. 4125 @5187 MTHWOP11 1. 4126 @5188 MTHWOP12 1. 4127 @5189 MTHWOP13 1. 4128 @5190 MTHWOP14 1. 4129 @5191 MTHWOP15 1. 4130 @5192 MTHWOP16 1. 4131 @5193 MTHWOP17 1. 4132 @5194 MTHWOP18 1. 4133 @5195 MTHWOP19 1. 4134 @5196 MTHWOP20 1. 4135 @5197 MTHWOP21 1. 4136 @5198 MTHWOP22 1. 4137 @5199 MTHWOP23 1. 4138 @5200 MTHWOP24 1. 4139 @5201 MTHWOP25 1. 4140 @5202 MTHWOP26 1. 4141 @5203 MTHWOP27 1. 4142 @5204 MTHWOP28 1. 4143 @5205 MTHWOP29 1. 4144 @5206 MTHWOP30 1. 4145 @5207 MTHWOP31 1. 4146 @5208 MTHWOP32 1. 4147 @5209 WEEKSL01 1. 4148 @5210 WEEKSL02 1. 4149 @5211 WEEKSL03 1. 4150 @5212 WEEKSL04 1. 58 The SAS System 15:27 Thursday, July 3, 2003 4151 @5213 WEEKSL05 1. 4152 @5214 WEEKSL06 1. 4153 @5215 WEEKSL07 1. 4154 @5216 WEEKSL08 1. 4155 @5217 WEEKSL09 1. 4156 @5218 WEEKSL10 1. 4157 @5219 WEEKSL11 1. 4158 @5220 WEEKSL12 1. 4159 @5221 WEEKSL13 1. 4160 @5222 WEEKSL14 1. 4161 @5223 WEEKSL15 1. 4162 @5224 WEEKSL16 1. 4163 @5225 WEEKSL17 1. 4164 @5226 WEEKSL18 1. 4165 @5227 WEEKSL19 1. 4166 @5228 WEEKSL20 1. 4167 @5229 WEEKSL21 1. 4168 @5230 WEEKSL22 1. 4169 @5231 WEEKSL23 1. 4170 @5232 WEEKSL24 1. 4171 @5233 WEEKSL25 1. 4172 @5234 WEEKSL26 1. 4173 @5235 WEEKSL27 1. 4174 @5236 WEEKSL28 1. 4175 @5237 WEEKSL29 1. 4176 @5238 WEEKSL30 1. 4177 @5239 WEEKSL31 1. 4178 @5240 WEEKSL32 1. 4179 @5241 SC12301 2. 4180 @5243 SC12302 2. 4181 @5245 SC12303 2. 4182 @5247 SC12304 2. 4183 @5249 SC12305 2. 4184 @5251 SC12306 2. 4185 @5253 SC12307 2. 4186 @5255 SC12308 2. 4187 @5257 WS1_EI01 2. 4188 @5259 WS1_EI02 2. 4189 @5261 WS1_EI03 2. 4190 @5263 WS1_EI04 2. 4191 @5265 WS1_EI05 2. 4192 @5267 WS1_EI06 2. 4193 @5269 WS1_EI07 2. 4194 @5271 WS1_EI08 2. 4195 @5273 WS1_EI09 2. 4196 @5275 WS1_EI10 2. 4197 @5277 WS1_EI11 2. 4198 @5279 WS1_EI12 2. 4199 @5281 WS1_EI13 2. 4200 @5283 WS1_EI14 2. 4201 @5285 WS1_EI15 2. 4202 @5287 WS1_EI16 2. 4203 @5289 WS1_EI17 2. 4204 @5291 WS1_EI18 2. 4205 @5293 WS1_EI19 2. 4206 @5295 WS1_EI20 2. 4207 @5297 WS1_EI21 2. 4208 @5299 WS1_EI22 2. 4209 @5301 WS1_EI23 2. 4210 @5303 WS1_EI24 2. 4211 @5305 WS1_EI25 2. 4212 @5307 WS1_EI26 2. 4213 @5309 WS1_EI27 2. 4214 @5311 WS1_EI28 2. 4215 @5313 WS1_EI29 2. 4216 @5315 WS1_EI30 2. 4217 @5317 WS1_EI31 2. 4218 @5319 WS1_EI32 2. 4219 @5321 WS2_EI01 2. 4220 @5323 WS2_EI02 2. 4221 @5325 WS2_EI03 2. 4222 @5327 WS2_EI04 2. 4223 @5329 WS2_EI05 2. 4224 @5331 WS2_EI06 2. 4225 @5333 WS2_EI07 2. 4226 @5335 WS2_EI08 2. 59 The SAS System 15:27 Thursday, July 3, 2003 4227 @5337 WS2_EI09 2. 4228 @5339 WS2_EI10 2. 4229 @5341 WS2_EI11 2. 4230 @5343 WS2_EI12 2. 4231 @5345 WS2_EI13 2. 4232 @5347 WS2_EI14 2. 4233 @5349 WS2_EI15 2. 4234 @5351 WS2_EI16 2. 4235 @5353 WS2_EI17 2. 4236 @5355 WS2_EI18 2. 4237 @5357 WS2_EI19 2. 4238 @5359 WS2_EI20 2. 4239 @5361 WS2_EI21 2. 4240 @5363 WS2_EI22 2. 4241 @5365 WS2_EI23 2. 4242 @5367 WS2_EI24 2. 4243 @5369 WS2_EI25 2. 4244 @5371 WS2_EI26 2. 4245 @5373 WS2_EI27 2. 4246 @5375 WS2_EI28 2. 4247 @5377 WS2_EI29 2. 4248 @5379 WS2_EI30 2. 4249 @5381 WS2_EI31 2. 4250 @5383 WS2_EI32 2. 4251 @5385 WS1_CL01 1. 4252 @5386 WS1_CL02 1. 4253 @5387 WS1_CL03 1. 4254 @5388 WS1_CL04 1. 4255 @5389 WS1_CL05 1. 4256 @5390 WS1_CL06 1. 4257 @5391 WS1_CL07 1. 4258 @5392 WS1_CL08 1. 4259 @5393 WS1_CL09 1. 4260 @5394 WS1_CL10 1. 4261 @5395 WS1_CL11 1. 4262 @5396 WS1_CL12 1. 4263 @5397 WS1_CL13 1. 4264 @5398 WS1_CL14 1. 4265 @5399 WS1_CL15 1. 4266 @5400 WS1_CL16 1. 4267 @5401 WS1_CL17 1. 4268 @5402 WS1_CL18 1. 4269 @5403 WS1_CL19 1. 4270 @5404 WS1_CL20 1. 4271 @5405 WS1_CL21 1. 4272 @5406 WS1_CL22 1. 4273 @5407 WS1_CL23 1. 4274 @5408 WS1_CL24 1. 4275 @5409 WS1_CL25 1. 4276 @5410 WS1_CL26 1. 4277 @5411 WS1_CL27 1. 4278 @5412 WS1_CL28 1. 4279 @5413 WS1_CL29 1. 4280 @5414 WS1_CL30 1. 4281 @5415 WS1_CL31 1. 4282 @5416 WS1_CL32 1. 4283 @5417 WS2_CL01 1. 4284 @5418 WS2_CL02 1. 4285 @5419 WS2_CL03 1. 4286 @5420 WS2_CL04 1. 4287 @5421 WS2_CL05 1. 4288 @5422 WS2_CL06 1. 4289 @5423 WS2_CL07 1. 4290 @5424 WS2_CL08 1. 4291 @5425 WS2_CL09 1. 4292 @5426 WS2_CL10 1. 4293 @5427 WS2_CL11 1. 4294 @5428 WS2_CL12 1. 4295 @5429 WS2_CL13 1. 4296 @5430 WS2_CL14 1. 4297 @5431 WS2_CL15 1. 4298 @5432 WS2_CL16 1. 4299 @5433 WS2_CL17 1. 4300 @5434 WS2_CL18 1. 4301 @5435 WS2_CL19 1. 4302 @5436 WS2_CL20 1. 60 The SAS System 15:27 Thursday, July 3, 2003 4303 @5437 WS2_CL21 1. 4304 @5438 WS2_CL22 1. 4305 @5439 WS2_CL23 1. 4306 @5440 WS2_CL24 1. 4307 @5441 WS2_CL25 1. 4308 @5442 WS2_CL26 1. 4309 @5443 WS2_CL27 1. 4310 @5444 WS2_CL28 1. 4311 @5445 WS2_CL29 1. 4312 @5446 WS2_CL30 1. 4313 @5447 WS2_CL31 1. 4314 @5448 WS2_CL32 1. 4315 @5449 WS1_OC01 3. 4316 @5452 WS1_OC02 3. 4317 @5455 WS1_OC03 3. 4318 @5458 WS1_OC04 3. 4319 @5461 WS1_OC05 3. 4320 @5464 WS1_OC06 3. 4321 @5467 WS1_OC07 3. 4322 @5470 WS1_OC08 3. 4323 @5473 WS1_OC09 3. 4324 @5476 WS1_OC10 3. 4325 @5479 WS1_OC11 3. 4326 @5482 WS1_OC12 3. 4327 @5485 WS1_OC13 3. 4328 @5488 WS1_OC14 3. 4329 @5491 WS1_OC15 3. 4330 @5494 WS1_OC16 3. 4331 @5497 WS1_OC17 3. 4332 @5500 WS1_OC18 3. 4333 @5503 WS1_OC19 3. 4334 @5506 WS1_OC20 3. 4335 @5509 WS1_OC21 3. 4336 @5512 WS1_OC22 3. 4337 @5515 WS1_OC23 3. 4338 @5518 WS1_OC24 3. 4339 @5521 WS1_OC25 3. 4340 @5524 WS1_OC26 3. 4341 @5527 WS1_OC27 3. 4342 @5530 WS1_OC28 3. 4343 @5533 WS1_OC29 3. 4344 @5536 WS1_OC30 3. 4345 @5539 WS1_OC31 3. 4346 @5542 WS1_OC32 3. 4347 @5545 WS2_OC01 3. 4348 @5548 WS2_OC02 3. 4349 @5551 WS2_OC03 3. 4350 @5554 WS2_OC04 3. 4351 @5557 WS2_OC05 3. 4352 @5560 WS2_OC06 3. 4353 @5563 WS2_OC07 3. 4354 @5566 WS2_OC08 3. 4355 @5569 WS2_OC09 3. 4356 @5572 WS2_OC10 3. 4357 @5575 WS2_OC11 3. 4358 @5578 WS2_OC12 3. 4359 @5581 WS2_OC13 3. 4360 @5584 WS2_OC14 3. 4361 @5587 WS2_OC15 3. 4362 @5590 WS2_OC16 3. 4363 @5593 WS2_OC17 3. 4364 @5596 WS2_OC18 3. 4365 @5599 WS2_OC19 3. 4366 @5602 WS2_OC20 3. 4367 @5605 WS2_OC21 3. 4368 @5608 WS2_OC22 3. 4369 @5611 WS2_OC23 3. 4370 @5614 WS2_OC24 3. 4371 @5617 WS2_OC25 3. 4372 @5620 WS2_OC26 3. 4373 @5623 WS2_OC27 3. 4374 @5626 WS2_OC28 3. 4375 @5629 WS2_OC29 3. 4376 @5632 WS2_OC30 3. 4377 @5635 WS2_OC31 3. 4378 @5638 WS2_OC32 3. 61 The SAS System 15:27 Thursday, July 3, 2003 4379 @5641 WS1_IN01 3. 4380 @5644 WS1_IN02 3. 4381 @5647 WS1_IN03 3. 4382 @5650 WS1_IN04 3. 4383 @5653 WS1_IN05 3. 4384 @5656 WS1_IN06 3. 4385 @5659 WS1_IN07 3. 4386 @5662 WS1_IN08 3. 4387 @5665 WS1_IN09 3. 4388 @5668 WS1_IN10 3. 4389 @5671 WS1_IN11 3. 4390 @5674 WS1_IN12 3. 4391 @5677 WS1_IN13 3. 4392 @5680 WS1_IN14 3. 4393 @5683 WS1_IN15 3. 4394 @5686 WS1_IN16 3. 4395 @5689 WS1_IN17 3. 4396 @5692 WS1_IN18 3. 4397 @5695 WS1_IN19 3. 4398 @5698 WS1_IN20 3. 4399 @5701 WS1_IN21 3. 4400 @5704 WS1_IN22 3. 4401 @5707 WS1_IN23 3. 4402 @5710 WS1_IN24 3. 4403 @5713 WS1_IN25 3. 4404 @5716 WS1_IN26 3. 4405 @5719 WS1_IN27 3. 4406 @5722 WS1_IN28 3. 4407 @5725 WS1_IN29 3. 4408 @5728 WS1_IN30 3. 4409 @5731 WS1_IN31 3. 4410 @5734 WS1_IN32 3. 4411 @5737 WS2_IN01 3. 4412 @5740 WS2_IN02 3. 4413 @5743 WS2_IN03 3. 4414 @5746 WS2_IN04 3. 4415 @5749 WS2_IN05 3. 4416 @5752 WS2_IN06 3. 4417 @5755 WS2_IN07 3. 4418 @5758 WS2_IN08 3. 4419 @5761 WS2_IN09 3. 4420 @5764 WS2_IN10 3. 4421 @5767 WS2_IN11 3. 4422 @5770 WS2_IN12 3. 4423 @5773 WS2_IN13 3. 4424 @5776 WS2_IN14 3. 4425 @5779 WS2_IN15 3. 4426 @5782 WS2_IN16 3. 4427 @5785 WS2_IN17 3. 4428 @5788 WS2_IN18 3. 4429 @5791 WS2_IN19 3. 4430 @5794 WS2_IN20 3. 4431 @5797 WS2_IN21 3. 4432 @5800 WS2_IN22 3. 4433 @5803 WS2_IN23 3. 4434 @5806 WS2_IN24 3. 4435 @5809 WS2_IN25 3. 4436 @5812 WS2_IN26 3. 4437 @5815 WS2_IN27 3. 4438 @5818 WS2_IN28 3. 4439 @5821 WS2_IN29 3. 4440 @5824 WS2_IN30 3. 4441 @5827 WS2_IN31 3. 4442 @5830 WS2_IN32 3. 4443 @5833 WS1_WK01 1. 4444 @5834 WS1_WK02 1. 4445 @5835 WS1_WK03 1. 4446 @5836 WS1_WK04 1. 4447 @5837 WS1_WK05 1. 4448 @5838 WS1_WK06 1. 4449 @5839 WS1_WK07 1. 4450 @5840 WS1_WK08 1. 4451 @5841 WS1_WK09 1. 4452 @5842 WS1_WK10 1. 4453 @5843 WS1_WK11 1. 4454 @5844 WS1_WK12 1. 62 The SAS System 15:27 Thursday, July 3, 2003 4455 @5845 WS1_WK13 1. 4456 @5846 WS1_WK14 1. 4457 @5847 WS1_WK15 1. 4458 @5848 WS1_WK16 1. 4459 @5849 WS1_WK17 1. 4460 @5850 WS1_WK18 1. 4461 @5851 WS1_WK19 1. 4462 @5852 WS1_WK20 1. 4463 @5853 WS1_WK21 1. 4464 @5854 WS1_WK22 1. 4465 @5855 WS1_WK23 1. 4466 @5856 WS1_WK24 1. 4467 @5857 WS1_WK25 1. 4468 @5858 WS1_WK26 1. 4469 @5859 WS1_WK27 1. 4470 @5860 WS1_WK28 1. 4471 @5861 WS1_WK29 1. 4472 @5862 WS1_WK30 1. 4473 @5863 WS1_WK31 1. 4474 @5864 WS1_WK32 1. 4475 @5865 WS2_WK01 1. 4476 @5866 WS2_WK02 1. 4477 @5867 WS2_WK03 1. 4478 @5868 WS2_WK04 1. 4479 @5869 WS2_WK05 1. 4480 @5870 WS2_WK06 1. 4481 @5871 WS2_WK07 1. 4482 @5872 WS2_WK08 1. 4483 @5873 WS2_WK09 1. 4484 @5874 WS2_WK10 1. 4485 @5875 WS2_WK11 1. 4486 @5876 WS2_WK12 1. 4487 @5877 WS2_WK13 1. 4488 @5878 WS2_WK14 1. 4489 @5879 WS2_WK15 1. 4490 @5880 WS2_WK16 1. 4491 @5881 WS2_WK17 1. 4492 @5882 WS2_WK18 1. 4493 @5883 WS2_WK19 1. 4494 @5884 WS2_WK20 1. 4495 @5885 WS2_WK21 1. 4496 @5886 WS2_WK22 1. 4497 @5887 WS2_WK23 1. 4498 @5888 WS2_WK24 1. 4499 @5889 WS2_WK25 1. 4500 @5890 WS2_WK26 1. 4501 @5891 WS2_WK27 1. 4502 @5892 WS2_WK28 1. 4503 @5893 WS2_WK29 1. 4504 @5894 WS2_WK30 1. 4505 @5895 WS2_WK31 1. 4506 @5896 WS2_WK32 1. 4507 @5897 WS1_AM01 6. 4508 @5903 WS1_AM02 6. 4509 @5909 WS1_AM03 6. 4510 @5915 WS1_AM04 6. 4511 @5921 WS1_AM05 6. 4512 @5927 WS1_AM06 6. 4513 @5933 WS1_AM07 6. 4514 @5939 WS1_AM08 6. 4515 @5945 WS1_AM09 6. 4516 @5951 WS1_AM10 6. 4517 @5957 WS1_AM11 6. 4518 @5963 WS1_AM12 6. 4519 @5969 WS1_AM13 6. 4520 @5975 WS1_AM14 6. 4521 @5981 WS1_AM15 6. 4522 @5987 WS1_AM16 6. 4523 @5993 WS1_AM17 6. 4524 @5999 WS1_AM18 6. 4525 @6005 WS1_AM19 6. 4526 @6011 WS1_AM20 6. 4527 @6017 WS1_AM21 6. 4528 @6023 WS1_AM22 6. 4529 @6029 WS1_AM23 6. 4530 @6035 WS1_AM24 6. 63 The SAS System 15:27 Thursday, July 3, 2003 4531 @6041 WS1_AM25 6. 4532 @6047 WS1_AM26 6. 4533 @6053 WS1_AM27 6. 4534 @6059 WS1_AM28 6. 4535 @6065 WS1_AM29 6. 4536 @6071 WS1_AM30 6. 4537 @6077 WS1_AM31 6. 4538 @6083 WS1_AM32 6. 4539 @6089 WS2_AM01 6. 4540 @6095 WS2_AM02 6. 4541 @6101 WS2_AM03 6. 4542 @6107 WS2_AM04 6. 4543 @6113 WS2_AM05 6. 4544 @6119 WS2_AM06 6. 4545 @6125 WS2_AM07 6. 4546 @6131 WS2_AM08 6. 4547 @6137 WS2_AM09 6. 4548 @6143 WS2_AM10 6. 4549 @6149 WS2_AM11 6. 4550 @6155 WS2_AM12 6. 4551 @6161 WS2_AM13 6. 4552 @6167 WS2_AM14 6. 4553 @6173 WS2_AM15 6. 4554 @6179 WS2_AM16 6. 4555 @6185 WS2_AM17 6. 4556 @6191 WS2_AM18 6. 4557 @6197 WS2_AM19 6. 4558 @6203 WS2_AM20 6. 4559 @6209 WS2_AM21 6. 4560 @6215 WS2_AM22 6. 4561 @6221 WS2_AM23 6. 4562 @6227 WS2_AM24 6. 4563 @6233 WS2_AM25 6. 4564 @6239 WS2_AM26 6. 4565 @6245 WS2_AM27 6. 4566 @6251 WS2_AM28 6. 4567 @6257 WS2_AM29 6. 4568 @6263 WS2_AM30 6. 4569 @6269 WS2_AM31 6. 4570 @6275 WS2_AM32 6. 4571 @6281 W2024_01 2. 4572 @6283 W2024_02 2. 4573 @6285 W2024_03 2. 4574 @6287 W2024_04 2. 4575 @6289 W2024_05 2. 4576 @6291 W2024_06 2. 4577 @6293 W2024_07 2. 4578 @6295 W2024_08 2. 4579 @6297 W2024_09 2. 4580 @6299 W2024_10 2. 4581 @6301 W2024_11 2. 4582 @6303 W2024_12 2. 4583 @6305 W2024_13 2. 4584 @6307 W2024_14 2. 4585 @6309 W2024_15 2. 4586 @6311 W2024_16 2. 4587 @6313 W2024_17 2. 4588 @6315 W2024_18 2. 4589 @6317 W2024_19 2. 4590 @6319 W2024_20 2. 4591 @6321 W2024_21 2. 4592 @6323 W2024_22 2. 4593 @6325 W2024_23 2. 4594 @6327 W2024_24 2. 4595 @6329 W2024_25 2. 4596 @6331 W2024_26 2. 4597 @6333 W2024_27 2. 4598 @6335 W2024_28 2. 4599 @6337 W2024_29 2. 4600 @6339 W2024_30 2. 4601 @6341 W2024_31 2. 4602 @6343 W2024_32 2. 4603 @6345 W2124_01 2. 4604 @6347 W2124_02 2. 4605 @6349 W2124_03 2. 4606 @6351 W2124_04 2. 64 The SAS System 15:27 Thursday, July 3, 2003 4607 @6353 W2124_05 2. 4608 @6355 W2124_06 2. 4609 @6357 W2124_07 2. 4610 @6359 W2124_08 2. 4611 @6361 W2124_09 2. 4612 @6363 W2124_10 2. 4613 @6365 W2124_11 2. 4614 @6367 W2124_12 2. 4615 @6369 W2124_13 2. 4616 @6371 W2124_14 2. 4617 @6373 W2124_15 2. 4618 @6375 W2124_16 2. 4619 @6377 W2124_17 2. 4620 @6379 W2124_18 2. 4621 @6381 W2124_19 2. 4622 @6383 W2124_20 2. 4623 @6385 W2124_21 2. 4624 @6387 W2124_22 2. 4625 @6389 W2124_23 2. 4626 @6391 W2124_24 2. 4627 @6393 W2124_25 2. 4628 @6395 W2124_26 2. 4629 @6397 W2124_27 2. 4630 @6399 W2124_28 2. 4631 @6401 W2124_29 2. 4632 @6403 W2124_30 2. 4633 @6405 W2124_31 2. 4634 @6407 W2124_32 2. 4635 @6409 W2028_01 4.2 4636 @6413 W2028_02 4.2 4637 @6417 W2028_03 4.2 4638 @6421 W2028_04 4.2 4639 @6425 W2028_05 4.2 4640 @6429 W2028_06 4.2 4641 @6433 W2028_07 4.2 4642 @6437 W2028_08 4.2 4643 @6441 W2028_09 4.2 4644 @6445 W2028_10 4.2 4645 @6449 W2028_11 4.2 4646 @6453 W2028_12 4.2 4647 @6457 W2028_13 4.2 4648 @6461 W2028_14 4.2 4649 @6465 W2028_15 4.2 4650 @6469 W2028_16 4.2 4651 @6473 W2028_17 4.2 4652 @6477 W2028_18 4.2 4653 @6481 W2028_19 4.2 4654 @6485 W2028_20 4.2 4655 @6489 W2028_21 4.2 4656 @6493 W2028_22 4.2 4657 @6497 W2028_23 4.2 4658 @6501 W2028_24 4.2 4659 @6505 W2028_25 4.2 4660 @6509 W2028_26 4.2 4661 @6513 W2028_27 4.2 4662 @6517 W2028_28 4.2 4663 @6521 W2028_29 4.2 4664 @6525 W2028_30 4.2 4665 @6529 W2028_31 4.2 4666 @6533 W2028_32 4.2 4667 @6537 W2128_01 4.2 4668 @6541 W2128_02 4.2 4669 @6545 W2128_03 4.2 4670 @6549 W2128_04 4.2 4671 @6553 W2128_05 4.2 4672 @6557 W2128_06 4.2 4673 @6561 W2128_07 4.2 4674 @6565 W2128_08 4.2 4675 @6569 W2128_09 4.2 4676 @6573 W2128_10 4.2 4677 @6577 W2128_11 4.2 4678 @6581 W2128_12 4.2 4679 @6585 W2128_13 4.2 4680 @6589 W2128_14 4.2 4681 @6593 W2128_15 4.2 4682 @6597 W2128_16 4.2 65 The SAS System 15:27 Thursday, July 3, 2003 4683 @6601 W2128_17 4.2 4684 @6605 W2128_18 4.2 4685 @6609 W2128_19 4.2 4686 @6613 W2128_20 4.2 4687 @6617 W2128_21 4.2 4688 @6621 W2128_22 4.2 4689 @6625 W2128_23 4.2 4690 @6629 W2128_24 4.2 4691 @6633 W2128_25 4.2 4692 @6637 W2128_26 4.2 4693 @6641 W2128_27 4.2 4694 @6645 W2128_28 4.2 4695 @6649 W2128_29 4.2 4696 @6653 W2128_30 4.2 4697 @6657 W2128_31 4.2 4698 @6661 W2128_32 4.2 4699 @6665 S2202_01 2. 4700 @6667 S2202_02 2. 4701 @6669 S2202_03 2. 4702 @6671 S2202_04 2. 4703 @6673 S2202_05 2. 4704 @6675 S2202_06 2. 4705 @6677 S2202_07 2. 4706 @6679 S2202_08 2. 4707 @6681 S2202_09 2. 4708 @6683 S2202_10 2. 4709 @6685 S2202_11 2. 4710 @6687 S2202_12 2. 4711 @6689 S2202_13 2. 4712 @6691 S2202_14 2. 4713 @6693 S2202_15 2. 4714 @6695 S2202_16 2. 4715 @6697 S2202_17 2. 4716 @6699 S2202_18 2. 4717 @6701 S2202_19 2. 4718 @6703 S2202_20 2. 4719 @6705 S2202_21 2. 4720 @6707 S2202_22 2. 4721 @6709 S2202_23 2. 4722 @6711 S2202_24 2. 4723 @6713 S2202_25 2. 4724 @6715 S2202_26 2. 4725 @6717 S2202_27 2. 4726 @6719 S2202_28 2. 4727 @6721 S2202_29 2. 4728 @6723 S2202_30 2. 4729 @6725 S2202_31 2. 4730 @6727 S2202_32 2. 4731 @6729 S2302_01 2. 4732 @6731 S2302_02 2. 4733 @6733 S2302_03 2. 4734 @6735 S2302_04 2. 4735 @6737 S2302_05 2. 4736 @6739 S2302_06 2. 4737 @6741 S2302_07 2. 4738 @6743 S2302_08 2. 4739 @6745 S2302_09 2. 4740 @6747 S2302_10 2. 4741 @6749 S2302_11 2. 4742 @6751 S2302_12 2. 4743 @6753 S2302_13 2. 4744 @6755 S2302_14 2. 4745 @6757 S2302_15 2. 4746 @6759 S2302_16 2. 4747 @6761 S2302_17 2. 4748 @6763 S2302_18 2. 4749 @6765 S2302_19 2. 4750 @6767 S2302_20 2. 4751 @6769 S2302_21 2. 4752 @6771 S2302_22 2. 4753 @6773 S2302_23 2. 4754 @6775 S2302_24 2. 4755 @6777 S2302_25 2. 4756 @6779 S2302_26 2. 4757 @6781 S2302_27 2. 4758 @6783 S2302_28 2. 66 The SAS System 15:27 Thursday, July 3, 2003 4759 @6785 S2302_29 2. 4760 @6787 S2302_30 2. 4761 @6789 S2302_31 2. 4762 @6791 S2302_32 2. 4763 @6793 SE1_TY01 1. 4764 @6794 SE1_TY02 1. 4765 @6795 SE1_TY03 1. 4766 @6796 SE1_TY04 1. 4767 @6797 SE1_TY05 1. 4768 @6798 SE1_TY06 1. 4769 @6799 SE1_TY07 1. 4770 @6800 SE1_TY08 1. 4771 @6801 SE1_TY09 1. 4772 @6802 SE1_TY10 1. 4773 @6803 SE1_TY11 1. 4774 @6804 SE1_TY12 1. 4775 @6805 SE1_TY13 1. 4776 @6806 SE1_TY14 1. 4777 @6807 SE1_TY15 1. 4778 @6808 SE1_TY16 1. 4779 @6809 SE1_TY17 1. 4780 @6810 SE1_TY18 1. 4781 @6811 SE1_TY19 1. 4782 @6812 SE1_TY20 1. 4783 @6813 SE1_TY21 1. 4784 @6814 SE1_TY22 1. 4785 @6815 SE1_TY23 1. 4786 @6816 SE1_TY24 1. 4787 @6817 SE1_TY25 1. 4788 @6818 SE1_TY26 1. 4789 @6819 SE1_TY27 1. 4790 @6820 SE1_TY28 1. 4791 @6821 SE1_TY29 1. 4792 @6822 SE1_TY30 1. 4793 @6823 SE1_TY31 1. 4794 @6824 SE1_TY32 1. 4795 @6825 SE2_TY01 1. 4796 @6826 SE2_TY02 1. 4797 @6827 SE2_TY03 1. 4798 @6828 SE2_TY04 1. 4799 @6829 SE2_TY05 1. 4800 @6830 SE2_TY06 1. 4801 @6831 SE2_TY07 1. 4802 @6832 SE2_TY08 1. 4803 @6833 SE2_TY09 1. 4804 @6834 SE2_TY10 1. 4805 @6835 SE2_TY11 1. 4806 @6836 SE2_TY12 1. 4807 @6837 SE2_TY13 1. 4808 @6838 SE2_TY14 1. 4809 @6839 SE2_TY15 1. 4810 @6840 SE2_TY16 1. 4811 @6841 SE2_TY17 1. 4812 @6842 SE2_TY18 1. 4813 @6843 SE2_TY19 1. 4814 @6844 SE2_TY20 1. 4815 @6845 SE2_TY21 1. 4816 @6846 SE2_TY22 1. 4817 @6847 SE2_TY23 1. 4818 @6848 SE2_TY24 1. 4819 @6849 SE2_TY25 1. 4820 @6850 SE2_TY26 1. 4821 @6851 SE2_TY27 1. 4822 @6852 SE2_TY28 1. 4823 @6853 SE2_TY29 1. 4824 @6854 SE2_TY30 1. 4825 @6855 SE2_TY31 1. 4826 @6856 SE2_TY32 1. 4827 @6857 SE1_OC01 3. 4828 @6860 SE1_OC02 3. 4829 @6863 SE1_OC03 3. 4830 @6866 SE1_OC04 3. 4831 @6869 SE1_OC05 3. 4832 @6872 SE1_OC06 3. 4833 @6875 SE1_OC07 3. 4834 @6878 SE1_OC08 3. 67 The SAS System 15:27 Thursday, July 3, 2003 4835 @6881 SE1_OC09 3. 4836 @6884 SE1_OC10 3. 4837 @6887 SE1_OC11 3. 4838 @6890 SE1_OC12 3. 4839 @6893 SE1_OC13 3. 4840 @6896 SE1_OC14 3. 4841 @6899 SE1_OC15 3. 4842 @6902 SE1_OC16 3. 4843 @6905 SE1_OC17 3. 4844 @6908 SE1_OC18 3. 4845 @6911 SE1_OC19 3. 4846 @6914 SE1_OC20 3. 4847 @6917 SE1_OC21 3. 4848 @6920 SE1_OC22 3. 4849 @6923 SE1_OC23 3. 4850 @6926 SE1_OC24 3. 4851 @6929 SE1_OC25 3. 4852 @6932 SE1_OC26 3. 4853 @6935 SE1_OC27 3. 4854 @6938 SE1_OC28 3. 4855 @6941 SE1_OC29 3. 4856 @6944 SE1_OC30 3. 4857 @6947 SE1_OC31 3. 4858 @6950 SE1_OC32 3. 4859 @6953 SE2_OC01 3. 4860 @6956 SE2_OC02 3. 4861 @6959 SE2_OC03 3. 4862 @6962 SE2_OC04 3. 4863 @6965 SE2_OC05 3. 4864 @6968 SE2_OC06 3. 4865 @6971 SE2_OC07 3. 4866 @6974 SE2_OC08 3. 4867 @6977 SE2_OC09 3. 4868 @6980 SE2_OC10 3. 4869 @6983 SE2_OC11 3. 4870 @6986 SE2_OC12 3. 4871 @6989 SE2_OC13 3. 4872 @6992 SE2_OC14 3. 4873 @6995 SE2_OC15 3. 4874 @6998 SE2_OC16 3. 4875 @7001 SE2_OC17 3. 4876 @7004 SE2_OC18 3. 4877 @7007 SE2_OC19 3. 4878 @7010 SE2_OC20 3. 4879 @7013 SE2_OC21 3. 4880 @7016 SE2_OC22 3. 4881 @7019 SE2_OC23 3. 4882 @7022 SE2_OC24 3. 4883 @7025 SE2_OC25 3. 4884 @7028 SE2_OC26 3. 4885 @7031 SE2_OC27 3. 4886 @7034 SE2_OC28 3. 4887 @7037 SE2_OC29 3. 4888 @7040 SE2_OC30 3. 4889 @7043 SE2_OC31 3. 4890 @7046 SE2_OC32 3. 4891 @7049 SE1_IN01 2. 4892 @7051 SE1_IN02 2. 4893 @7053 SE1_IN03 2. 4894 @7055 SE1_IN04 2. 4895 @7057 SE1_IN05 2. 4896 @7059 SE1_IN06 2. 4897 @7061 SE1_IN07 2. 4898 @7063 SE1_IN08 2. 4899 @7065 SE1_IN09 2. 4900 @7067 SE1_IN10 2. 4901 @7069 SE1_IN11 2. 4902 @7071 SE1_IN12 2. 4903 @7073 SE1_IN13 2. 4904 @7075 SE1_IN14 2. 4905 @7077 SE1_IN15 2. 4906 @7079 SE1_IN16 2. 4907 @7081 SE1_IN17 2. 4908 @7083 SE1_IN18 2. 4909 @7085 SE1_IN19 2. 4910 @7087 SE1_IN20 2. 68 The SAS System 15:27 Thursday, July 3, 2003 4911 @7089 SE1_IN21 2. 4912 @7091 SE1_IN22 2. 4913 @7093 SE1_IN23 2. 4914 @7095 SE1_IN24 2. 4915 @7097 SE1_IN25 2. 4916 @7099 SE1_IN26 2. 4917 @7101 SE1_IN27 2. 4918 @7103 SE1_IN28 2. 4919 @7105 SE1_IN29 2. 4920 @7107 SE1_IN30 2. 4921 @7109 SE1_IN31 2. 4922 @7111 SE1_IN32 2. 4923 @7113 SE2_IN01 2. 4924 @7115 SE2_IN02 2. 4925 @7117 SE2_IN03 2. 4926 @7119 SE2_IN04 2. 4927 @7121 SE2_IN05 2. 4928 @7123 SE2_IN06 2. 4929 @7125 SE2_IN07 2. 4930 @7127 SE2_IN08 2. 4931 @7129 SE2_IN09 2. 4932 @7131 SE2_IN10 2. 4933 @7133 SE2_IN11 2. 4934 @7135 SE2_IN12 2. 4935 @7137 SE2_IN13 2. 4936 @7139 SE2_IN14 2. 4937 @7141 SE2_IN15 2. 4938 @7143 SE2_IN16 2. 4939 @7145 SE2_IN17 2. 4940 @7147 SE2_IN18 2. 4941 @7149 SE2_IN19 2. 4942 @7151 SE2_IN20 2. 4943 @7153 SE2_IN21 2. 4944 @7155 SE2_IN22 2. 4945 @7157 SE2_IN23 2. 4946 @7159 SE2_IN24 2. 4947 @7161 SE2_IN25 2. 4948 @7163 SE2_IN26 2. 4949 @7165 SE2_IN27 2. 4950 @7167 SE2_IN28 2. 4951 @7169 SE2_IN29 2. 4952 @7171 SE2_IN30 2. 4953 @7173 SE2_IN31 2. 4954 @7175 SE2_IN32 2. 4955 @7177 SE1_WK01 1. 4956 @7178 SE1_WK02 1. 4957 @7179 SE1_WK03 1. 4958 @7180 SE1_WK04 1. 4959 @7181 SE1_WK05 1. 4960 @7182 SE1_WK06 1. 4961 @7183 SE1_WK07 1. 4962 @7184 SE1_WK08 1. 4963 @7185 SE1_WK09 1. 4964 @7186 SE1_WK10 1. 4965 @7187 SE1_WK11 1. 4966 @7188 SE1_WK12 1. 4967 @7189 SE1_WK13 1. 4968 @7190 SE1_WK14 1. 4969 @7191 SE1_WK15 1. 4970 @7192 SE1_WK16 1. 4971 @7193 SE1_WK17 1. 4972 @7194 SE1_WK18 1. 4973 @7195 SE1_WK19 1. 4974 @7196 SE1_WK20 1. 4975 @7197 SE1_WK21 1. 4976 @7198 SE1_WK22 1. 4977 @7199 SE1_WK23 1. 4978 @7200 SE1_WK24 1. 4979 @7201 SE1_WK25 1. 4980 @7202 SE1_WK26 1. 4981 @7203 SE1_WK27 1. 4982 @7204 SE1_WK28 1. 4983 @7205 SE1_WK29 1. 4984 @7206 SE1_WK30 1. 4985 @7207 SE1_WK31 1. 4986 @7208 SE1_WK32 1. 69 The SAS System 15:27 Thursday, July 3, 2003 4987 @7209 SE2_WK01 1. 4988 @7210 SE2_WK02 1. 4989 @7211 SE2_WK03 1. 4990 @7212 SE2_WK04 1. 4991 @7213 SE2_WK05 1. 4992 @7214 SE2_WK06 1. 4993 @7215 SE2_WK07 1. 4994 @7216 SE2_WK08 1. 4995 @7217 SE2_WK09 1. 4996 @7218 SE2_WK10 1. 4997 @7219 SE2_WK11 1. 4998 @7220 SE2_WK12 1. 4999 @7221 SE2_WK13 1. 5000 @7222 SE2_WK14 1. 5001 @7223 SE2_WK15 1. 5002 @7224 SE2_WK16 1. 5003 @7225 SE2_WK17 1. 5004 @7226 SE2_WK18 1. 5005 @7227 SE2_WK19 1. 5006 @7228 SE2_WK20 1. 5007 @7229 SE2_WK21 1. 5008 @7230 SE2_WK22 1. 5009 @7231 SE2_WK23 1. 5010 @7232 SE2_WK24 1. 5011 @7233 SE2_WK25 1. 5012 @7234 SE2_WK26 1. 5013 @7235 SE2_WK27 1. 5014 @7236 SE2_WK28 1. 5015 @7237 SE2_WK29 1. 5016 @7238 SE2_WK30 1. 5017 @7239 SE2_WK31 1. 5018 @7240 SE2_WK32 1. 5019 @7241 SE1_AM01 6. 5020 @7247 SE1_AM02 6. 5021 @7253 SE1_AM03 6. 5022 @7259 SE1_AM04 6. 5023 @7265 SE1_AM05 6. 5024 @7271 SE1_AM06 6. 5025 @7277 SE1_AM07 6. 5026 @7283 SE1_AM08 6. 5027 @7289 SE1_AM09 6. 5028 @7295 SE1_AM10 6. 5029 @7301 SE1_AM11 6. 5030 @7307 SE1_AM12 6. 5031 @7313 SE1_AM13 6. 5032 @7319 SE1_AM14 6. 5033 @7325 SE1_AM15 6. 5034 @7331 SE1_AM16 6. 5035 @7337 SE1_AM17 6. 5036 @7343 SE1_AM18 6. 5037 @7349 SE1_AM19 6. 5038 @7355 SE1_AM20 6. 5039 @7361 SE1_AM21 6. 5040 @7367 SE1_AM22 6. 5041 @7373 SE1_AM23 6. 5042 @7379 SE1_AM24 6. 5043 @7385 SE1_AM25 6. 5044 @7391 SE1_AM26 6. 5045 @7397 SE1_AM27 6. 5046 @7403 SE1_AM28 6. 5047 @7409 SE1_AM29 6. 5048 @7415 SE1_AM30 6. 5049 @7421 SE1_AM31 6. 5050 @7427 SE1_AM32 6. 5051 @7433 SE2_AM01 6. 5052 @7439 SE2_AM02 6. 5053 @7445 SE2_AM03 6. 5054 @7451 SE2_AM04 6. 5055 @7457 SE2_AM05 6. 5056 @7463 SE2_AM06 6. 5057 @7469 SE2_AM07 6. 5058 @7475 SE2_AM08 6. 5059 @7481 SE2_AM09 6. 5060 @7487 SE2_AM10 6. 5061 @7493 SE2_AM11 6. 5062 @7499 SE2_AM12 6. 70 The SAS System 15:27 Thursday, July 3, 2003 5063 @7505 SE2_AM13 6. 5064 @7511 SE2_AM14 6. 5065 @7517 SE2_AM15 6. 5066 @7523 SE2_AM16 6. 5067 @7529 SE2_AM17 6. 5068 @7535 SE2_AM18 6. 5069 @7541 SE2_AM19 6. 5070 @7547 SE2_AM20 6. 5071 @7553 SE2_AM21 6. 5072 @7559 SE2_AM22 6. 5073 @7565 SE2_AM23 6. 5074 @7571 SE2_AM24 6. 5075 @7577 SE2_AM25 6. 5076 @7583 SE2_AM26 6. 5077 @7589 SE2_AM27 6. 5078 @7595 SE2_AM28 6. 5079 @7601 SE2_AM29 6. 5080 @7607 SE2_AM30 6. 5081 @7613 SE2_AM31 6. 5082 @7619 SE2_AM32 6. 5083 @7625 S2212_01 2. 5084 @7627 S2212_02 2. 5085 @7629 S2212_03 2. 5086 @7631 S2212_04 2. 5087 @7633 S2212_05 2. 5088 @7635 S2212_06 2. 5089 @7637 S2212_07 2. 5090 @7639 S2212_08 2. 5091 @7641 S2212_09 2. 5092 @7643 S2212_10 2. 5093 @7645 S2212_11 2. 5094 @7647 S2212_12 2. 5095 @7649 S2212_13 2. 5096 @7651 S2212_14 2. 5097 @7653 S2212_15 2. 5098 @7655 S2212_16 2. 5099 @7657 S2212_17 2. 5100 @7659 S2212_18 2. 5101 @7661 S2212_19 2. 5102 @7663 S2212_20 2. 5103 @7665 S2212_21 2. 5104 @7667 S2212_22 2. 5105 @7669 S2212_23 2. 5106 @7671 S2212_24 2. 5107 @7673 S2212_25 2. 5108 @7675 S2212_26 2. 5109 @7677 S2212_27 2. 5110 @7679 S2212_28 2. 5111 @7681 S2212_29 2. 5112 @7683 S2212_30 2. 5113 @7685 S2212_31 2. 5114 @7687 S2212_32 2. 5115 @7689 S2312_01 2. 5116 @7691 S2312_02 2. 5117 @7693 S2312_03 2. 5118 @7695 S2312_04 2. 5119 @7697 S2312_05 2. 5120 @7699 S2312_06 2. 5121 @7701 S2312_07 2. 5122 @7703 S2312_08 2. 5123 @7705 S2312_09 2. 5124 @7707 S2312_10 2. 5125 @7709 S2312_11 2. 5126 @7711 S2312_12 2. 5127 @7713 S2312_13 2. 5128 @7715 S2312_14 2. 5129 @7717 S2312_15 2. 5130 @7719 S2312_16 2. 5131 @7721 S2312_17 2. 5132 @7723 S2312_18 2. 5133 @7725 S2312_19 2. 5134 @7727 S2312_20 2. 5135 @7729 S2312_21 2. 5136 @7731 S2312_22 2. 5137 @7733 S2312_23 2. 5138 @7735 S2312_24 2. 71 The SAS System 15:27 Thursday, July 3, 2003 5139 @7737 S2312_25 2. 5140 @7739 S2312_26 2. 5141 @7741 S2312_27 2. 5142 @7743 S2312_28 2. 5143 @7745 S2312_29 2. 5144 @7747 S2312_30 2. 5145 @7749 S2312_31 2. 5146 @7751 S2312_32 2. 5147 @7753 G1SRC1 2. 5148 @7755 G1SRC2 2. 5149 @7757 G1SRC3 2. 5150 @7759 G1SRC4 2. 5151 @7761 G1SRC5 2. 5152 @7763 G1SRC6 2. 5153 @7765 G1SRC7 2. 5154 @7767 G1SRC8 2. 5155 @7769 G1SRC9 2. 5156 @7771 G1SRC10 2. 5157 @7773 G1_A1_01 5. 5158 @7778 G1_A1_02 5. 5159 @7783 G1_A1_03 5. 5160 @7788 G1_A1_04 5. 5161 @7793 G1_A1_05 5. 5162 @7798 G1_A1_06 5. 5163 @7803 G1_A1_07 5. 5164 @7808 G1_A1_08 5. 5165 @7813 G1_A1_09 5. 5166 @7818 G1_A1_10 5. 5167 @7823 G1_A1_11 5. 5168 @7828 G1_A1_12 5. 5169 @7833 G1_A1_13 5. 5170 @7838 G1_A1_14 5. 5171 @7843 G1_A1_15 5. 5172 @7848 G1_A1_16 5. 5173 @7853 G1_A1_17 5. 5174 @7858 G1_A1_18 5. 5175 @7863 G1_A1_19 5. 5176 @7868 G1_A1_20 5. 5177 @7873 G1_A1_21 5. 5178 @7878 G1_A1_22 5. 5179 @7883 G1_A1_23 5. 5180 @7888 G1_A1_24 5. 5181 @7893 G1_A1_25 5. 5182 @7898 G1_A1_26 5. 5183 @7903 G1_A1_27 5. 5184 @7908 G1_A1_28 5. 5185 @7913 G1_A1_29 5. 5186 @7918 G1_A1_30 5. 5187 @7923 G1_A1_31 5. 5188 @7928 G1_A1_32 5. 5189 @7933 G1_A2_01 5. 5190 @7938 G1_A2_02 5. 5191 @7943 G1_A2_03 5. 5192 @7948 G1_A2_04 5. 5193 @7953 G1_A2_05 5. 5194 @7958 G1_A2_06 5. 5195 @7963 G1_A2_07 5. 5196 @7968 G1_A2_08 5. 5197 @7973 G1_A2_09 5. 5198 @7978 G1_A2_10 5. 5199 @7983 G1_A2_11 5. 5200 @7988 G1_A2_12 5. 5201 @7993 G1_A2_13 5. 5202 @7998 G1_A2_14 5. 5203 @8003 G1_A2_15 5. 5204 @8008 G1_A2_16 5. 5205 @8013 G1_A2_17 5. 5206 @8018 G1_A2_18 5. 5207 @8023 G1_A2_19 5. 5208 @8028 G1_A2_20 5. 5209 @8033 G1_A2_21 5. 5210 @8038 G1_A2_22 5. 5211 @8043 G1_A2_23 5. 5212 @8048 G1_A2_24 5. 5213 @8053 G1_A2_25 5. 5214 @8058 G1_A2_26 5. 72 The SAS System 15:27 Thursday, July 3, 2003 5215 @8063 G1_A2_27 5. 5216 @8068 G1_A2_28 5. 5217 @8073 G1_A2_29 5. 5218 @8078 G1_A2_30 5. 5219 @8083 G1_A2_31 5. 5220 @8088 G1_A2_32 5. 5221 @8093 G1_A3_01 5. 5222 @8098 G1_A3_02 5. 5223 @8103 G1_A3_03 5. 5224 @8108 G1_A3_04 5. 5225 @8113 G1_A3_05 5. 5226 @8118 G1_A3_06 5. 5227 @8123 G1_A3_07 5. 5228 @8128 G1_A3_08 5. 5229 @8133 G1_A3_09 5. 5230 @8138 G1_A3_10 5. 5231 @8143 G1_A3_11 5. 5232 @8148 G1_A3_12 5. 5233 @8153 G1_A3_13 5. 5234 @8158 G1_A3_14 5. 5235 @8163 G1_A3_15 5. 5236 @8168 G1_A3_16 5. 5237 @8173 G1_A3_17 5. 5238 @8178 G1_A3_18 5. 5239 @8183 G1_A3_19 5. 5240 @8188 G1_A3_20 5. 5241 @8193 G1_A3_21 5. 5242 @8198 G1_A3_22 5. 5243 @8203 G1_A3_23 5. 5244 @8208 G1_A3_24 5. 5245 @8213 G1_A3_25 5. 5246 @8218 G1_A3_26 5. 5247 @8223 G1_A3_27 5. 5248 @8228 G1_A3_28 5. 5249 @8233 G1_A3_29 5. 5250 @8238 G1_A3_30 5. 5251 @8243 G1_A3_31 5. 5252 @8248 G1_A3_32 5. 5253 @8253 G1_A4_01 5. 5254 @8258 G1_A4_02 5. 5255 @8263 G1_A4_03 5. 5256 @8268 G1_A4_04 5. 5257 @8273 G1_A4_05 5. 5258 @8278 G1_A4_06 5. 5259 @8283 G1_A4_07 5. 5260 @8288 G1_A4_08 5. 5261 @8293 G1_A4_09 5. 5262 @8298 G1_A4_10 5. 5263 @8303 G1_A4_11 5. 5264 @8308 G1_A4_12 5. 5265 @8313 G1_A4_13 5. 5266 @8318 G1_A4_14 5. 5267 @8323 G1_A4_15 5. 5268 @8328 G1_A4_16 5. 5269 @8333 G1_A4_17 5. 5270 @8338 G1_A4_18 5. 5271 @8343 G1_A4_19 5. 5272 @8348 G1_A4_20 5. 5273 @8353 G1_A4_21 5. 5274 @8358 G1_A4_22 5. 5275 @8363 G1_A4_23 5. 5276 @8368 G1_A4_24 5. 5277 @8373 G1_A4_25 5. 5278 @8378 G1_A4_26 5. 5279 @8383 G1_A4_27 5. 5280 @8388 G1_A4_28 5. 5281 @8393 G1_A4_29 5. 5282 @8398 G1_A4_30 5. 5283 @8403 G1_A4_31 5. 5284 @8408 G1_A4_32 5. 5285 @8413 G1_A5_01 5. 5286 @8418 G1_A5_02 5. 5287 @8423 G1_A5_03 5. 5288 @8428 G1_A5_04 5. 5289 @8433 G1_A5_05 5. 5290 @8438 G1_A5_06 5. 73 The SAS System 15:27 Thursday, July 3, 2003 5291 @8443 G1_A5_07 5. 5292 @8448 G1_A5_08 5. 5293 @8453 G1_A5_09 5. 5294 @8458 G1_A5_10 5. 5295 @8463 G1_A5_11 5. 5296 @8468 G1_A5_12 5. 5297 @8473 G1_A5_13 5. 5298 @8478 G1_A5_14 5. 5299 @8483 G1_A5_15 5. 5300 @8488 G1_A5_16 5. 5301 @8493 G1_A5_17 5. 5302 @8498 G1_A5_18 5. 5303 @8503 G1_A5_19 5. 5304 @8508 G1_A5_20 5. 5305 @8513 G1_A5_21 5. 5306 @8518 G1_A5_22 5. 5307 @8523 G1_A5_23 5. 5308 @8528 G1_A5_24 5. 5309 @8533 G1_A5_25 5. 5310 @8538 G1_A5_26 5. 5311 @8543 G1_A5_27 5. 5312 @8548 G1_A5_28 5. 5313 @8553 G1_A5_29 5. 5314 @8558 G1_A5_30 5. 5315 @8563 G1_A5_31 5. 5316 @8568 G1_A5_32 5. 5317 @8573 G1_A6_01 5. 5318 @8578 G1_A6_02 5. 5319 @8583 G1_A6_03 5. 5320 @8588 G1_A6_04 5. 5321 @8593 G1_A6_05 5. 5322 @8598 G1_A6_06 5. 5323 @8603 G1_A6_07 5. 5324 @8608 G1_A6_08 5. 5325 @8613 G1_A6_09 5. 5326 @8618 G1_A6_10 5. 5327 @8623 G1_A6_11 5. 5328 @8628 G1_A6_12 5. 5329 @8633 G1_A6_13 5. 5330 @8638 G1_A6_14 5. 5331 @8643 G1_A6_15 5. 5332 @8648 G1_A6_16 5. 5333 @8653 G1_A6_17 5. 5334 @8658 G1_A6_18 5. 5335 @8663 G1_A6_19 5. 5336 @8668 G1_A6_20 5. 5337 @8673 G1_A6_21 5. 5338 @8678 G1_A6_22 5. 5339 @8683 G1_A6_23 5. 5340 @8688 G1_A6_24 5. 5341 @8693 G1_A6_25 5. 5342 @8698 G1_A6_26 5. 5343 @8703 G1_A6_27 5. 5344 @8708 G1_A6_28 5. 5345 @8713 G1_A6_29 5. 5346 @8718 G1_A6_30 5. 5347 @8723 G1_A6_31 5. 5348 @8728 G1_A6_32 5. 5349 @8733 G1_A7_01 5. 5350 @8738 G1_A7_02 5. 5351 @8743 G1_A7_03 5. 5352 @8748 G1_A7_04 5. 5353 @8753 G1_A7_05 5. 5354 @8758 G1_A7_06 5. 5355 @8763 G1_A7_07 5. 5356 @8768 G1_A7_08 5. 5357 @8773 G1_A7_09 5. 5358 @8778 G1_A7_10 5. 5359 @8783 G1_A7_11 5. 5360 @8788 G1_A7_12 5. 5361 @8793 G1_A7_13 5. 5362 @8798 G1_A7_14 5. 5363 @8803 G1_A7_15 5. 5364 @8808 G1_A7_16 5. 5365 @8813 G1_A7_17 5. 5366 @8818 G1_A7_18 5. 74 The SAS System 15:27 Thursday, July 3, 2003 5367 @8823 G1_A7_19 5. 5368 @8828 G1_A7_20 5. 5369 @8833 G1_A7_21 5. 5370 @8838 G1_A7_22 5. 5371 @8843 G1_A7_23 5. 5372 @8848 G1_A7_24 5. 5373 @8853 G1_A7_25 5. 5374 @8858 G1_A7_26 5. 5375 @8863 G1_A7_27 5. 5376 @8868 G1_A7_28 5. 5377 @8873 G1_A7_29 5. 5378 @8878 G1_A7_30 5. 5379 @8883 G1_A7_31 5. 5380 @8888 G1_A7_32 5. 5381 @8893 G1_A8_01 5. 5382 @8898 G1_A8_02 5. 5383 @8903 G1_A8_03 5. 5384 @8908 G1_A8_04 5. 5385 @8913 G1_A8_05 5. 5386 @8918 G1_A8_06 5. 5387 @8923 G1_A8_07 5. 5388 @8928 G1_A8_08 5. 5389 @8933 G1_A8_09 5. 5390 @8938 G1_A8_10 5. 5391 @8943 G1_A8_11 5. 5392 @8948 G1_A8_12 5. 5393 @8953 G1_A8_13 5. 5394 @8958 G1_A8_14 5. 5395 @8963 G1_A8_15 5. 5396 @8968 G1_A8_16 5. 5397 @8973 G1_A8_17 5. 5398 @8978 G1_A8_18 5. 5399 @8983 G1_A8_19 5. 5400 @8988 G1_A8_20 5. 5401 @8993 G1_A8_21 5. 5402 @8998 G1_A8_22 5. 5403 @9003 G1_A8_23 5. 5404 @9008 G1_A8_24 5. 5405 @9013 G1_A8_25 5. 5406 @9018 G1_A8_26 5. 5407 @9023 G1_A8_27 5. 5408 @9028 G1_A8_28 5. 5409 @9033 G1_A8_29 5. 5410 @9038 G1_A8_30 5. 5411 @9043 G1_A8_31 5. 5412 @9048 G1_A8_32 5. 5413 @9053 G1_A9_01 5. 5414 @9058 G1_A9_02 5. 5415 @9063 G1_A9_03 5. 5416 @9068 G1_A9_04 5. 5417 @9073 G1_A9_05 5. 5418 @9078 G1_A9_06 5. 5419 @9083 G1_A9_07 5. 5420 @9088 G1_A9_08 5. 5421 @9093 G1_A9_09 5. 5422 @9098 G1_A9_10 5. 5423 @9103 G1_A9_11 5. 5424 @9108 G1_A9_12 5. 5425 @9113 G1_A9_13 5. 5426 @9118 G1_A9_14 5. 5427 @9123 G1_A9_15 5. 5428 @9128 G1_A9_16 5. 5429 @9133 G1_A9_17 5. 5430 @9138 G1_A9_18 5. 5431 @9143 G1_A9_19 5. 5432 @9148 G1_A9_20 5. 5433 @9153 G1_A9_21 5. 5434 @9158 G1_A9_22 5. 5435 @9163 G1_A9_23 5. 5436 @9168 G1_A9_24 5. 5437 @9173 G1_A9_25 5. 5438 @9178 G1_A9_26 5. 5439 @9183 G1_A9_27 5. 5440 @9188 G1_A9_28 5. 5441 @9193 G1_A9_29 5. 5442 @9198 G1_A9_30 5. 75 The SAS System 15:27 Thursday, July 3, 2003 5443 @9203 G1_A9_31 5. 5444 @9208 G1_A9_32 5. 5445 @9213 G1_A1001 5. 5446 @9218 G1_A1002 5. 5447 @9223 G1_A1003 5. 5448 @9228 G1_A1004 5. 5449 @9233 G1_A1005 5. 5450 @9238 G1_A1006 5. 5451 @9243 G1_A1007 5. 5452 @9248 G1_A1008 5. 5453 @9253 G1_A1009 5. 5454 @9258 G1_A1010 5. 5455 @9263 G1_A1011 5. 5456 @9268 G1_A1012 5. 5457 @9273 G1_A1013 5. 5458 @9278 G1_A1014 5. 5459 @9283 G1_A1015 5. 5460 @9288 G1_A1016 5. 5461 @9293 G1_A1017 5. 5462 @9298 G1_A1018 5. 5463 @9303 G1_A1019 5. 5464 @9308 G1_A1020 5. 5465 @9313 G1_A1021 5. 5466 @9318 G1_A1022 5. 5467 @9323 G1_A1023 5. 5468 @9328 G1_A1024 5. 5469 @9333 G1_A1025 5. 5470 @9338 G1_A1026 5. 5471 @9343 G1_A1027 5. 5472 @9348 G1_A1028 5. 5473 @9353 G1_A1029 5. 5474 @9358 G1_A1030 5. 5475 @9363 G1_A1031 5. 5476 @9368 G1_A1032 5. 5477 @9373 SSRECIN1 1. 5478 @9374 SSRECIN2 1. 5479 @9375 SSRECIN3 1. 5480 @9376 SSRECIN4 1. 5481 @9377 SSRECIN5 1. 5482 @9378 SSRECIN6 1. 5483 @9379 SSRECIN7 1. 5484 @9380 SSRECIN8 1. 5485 @9381 RRRECIN1 1. 5486 @9382 RRRECIN2 1. 5487 @9383 RRRECIN3 1. 5488 @9384 RRRECIN4 1. 5489 @9385 RRRECIN5 1. 5490 @9386 RRRECIN6 1. 5491 @9387 RRRECIN7 1. 5492 @9388 RRRECIN8 1. 5493 @9389 VET3060 2. 5494 @9391 AST1001 1. 5495 @9392 AST1002 1. 5496 @9393 AST1003 1. 5497 @9394 AST1004 1. 5498 @9395 AST1005 1. 5499 @9396 AST1006 1. 5500 @9397 AST1007 1. 5501 @9398 AST1008 1. 5502 @9399 AST1011 1. 5503 @9400 AST1012 1. 5504 @9401 AST1013 1. 5505 @9402 AST1014 1. 5506 @9403 AST1015 1. 5507 @9404 AST1016 1. 5508 @9405 AST1017 1. 5509 @9406 AST1018 1. 5510 @9407 AST1021 1. 5511 @9408 AST1022 1. 5512 @9409 AST1023 1. 5513 @9410 AST1024 1. 5514 @9411 AST1025 1. 5515 @9412 AST1026 1. 5516 @9413 AST1027 1. 5517 @9414 AST1028 1. 5518 @9415 AST1031 1. 76 The SAS System 15:27 Thursday, July 3, 2003 5519 @9416 AST1032 1. 5520 @9417 AST1033 1. 5521 @9418 AST1034 1. 5522 @9419 AST1035 1. 5523 @9420 AST1036 1. 5524 @9421 AST1037 1. 5525 @9422 AST1038 1. 5526 @9423 AST1041 1. 5527 @9424 AST1042 1. 5528 @9425 AST1043 1. 5529 @9426 AST1044 1. 5530 @9427 AST1045 1. 5531 @9428 AST1046 1. 5532 @9429 AST1047 1. 5533 @9430 AST1048 1. 5534 @9431 AST1051 1. 5535 @9432 AST1052 1. 5536 @9433 AST1053 1. 5537 @9434 AST1054 1. 5538 @9435 AST1055 1. 5539 @9436 AST1056 1. 5540 @9437 AST1057 1. 5541 @9438 AST1058 1. 5542 @9439 AST1061 1. 5543 @9440 AST1062 1. 5544 @9441 AST1063 1. 5545 @9442 AST1064 1. 5546 @9443 AST1065 1. 5547 @9444 AST1066 1. 5548 @9445 AST1067 1. 5549 @9446 AST1068 1. 5550 @9447 AST1071 1. 5551 @9448 AST1072 1. 5552 @9449 AST1073 1. 5553 @9450 AST1074 1. 5554 @9451 AST1075 1. 5555 @9452 AST1076 1. 5556 @9453 AST1077 1. 5557 @9454 AST1078 1. 5558 @9455 AST1101 1. 5559 @9456 AST1102 1. 5560 @9457 AST1103 1. 5561 @9458 AST1104 1. 5562 @9459 AST1105 1. 5563 @9460 AST1106 1. 5564 @9461 AST1107 1. 5565 @9462 AST1108 1. 5566 @9463 AST1201 1. 5567 @9464 AST1202 1. 5568 @9465 AST1203 1. 5569 @9466 AST1204 1. 5570 @9467 AST1205 1. 5571 @9468 AST1206 1. 5572 @9469 AST1207 1. 5573 @9470 AST1208 1. 5574 @9471 AST1301 1. 5575 @9472 AST1302 1. 5576 @9473 AST1303 1. 5577 @9474 AST1304 1. 5578 @9475 AST1305 1. 5579 @9476 AST1306 1. 5580 @9477 AST1307 1. 5581 @9478 AST1308 1. 5582 @9479 AST1401 1. 5583 @9480 AST1402 1. 5584 @9481 AST1403 1. 5585 @9482 AST1404 1. 5586 @9483 AST1405 1. 5587 @9484 AST1406 1. 5588 @9485 AST1407 1. 5589 @9486 AST1408 1. 5590 @9487 AST1501 1. 5591 @9488 AST1502 1. 5592 @9489 AST1503 1. 5593 @9490 AST1504 1. 5594 @9491 AST1505 1. 77 The SAS System 15:27 Thursday, July 3, 2003 5595 @9492 AST1506 1. 5596 @9493 AST1507 1. 5597 @9494 AST1508 1. 5598 @9495 G2SRC100 1. 5599 @9496 G2SRC104 1. 5600 @9497 G2SRC110 1. 5601 @9498 G2SRC120 1. 5602 @9499 G2SRC130 1. 5603 @9500 G2SRC140 1. 5604 @9501 G2A10001 7. 5605 @9508 G2A10002 7. 5606 @9515 G2A10003 7. 5607 @9522 G2A10004 7. 5608 @9529 G2A10005 7. 5609 @9536 G2A10006 7. 5610 @9543 G2A10007 7. 5611 @9550 G2A10008 7. 5612 @9557 G2A10009 7. 5613 @9564 G2A10010 7. 5614 @9571 G2A10011 7. 5615 @9578 G2A10012 7. 5616 @9585 G2A10013 7. 5617 @9592 G2A10014 7. 5618 @9599 G2A10015 7. 5619 @9606 G2A10016 7. 5620 @9613 G2A10017 7. 5621 @9620 G2A10018 7. 5622 @9627 G2A10019 7. 5623 @9634 G2A10020 7. 5624 @9641 G2A10021 7. 5625 @9648 G2A10022 7. 5626 @9655 G2A10023 7. 5627 @9662 G2A10024 7. 5628 @9669 G2A10025 7. 5629 @9676 G2A10026 7. 5630 @9683 G2A10027 7. 5631 @9690 G2A10028 7. 5632 @9697 G2A10029 7. 5633 @9704 G2A10030 7. 5634 @9711 G2A10031 7. 5635 @9718 G2A10032 7. 5636 @9725 G2A10401 7. 5637 @9732 G2A10402 7. 5638 @9739 G2A10403 7. 5639 @9746 G2A10404 7. 5640 @9753 G2A10405 7. 5641 @9760 G2A10406 7. 5642 @9767 G2A10407 7. 5643 @9774 G2A10408 7. 5644 @9781 G2A10409 7. 5645 @9788 G2A10410 7. 5646 @9795 G2A10411 7. 5647 @9802 G2A10412 7. 5648 @9809 G2A10413 7. 5649 @9816 G2A10414 7. 5650 @9823 G2A10415 7. 5651 @9830 G2A10416 7. 5652 @9837 G2A10417 7. 5653 @9844 G2A10418 7. 5654 @9851 G2A10419 7. 5655 @9858 G2A10420 7. 5656 @9865 G2A10421 7. 5657 @9872 G2A10422 7. 5658 @9879 G2A10423 7. 5659 @9886 G2A10424 7. 5660 @9893 G2A10425 7. 5661 @9900 G2A10426 7. 5662 @9907 G2A10427 7. 5663 @9914 G2A10428 7. 5664 @9921 G2A10429 7. 5665 @9928 G2A10430 7. 5666 @9935 G2A10431 7. 5667 @9942 G2A10432 7. 5668 @9949 G2A11001 7. 5669 @9956 G2A11002 7. 5670 @9963 G2A11003 7. 78 The SAS System 15:27 Thursday, July 3, 2003 5671 @9970 G2A11004 7. 5672 @9977 G2A11005 7. 5673 @9984 G2A11006 7. 5674 @9991 G2A11007 7. 5675 @9998 G2A11008 7. 5676 @10005 G2A11009 7. 5677 @10012 G2A11010 7. 5678 @10019 G2A11011 7. 5679 @10026 G2A11012 7. 5680 @10033 G2A11013 7. 5681 @10040 G2A11014 7. 5682 @10047 G2A11015 7. 5683 @10054 G2A11016 7. 5684 @10061 G2A11017 7. 5685 @10068 G2A11018 7. 5686 @10075 G2A11019 7. 5687 @10082 G2A11020 7. 5688 @10089 G2A11021 7. 5689 @10096 G2A11022 7. 5690 @10103 G2A11023 7. 5691 @10110 G2A11024 7. 5692 @10117 G2A11025 7. 5693 @10124 G2A11026 7. 5694 @10131 G2A11027 7. 5695 @10138 G2A11028 7. 5696 @10145 G2A11029 7. 5697 @10152 G2A11030 7. 5698 @10159 G2A11031 7. 5699 @10166 G2A11032 7. 5700 @10173 G2A12001 7. 5701 @10180 G2A12002 7. 5702 @10187 G2A12003 7. 5703 @10194 G2A12004 7. 5704 @10201 G2A12005 7. 5705 @10208 G2A12006 7. 5706 @10215 G2A12007 7. 5707 @10222 G2A12008 7. 5708 @10229 G2A12009 7. 5709 @10236 G2A12010 7. 5710 @10243 G2A12011 7. 5711 @10250 G2A12012 7. 5712 @10257 G2A12013 7. 5713 @10264 G2A12014 7. 5714 @10271 G2A12015 7. 5715 @10278 G2A12016 7. 5716 @10285 G2A12017 7. 5717 @10292 G2A12018 7. 5718 @10299 G2A12019 7. 5719 @10306 G2A12020 7. 5720 @10313 G2A12021 7. 5721 @10320 G2A12022 7. 5722 @10327 G2A12023 7. 5723 @10334 G2A12024 7. 5724 @10341 G2A12025 7. 5725 @10348 G2A12026 7. 5726 @10355 G2A12027 7. 5727 @10362 G2A12028 7. 5728 @10369 G2A12029 7. 5729 @10376 G2A12030 7. 5730 @10383 G2A12031 7. 5731 @10390 G2A12032 7. 5732 @10397 G2A13001 7. 5733 @10404 G2A13002 7. 5734 @10411 G2A13003 7. 5735 @10418 G2A13004 7. 5736 @10425 G2A13005 7. 5737 @10432 G2A13006 7. 5738 @10439 G2A13007 7. 5739 @10446 G2A13008 7. 5740 @10453 G2A13009 7. 5741 @10460 G2A13010 7. 5742 @10467 G2A13011 7. 5743 @10474 G2A13012 7. 5744 @10481 G2A13013 7. 5745 @10488 G2A13014 7. 5746 @10495 G2A13015 7. 79 The SAS System 15:27 Thursday, July 3, 2003 5747 @10502 G2A13016 7. 5748 @10509 G2A13017 7. 5749 @10516 G2A13018 7. 5750 @10523 G2A13019 7. 5751 @10530 G2A13020 7. 5752 @10537 G2A13021 7. 5753 @10544 G2A13022 7. 5754 @10551 G2A13023 7. 5755 @10558 G2A13024 7. 5756 @10565 G2A13025 7. 5757 @10572 G2A13026 7. 5758 @10579 G2A13027 7. 5759 @10586 G2A13028 7. 5760 @10593 G2A13029 7. 5761 @10600 G2A13030 7. 5762 @10607 G2A13031 7. 5763 @10614 G2A13032 7. 5764 @10621 G2A14001 7. 5765 @10628 G2A14002 7. 5766 @10635 G2A14003 7. 5767 @10642 G2A14004 7. 5768 @10649 G2A14005 7. 5769 @10656 G2A14006 7. 5770 @10663 G2A14007 7. 5771 @10670 G2A14008 7. 5772 @10677 G2A14009 7. 5773 @10684 G2A14010 7. 5774 @10691 G2A14011 7. 5775 @10698 G2A14012 7. 5776 @10705 G2A14013 7. 5777 @10712 G2A14014 7. 5778 @10719 G2A14015 7. 5779 @10726 G2A14016 7. 5780 @10733 G2A14017 7. 5781 @10740 G2A14018 7. 5782 @10747 G2A14019 7. 5783 @10754 G2A14020 7. 5784 @10761 G2A14021 7. 5785 @10768 G2A14022 7. 5786 @10775 G2A14023 7. 5787 @10782 G2A14024 7. 5788 @10789 G2A14025 7. 5789 @10796 G2A14026 7. 5790 @10803 G2A14027 7. 5791 @10810 G2A14028 7. 5792 @10817 G2A14029 7. 5793 @10824 G2A14030 7. 5794 @10831 G2A14031 7. 5795 @10838 G2A14032 7. 5796 @10845 CARECO01 1. 5797 @10846 CARECO02 1. 5798 @10847 CARECO03 1. 5799 @10848 CARECO04 1. 5800 @10849 CARECO05 1. 5801 @10850 CARECO06 1. 5802 @10851 CARECO07 1. 5803 @10852 CARECO08 1. 5804 @10853 CARECO09 1. 5805 @10854 CARECO10 1. 5806 @10855 CARECO11 1. 5807 @10856 CARECO12 1. 5808 @10857 CARECO13 1. 5809 @10858 CARECO14 1. 5810 @10859 CARECO15 1. 5811 @10860 CARECO16 1. 5812 @10861 CARECO17 1. 5813 @10862 CARECO18 1. 5814 @10863 CARECO19 1. 5815 @10864 CARECO20 1. 5816 @10865 CARECO21 1. 5817 @10866 CARECO22 1. 5818 @10867 CARECO23 1. 5819 @10868 CARECO24 1. 5820 @10869 CARECO25 1. 5821 @10870 CARECO26 1. 5822 @10871 CARECO27 1. 80 The SAS System 15:27 Thursday, July 3, 2003 5823 @10872 CARECO28 1. 5824 @10873 CARECO29 1. 5825 @10874 CARECO30 1. 5826 @10875 CARECO31 1. 5827 @10876 CARECO32 1. 5828 @10877 CAIDCO01 1. 5829 @10878 CAIDCO02 1. 5830 @10879 CAIDCO03 1. 5831 @10880 CAIDCO04 1. 5832 @10881 CAIDCO05 1. 5833 @10882 CAIDCO06 1. 5834 @10883 CAIDCO07 1. 5835 @10884 CAIDCO08 1. 5836 @10885 CAIDCO09 1. 5837 @10886 CAIDCO10 1. 5838 @10887 CAIDCO11 1. 5839 @10888 CAIDCO12 1. 5840 @10889 CAIDCO13 1. 5841 @10890 CAIDCO14 1. 5842 @10891 CAIDCO15 1. 5843 @10892 CAIDCO16 1. 5844 @10893 CAIDCO17 1. 5845 @10894 CAIDCO18 1. 5846 @10895 CAIDCO19 1. 5847 @10896 CAIDCO20 1. 5848 @10897 CAIDCO21 1. 5849 @10898 CAIDCO22 1. 5850 @10899 CAIDCO23 1. 5851 @10900 CAIDCO24 1. 5852 @10901 CAIDCO25 1. 5853 @10902 CAIDCO26 1. 5854 @10903 CAIDCO27 1. 5855 @10904 CAIDCO28 1. 5856 @10905 CAIDCO29 1. 5857 @10906 CAIDCO30 1. 5858 @10907 CAIDCO31 1. 5859 @10908 CAIDCO32 1. 5860 @10909 WICCOV01 1. 5861 @10910 WICCOV02 1. 5862 @10911 WICCOV03 1. 5863 @10912 WICCOV04 1. 5864 @10913 WICCOV05 1. 5865 @10914 WICCOV06 1. 5866 @10915 WICCOV07 1. 5867 @10916 WICCOV08 1. 5868 @10917 WICCOV09 1. 5869 @10918 WICCOV10 1. 5870 @10919 WICCOV11 1. 5871 @10920 WICCOV12 1. 5872 @10921 WICCOV13 1. 5873 @10922 WICCOV14 1. 5874 @10923 WICCOV15 1. 5875 @10924 WICCOV16 1. 5876 @10925 WICCOV17 1. 5877 @10926 WICCOV18 1. 5878 @10927 WICCOV19 1. 5879 @10928 WICCOV20 1. 5880 @10929 WICCOV21 1. 5881 @10930 WICCOV22 1. 5882 @10931 WICCOV23 1. 5883 @10932 WICCOV24 1. 5884 @10933 WICCOV25 1. 5885 @10934 WICCOV26 1. 5886 @10935 WICCOV27 1. 5887 @10936 WICCOV28 1. 5888 @10937 WICCOV29 1. 5889 @10938 WICCOV30 1. 5890 @10939 WICCOV31 1. 5891 @10940 WICCOV32 1. 5892 @10941 AFDC_01 1. 5893 @10942 AFDC_02 1. 5894 @10943 AFDC_03 1. 5895 @10944 AFDC_04 1. 5896 @10945 AFDC_05 1. 5897 @10946 AFDC_06 1. 5898 @10947 AFDC_07 1. 81 The SAS System 15:27 Thursday, July 3, 2003 5899 @10948 AFDC_08 1. 5900 @10949 AFDC_09 1. 5901 @10950 AFDC_10 1. 5902 @10951 AFDC_11 1. 5903 @10952 AFDC_12 1. 5904 @10953 AFDC_13 1. 5905 @10954 AFDC_14 1. 5906 @10955 AFDC_15 1. 5907 @10956 AFDC_16 1. 5908 @10957 AFDC_17 1. 5909 @10958 AFDC_18 1. 5910 @10959 AFDC_19 1. 5911 @10960 AFDC_20 1. 5912 @10961 AFDC_21 1. 5913 @10962 AFDC_22 1. 5914 @10963 AFDC_23 1. 5915 @10964 AFDC_24 1. 5916 @10965 AFDC_25 1. 5917 @10966 AFDC_26 1. 5918 @10967 AFDC_27 1. 5919 @10968 AFDC_28 1. 5920 @10969 AFDC_29 1. 5921 @10970 AFDC_30 1. 5922 @10971 AFDC_31 1. 5923 @10972 AFDC_32 1. 5924 @10973 FOODST01 1. 5925 @10974 FOODST02 1. 5926 @10975 FOODST03 1. 5927 @10976 FOODST04 1. 5928 @10977 FOODST05 1. 5929 @10978 FOODST06 1. 5930 @10979 FOODST07 1. 5931 @10980 FOODST08 1. 5932 @10981 FOODST09 1. 5933 @10982 FOODST10 1. 5934 @10983 FOODST11 1. 5935 @10984 FOODST12 1. 5936 @10985 FOODST13 1. 5937 @10986 FOODST14 1. 5938 @10987 FOODST15 1. 5939 @10988 FOODST16 1. 5940 @10989 FOODST17 1. 5941 @10990 FOODST18 1. 5942 @10991 FOODST19 1. 5943 @10992 FOODST20 1. 5944 @10993 FOODST21 1. 5945 @10994 FOODST22 1. 5946 @10995 FOODST23 1. 5947 @10996 FOODST24 1. 5948 @10997 FOODST25 1. 5949 @10998 FOODST26 1. 5950 @10999 FOODST27 1. 5951 @11000 FOODST28 1. 5952 @11001 FOODST29 1. 5953 @11002 FOODST30 1. 5954 @11003 FOODST31 1. 5955 @11004 FOODST32 1. 5956 @11005 GEN_AS01 1. 5957 @11006 GEN_AS02 1. 5958 @11007 GEN_AS03 1. 5959 @11008 GEN_AS04 1. 5960 @11009 GEN_AS05 1. 5961 @11010 GEN_AS06 1. 5962 @11011 GEN_AS07 1. 5963 @11012 GEN_AS08 1. 5964 @11013 GEN_AS09 1. 5965 @11014 GEN_AS10 1. 5966 @11015 GEN_AS11 1. 5967 @11016 GEN_AS12 1. 5968 @11017 GEN_AS13 1. 5969 @11018 GEN_AS14 1. 5970 @11019 GEN_AS15 1. 5971 @11020 GEN_AS16 1. 5972 @11021 GEN_AS17 1. 5973 @11022 GEN_AS18 1. 5974 @11023 GEN_AS19 1. 82 The SAS System 15:27 Thursday, July 3, 2003 5975 @11024 GEN_AS20 1. 5976 @11025 GEN_AS21 1. 5977 @11026 GEN_AS22 1. 5978 @11027 GEN_AS23 1. 5979 @11028 GEN_AS24 1. 5980 @11029 GEN_AS25 1. 5981 @11030 GEN_AS26 1. 5982 @11031 GEN_AS27 1. 5983 @11032 GEN_AS28 1. 5984 @11033 GEN_AS29 1. 5985 @11034 GEN_AS30 1. 5986 @11035 GEN_AS31 1. 5987 @11036 GEN_AS32 1. 5988 @11037 FOST_K01 1. 5989 @11038 FOST_K02 1. 5990 @11039 FOST_K03 1. 5991 @11040 FOST_K04 1. 5992 @11041 FOST_K05 1. 5993 @11042 FOST_K06 1. 5994 @11043 FOST_K07 1. 5995 @11044 FOST_K08 1. 5996 @11045 FOST_K09 1. 5997 @11046 FOST_K10 1. 5998 @11047 FOST_K11 1. 5999 @11048 FOST_K12 1. 6000 @11049 FOST_K13 1. 6001 @11050 FOST_K14 1. 6002 @11051 FOST_K15 1. 6003 @11052 FOST_K16 1. 6004 @11053 FOST_K17 1. 6005 @11054 FOST_K18 1. 6006 @11055 FOST_K19 1. 6007 @11056 FOST_K20 1. 6008 @11057 FOST_K21 1. 6009 @11058 FOST_K22 1. 6010 @11059 FOST_K23 1. 6011 @11060 FOST_K24 1. 6012 @11061 FOST_K25 1. 6013 @11062 FOST_K26 1. 6014 @11063 FOST_K27 1. 6015 @11064 FOST_K28 1. 6016 @11065 FOST_K29 1. 6017 @11066 FOST_K30 1. 6018 @11067 FOST_K31 1. 6019 @11068 FOST_K32 1. 6020 @11069 OTH_WE01 1. 6021 @11070 OTH_WE02 1. 6022 @11071 OTH_WE03 1. 6023 @11072 OTH_WE04 1. 6024 @11073 OTH_WE05 1. 6025 @11074 OTH_WE06 1. 6026 @11075 OTH_WE07 1. 6027 @11076 OTH_WE08 1. 6028 @11077 OTH_WE09 1. 6029 @11078 OTH_WE10 1. 6030 @11079 OTH_WE11 1. 6031 @11080 OTH_WE12 1. 6032 @11081 OTH_WE13 1. 6033 @11082 OTH_WE14 1. 6034 @11083 OTH_WE15 1. 6035 @11084 OTH_WE16 1. 6036 @11085 OTH_WE17 1. 6037 @11086 OTH_WE18 1. 6038 @11087 OTH_WE19 1. 6039 @11088 OTH_WE20 1. 6040 @11089 OTH_WE21 1. 6041 @11090 OTH_WE22 1. 6042 @11091 OTH_WE23 1. 6043 @11092 OTH_WE24 1. 6044 @11093 OTH_WE25 1. 6045 @11094 OTH_WE26 1. 6046 @11095 OTH_WE27 1. 6047 @11096 OTH_WE28 1. 6048 @11097 OTH_WE29 1. 6049 @11098 OTH_WE30 1. 6050 @11099 OTH_WE31 1. 83 The SAS System 15:27 Thursday, July 3, 2003 6051 @11100 OTH_WE32 1. 6052 @11101 SOC_SE01 1. 6053 @11102 SOC_SE02 1. 6054 @11103 SOC_SE03 1. 6055 @11104 SOC_SE04 1. 6056 @11105 SOC_SE05 1. 6057 @11106 SOC_SE06 1. 6058 @11107 SOC_SE07 1. 6059 @11108 SOC_SE08 1. 6060 @11109 SOC_SE09 1. 6061 @11110 SOC_SE10 1. 6062 @11111 SOC_SE11 1. 6063 @11112 SOC_SE12 1. 6064 @11113 SOC_SE13 1. 6065 @11114 SOC_SE14 1. 6066 @11115 SOC_SE15 1. 6067 @11116 SOC_SE16 1. 6068 @11117 SOC_SE17 1. 6069 @11118 SOC_SE18 1. 6070 @11119 SOC_SE19 1. 6071 @11120 SOC_SE20 1. 6072 @11121 SOC_SE21 1. 6073 @11122 SOC_SE22 1. 6074 @11123 SOC_SE23 1. 6075 @11124 SOC_SE24 1. 6076 @11125 SOC_SE25 1. 6077 @11126 SOC_SE26 1. 6078 @11127 SOC_SE27 1. 6079 @11128 SOC_SE28 1. 6080 @11129 SOC_SE29 1. 6081 @11130 SOC_SE30 1. 6082 @11131 SOC_SE31 1. 6083 @11132 SOC_SE32 1. 6084 @11133 RAILRD01 1. 6085 @11134 RAILRD02 1. 6086 @11135 RAILRD03 1. 6087 @11136 RAILRD04 1. 6088 @11137 RAILRD05 1. 6089 @11138 RAILRD06 1. 6090 @11139 RAILRD07 1. 6091 @11140 RAILRD08 1. 6092 @11141 RAILRD09 1. 6093 @11142 RAILRD10 1. 6094 @11143 RAILRD11 1. 6095 @11144 RAILRD12 1. 6096 @11145 RAILRD13 1. 6097 @11146 RAILRD14 1. 6098 @11147 RAILRD15 1. 6099 @11148 RAILRD16 1. 6100 @11149 RAILRD17 1. 6101 @11150 RAILRD18 1. 6102 @11151 RAILRD19 1. 6103 @11152 RAILRD20 1. 6104 @11153 RAILRD21 1. 6105 @11154 RAILRD22 1. 6106 @11155 RAILRD23 1. 6107 @11156 RAILRD24 1. 6108 @11157 RAILRD25 1. 6109 @11158 RAILRD26 1. 6110 @11159 RAILRD27 1. 6111 @11160 RAILRD28 1. 6112 @11161 RAILRD29 1. 6113 @11162 RAILRD30 1. 6114 @11163 RAILRD31 1. 6115 @11164 RAILRD32 1. 6116 @11165 VETS_01 1. 6117 @11166 VETS_02 1. 6118 @11167 VETS_03 1. 6119 @11168 VETS_04 1. 6120 @11169 VETS_05 1. 6121 @11170 VETS_06 1. 6122 @11171 VETS_07 1. 6123 @11172 VETS_08 1. 6124 @11173 VETS_09 1. 6125 @11174 VETS_10 1. 6126 @11175 VETS_11 1. 84 The SAS System 15:27 Thursday, July 3, 2003 6127 @11176 VETS_12 1. 6128 @11177 VETS_13 1. 6129 @11178 VETS_14 1. 6130 @11179 VETS_15 1. 6131 @11180 VETS_16 1. 6132 @11181 VETS_17 1. 6133 @11182 VETS_18 1. 6134 @11183 VETS_19 1. 6135 @11184 VETS_20 1. 6136 @11185 VETS_21 1. 6137 @11186 VETS_22 1. 6138 @11187 VETS_23 1. 6139 @11188 VETS_24 1. 6140 @11189 VETS_25 1. 6141 @11190 VETS_26 1. 6142 @11191 VETS_27 1. 6143 @11192 VETS_28 1. 6144 @11193 VETS_29 1. 6145 @11194 VETS_30 1. 6146 @11195 VETS_31 1. 6147 @11196 VETS_32 1. 6148 @11197 CHAMPU01 1. 6149 @11198 CHAMPU02 1. 6150 @11199 CHAMPU03 1. 6151 @11200 CHAMPU04 1. 6152 @11201 CHAMPU05 1. 6153 @11202 CHAMPU06 1. 6154 @11203 CHAMPU07 1. 6155 @11204 CHAMPU08 1. 6156 @11205 CHAMPU09 1. 6157 @11206 CHAMPU10 1. 6158 @11207 CHAMPU11 1. 6159 @11208 CHAMPU12 1. 6160 @11209 CHAMPU13 1. 6161 @11210 CHAMPU14 1. 6162 @11211 CHAMPU15 1. 6163 @11212 CHAMPU16 1. 6164 @11213 CHAMPU17 1. 6165 @11214 CHAMPU18 1. 6166 @11215 CHAMPU19 1. 6167 @11216 CHAMPU20 1. 6168 @11217 CHAMPU21 1. 6169 @11218 CHAMPU22 1. 6170 @11219 CHAMPU23 1. 6171 @11220 CHAMPU24 1. 6172 @11221 CHAMPU25 1. 6173 @11222 CHAMPU26 1. 6174 @11223 CHAMPU27 1. 6175 @11224 CHAMPU28 1. 6176 @11225 CHAMPU29 1. 6177 @11226 CHAMPU30 1. 6178 @11227 CHAMPU31 1. 6179 @11228 CHAMPU32 1. 6180 @11229 CHAMPV01 1. 6181 @11230 CHAMPV02 1. 6182 @11231 CHAMPV03 1. 6183 @11232 CHAMPV04 1. 6184 @11233 CHAMPV05 1. 6185 @11234 CHAMPV06 1. 6186 @11235 CHAMPV07 1. 6187 @11236 CHAMPV08 1. 6188 @11237 CHAMPV09 1. 6189 @11238 CHAMPV10 1. 6190 @11239 CHAMPV11 1. 6191 @11240 CHAMPV12 1. 6192 @11241 CHAMPV13 1. 6193 @11242 CHAMPV14 1. 6194 @11243 CHAMPV15 1. 6195 @11244 CHAMPV16 1. 6196 @11245 CHAMPV17 1. 6197 @11246 CHAMPV18 1. 6198 @11247 CHAMPV19 1. 6199 @11248 CHAMPV20 1. 6200 @11249 CHAMPV21 1. 6201 @11250 CHAMPV22 1. 6202 @11251 CHAMPV23 1. 85 The SAS System 15:27 Thursday, July 3, 2003 6203 @11252 CHAMPV24 1. 6204 @11253 CHAMPV25 1. 6205 @11254 CHAMPV26 1. 6206 @11255 CHAMPV27 1. 6207 @11256 CHAMPV28 1. 6208 @11257 CHAMPV29 1. 6209 @11258 CHAMPV30 1. 6210 @11259 CHAMPV31 1. 6211 @11260 CHAMPV32 1. 6212 @11261 HIOWNC01 1. 6213 @11262 HIOWNC02 1. 6214 @11263 HIOWNC03 1. 6215 @11264 HIOWNC04 1. 6216 @11265 HIOWNC05 1. 6217 @11266 HIOWNC06 1. 6218 @11267 HIOWNC07 1. 6219 @11268 HIOWNC08 1. 6220 @11269 HIOWNC09 1. 6221 @11270 HIOWNC10 1. 6222 @11271 HIOWNC11 1. 6223 @11272 HIOWNC12 1. 6224 @11273 HIOWNC13 1. 6225 @11274 HIOWNC14 1. 6226 @11275 HIOWNC15 1. 6227 @11276 HIOWNC16 1. 6228 @11277 HIOWNC17 1. 6229 @11278 HIOWNC18 1. 6230 @11279 HIOWNC19 1. 6231 @11280 HIOWNC20 1. 6232 @11281 HIOWNC21 1. 6233 @11282 HIOWNC22 1. 6234 @11283 HIOWNC23 1. 6235 @11284 HIOWNC24 1. 6236 @11285 HIOWNC25 1. 6237 @11286 HIOWNC26 1. 6238 @11287 HIOWNC27 1. 6239 @11288 HIOWNC28 1. 6240 @11289 HIOWNC29 1. 6241 @11290 HIOWNC30 1. 6242 @11291 HIOWNC31 1. 6243 @11292 HIOWNC32 1. 6244 @11293 HI_OTC01 1. 6245 @11294 HI_OTC02 1. 6246 @11295 HI_OTC03 1. 6247 @11296 HI_OTC04 1. 6248 @11297 HI_OTC05 1. 6249 @11298 HI_OTC06 1. 6250 @11299 HI_OTC07 1. 6251 @11300 HI_OTC08 1. 6252 @11301 HI_OTC09 1. 6253 @11302 HI_OTC10 1. 6254 @11303 HI_OTC11 1. 6255 @11304 HI_OTC12 1. 6256 @11305 HI_OTC13 1. 6257 @11306 HI_OTC14 1. 6258 @11307 HI_OTC15 1. 6259 @11308 HI_OTC16 1. 6260 @11309 HI_OTC17 1. 6261 @11310 HI_OTC18 1. 6262 @11311 HI_OTC19 1. 6263 @11312 HI_OTC20 1. 6264 @11313 HI_OTC21 1. 6265 @11314 HI_OTC22 1. 6266 @11315 HI_OTC23 1. 6267 @11316 HI_OTC24 1. 6268 @11317 HI_OTC25 1. 6269 @11318 HI_OTC26 1. 6270 @11319 HI_OTC27 1. 6271 @11320 HI_OTC28 1. 6272 @11321 HI_OTC29 1. 6273 @11322 HI_OTC30 1. 6274 @11323 HI_OTC31 1. 6275 @11324 HI_OTC32 1. 6276 @11325 HIEMPL01 1. 6277 @11326 HIEMPL02 1. 6278 @11327 HIEMPL03 1. 86 The SAS System 15:27 Thursday, July 3, 2003 6279 @11328 HIEMPL04 1. 6280 @11329 HIEMPL05 1. 6281 @11330 HIEMPL06 1. 6282 @11331 HIEMPL07 1. 6283 @11332 HIEMPL08 1. 6284 @11333 HIEMPL09 1. 6285 @11334 HIEMPL10 1. 6286 @11335 HIEMPL11 1. 6287 @11336 HIEMPL12 1. 6288 @11337 HIEMPL13 1. 6289 @11338 HIEMPL14 1. 6290 @11339 HIEMPL15 1. 6291 @11340 HIEMPL16 1. 6292 @11341 HIEMPL17 1. 6293 @11342 HIEMPL18 1. 6294 @11343 HIEMPL19 1. 6295 @11344 HIEMPL20 1. 6296 @11345 HIEMPL21 1. 6297 @11346 HIEMPL22 1. 6298 @11347 HIEMPL23 1. 6299 @11348 HIEMPL24 1. 6300 @11349 HIEMPL25 1. 6301 @11350 HIEMPL26 1. 6302 @11351 HIEMPL27 1. 6303 @11352 HIEMPL28 1. 6304 @11353 HIEMPL29 1. 6305 @11354 HIEMPL30 1. 6306 @11355 HIEMPL31 1. 6307 @11356 HIEMPL32 1. 6308 @11357 SS_PID01 2. 6309 @11359 SS_PID02 2. 6310 @11361 SS_PID03 2. 6311 @11363 SS_PID04 2. 6312 @11365 SS_PID05 2. 6313 @11367 SS_PID06 2. 6314 @11369 SS_PID07 2. 6315 @11371 SS_PID08 2. 6316 @11373 SS_PID09 2. 6317 @11375 SS_PID10 2. 6318 @11377 SS_PID11 2. 6319 @11379 SS_PID12 2. 6320 @11381 SS_PID13 2. 6321 @11383 SS_PID14 2. 6322 @11385 SS_PID15 2. 6323 @11387 SS_PID16 2. 6324 @11389 SS_PID17 2. 6325 @11391 SS_PID18 2. 6326 @11393 SS_PID19 2. 6327 @11395 SS_PID20 2. 6328 @11397 SS_PID21 2. 6329 @11399 SS_PID22 2. 6330 @11401 SS_PID23 2. 6331 @11403 SS_PID24 2. 6332 @11405 SS_PID25 2. 6333 @11407 SS_PID26 2. 6334 @11409 SS_PID27 2. 6335 @11411 SS_PID28 2. 6336 @11413 SS_PID29 2. 6337 @11415 SS_PID30 2. 6338 @11417 SS_PID31 2. 6339 @11419 SS_PID32 2. 6340 @11421 RR_PID01 2. 6341 @11423 RR_PID02 2. 6342 @11425 RR_PID03 2. 6343 @11427 RR_PID04 2. 6344 @11429 RR_PID05 2. 6345 @11431 RR_PID06 2. 6346 @11433 RR_PID07 2. 6347 @11435 RR_PID08 2. 6348 @11437 RR_PID09 2. 6349 @11439 RR_PID10 2. 6350 @11441 RR_PID11 2. 6351 @11443 RR_PID12 2. 6352 @11445 RR_PID13 2. 6353 @11447 RR_PID14 2. 6354 @11449 RR_PID15 2. 87 The SAS System 15:27 Thursday, July 3, 2003 6355 @11451 RR_PID16 2. 6356 @11453 RR_PID17 2. 6357 @11455 RR_PID18 2. 6358 @11457 RR_PID19 2. 6359 @11459 RR_PID20 2. 6360 @11461 RR_PID21 2. 6361 @11463 RR_PID22 2. 6362 @11465 RR_PID23 2. 6363 @11467 RR_PID24 2. 6364 @11469 RR_PID25 2. 6365 @11471 RR_PID26 2. 6366 @11473 RR_PID27 2. 6367 @11475 RR_PID28 2. 6368 @11477 RR_PID29 2. 6369 @11479 RR_PID30 2. 6370 @11481 RR_PID31 2. 6371 @11483 RR_PID32 2. 6372 @11485 VA_PID01 2. 6373 @11487 VA_PID02 2. 6374 @11489 VA_PID03 2. 6375 @11491 VA_PID04 2. 6376 @11493 VA_PID05 2. 6377 @11495 VA_PID06 2. 6378 @11497 VA_PID07 2. 6379 @11499 VA_PID08 2. 6380 @11501 VA_PID09 2. 6381 @11503 VA_PID10 2. 6382 @11505 VA_PID11 2. 6383 @11507 VA_PID12 2. 6384 @11509 VA_PID13 2. 6385 @11511 VA_PID14 2. 6386 @11513 VA_PID15 2. 6387 @11515 VA_PID16 2. 6388 @11517 VA_PID17 2. 6389 @11519 VA_PID18 2. 6390 @11521 VA_PID19 2. 6391 @11523 VA_PID20 2. 6392 @11525 VA_PID21 2. 6393 @11527 VA_PID22 2. 6394 @11529 VA_PID23 2. 6395 @11531 VA_PID24 2. 6396 @11533 VA_PID25 2. 6397 @11535 VA_PID26 2. 6398 @11537 VA_PID27 2. 6399 @11539 VA_PID28 2. 6400 @11541 VA_PID29 2. 6401 @11543 VA_PID30 2. 6402 @11545 VA_PID31 2. 6403 @11547 VA_PID32 2. 6404 @11549 AFDCPI01 2. 6405 @11551 AFDCPI02 2. 6406 @11553 AFDCPI03 2. 6407 @11555 AFDCPI04 2. 6408 @11557 AFDCPI05 2. 6409 @11559 AFDCPI06 2. 6410 @11561 AFDCPI07 2. 6411 @11563 AFDCPI08 2. 6412 @11565 AFDCPI09 2. 6413 @11567 AFDCPI10 2. 6414 @11569 AFDCPI11 2. 6415 @11571 AFDCPI12 2. 6416 @11573 AFDCPI13 2. 6417 @11575 AFDCPI14 2. 6418 @11577 AFDCPI15 2. 6419 @11579 AFDCPI16 2. 6420 @11581 AFDCPI17 2. 6421 @11583 AFDCPI18 2. 6422 @11585 AFDCPI19 2. 6423 @11587 AFDCPI20 2. 6424 @11589 AFDCPI21 2. 6425 @11591 AFDCPI22 2. 6426 @11593 AFDCPI23 2. 6427 @11595 AFDCPI24 2. 6428 @11597 AFDCPI25 2. 6429 @11599 AFDCPI26 2. 6430 @11601 AFDCPI27 2. 88 The SAS System 15:27 Thursday, July 3, 2003 6431 @11603 AFDCPI28 2. 6432 @11605 AFDCPI29 2. 6433 @11607 AFDCPI30 2. 6434 @11609 AFDCPI31 2. 6435 @11611 AFDCPI32 2. 6436 @11613 GA_PID01 2. 6437 @11615 GA_PID02 2. 6438 @11617 GA_PID03 2. 6439 @11619 GA_PID04 2. 6440 @11621 GA_PID05 2. 6441 @11623 GA_PID06 2. 6442 @11625 GA_PID07 2. 6443 @11627 GA_PID08 2. 6444 @11629 GA_PID09 2. 6445 @11631 GA_PID10 2. 6446 @11633 GA_PID11 2. 6447 @11635 GA_PID12 2. 6448 @11637 GA_PID13 2. 6449 @11639 GA_PID14 2. 6450 @11641 GA_PID15 2. 6451 @11643 GA_PID16 2. 6452 @11645 GA_PID17 2. 6453 @11647 GA_PID18 2. 6454 @11649 GA_PID19 2. 6455 @11651 GA_PID20 2. 6456 @11653 GA_PID21 2. 6457 @11655 GA_PID22 2. 6458 @11657 GA_PID23 2. 6459 @11659 GA_PID24 2. 6460 @11661 GA_PID25 2. 6461 @11663 GA_PID26 2. 6462 @11665 GA_PID27 2. 6463 @11667 GA_PID28 2. 6464 @11669 GA_PID29 2. 6465 @11671 GA_PID30 2. 6466 @11673 GA_PID31 2. 6467 @11675 GA_PID32 2. 6468 @11677 FOSTPI01 2. 6469 @11679 FOSTPI02 2. 6470 @11681 FOSTPI03 2. 6471 @11683 FOSTPI04 2. 6472 @11685 FOSTPI05 2. 6473 @11687 FOSTPI06 2. 6474 @11689 FOSTPI07 2. 6475 @11691 FOSTPI08 2. 6476 @11693 FOSTPI09 2. 6477 @11695 FOSTPI10 2. 6478 @11697 FOSTPI11 2. 6479 @11699 FOSTPI12 2. 6480 @11701 FOSTPI13 2. 6481 @11703 FOSTPI14 2. 6482 @11705 FOSTPI15 2. 6483 @11707 FOSTPI16 2. 6484 @11709 FOSTPI17 2. 6485 @11711 FOSTPI18 2. 6486 @11713 FOSTPI19 2. 6487 @11715 FOSTPI20 2. 6488 @11717 FOSTPI21 2. 6489 @11719 FOSTPI22 2. 6490 @11721 FOSTPI23 2. 6491 @11723 FOSTPI24 2. 6492 @11725 FOSTPI25 2. 6493 @11727 FOSTPI26 2. 6494 @11729 FOSTPI27 2. 6495 @11731 FOSTPI28 2. 6496 @11733 FOSTPI29 2. 6497 @11735 FOSTPI30 2. 6498 @11737 FOSTPI31 2. 6499 @11739 FOSTPI32 2. 6500 @11741 OTH_PI01 2. 6501 @11743 OTH_PI02 2. 6502 @11745 OTH_PI03 2. 6503 @11747 OTH_PI04 2. 6504 @11749 OTH_PI05 2. 6505 @11751 OTH_PI06 2. 6506 @11753 OTH_PI07 2. 89 The SAS System 15:27 Thursday, July 3, 2003 6507 @11755 OTH_PI08 2. 6508 @11757 OTH_PI09 2. 6509 @11759 OTH_PI10 2. 6510 @11761 OTH_PI11 2. 6511 @11763 OTH_PI12 2. 6512 @11765 OTH_PI13 2. 6513 @11767 OTH_PI14 2. 6514 @11769 OTH_PI15 2. 6515 @11771 OTH_PI16 2. 6516 @11773 OTH_PI17 2. 6517 @11775 OTH_PI18 2. 6518 @11777 OTH_PI19 2. 6519 @11779 OTH_PI20 2. 6520 @11781 OTH_PI21 2. 6521 @11783 OTH_PI22 2. 6522 @11785 OTH_PI23 2. 6523 @11787 OTH_PI24 2. 6524 @11789 OTH_PI25 2. 6525 @11791 OTH_PI26 2. 6526 @11793 OTH_PI27 2. 6527 @11795 OTH_PI28 2. 6528 @11797 OTH_PI29 2. 6529 @11799 OTH_PI30 2. 6530 @11801 OTH_PI31 2. 6531 @11803 OTH_PI32 2. 6532 @11805 WIC_PI01 2. 6533 @11807 WIC_PI02 2. 6534 @11809 WIC_PI03 2. 6535 @11811 WIC_PI04 2. 6536 @11813 WIC_PI05 2. 6537 @11815 WIC_PI06 2. 6538 @11817 WIC_PI07 2. 6539 @11819 WIC_PI08 2. 6540 @11821 WIC_PI09 2. 6541 @11823 WIC_PI10 2. 6542 @11825 WIC_PI11 2. 6543 @11827 WIC_PI12 2. 6544 @11829 WIC_PI13 2. 6545 @11831 WIC_PI14 2. 6546 @11833 WIC_PI15 2. 6547 @11835 WIC_PI16 2. 6548 @11837 WIC_PI17 2. 6549 @11839 WIC_PI18 2. 6550 @11841 WIC_PI19 2. 6551 @11843 WIC_PI20 2. 6552 @11845 WIC_PI21 2. 6553 @11847 WIC_PI22 2. 6554 @11849 WIC_PI23 2. 6555 @11851 WIC_PI24 2. 6556 @11853 WIC_PI25 2. 6557 @11855 WIC_PI26 2. 6558 @11857 WIC_PI27 2. 6559 @11859 WIC_PI28 2. 6560 @11861 WIC_PI29 2. 6561 @11863 WIC_PI30 2. 6562 @11865 WIC_PI31 2. 6563 @11867 WIC_PI32 2. 6564 @11869 FS_PID01 2. 6565 @11871 FS_PID02 2. 6566 @11873 FS_PID03 2. 6567 @11875 FS_PID04 2. 6568 @11877 FS_PID05 2. 6569 @11879 FS_PID06 2. 6570 @11881 FS_PID07 2. 6571 @11883 FS_PID08 2. 6572 @11885 FS_PID09 2. 6573 @11887 FS_PID10 2. 6574 @11889 FS_PID11 2. 6575 @11891 FS_PID12 2. 6576 @11893 FS_PID13 2. 6577 @11895 FS_PID14 2. 6578 @11897 FS_PID15 2. 6579 @11899 FS_PID16 2. 6580 @11901 FS_PID17 2. 6581 @11903 FS_PID18 2. 6582 @11905 FS_PID19 2. 90 The SAS System 15:27 Thursday, July 3, 2003 6583 @11907 FS_PID20 2. 6584 @11909 FS_PID21 2. 6585 @11911 FS_PID22 2. 6586 @11913 FS_PID23 2. 6587 @11915 FS_PID24 2. 6588 @11917 FS_PID25 2. 6589 @11919 FS_PID26 2. 6590 @11921 FS_PID27 2. 6591 @11923 FS_PID28 2. 6592 @11925 FS_PID29 2. 6593 @11927 FS_PID30 2. 6594 @11929 FS_PID31 2. 6595 @11931 FS_PID32 2. 6596 @11933 WS1_IM01 1. 6597 @11934 WS1_IM02 1. 6598 @11935 WS1_IM03 1. 6599 @11936 WS1_IM04 1. 6600 @11937 WS1_IM05 1. 6601 @11938 WS1_IM06 1. 6602 @11939 WS1_IM07 1. 6603 @11940 WS1_IM08 1. 6604 @11941 WS1_IM09 1. 6605 @11942 WS1_IM10 1. 6606 @11943 WS1_IM11 1. 6607 @11944 WS1_IM12 1. 6608 @11945 WS1_IM13 1. 6609 @11946 WS1_IM14 1. 6610 @11947 WS1_IM15 1. 6611 @11948 WS1_IM16 1. 6612 @11949 WS1_IM17 1. 6613 @11950 WS1_IM18 1. 6614 @11951 WS1_IM19 1. 6615 @11952 WS1_IM20 1. 6616 @11953 WS1_IM21 1. 6617 @11954 WS1_IM22 1. 6618 @11955 WS1_IM23 1. 6619 @11956 WS1_IM24 1. 6620 @11957 WS1_IM25 1. 6621 @11958 WS1_IM26 1. 6622 @11959 WS1_IM27 1. 6623 @11960 WS1_IM28 1. 6624 @11961 WS1_IM29 1. 6625 @11962 WS1_IM30 1. 6626 @11963 WS1_IM31 1. 6627 @11964 WS1_IM32 1. 6628 @11965 WS2_IM01 1. 6629 @11966 WS2_IM02 1. 6630 @11967 WS2_IM03 1. 6631 @11968 WS2_IM04 1. 6632 @11969 WS2_IM05 1. 6633 @11970 WS2_IM06 1. 6634 @11971 WS2_IM07 1. 6635 @11972 WS2_IM08 1. 6636 @11973 WS2_IM09 1. 6637 @11974 WS2_IM10 1. 6638 @11975 WS2_IM11 1. 6639 @11976 WS2_IM12 1. 6640 @11977 WS2_IM13 1. 6641 @11978 WS2_IM14 1. 6642 @11979 WS2_IM15 1. 6643 @11980 WS2_IM16 1. 6644 @11981 WS2_IM17 1. 6645 @11982 WS2_IM18 1. 6646 @11983 WS2_IM19 1. 6647 @11984 WS2_IM20 1. 6648 @11985 WS2_IM21 1. 6649 @11986 WS2_IM22 1. 6650 @11987 WS2_IM23 1. 6651 @11988 WS2_IM24 1. 6652 @11989 WS2_IM25 1. 6653 @11990 WS2_IM26 1. 6654 @11991 WS2_IM27 1. 6655 @11992 WS2_IM28 1. 6656 @11993 WS2_IM29 1. 6657 @11994 WS2_IM30 1. 6658 @11995 WS2_IM31 1. 91 The SAS System 15:27 Thursday, July 3, 2003 6659 @11996 WS2_IM32 1. 6660 @11997 SE1_IM01 1. 6661 @11998 SE1_IM02 1. 6662 @11999 SE1_IM03 1. 6663 @12000 SE1_IM04 1. 6664 @12001 SE1_IM05 1. 6665 @12002 SE1_IM06 1. 6666 @12003 SE1_IM07 1. 6667 @12004 SE1_IM08 1. 6668 @12005 SE1_IM09 1. 6669 @12006 SE1_IM10 1. 6670 @12007 SE1_IM11 1. 6671 @12008 SE1_IM12 1. 6672 @12009 SE1_IM13 1. 6673 @12010 SE1_IM14 1. 6674 @12011 SE1_IM15 1. 6675 @12012 SE1_IM16 1. 6676 @12013 SE1_IM17 1. 6677 @12014 SE1_IM18 1. 6678 @12015 SE1_IM19 1. 6679 @12016 SE1_IM20 1. 6680 @12017 SE1_IM21 1. 6681 @12018 SE1_IM22 1. 6682 @12019 SE1_IM23 1. 6683 @12020 SE1_IM24 1. 6684 @12021 SE1_IM25 1. 6685 @12022 SE1_IM26 1. 6686 @12023 SE1_IM27 1. 6687 @12024 SE1_IM28 1. 6688 @12025 SE1_IM29 1. 6689 @12026 SE1_IM30 1. 6690 @12027 SE1_IM31 1. 6691 @12028 SE1_IM32 1. 6692 @12029 SE2_IM01 1. 6693 @12030 SE2_IM02 1. 6694 @12031 SE2_IM03 1. 6695 @12032 SE2_IM04 1. 6696 @12033 SE2_IM05 1. 6697 @12034 SE2_IM06 1. 6698 @12035 SE2_IM07 1. 6699 @12036 SE2_IM08 1. 6700 @12037 SE2_IM09 1. 6701 @12038 SE2_IM10 1. 6702 @12039 SE2_IM11 1. 6703 @12040 SE2_IM12 1. 6704 @12041 SE2_IM13 1. 6705 @12042 SE2_IM14 1. 6706 @12043 SE2_IM15 1. 6707 @12044 SE2_IM16 1. 6708 @12045 SE2_IM17 1. 6709 @12046 SE2_IM18 1. 6710 @12047 SE2_IM19 1. 6711 @12048 SE2_IM20 1. 6712 @12049 SE2_IM21 1. 6713 @12050 SE2_IM22 1. 6714 @12051 SE2_IM23 1. 6715 @12052 SE2_IM24 1. 6716 @12053 SE2_IM25 1. 6717 @12054 SE2_IM26 1. 6718 @12055 SE2_IM27 1. 6719 @12056 SE2_IM28 1. 6720 @12057 SE2_IM29 1. 6721 @12058 SE2_IM30 1. 6722 @12059 SE2_IM31 1. 6723 @12060 SE2_IM32 1. 6724 @12061 G1_I1_01 1. 6725 @12062 G1_I1_02 1. 6726 @12063 G1_I1_03 1. 6727 @12064 G1_I1_04 1. 6728 @12065 G1_I1_05 1. 6729 @12066 G1_I1_06 1. 6730 @12067 G1_I1_07 1. 6731 @12068 G1_I1_08 1. 6732 @12069 G1_I1_09 1. 6733 @12070 G1_I1_10 1. 6734 @12071 G1_I1_11 1. 92 The SAS System 15:27 Thursday, July 3, 2003 6735 @12072 G1_I1_12 1. 6736 @12073 G1_I1_13 1. 6737 @12074 G1_I1_14 1. 6738 @12075 G1_I1_15 1. 6739 @12076 G1_I1_16 1. 6740 @12077 G1_I1_17 1. 6741 @12078 G1_I1_18 1. 6742 @12079 G1_I1_19 1. 6743 @12080 G1_I1_20 1. 6744 @12081 G1_I1_21 1. 6745 @12082 G1_I1_22 1. 6746 @12083 G1_I1_23 1. 6747 @12084 G1_I1_24 1. 6748 @12085 G1_I1_25 1. 6749 @12086 G1_I1_26 1. 6750 @12087 G1_I1_27 1. 6751 @12088 G1_I1_28 1. 6752 @12089 G1_I1_29 1. 6753 @12090 G1_I1_30 1. 6754 @12091 G1_I1_31 1. 6755 @12092 G1_I1_32 1. 6756 @12093 G1_I2_01 1. 6757 @12094 G1_I2_02 1. 6758 @12095 G1_I2_03 1. 6759 @12096 G1_I2_04 1. 6760 @12097 G1_I2_05 1. 6761 @12098 G1_I2_06 1. 6762 @12099 G1_I2_07 1. 6763 @12100 G1_I2_08 1. 6764 @12101 G1_I2_09 1. 6765 @12102 G1_I2_10 1. 6766 @12103 G1_I2_11 1. 6767 @12104 G1_I2_12 1. 6768 @12105 G1_I2_13 1. 6769 @12106 G1_I2_14 1. 6770 @12107 G1_I2_15 1. 6771 @12108 G1_I2_16 1. 6772 @12109 G1_I2_17 1. 6773 @12110 G1_I2_18 1. 6774 @12111 G1_I2_19 1. 6775 @12112 G1_I2_20 1. 6776 @12113 G1_I2_21 1. 6777 @12114 G1_I2_22 1. 6778 @12115 G1_I2_23 1. 6779 @12116 G1_I2_24 1. 6780 @12117 G1_I2_25 1. 6781 @12118 G1_I2_26 1. 6782 @12119 G1_I2_27 1. 6783 @12120 G1_I2_28 1. 6784 @12121 G1_I2_29 1. 6785 @12122 G1_I2_30 1. 6786 @12123 G1_I2_31 1. 6787 @12124 G1_I2_32 1. 6788 @12125 G1_I3_01 1. 6789 @12126 G1_I3_02 1. 6790 @12127 G1_I3_03 1. 6791 @12128 G1_I3_04 1. 6792 @12129 G1_I3_05 1. 6793 @12130 G1_I3_06 1. 6794 @12131 G1_I3_07 1. 6795 @12132 G1_I3_08 1. 6796 @12133 G1_I3_09 1. 6797 @12134 G1_I3_10 1. 6798 @12135 G1_I3_11 1. 6799 @12136 G1_I3_12 1. 6800 @12137 G1_I3_13 1. 6801 @12138 G1_I3_14 1. 6802 @12139 G1_I3_15 1. 6803 @12140 G1_I3_16 1. 6804 @12141 G1_I3_17 1. 6805 @12142 G1_I3_18 1. 6806 @12143 G1_I3_19 1. 6807 @12144 G1_I3_20 1. 6808 @12145 G1_I3_21 1. 6809 @12146 G1_I3_22 1. 6810 @12147 G1_I3_23 1. 93 The SAS System 15:27 Thursday, July 3, 2003 6811 @12148 G1_I3_24 1. 6812 @12149 G1_I3_25 1. 6813 @12150 G1_I3_26 1. 6814 @12151 G1_I3_27 1. 6815 @12152 G1_I3_28 1. 6816 @12153 G1_I3_29 1. 6817 @12154 G1_I3_30 1. 6818 @12155 G1_I3_31 1. 6819 @12156 G1_I3_32 1. 6820 @12157 G1_I4_01 1. 6821 @12158 G1_I4_02 1. 6822 @12159 G1_I4_03 1. 6823 @12160 G1_I4_04 1. 6824 @12161 G1_I4_05 1. 6825 @12162 G1_I4_06 1. 6826 @12163 G1_I4_07 1. 6827 @12164 G1_I4_08 1. 6828 @12165 G1_I4_09 1. 6829 @12166 G1_I4_10 1. 6830 @12167 G1_I4_11 1. 6831 @12168 G1_I4_12 1. 6832 @12169 G1_I4_13 1. 6833 @12170 G1_I4_14 1. 6834 @12171 G1_I4_15 1. 6835 @12172 G1_I4_16 1. 6836 @12173 G1_I4_17 1. 6837 @12174 G1_I4_18 1. 6838 @12175 G1_I4_19 1. 6839 @12176 G1_I4_20 1. 6840 @12177 G1_I4_21 1. 6841 @12178 G1_I4_22 1. 6842 @12179 G1_I4_23 1. 6843 @12180 G1_I4_24 1. 6844 @12181 G1_I4_25 1. 6845 @12182 G1_I4_26 1. 6846 @12183 G1_I4_27 1. 6847 @12184 G1_I4_28 1. 6848 @12185 G1_I4_29 1. 6849 @12186 G1_I4_30 1. 6850 @12187 G1_I4_31 1. 6851 @12188 G1_I4_32 1. 6852 @12189 G11_IM01 1. 6853 @12190 G11_IM02 1. 6854 @12191 G11_IM03 1. 6855 @12192 G11_IM04 1. 6856 @12193 G11_IM05 1. 6857 @12194 G11_IM06 1. 6858 @12195 G11_IM07 1. 6859 @12196 G11_IM08 1. 6860 @12197 G11_IM09 1. 6861 @12198 G11_IM10 1. 6862 @12199 G11_IM11 1. 6863 @12200 G11_IM12 1. 6864 @12201 G11_IM13 1. 6865 @12202 G11_IM14 1. 6866 @12203 G11_IM15 1. 6867 @12204 G11_IM16 1. 6868 @12205 G11_IM17 1. 6869 @12206 G11_IM18 1. 6870 @12207 G11_IM19 1. 6871 @12208 G11_IM20 1. 6872 @12209 G11_IM21 1. 6873 @12210 G11_IM22 1. 6874 @12211 G11_IM23 1. 6875 @12212 G11_IM24 1. 6876 @12213 G11_IM25 1. 6877 @12214 G11_IM26 1. 6878 @12215 G11_IM27 1. 6879 @12216 G11_IM28 1. 6880 @12217 G11_IM29 1. 6881 @12218 G11_IM30 1. 6882 @12219 G11_IM31 1. 6883 @12220 G11_IM32 1. 6884 @12221 G1_I6_01 1. 6885 @12222 G1_I6_02 1. 6886 @12223 G1_I6_03 1. 94 The SAS System 15:27 Thursday, July 3, 2003 6887 @12224 G1_I6_04 1. 6888 @12225 G1_I6_05 1. 6889 @12226 G1_I6_06 1. 6890 @12227 G1_I6_07 1. 6891 @12228 G1_I6_08 1. 6892 @12229 G1_I6_09 1. 6893 @12230 G1_I6_10 1. 6894 @12231 G1_I6_11 1. 6895 @12232 G1_I6_12 1. 6896 @12233 G1_I6_13 1. 6897 @12234 G1_I6_14 1. 6898 @12235 G1_I6_15 1. 6899 @12236 G1_I6_16 1. 6900 @12237 G1_I6_17 1. 6901 @12238 G1_I6_18 1. 6902 @12239 G1_I6_19 1. 6903 @12240 G1_I6_20 1. 6904 @12241 G1_I6_21 1. 6905 @12242 G1_I6_22 1. 6906 @12243 G1_I6_23 1. 6907 @12244 G1_I6_24 1. 6908 @12245 G1_I6_25 1. 6909 @12246 G1_I6_26 1. 6910 @12247 G1_I6_27 1. 6911 @12248 G1_I6_28 1. 6912 @12249 G1_I6_29 1. 6913 @12250 G1_I6_30 1. 6914 @12251 G1_I6_31 1. 6915 @12252 G1_I6_32 1. 6916 @12253 G1_I7_01 1. 6917 @12254 G1_I7_02 1. 6918 @12255 G1_I7_03 1. 6919 @12256 G1_I7_04 1. 6920 @12257 G1_I7_05 1. 6921 @12258 G1_I7_06 1. 6922 @12259 G1_I7_07 1. 6923 @12260 G1_I7_08 1. 6924 @12261 G1_I7_09 1. 6925 @12262 G1_I7_10 1. 6926 @12263 G1_I7_11 1. 6927 @12264 G1_I7_12 1. 6928 @12265 G1_I7_13 1. 6929 @12266 G1_I7_14 1. 6930 @12267 G1_I7_15 1. 6931 @12268 G1_I7_16 1. 6932 @12269 G1_I7_17 1. 6933 @12270 G1_I7_18 1. 6934 @12271 G1_I7_19 1. 6935 @12272 G1_I7_20 1. 6936 @12273 G1_I7_21 1. 6937 @12274 G1_I7_22 1. 6938 @12275 G1_I7_23 1. 6939 @12276 G1_I7_24 1. 6940 @12277 G1_I7_25 1. 6941 @12278 G1_I7_26 1. 6942 @12279 G1_I7_27 1. 6943 @12280 G1_I7_28 1. 6944 @12281 G1_I7_29 1. 6945 @12282 G1_I7_30 1. 6946 @12283 G1_I7_31 1. 6947 @12284 G1_I7_32 1. 6948 @12285 G1_I8_01 1. 6949 @12286 G1_I8_02 1. 6950 @12287 G1_I8_03 1. 6951 @12288 G1_I8_04 1. 6952 @12289 G1_I8_05 1. 6953 @12290 G1_I8_06 1. 6954 @12291 G1_I8_07 1. 6955 @12292 G1_I8_08 1. 6956 @12293 G1_I8_09 1. 6957 @12294 G1_I8_10 1. 6958 @12295 G1_I8_11 1. 6959 @12296 G1_I8_12 1. 6960 @12297 G1_I8_13 1. 6961 @12298 G1_I8_14 1. 6962 @12299 G1_I8_15 1. 95 The SAS System 15:27 Thursday, July 3, 2003 6963 @12300 G1_I8_16 1. 6964 @12301 G1_I8_17 1. 6965 @12302 G1_I8_18 1. 6966 @12303 G1_I8_19 1. 6967 @12304 G1_I8_20 1. 6968 @12305 G1_I8_21 1. 6969 @12306 G1_I8_22 1. 6970 @12307 G1_I8_23 1. 6971 @12308 G1_I8_24 1. 6972 @12309 G1_I8_25 1. 6973 @12310 G1_I8_26 1. 6974 @12311 G1_I8_27 1. 6975 @12312 G1_I8_28 1. 6976 @12313 G1_I8_29 1. 6977 @12314 G1_I8_30 1. 6978 @12315 G1_I8_31 1. 6979 @12316 G1_I8_32 1. 6980 @12317 G1_I9_01 1. 6981 @12318 G1_I9_02 1. 6982 @12319 G1_I9_03 1. 6983 @12320 G1_I9_04 1. 6984 @12321 G1_I9_05 1. 6985 @12322 G1_I9_06 1. 6986 @12323 G1_I9_07 1. 6987 @12324 G1_I9_08 1. 6988 @12325 G1_I9_09 1. 6989 @12326 G1_I9_10 1. 6990 @12327 G1_I9_11 1. 6991 @12328 G1_I9_12 1. 6992 @12329 G1_I9_13 1. 6993 @12330 G1_I9_14 1. 6994 @12331 G1_I9_15 1. 6995 @12332 G1_I9_16 1. 6996 @12333 G1_I9_17 1. 6997 @12334 G1_I9_18 1. 6998 @12335 G1_I9_19 1. 6999 @12336 G1_I9_20 1. 7000 @12337 G1_I9_21 1. 7001 @12338 G1_I9_22 1. 7002 @12339 G1_I9_23 1. 7003 @12340 G1_I9_24 1. 7004 @12341 G1_I9_25 1. 7005 @12342 G1_I9_26 1. 7006 @12343 G1_I9_27 1. 7007 @12344 G1_I9_28 1. 7008 @12345 G1_I9_29 1. 7009 @12346 G1_I9_30 1. 7010 @12347 G1_I9_31 1. 7011 @12348 G1_I9_32 1. 7012 @12349 G1_I1001 1. 7013 @12350 G1_I1002 1. 7014 @12351 G1_I1003 1. 7015 @12352 G1_I1004 1. 7016 @12353 G1_I1005 1. 7017 @12354 G1_I1006 1. 7018 @12355 G1_I1007 1. 7019 @12356 G1_I1008 1. 7020 @12357 G1_I1009 1. 7021 @12358 G1_I1010 1. 7022 @12359 G1_I1011 1. 7023 @12360 G1_I1012 1. 7024 @12361 G1_I1013 1. 7025 @12362 G1_I1014 1. 7026 @12363 G1_I1015 1. 7027 @12364 G1_I1016 1. 7028 @12365 G1_I1017 1. 7029 @12366 G1_I1018 1. 7030 @12367 G1_I1019 1. 7031 @12368 G1_I1020 1. 7032 @12369 G1_I1021 1. 7033 @12370 G1_I1022 1. 7034 @12371 G1_I1023 1. 7035 @12372 G1_I1024 1. 7036 @12373 G1_I1025 1. 7037 @12374 G1_I1026 1. 7038 @12375 G1_I1027 1. 96 The SAS System 15:27 Thursday, July 3, 2003 7039 @12376 G1_I1028 1. 7040 @12377 G1_I1029 1. 7041 @12378 G1_I1030 1. 7042 @12379 G1_I1031 1. 7043 @12380 G1_I1032 1. 7044 @12381 G2I10001 1. 7045 @12382 G2I10002 1. 7046 @12383 G2I10003 1. 7047 @12384 G2I10004 1. 7048 @12385 G2I10005 1. 7049 @12386 G2I10006 1. 7050 @12387 G2I10007 1. 7051 @12388 G2I10008 1. 7052 @12389 G2I10009 1. 7053 @12390 G2I10010 1. 7054 @12391 G2I10011 1. 7055 @12392 G2I10012 1. 7056 @12393 G2I10013 1. 7057 @12394 G2I10014 1. 7058 @12395 G2I10015 1. 7059 @12396 G2I10016 1. 7060 @12397 G2I10017 1. 7061 @12398 G2I10018 1. 7062 @12399 G2I10019 1. 7063 @12400 G2I10020 1. 7064 @12401 G2I10021 1. 7065 @12402 G2I10022 1. 7066 @12403 G2I10023 1. 7067 @12404 G2I10024 1. 7068 @12405 G2I10025 1. 7069 @12406 G2I10026 1. 7070 @12407 G2I10027 1. 7071 @12408 G2I10028 1. 7072 @12409 G2I10029 1. 7073 @12410 G2I10030 1. 7074 @12411 G2I10031 1. 7075 @12412 G2I10032 1. 7076 @12413 G2I10401 1. 7077 @12414 G2I10402 1. 7078 @12415 G2I10403 1. 7079 @12416 G2I10404 1. 7080 @12417 G2I10405 1. 7081 @12418 G2I10406 1. 7082 @12419 G2I10407 1. 7083 @12420 G2I10408 1. 7084 @12421 G2I10409 1. 7085 @12422 G2I10410 1. 7086 @12423 G2I10411 1. 7087 @12424 G2I10412 1. 7088 @12425 G2I10413 1. 7089 @12426 G2I10414 1. 7090 @12427 G2I10415 1. 7091 @12428 G2I10416 1. 7092 @12429 G2I10417 1. 7093 @12430 G2I10418 1. 7094 @12431 G2I10419 1. 7095 @12432 G2I10420 1. 7096 @12433 G2I10421 1. 7097 @12434 G2I10422 1. 7098 @12435 G2I10423 1. 7099 @12436 G2I10424 1. 7100 @12437 G2I10425 1. 7101 @12438 G2I10426 1. 7102 @12439 G2I10427 1. 7103 @12440 G2I10428 1. 7104 @12441 G2I10429 1. 7105 @12442 G2I10430 1. 7106 @12443 G2I10431 1. 7107 @12444 G2I10432 1. 7108 @12445 G2I11001 1. 7109 @12446 G2I11002 1. 7110 @12447 G2I11003 1. 7111 @12448 G2I11004 1. 7112 @12449 G2I11005 1. 7113 @12450 G2I11006 1. 7114 @12451 G2I11007 1. 97 The SAS System 15:27 Thursday, July 3, 2003 7115 @12452 G2I11008 1. 7116 @12453 G2I11009 1. 7117 @12454 G2I11010 1. 7118 @12455 G2I11011 1. 7119 @12456 G2I11012 1. 7120 @12457 G2I11013 1. 7121 @12458 G2I11014 1. 7122 @12459 G2I11015 1. 7123 @12460 G2I11016 1. 7124 @12461 G2I11017 1. 7125 @12462 G2I11018 1. 7126 @12463 G2I11019 1. 7127 @12464 G2I11020 1. 7128 @12465 G2I11021 1. 7129 @12466 G2I11022 1. 7130 @12467 G2I11023 1. 7131 @12468 G2I11024 1. 7132 @12469 G2I11025 1. 7133 @12470 G2I11026 1. 7134 @12471 G2I11027 1. 7135 @12472 G2I11028 1. 7136 @12473 G2I11029 1. 7137 @12474 G2I11030 1. 7138 @12475 G2I11031 1. 7139 @12476 G2I11032 1. 7140 @12477 G2I12001 1. 7141 @12478 G2I12002 1. 7142 @12479 G2I12003 1. 7143 @12480 G2I12004 1. 7144 @12481 G2I12005 1. 7145 @12482 G2I12006 1. 7146 @12483 G2I12007 1. 7147 @12484 G2I12008 1. 7148 @12485 G2I12009 1. 7149 @12486 G2I12010 1. 7150 @12487 G2I12011 1. 7151 @12488 G2I12012 1. 7152 @12489 G2I12013 1. 7153 @12490 G2I12014 1. 7154 @12491 G2I12015 1. 7155 @12492 G2I12016 1. 7156 @12493 G2I12017 1. 7157 @12494 G2I12018 1. 7158 @12495 G2I12019 1. 7159 @12496 G2I12020 1. 7160 @12497 G2I12021 1. 7161 @12498 G2I12022 1. 7162 @12499 G2I12023 1. 7163 @12500 G2I12024 1. 7164 @12501 G2I12025 1. 7165 @12502 G2I12026 1. 7166 @12503 G2I12027 1. 7167 @12504 G2I12028 1. 7168 @12505 G2I12029 1. 7169 @12506 G2I12030 1. 7170 @12507 G2I12031 1. 7171 @12508 G2I12032 1. 7172 @12509 G2I13001 1. 7173 @12510 G2I13002 1. 7174 @12511 G2I13003 1. 7175 @12512 G2I13004 1. 7176 @12513 G2I13005 1. 7177 @12514 G2I13006 1. 7178 @12515 G2I13007 1. 7179 @12516 G2I13008 1. 7180 @12517 G2I13009 1. 7181 @12518 G2I13010 1. 7182 @12519 G2I13011 1. 7183 @12520 G2I13012 1. 7184 @12521 G2I13013 1. 7185 @12522 G2I13014 1. 7186 @12523 G2I13015 1. 7187 @12524 G2I13016 1. 7188 @12525 G2I13017 1. 7189 @12526 G2I13018 1. 7190 @12527 G2I13019 1. 98 The SAS System 15:27 Thursday, July 3, 2003 7191 @12528 G2I13020 1. 7192 @12529 G2I13021 1. 7193 @12530 G2I13022 1. 7194 @12531 G2I13023 1. 7195 @12532 G2I13024 1. 7196 @12533 G2I13025 1. 7197 @12534 G2I13026 1. 7198 @12535 G2I13027 1. 7199 @12536 G2I13028 1. 7200 @12537 G2I13029 1. 7201 @12538 G2I13030 1. 7202 @12539 G2I13031 1. 7203 @12540 G2I13032 1. 7204 @12541 G2I14001 1. 7205 @12542 G2I14002 1. 7206 @12543 G2I14003 1. 7207 @12544 G2I14004 1. 7208 @12545 G2I14005 1. 7209 @12546 G2I14006 1. 7210 @12547 G2I14007 1. 7211 @12548 G2I14008 1. 7212 @12549 G2I14009 1. 7213 @12550 G2I14010 1. 7214 @12551 G2I14011 1. 7215 @12552 G2I14012 1. 7216 @12553 G2I14013 1. 7217 @12554 G2I14014 1. 7218 @12555 G2I14015 1. 7219 @12556 G2I14016 1. 7220 @12557 G2I14017 1. 7221 @12558 G2I14018 1. 7222 @12559 G2I14019 1. 7223 @12560 G2I14020 1. 7224 @12561 G2I14021 1. 7225 @12562 G2I14022 1. 7226 @12563 G2I14023 1. 7227 @12564 G2I14024 1. 7228 @12565 G2I14025 1. 7229 @12566 G2I14026 1. 7230 @12567 G2I14027 1. 7231 @12568 G2I14028 1. 7232 @12569 G2I14029 1. 7233 @12570 G2I14030 1. 7234 @12571 G2I14031 1. 7235 @12572 G2I14032 1. 7236 ; 7237 7238 LABEL 7239 SUSEQNUM = "Sequence number of person," 7240 ROT = "Rotation group number" 7241 SU_ID = "Scrambled identifier-PSU, segment, ser" 7242 PP_ENTRY = "Edited person's entry address ID" 7243 PP_PNUM = "Edited person number" 7244 SU_TOTPP = "Total number of person records in the" 7245 PP_RCSEQ = "Sequence number of person record withi" 7246 HH_ADD01 = "Address id. of household person" 7247 HH_ADD02 = "Address id. of household person" 7248 HH_ADD03 = "Address id. of household person" 7249 HH_ADD04 = "Address id. of household person" 7250 HH_ADD05 = "Address id. of household person" 7251 HH_ADD06 = "Address id. of household person" 7252 HH_ADD07 = "Address id. of household person" 7253 HH_ADD08 = "Address id. of household person" 7254 HH_ADD09 = "Address id. of household person" 7255 HH_ADD10 = "Address id. of household person" 7256 HH_ADD11 = "Address id. of household person" 7257 HH_ADD12 = "Address id. of household person" 7258 HH_ADD13 = "Address id. of household person" 7259 HH_ADD14 = "Address id. of household person" 7260 HH_ADD15 = "Address id. of household person" 7261 HH_ADD16 = "Address id. of household person" 7262 HH_ADD17 = "Address id. of household person" 7263 HH_ADD18 = "Address id. of household person" 7264 HH_ADD19 = "Address id. of household person" 7265 HH_ADD20 = "Address id. of household person" 7266 HH_ADD21 = "Address id. of household person" 99 The SAS System 15:27 Thursday, July 3, 2003 7267 HH_ADD22 = "Address id. of household person" 7268 HH_ADD23 = "Address id. of household person" 7269 HH_ADD24 = "Address id. of household person" 7270 HH_ADD25 = "Address id. of household person" 7271 HH_ADD26 = "Address id. of household person" 7272 HH_ADD27 = "Address id. of household person" 7273 HH_ADD28 = "Address id. of household person" 7274 HH_ADD29 = "Address id. of household person" 7275 HH_ADD30 = "Address id. of household person" 7276 HH_ADD31 = "Address id. of household person" 7277 HH_ADD32 = "Address id. of household person" 7278 PP_INTV1 = "Person's interview status for the" 7279 PP_INTV2 = "Person's interview status for the" 7280 PP_INTV3 = "Person's interview status for the" 7281 PP_INTV4 = "Person's interview status for the" 7282 PP_INTV5 = "Person's interview status for the" 7283 PP_INTV6 = "Person's interview status for the" 7284 PP_INTV7 = "Person's interview status for the" 7285 PP_INTV8 = "Person's interview status for the" 7286 PP_MIS01 = "Person's interview status (monthly)" 7287 PP_MIS02 = "Person's interview status (monthly)" 7288 PP_MIS03 = "Person's interview status (monthly)" 7289 PP_MIS04 = "Person's interview status (monthly)" 7290 PP_MIS05 = "Person's interview status (monthly)" 7291 PP_MIS06 = "Person's interview status (monthly)" 7292 PP_MIS07 = "Person's interview status (monthly)" 7293 PP_MIS08 = "Person's interview status (monthly)" 7294 PP_MIS09 = "Person's interview status (monthly)" 7295 PP_MIS10 = "Person's interview status (monthly)" 7296 PP_MIS11 = "Person's interview status (monthly)" 7297 PP_MIS12 = "Person's interview status (monthly)" 7298 PP_MIS13 = "Person's interview status (monthly)" 7299 PP_MIS14 = "Person's interview status (monthly)" 7300 PP_MIS15 = "Person's interview status (monthly)" 7301 PP_MIS16 = "Person's interview status (monthly)" 7302 PP_MIS17 = "Person's interview status (monthly)" 7303 PP_MIS18 = "Person's interview status (monthly)" 7304 PP_MIS19 = "Person's interview status (monthly)" 7305 PP_MIS20 = "Person's interview status (monthly)" 7306 PP_MIS21 = "Person's interview status (monthly)" 7307 PP_MIS22 = "Person's interview status (monthly)" 7308 PP_MIS23 = "Person's interview status (monthly)" 7309 PP_MIS24 = "Person's interview status (monthly)" 7310 PP_MIS25 = "Person's interview status (monthly)" 7311 PP_MIS26 = "Person's interview status (monthly)" 7312 PP_MIS27 = "Person's interview status (monthly)" 7313 PP_MIS28 = "Person's interview status (monthly)" 7314 PP_MIS29 = "Person's interview status (monthly)" 7315 PP_MIS30 = "Person's interview status (monthly)" 7316 PP_MIS31 = "Person's interview status (monthly)" 7317 PP_MIS32 = "Person's interview status (monthly)" 7318 REASLEF1 = "Preedited reason for leaving the" 7319 REASLEF2 = "Preedited reason for leaving the" 7320 REASLEF3 = "Preedited reason for leaving the" 7321 REASLEF4 = "Preedited reason for leaving the" 7322 REASLEF5 = "Preedited reason for leaving the" 7323 REASLEF6 = "Preedited reason for leaving the" 7324 REASLEF7 = "Preedited reason for leaving the" 7325 REASLEF8 = "Preedited reason for leaving the" 7326 HHINST01 = "Control card item 36b - interview" 7327 HHINST02 = "Control card item 36b - interview" 7328 HHINST03 = "Control card item 36b - interview" 7329 HHINST04 = "Control card item 36b - interview" 7330 HHINST05 = "Control card item 36b - interview" 7331 HHINST06 = "Control card item 36b - interview" 7332 HHINST07 = "Control card item 36b - interview" 7333 HHINST08 = "Control card item 36b - interview" 7334 HHINST09 = "Control card item 36b - interview" 7335 HHINST10 = "Control card item 36b - interview" 7336 HHINST11 = "Control card item 36b - interview" 7337 HHINST12 = "Control card item 36b - interview" 7338 HHINST13 = "Control card item 36b - interview" 7339 HHINST14 = "Control card item 36b - interview" 7340 HHINST15 = "Control card item 36b - interview" 7341 HHINST16 = "Control card item 36b - interview" 7342 HHINST17 = "Control card item 36b - interview" 100 The SAS System 15:27 Thursday, July 3, 2003 7343 HHINST18 = "Control card item 36b - interview" 7344 HHINST19 = "Control card item 36b - interview" 7345 HHINST20 = "Control card item 36b - interview" 7346 HHINST21 = "Control card item 36b - interview" 7347 HHINST22 = "Control card item 36b - interview" 7348 HHINST23 = "Control card item 36b - interview" 7349 HHINST24 = "Control card item 36b - interview" 7350 HHINST25 = "Control card item 36b - interview" 7351 HHINST26 = "Control card item 36b - interview" 7352 HHINST27 = "Control card item 36b - interview" 7353 HHINST28 = "Control card item 36b - interview" 7354 HHINST29 = "Control card item 36b - interview" 7355 HHINST30 = "Control card item 36b - interview" 7356 HHINST31 = "Control card item 36b - interview" 7357 HHINST32 = "Control card item 36b - interview" 7358 PNLWGT = "Panel person's weight assigned to" 7359 FNLWGT86 = "Person's weight assigned for calendar" 7360 FNLWGT87 = "Person's weight assigned for calendar" 7361 SU_RGC = "Reduction group code established to ma" 7362 HSC = "Half sample code for variance estimati" 7363 STRAT = "Stratum code for variance estimation" 7364 LGTHHT01 = "Longitudinal household type (monthly)" 7365 LGTHHT02 = "Longitudinal household type (monthly)" 7366 LGTHHT03 = "Longitudinal household type (monthly)" 7367 LGTHHT04 = "Longitudinal household type (monthly)" 7368 LGTHHT05 = "Longitudinal household type (monthly)" 7369 LGTHHT06 = "Longitudinal household type (monthly)" 7370 LGTHHT07 = "Longitudinal household type (monthly)" 7371 LGTHHT08 = "Longitudinal household type (monthly)" 7372 LGTHHT09 = "Longitudinal household type (monthly)" 7373 LGTHHT10 = "Longitudinal household type (monthly)" 7374 LGTHHT11 = "Longitudinal household type (monthly)" 7375 LGTHHT12 = "Longitudinal household type (monthly)" 7376 LGTHHT13 = "Longitudinal household type (monthly)" 7377 LGTHHT14 = "Longitudinal household type (monthly)" 7378 LGTHHT15 = "Longitudinal household type (monthly)" 7379 LGTHHT16 = "Longitudinal household type (monthly)" 7380 LGTHHT17 = "Longitudinal household type (monthly)" 7381 LGTHHT18 = "Longitudinal household type (monthly)" 7382 LGTHHT19 = "Longitudinal household type (monthly)" 7383 LGTHHT20 = "Longitudinal household type (monthly)" 7384 LGTHHT21 = "Longitudinal household type (monthly)" 7385 LGTHHT22 = "Longitudinal household type (monthly)" 7386 LGTHHT23 = "Longitudinal household type (monthly)" 7387 LGTHHT24 = "Longitudinal household type (monthly)" 7388 LGTHHT25 = "Longitudinal household type (monthly)" 7389 LGTHHT26 = "Longitudinal household type (monthly)" 7390 LGTHHT27 = "Longitudinal household type (monthly)" 7391 LGTHHT28 = "Longitudinal household type (monthly)" 7392 LGTHHT29 = "Longitudinal household type (monthly)" 7393 LGTHHT30 = "Longitudinal household type (monthly)" 7394 LGTHHT31 = "Longitudinal household type (monthly)" 7395 LGTHHT32 = "Longitudinal household type (monthly)" 7396 LGTKEY01 = "Longitudinal key person indicator" 7397 LGTKEY02 = "Longitudinal key person indicator" 7398 LGTKEY03 = "Longitudinal key person indicator" 7399 LGTKEY04 = "Longitudinal key person indicator" 7400 LGTKEY05 = "Longitudinal key person indicator" 7401 LGTKEY06 = "Longitudinal key person indicator" 7402 LGTKEY07 = "Longitudinal key person indicator" 7403 LGTKEY08 = "Longitudinal key person indicator" 7404 LGTKEY09 = "Longitudinal key person indicator" 7405 LGTKEY10 = "Longitudinal key person indicator" 7406 LGTKEY11 = "Longitudinal key person indicator" 7407 LGTKEY12 = "Longitudinal key person indicator" 7408 LGTKEY13 = "Longitudinal key person indicator" 7409 LGTKEY14 = "Longitudinal key person indicator" 7410 LGTKEY15 = "Longitudinal key person indicator" 7411 LGTKEY16 = "Longitudinal key person indicator" 7412 LGTKEY17 = "Longitudinal key person indicator" 7413 LGTKEY18 = "Longitudinal key person indicator" 7414 LGTKEY19 = "Longitudinal key person indicator" 7415 LGTKEY20 = "Longitudinal key person indicator" 7416 LGTKEY21 = "Longitudinal key person indicator" 7417 LGTKEY22 = "Longitudinal key person indicator" 7418 LGTKEY23 = "Longitudinal key person indicator" 101 The SAS System 15:27 Thursday, July 3, 2003 7419 LGTKEY24 = "Longitudinal key person indicator" 7420 LGTKEY25 = "Longitudinal key person indicator" 7421 LGTKEY26 = "Longitudinal key person indicator" 7422 LGTKEY27 = "Longitudinal key person indicator" 7423 LGTKEY28 = "Longitudinal key person indicator" 7424 LGTKEY29 = "Longitudinal key person indicator" 7425 LGTKEY30 = "Longitudinal key person indicator" 7426 LGTKEY31 = "Longitudinal key person indicator" 7427 LGTKEY32 = "Longitudinal key person indicator" 7428 LGTOTH01 = "Longitudinal 'other' person (not a key" 7429 LGTOTH02 = "Longitudinal 'other' person (not a key" 7430 LGTOTH03 = "Longitudinal 'other' person (not a key" 7431 LGTOTH04 = "Longitudinal 'other' person (not a key" 7432 LGTOTH05 = "Longitudinal 'other' person (not a key" 7433 LGTOTH06 = "Longitudinal 'other' person (not a key" 7434 LGTOTH07 = "Longitudinal 'other' person (not a key" 7435 LGTOTH08 = "Longitudinal 'other' person (not a key" 7436 LGTOTH09 = "Longitudinal 'other' person (not a key" 7437 LGTOTH10 = "Longitudinal 'other' person (not a key" 7438 LGTOTH11 = "Longitudinal 'other' person (not a key" 7439 LGTOTH12 = "Longitudinal 'other' person (not a key" 7440 LGTOTH13 = "Longitudinal 'other' person (not a key" 7441 LGTOTH14 = "Longitudinal 'other' person (not a key" 7442 LGTOTH15 = "Longitudinal 'other' person (not a key" 7443 LGTOTH16 = "Longitudinal 'other' person (not a key" 7444 LGTOTH17 = "Longitudinal 'other' person (not a key" 7445 LGTOTH18 = "Longitudinal 'other' person (not a key" 7446 LGTOTH19 = "Longitudinal 'other' person (not a key" 7447 LGTOTH20 = "Longitudinal 'other' person (not a key" 7448 LGTOTH21 = "Longitudinal 'other' person (not a key" 7449 LGTOTH22 = "Longitudinal 'other' person (not a key" 7450 LGTOTH23 = "Longitudinal 'other' person (not a key" 7451 LGTOTH24 = "Longitudinal 'other' person (not a key" 7452 LGTOTH25 = "Longitudinal 'other' person (not a key" 7453 LGTOTH26 = "Longitudinal 'other' person (not a key" 7454 LGTOTH27 = "Longitudinal 'other' person (not a key" 7455 LGTOTH28 = "Longitudinal 'other' person (not a key" 7456 LGTOTH29 = "Longitudinal 'other' person (not a key" 7457 LGTOTH30 = "Longitudinal 'other' person (not a key" 7458 LGTOTH31 = "Longitudinal 'other' person (not a key" 7459 LGTOTH32 = "Longitudinal 'other' person (not a key" 7460 LGTFA101 = "Long. adjustment factor number 1" 7461 LGTFA102 = "Long. adjustment factor number 1" 7462 LGTFA103 = "Long. adjustment factor number 1" 7463 LGTFA104 = "Long. adjustment factor number 1" 7464 LGTFA105 = "Long. adjustment factor number 1" 7465 LGTFA106 = "Long. adjustment factor number 1" 7466 LGTFA107 = "Long. adjustment factor number 1" 7467 LGTFA108 = "Long. adjustment factor number 1" 7468 LGTFA109 = "Long. adjustment factor number 1" 7469 LGTFA110 = "Long. adjustment factor number 1" 7470 LGTFA111 = "Long. adjustment factor number 1" 7471 LGTFA112 = "Long. adjustment factor number 1" 7472 LGTFA113 = "Long. adjustment factor number 1" 7473 LGTFA114 = "Long. adjustment factor number 1" 7474 LGTFA115 = "Long. adjustment factor number 1" 7475 LGTFA116 = "Long. adjustment factor number 1" 7476 LGTFA117 = "Long. adjustment factor number 1" 7477 LGTFA118 = "Long. adjustment factor number 1" 7478 LGTFA119 = "Long. adjustment factor number 1" 7479 LGTFA120 = "Long. adjustment factor number 1" 7480 LGTFA121 = "Long. adjustment factor number 1" 7481 LGTFA122 = "Long. adjustment factor number 1" 7482 LGTFA123 = "Long. adjustment factor number 1" 7483 LGTFA124 = "Long. adjustment factor number 1" 7484 LGTFA125 = "Long. adjustment factor number 1" 7485 LGTFA126 = "Long. adjustment factor number 1" 7486 LGTFA127 = "Long. adjustment factor number 1" 7487 LGTFA128 = "Long. adjustment factor number 1" 7488 LGTFA129 = "Long. adjustment factor number 1" 7489 LGTFA130 = "Long. adjustment factor number 1" 7490 LGTFA131 = "Long. adjustment factor number 1" 7491 LGTFA132 = "Long. adjustment factor number 1" 7492 LGTFA201 = "Long. adjustment factor number 2" 7493 LGTFA202 = "Long. adjustment factor number 2" 7494 LGTFA203 = "Long. adjustment factor number 2" 102 The SAS System 15:27 Thursday, July 3, 2003 7495 LGTFA204 = "Long. adjustment factor number 2" 7496 LGTFA205 = "Long. adjustment factor number 2" 7497 LGTFA206 = "Long. adjustment factor number 2" 7498 LGTFA207 = "Long. adjustment factor number 2" 7499 LGTFA208 = "Long. adjustment factor number 2" 7500 LGTFA209 = "Long. adjustment factor number 2" 7501 LGTFA210 = "Long. adjustment factor number 2" 7502 LGTFA211 = "Long. adjustment factor number 2" 7503 LGTFA212 = "Long. adjustment factor number 2" 7504 LGTFA213 = "Long. adjustment factor number 2" 7505 LGTFA214 = "Long. adjustment factor number 2" 7506 LGTFA215 = "Long. adjustment factor number 2" 7507 LGTFA216 = "Long. adjustment factor number 2" 7508 LGTFA217 = "Long. adjustment factor number 2" 7509 LGTFA218 = "Long. adjustment factor number 2" 7510 LGTFA219 = "Long. adjustment factor number 2" 7511 LGTFA220 = "Long. adjustment factor number 2" 7512 LGTFA221 = "Long. adjustment factor number 2" 7513 LGTFA222 = "Long. adjustment factor number 2" 7514 LGTFA223 = "Long. adjustment factor number 2" 7515 LGTFA224 = "Long. adjustment factor number 2" 7516 LGTFA225 = "Long. adjustment factor number 2" 7517 LGTFA226 = "Long. adjustment factor number 2" 7518 LGTFA227 = "Long. adjustment factor number 2" 7519 LGTFA228 = "Long. adjustment factor number 2" 7520 LGTFA229 = "Long. adjustment factor number 2" 7521 LGTFA230 = "Long. adjustment factor number 2" 7522 LGTFA231 = "Long. adjustment factor number 2" 7523 LGTFA232 = "Long. adjustment factor number 2" 7524 SEX = "Sex, edited and imputed" 7525 RACE = "Race, edited and imputed" 7526 ETHNICTY = "Ethnic origin" 7527 RRP_01 = "Edited relationship to reference perso" 7528 RRP_02 = "Edited relationship to reference perso" 7529 RRP_03 = "Edited relationship to reference perso" 7530 RRP_04 = "Edited relationship to reference perso" 7531 RRP_05 = "Edited relationship to reference perso" 7532 RRP_06 = "Edited relationship to reference perso" 7533 RRP_07 = "Edited relationship to reference perso" 7534 RRP_08 = "Edited relationship to reference perso" 7535 RRP_09 = "Edited relationship to reference perso" 7536 RRP_10 = "Edited relationship to reference perso" 7537 RRP_11 = "Edited relationship to reference perso" 7538 RRP_12 = "Edited relationship to reference perso" 7539 RRP_13 = "Edited relationship to reference perso" 7540 RRP_14 = "Edited relationship to reference perso" 7541 RRP_15 = "Edited relationship to reference perso" 7542 RRP_16 = "Edited relationship to reference perso" 7543 RRP_17 = "Edited relationship to reference perso" 7544 RRP_18 = "Edited relationship to reference perso" 7545 RRP_19 = "Edited relationship to reference perso" 7546 RRP_20 = "Edited relationship to reference perso" 7547 RRP_21 = "Edited relationship to reference perso" 7548 RRP_22 = "Edited relationship to reference perso" 7549 RRP_23 = "Edited relationship to reference perso" 7550 RRP_24 = "Edited relationship to reference perso" 7551 RRP_25 = "Edited relationship to reference perso" 7552 RRP_26 = "Edited relationship to reference perso" 7553 RRP_27 = "Edited relationship to reference perso" 7554 RRP_28 = "Edited relationship to reference perso" 7555 RRP_29 = "Edited relationship to reference perso" 7556 RRP_30 = "Edited relationship to reference perso" 7557 RRP_31 = "Edited relationship to reference perso" 7558 RRP_32 = "Edited relationship to reference perso" 7559 AGE_01 = "Edited and imputed age as of last" 7560 AGE_02 = "Edited and imputed age as of last" 7561 AGE_03 = "Edited and imputed age as of last" 7562 AGE_04 = "Edited and imputed age as of last" 7563 AGE_05 = "Edited and imputed age as of last" 7564 AGE_06 = "Edited and imputed age as of last" 7565 AGE_07 = "Edited and imputed age as of last" 7566 AGE_08 = "Edited and imputed age as of last" 7567 AGE_09 = "Edited and imputed age as of last" 7568 AGE_10 = "Edited and imputed age as of last" 7569 AGE_11 = "Edited and imputed age as of last" 7570 AGE_12 = "Edited and imputed age as of last" 103 The SAS System 15:27 Thursday, July 3, 2003 7571 AGE_13 = "Edited and imputed age as of last" 7572 AGE_14 = "Edited and imputed age as of last" 7573 AGE_15 = "Edited and imputed age as of last" 7574 AGE_16 = "Edited and imputed age as of last" 7575 AGE_17 = "Edited and imputed age as of last" 7576 AGE_18 = "Edited and imputed age as of last" 7577 AGE_19 = "Edited and imputed age as of last" 7578 AGE_20 = "Edited and imputed age as of last" 7579 AGE_21 = "Edited and imputed age as of last" 7580 AGE_22 = "Edited and imputed age as of last" 7581 AGE_23 = "Edited and imputed age as of last" 7582 AGE_24 = "Edited and imputed age as of last" 7583 AGE_25 = "Edited and imputed age as of last" 7584 AGE_26 = "Edited and imputed age as of last" 7585 AGE_27 = "Edited and imputed age as of last" 7586 AGE_28 = "Edited and imputed age as of last" 7587 AGE_29 = "Edited and imputed age as of last" 7588 AGE_30 = "Edited and imputed age as of last" 7589 AGE_31 = "Edited and imputed age as of last" 7590 AGE_32 = "Edited and imputed age as of last" 7591 MS_01 = "Marital status (monthly)" 7592 MS_02 = "Marital status (monthly)" 7593 MS_03 = "Marital status (monthly)" 7594 MS_04 = "Marital status (monthly)" 7595 MS_05 = "Marital status (monthly)" 7596 MS_06 = "Marital status (monthly)" 7597 MS_07 = "Marital status (monthly)" 7598 MS_08 = "Marital status (monthly)" 7599 MS_09 = "Marital status (monthly)" 7600 MS_10 = "Marital status (monthly)" 7601 MS_11 = "Marital status (monthly)" 7602 MS_12 = "Marital status (monthly)" 7603 MS_13 = "Marital status (monthly)" 7604 MS_14 = "Marital status (monthly)" 7605 MS_15 = "Marital status (monthly)" 7606 MS_16 = "Marital status (monthly)" 7607 MS_17 = "Marital status (monthly)" 7608 MS_18 = "Marital status (monthly)" 7609 MS_19 = "Marital status (monthly)" 7610 MS_20 = "Marital status (monthly)" 7611 MS_21 = "Marital status (monthly)" 7612 MS_22 = "Marital status (monthly)" 7613 MS_23 = "Marital status (monthly)" 7614 MS_24 = "Marital status (monthly)" 7615 MS_25 = "Marital status (monthly)" 7616 MS_26 = "Marital status (monthly)" 7617 MS_27 = "Marital status (monthly)" 7618 MS_28 = "Marital status (monthly)" 7619 MS_29 = "Marital status (monthly)" 7620 MS_30 = "Marital status (monthly)" 7621 MS_31 = "Marital status (monthly)" 7622 MS_32 = "Marital status (monthly)" 7623 FAMTYP01 = "Family type (monthly)" 7624 FAMTYP02 = "Family type (monthly)" 7625 FAMTYP03 = "Family type (monthly)" 7626 FAMTYP04 = "Family type (monthly)" 7627 FAMTYP05 = "Family type (monthly)" 7628 FAMTYP06 = "Family type (monthly)" 7629 FAMTYP07 = "Family type (monthly)" 7630 FAMTYP08 = "Family type (monthly)" 7631 FAMTYP09 = "Family type (monthly)" 7632 FAMTYP10 = "Family type (monthly)" 7633 FAMTYP11 = "Family type (monthly)" 7634 FAMTYP12 = "Family type (monthly)" 7635 FAMTYP13 = "Family type (monthly)" 7636 FAMTYP14 = "Family type (monthly)" 7637 FAMTYP15 = "Family type (monthly)" 7638 FAMTYP16 = "Family type (monthly)" 7639 FAMTYP17 = "Family type (monthly)" 7640 FAMTYP18 = "Family type (monthly)" 7641 FAMTYP19 = "Family type (monthly)" 7642 FAMTYP20 = "Family type (monthly)" 7643 FAMTYP21 = "Family type (monthly)" 7644 FAMTYP22 = "Family type (monthly)" 7645 FAMTYP23 = "Family type (monthly)" 7646 FAMTYP24 = "Family type (monthly)" 104 The SAS System 15:27 Thursday, July 3, 2003 7647 FAMTYP25 = "Family type (monthly)" 7648 FAMTYP26 = "Family type (monthly)" 7649 FAMTYP27 = "Family type (monthly)" 7650 FAMTYP28 = "Family type (monthly)" 7651 FAMTYP29 = "Family type (monthly)" 7652 FAMTYP30 = "Family type (monthly)" 7653 FAMTYP31 = "Family type (monthly)" 7654 FAMTYP32 = "Family type (monthly)" 7655 FAMREL01 = "Family relationship code if in" 7656 FAMREL02 = "Family relationship code if in" 7657 FAMREL03 = "Family relationship code if in" 7658 FAMREL04 = "Family relationship code if in" 7659 FAMREL05 = "Family relationship code if in" 7660 FAMREL06 = "Family relationship code if in" 7661 FAMREL07 = "Family relationship code if in" 7662 FAMREL08 = "Family relationship code if in" 7663 FAMREL09 = "Family relationship code if in" 7664 FAMREL10 = "Family relationship code if in" 7665 FAMREL11 = "Family relationship code if in" 7666 FAMREL12 = "Family relationship code if in" 7667 FAMREL13 = "Family relationship code if in" 7668 FAMREL14 = "Family relationship code if in" 7669 FAMREL15 = "Family relationship code if in" 7670 FAMREL16 = "Family relationship code if in" 7671 FAMREL17 = "Family relationship code if in" 7672 FAMREL18 = "Family relationship code if in" 7673 FAMREL19 = "Family relationship code if in" 7674 FAMREL20 = "Family relationship code if in" 7675 FAMREL21 = "Family relationship code if in" 7676 FAMREL22 = "Family relationship code if in" 7677 FAMREL23 = "Family relationship code if in" 7678 FAMREL24 = "Family relationship code if in" 7679 FAMREL25 = "Family relationship code if in" 7680 FAMREL26 = "Family relationship code if in" 7681 FAMREL27 = "Family relationship code if in" 7682 FAMREL28 = "Family relationship code if in" 7683 FAMREL29 = "Family relationship code if in" 7684 FAMREL30 = "Family relationship code if in" 7685 FAMREL31 = "Family relationship code if in" 7686 FAMREL32 = "Family relationship code if in" 7687 FAMNUM01 = "Family number if in a subfamily" 7688 FAMNUM02 = "Family number if in a subfamily" 7689 FAMNUM03 = "Family number if in a subfamily" 7690 FAMNUM04 = "Family number if in a subfamily" 7691 FAMNUM05 = "Family number if in a subfamily" 7692 FAMNUM06 = "Family number if in a subfamily" 7693 FAMNUM07 = "Family number if in a subfamily" 7694 FAMNUM08 = "Family number if in a subfamily" 7695 FAMNUM09 = "Family number if in a subfamily" 7696 FAMNUM10 = "Family number if in a subfamily" 7697 FAMNUM11 = "Family number if in a subfamily" 7698 FAMNUM12 = "Family number if in a subfamily" 7699 FAMNUM13 = "Family number if in a subfamily" 7700 FAMNUM14 = "Family number if in a subfamily" 7701 FAMNUM15 = "Family number if in a subfamily" 7702 FAMNUM16 = "Family number if in a subfamily" 7703 FAMNUM17 = "Family number if in a subfamily" 7704 FAMNUM18 = "Family number if in a subfamily" 7705 FAMNUM19 = "Family number if in a subfamily" 7706 FAMNUM20 = "Family number if in a subfamily" 7707 FAMNUM21 = "Family number if in a subfamily" 7708 FAMNUM22 = "Family number if in a subfamily" 7709 FAMNUM23 = "Family number if in a subfamily" 7710 FAMNUM24 = "Family number if in a subfamily" 7711 FAMNUM25 = "Family number if in a subfamily" 7712 FAMNUM26 = "Family number if in a subfamily" 7713 FAMNUM27 = "Family number if in a subfamily" 7714 FAMNUM28 = "Family number if in a subfamily" 7715 FAMNUM29 = "Family number if in a subfamily" 7716 FAMNUM30 = "Family number if in a subfamily" 7717 FAMNUM31 = "Family number if in a subfamily" 7718 FAMNUM32 = "Family number if in a subfamily" 7719 PNSP_01 = "Person number of spouse (monthly)" 7720 PNSP_02 = "Person number of spouse (monthly)" 7721 PNSP_03 = "Person number of spouse (monthly)" 7722 PNSP_04 = "Person number of spouse (monthly)" 105 The SAS System 15:27 Thursday, July 3, 2003 7723 PNSP_05 = "Person number of spouse (monthly)" 7724 PNSP_06 = "Person number of spouse (monthly)" 7725 PNSP_07 = "Person number of spouse (monthly)" 7726 PNSP_08 = "Person number of spouse (monthly)" 7727 PNSP_09 = "Person number of spouse (monthly)" 7728 PNSP_10 = "Person number of spouse (monthly)" 7729 PNSP_11 = "Person number of spouse (monthly)" 7730 PNSP_12 = "Person number of spouse (monthly)" 7731 PNSP_13 = "Person number of spouse (monthly)" 7732 PNSP_14 = "Person number of spouse (monthly)" 7733 PNSP_15 = "Person number of spouse (monthly)" 7734 PNSP_16 = "Person number of spouse (monthly)" 7735 PNSP_17 = "Person number of spouse (monthly)" 7736 PNSP_18 = "Person number of spouse (monthly)" 7737 PNSP_19 = "Person number of spouse (monthly)" 7738 PNSP_20 = "Person number of spouse (monthly)" 7739 PNSP_21 = "Person number of spouse (monthly)" 7740 PNSP_22 = "Person number of spouse (monthly)" 7741 PNSP_23 = "Person number of spouse (monthly)" 7742 PNSP_24 = "Person number of spouse (monthly)" 7743 PNSP_25 = "Person number of spouse (monthly)" 7744 PNSP_26 = "Person number of spouse (monthly)" 7745 PNSP_27 = "Person number of spouse (monthly)" 7746 PNSP_28 = "Person number of spouse (monthly)" 7747 PNSP_29 = "Person number of spouse (monthly)" 7748 PNSP_30 = "Person number of spouse (monthly)" 7749 PNSP_31 = "Person number of spouse (monthly)" 7750 PNSP_32 = "Person number of spouse (monthly)" 7751 ENT_SP01 = "Entry address ID of spouse (monthly)" 7752 ENT_SP02 = "Entry address ID of spouse (monthly)" 7753 ENT_SP03 = "Entry address ID of spouse (monthly)" 7754 ENT_SP04 = "Entry address ID of spouse (monthly)" 7755 ENT_SP05 = "Entry address ID of spouse (monthly)" 7756 ENT_SP06 = "Entry address ID of spouse (monthly)" 7757 ENT_SP07 = "Entry address ID of spouse (monthly)" 7758 ENT_SP08 = "Entry address ID of spouse (monthly)" 7759 ENT_SP09 = "Entry address ID of spouse (monthly)" 7760 ENT_SP10 = "Entry address ID of spouse (monthly)" 7761 ENT_SP11 = "Entry address ID of spouse (monthly)" 7762 ENT_SP12 = "Entry address ID of spouse (monthly)" 7763 ENT_SP13 = "Entry address ID of spouse (monthly)" 7764 ENT_SP14 = "Entry address ID of spouse (monthly)" 7765 ENT_SP15 = "Entry address ID of spouse (monthly)" 7766 ENT_SP16 = "Entry address ID of spouse (monthly)" 7767 ENT_SP17 = "Entry address ID of spouse (monthly)" 7768 ENT_SP18 = "Entry address ID of spouse (monthly)" 7769 ENT_SP19 = "Entry address ID of spouse (monthly)" 7770 ENT_SP20 = "Entry address ID of spouse (monthly)" 7771 ENT_SP21 = "Entry address ID of spouse (monthly)" 7772 ENT_SP22 = "Entry address ID of spouse (monthly)" 7773 ENT_SP23 = "Entry address ID of spouse (monthly)" 7774 ENT_SP24 = "Entry address ID of spouse (monthly)" 7775 ENT_SP25 = "Entry address ID of spouse (monthly)" 7776 ENT_SP26 = "Entry address ID of spouse (monthly)" 7777 ENT_SP27 = "Entry address ID of spouse (monthly)" 7778 ENT_SP28 = "Entry address ID of spouse (monthly)" 7779 ENT_SP29 = "Entry address ID of spouse (monthly)" 7780 ENT_SP30 = "Entry address ID of spouse (monthly)" 7781 ENT_SP31 = "Entry address ID of spouse (monthly)" 7782 ENT_SP32 = "Entry address ID of spouse (monthly)" 7783 PNPT_01 = "Person number of parent (monthly)" 7784 PNPT_02 = "Person number of parent (monthly)" 7785 PNPT_03 = "Person number of parent (monthly)" 7786 PNPT_04 = "Person number of parent (monthly)" 7787 PNPT_05 = "Person number of parent (monthly)" 7788 PNPT_06 = "Person number of parent (monthly)" 7789 PNPT_07 = "Person number of parent (monthly)" 7790 PNPT_08 = "Person number of parent (monthly)" 7791 PNPT_09 = "Person number of parent (monthly)" 7792 PNPT_10 = "Person number of parent (monthly)" 7793 PNPT_11 = "Person number of parent (monthly)" 7794 PNPT_12 = "Person number of parent (monthly)" 7795 PNPT_13 = "Person number of parent (monthly)" 7796 PNPT_14 = "Person number of parent (monthly)" 7797 PNPT_15 = "Person number of parent (monthly)" 7798 PNPT_16 = "Person number of parent (monthly)" 106 The SAS System 15:27 Thursday, July 3, 2003 7799 PNPT_17 = "Person number of parent (monthly)" 7800 PNPT_18 = "Person number of parent (monthly)" 7801 PNPT_19 = "Person number of parent (monthly)" 7802 PNPT_20 = "Person number of parent (monthly)" 7803 PNPT_21 = "Person number of parent (monthly)" 7804 PNPT_22 = "Person number of parent (monthly)" 7805 PNPT_23 = "Person number of parent (monthly)" 7806 PNPT_24 = "Person number of parent (monthly)" 7807 PNPT_25 = "Person number of parent (monthly)" 7808 PNPT_26 = "Person number of parent (monthly)" 7809 PNPT_27 = "Person number of parent (monthly)" 7810 PNPT_28 = "Person number of parent (monthly)" 7811 PNPT_29 = "Person number of parent (monthly)" 7812 PNPT_30 = "Person number of parent (monthly)" 7813 PNPT_31 = "Person number of parent (monthly)" 7814 PNPT_32 = "Person number of parent (monthly)" 7815 ENT_PT01 = "Entry address ID of parent (monthly)" 7816 ENT_PT02 = "Entry address ID of parent (monthly)" 7817 ENT_PT03 = "Entry address ID of parent (monthly)" 7818 ENT_PT04 = "Entry address ID of parent (monthly)" 7819 ENT_PT05 = "Entry address ID of parent (monthly)" 7820 ENT_PT06 = "Entry address ID of parent (monthly)" 7821 ENT_PT07 = "Entry address ID of parent (monthly)" 7822 ENT_PT08 = "Entry address ID of parent (monthly)" 7823 ENT_PT09 = "Entry address ID of parent (monthly)" 7824 ENT_PT10 = "Entry address ID of parent (monthly)" 7825 ENT_PT11 = "Entry address ID of parent (monthly)" 7826 ENT_PT12 = "Entry address ID of parent (monthly)" 7827 ENT_PT13 = "Entry address ID of parent (monthly)" 7828 ENT_PT14 = "Entry address ID of parent (monthly)" 7829 ENT_PT15 = "Entry address ID of parent (monthly)" 7830 ENT_PT16 = "Entry address ID of parent (monthly)" 7831 ENT_PT17 = "Entry address ID of parent (monthly)" 7832 ENT_PT18 = "Entry address ID of parent (monthly)" 7833 ENT_PT19 = "Entry address ID of parent (monthly)" 7834 ENT_PT20 = "Entry address ID of parent (monthly)" 7835 ENT_PT21 = "Entry address ID of parent (monthly)" 7836 ENT_PT22 = "Entry address ID of parent (monthly)" 7837 ENT_PT23 = "Entry address ID of parent (monthly)" 7838 ENT_PT24 = "Entry address ID of parent (monthly)" 7839 ENT_PT25 = "Entry address ID of parent (monthly)" 7840 ENT_PT26 = "Entry address ID of parent (monthly)" 7841 ENT_PT27 = "Entry address ID of parent (monthly)" 7842 ENT_PT28 = "Entry address ID of parent (monthly)" 7843 ENT_PT29 = "Entry address ID of parent (monthly)" 7844 ENT_PT30 = "Entry address ID of parent (monthly)" 7845 ENT_PT31 = "Entry address ID of parent (monthly)" 7846 ENT_PT32 = "Entry address ID of parent (monthly)" 7847 HIGRADE1 = "Highest grade or year of regular schoo" 7848 HIGRADE2 = "Highest grade or year of regular schoo" 7849 HIGRADE3 = "Highest grade or year of regular schoo" 7850 HIGRADE4 = "Highest grade or year of regular schoo" 7851 HIGRADE5 = "Highest grade or year of regular schoo" 7852 HIGRADE6 = "Highest grade or year of regular schoo" 7853 HIGRADE7 = "Highest grade or year of regular schoo" 7854 HIGRADE8 = "Highest grade or year of regular schoo" 7855 GRD_CMP1 = "Did he/she complete that grade" 7856 GRD_CMP2 = "Did he/she complete that grade" 7857 GRD_CMP3 = "Did he/she complete that grade" 7858 GRD_CMP4 = "Did he/she complete that grade" 7859 GRD_CMP5 = "Did he/she complete that grade" 7860 GRD_CMP6 = "Did he/she complete that grade" 7861 GRD_CMP7 = "Did he/she complete that grade" 7862 GRD_CMP8 = "Did he/she complete that grade" 7863 U_VET_1 = "Ever served on active duty in the U.S." 7864 U_VET_2 = "Ever served on active duty in the U.S." 7865 U_VET_3 = "Ever served on active duty in the U.S." 7866 U_VET_4 = "Ever served on active duty in the U.S." 7867 U_VET_5 = "Ever served on active duty in the U.S." 7868 U_VET_6 = "Ever served on active duty in the U.S." 7869 U_VET_7 = "Ever served on active duty in the U.S." 7870 U_VET_8 = "Ever served on active duty in the U.S." 7871 IN_AF_1 = "Is currently in the armed forces" 7872 IN_AF_2 = "Is currently in the armed forces" 7873 IN_AF_3 = "Is currently in the armed forces" 7874 IN_AF_4 = "Is currently in the armed forces" 107 The SAS System 15:27 Thursday, July 3, 2003 7875 IN_AF_5 = "Is currently in the armed forces" 7876 IN_AF_6 = "Is currently in the armed forces" 7877 IN_AF_7 = "Is currently in the armed forces" 7878 IN_AF_8 = "Is currently in the armed forces" 7879 USRV1_1 = "Unedited period of service, control ca" 7880 USRV1_2 = "Unedited period of service, control ca" 7881 USRV1_3 = "Unedited period of service, control ca" 7882 USRV1_4 = "Unedited period of service, control ca" 7883 USRV1_5 = "Unedited period of service, control ca" 7884 USRV1_6 = "Unedited period of service, control ca" 7885 USRV1_7 = "Unedited period of service, control ca" 7886 USRV1_8 = "Unedited period of service, control ca" 7887 USRV2_1 = "Unedited period of service" 7888 USRV2_2 = "Unedited period of service" 7889 USRV2_3 = "Unedited period of service" 7890 USRV2_4 = "Unedited period of service" 7891 USRV2_5 = "Unedited period of service" 7892 USRV2_6 = "Unedited period of service" 7893 USRV2_7 = "Unedited period of service" 7894 USRV2_8 = "Unedited period of service" 7895 USRV3_1 = "Unedited period of service" 7896 USRV3_2 = "Unedited period of service" 7897 USRV3_3 = "Unedited period of service" 7898 USRV3_4 = "Unedited period of service" 7899 USRV3_5 = "Unedited period of service" 7900 USRV3_6 = "Unedited period of service" 7901 USRV3_7 = "Unedited period of service" 7902 USRV3_8 = "Unedited period of service" 7903 BRTHMN = "Preedited month of birth" 7904 BRTHYR = "Preedited year of birth" 7905 U_PNGD1 = "Preedited person number of designated" 7906 U_PNGD2 = "Preedited person number of designated" 7907 U_PNGD3 = "Preedited person number of designated" 7908 U_PNGD4 = "Preedited person number of designated" 7909 U_PNGD5 = "Preedited person number of designated" 7910 U_PNGD6 = "Preedited person number of designated" 7911 U_PNGD7 = "Preedited person number of designated" 7912 U_PNGD8 = "Preedited person number of designated" 7913 ENTID_G1 = "Entry address ID of designated parent " 7914 ENTID_G2 = "Entry address ID of designated parent " 7915 ENTID_G3 = "Entry address ID of designated parent " 7916 ENTID_G4 = "Entry address ID of designated parent " 7917 ENTID_G5 = "Entry address ID of designated parent " 7918 ENTID_G6 = "Entry address ID of designated parent " 7919 ENTID_G7 = "Entry address ID of designated parent " 7920 ENTID_G8 = "Entry address ID of designated parent " 7921 U_LVQT01 = "Housing/other unit control card items " 7922 U_LVQT02 = "Housing/other unit control card items " 7923 U_LVQT03 = "Housing/other unit control card items " 7924 U_LVQT04 = "Housing/other unit control card items " 7925 U_LVQT05 = "Housing/other unit control card items " 7926 U_LVQT06 = "Housing/other unit control card items " 7927 U_LVQT07 = "Housing/other unit control card items " 7928 U_LVQT08 = "Housing/other unit control card items " 7929 U_LVQT09 = "Housing/other unit control card items " 7930 U_LVQT10 = "Housing/other unit control card items " 7931 U_LVQT11 = "Housing/other unit control card items " 7932 U_LVQT12 = "Housing/other unit control card items " 7933 U_LVQT13 = "Housing/other unit control card items " 7934 U_LVQT14 = "Housing/other unit control card items " 7935 U_LVQT15 = "Housing/other unit control card items " 7936 U_LVQT16 = "Housing/other unit control card items " 7937 U_LVQT17 = "Housing/other unit control card items " 7938 U_LVQT18 = "Housing/other unit control card items " 7939 U_LVQT19 = "Housing/other unit control card items " 7940 U_LVQT20 = "Housing/other unit control card items " 7941 U_LVQT21 = "Housing/other unit control card items " 7942 U_LVQT22 = "Housing/other unit control card items " 7943 U_LVQT23 = "Housing/other unit control card items " 7944 U_LVQT24 = "Housing/other unit control card items " 7945 U_LVQT25 = "Housing/other unit control card items " 7946 U_LVQT26 = "Housing/other unit control card items " 7947 U_LVQT27 = "Housing/other unit control card items " 7948 U_LVQT28 = "Housing/other unit control card items " 7949 U_LVQT29 = "Housing/other unit control card items " 7950 U_LVQT30 = "Housing/other unit control card items " 108 The SAS System 15:27 Thursday, July 3, 2003 7951 U_LVQT31 = "Housing/other unit control card items " 7952 U_LVQT32 = "Housing/other unit control card items " 7953 TENURE01 = "Living quarters owned/rent/other occ," 7954 TENURE02 = "Living quarters owned/rent/other occ," 7955 TENURE03 = "Living quarters owned/rent/other occ," 7956 TENURE04 = "Living quarters owned/rent/other occ," 7957 TENURE05 = "Living quarters owned/rent/other occ," 7958 TENURE06 = "Living quarters owned/rent/other occ," 7959 TENURE07 = "Living quarters owned/rent/other occ," 7960 TENURE08 = "Living quarters owned/rent/other occ," 7961 TENURE09 = "Living quarters owned/rent/other occ," 7962 TENURE10 = "Living quarters owned/rent/other occ," 7963 TENURE11 = "Living quarters owned/rent/other occ," 7964 TENURE12 = "Living quarters owned/rent/other occ," 7965 TENURE13 = "Living quarters owned/rent/other occ," 7966 TENURE14 = "Living quarters owned/rent/other occ," 7967 TENURE15 = "Living quarters owned/rent/other occ," 7968 TENURE16 = "Living quarters owned/rent/other occ," 7969 TENURE17 = "Living quarters owned/rent/other occ," 7970 TENURE18 = "Living quarters owned/rent/other occ," 7971 TENURE19 = "Living quarters owned/rent/other occ," 7972 TENURE20 = "Living quarters owned/rent/other occ," 7973 TENURE21 = "Living quarters owned/rent/other occ," 7974 TENURE22 = "Living quarters owned/rent/other occ," 7975 TENURE23 = "Living quarters owned/rent/other occ," 7976 TENURE24 = "Living quarters owned/rent/other occ," 7977 TENURE25 = "Living quarters owned/rent/other occ," 7978 TENURE26 = "Living quarters owned/rent/other occ," 7979 TENURE27 = "Living quarters owned/rent/other occ," 7980 TENURE28 = "Living quarters owned/rent/other occ," 7981 TENURE29 = "Living quarters owned/rent/other occ," 7982 TENURE30 = "Living quarters owned/rent/other occ," 7983 TENURE31 = "Living quarters owned/rent/other occ," 7984 TENURE32 = "Living quarters owned/rent/other occ," 7985 PUBHS_01 = "CC item 16a is the residence in a publ" 7986 PUBHS_02 = "CC item 16a is the residence in a publ" 7987 PUBHS_03 = "CC item 16a is the residence in a publ" 7988 PUBHS_04 = "CC item 16a is the residence in a publ" 7989 PUBHS_05 = "CC item 16a is the residence in a publ" 7990 PUBHS_06 = "CC item 16a is the residence in a publ" 7991 PUBHS_07 = "CC item 16a is the residence in a publ" 7992 PUBHS_08 = "CC item 16a is the residence in a publ" 7993 PUBHS_09 = "CC item 16a is the residence in a publ" 7994 PUBHS_10 = "CC item 16a is the residence in a publ" 7995 PUBHS_11 = "CC item 16a is the residence in a publ" 7996 PUBHS_12 = "CC item 16a is the residence in a publ" 7997 PUBHS_13 = "CC item 16a is the residence in a publ" 7998 PUBHS_14 = "CC item 16a is the residence in a publ" 7999 PUBHS_15 = "CC item 16a is the residence in a publ" 8000 PUBHS_16 = "CC item 16a is the residence in a publ" 8001 PUBHS_17 = "CC item 16a is the residence in a publ" 8002 PUBHS_18 = "CC item 16a is the residence in a publ" 8003 PUBHS_19 = "CC item 16a is the residence in a publ" 8004 PUBHS_20 = "CC item 16a is the residence in a publ" 8005 PUBHS_21 = "CC item 16a is the residence in a publ" 8006 PUBHS_22 = "CC item 16a is the residence in a publ" 8007 PUBHS_23 = "CC item 16a is the residence in a publ" 8008 PUBHS_24 = "CC item 16a is the residence in a publ" 8009 PUBHS_25 = "CC item 16a is the residence in a publ" 8010 PUBHS_26 = "CC item 16a is the residence in a publ" 8011 PUBHS_27 = "CC item 16a is the residence in a publ" 8012 PUBHS_28 = "CC item 16a is the residence in a publ" 8013 PUBHS_29 = "CC item 16a is the residence in a publ" 8014 PUBHS_30 = "CC item 16a is the residence in a publ" 8015 PUBHS_31 = "CC item 16a is the residence in a publ" 8016 PUBHS_32 = "CC item 16a is the residence in a publ" 8017 LOW_RE01 = "CC item 16b paying lower rent because " 8018 LOW_RE02 = "CC item 16b paying lower rent because " 8019 LOW_RE03 = "CC item 16b paying lower rent because " 8020 LOW_RE04 = "CC item 16b paying lower rent because " 8021 LOW_RE05 = "CC item 16b paying lower rent because " 8022 LOW_RE06 = "CC item 16b paying lower rent because " 8023 LOW_RE07 = "CC item 16b paying lower rent because " 8024 LOW_RE08 = "CC item 16b paying lower rent because " 8025 LOW_RE09 = "CC item 16b paying lower rent because " 8026 LOW_RE10 = "CC item 16b paying lower rent because " 109 The SAS System 15:27 Thursday, July 3, 2003 8027 LOW_RE11 = "CC item 16b paying lower rent because " 8028 LOW_RE12 = "CC item 16b paying lower rent because " 8029 LOW_RE13 = "CC item 16b paying lower rent because " 8030 LOW_RE14 = "CC item 16b paying lower rent because " 8031 LOW_RE15 = "CC item 16b paying lower rent because " 8032 LOW_RE16 = "CC item 16b paying lower rent because " 8033 LOW_RE17 = "CC item 16b paying lower rent because " 8034 LOW_RE18 = "CC item 16b paying lower rent because " 8035 LOW_RE19 = "CC item 16b paying lower rent because " 8036 LOW_RE20 = "CC item 16b paying lower rent because " 8037 LOW_RE21 = "CC item 16b paying lower rent because " 8038 LOW_RE22 = "CC item 16b paying lower rent because " 8039 LOW_RE23 = "CC item 16b paying lower rent because " 8040 LOW_RE24 = "CC item 16b paying lower rent because " 8041 LOW_RE25 = "CC item 16b paying lower rent because " 8042 LOW_RE26 = "CC item 16b paying lower rent because " 8043 LOW_RE27 = "CC item 16b paying lower rent because " 8044 LOW_RE28 = "CC item 16b paying lower rent because " 8045 LOW_RE29 = "CC item 16b paying lower rent because " 8046 LOW_RE30 = "CC item 16b paying lower rent because " 8047 LOW_RE31 = "CC item 16b paying lower rent because " 8048 LOW_RE32 = "CC item 16b paying lower rent because " 8049 ADDID51 = "Household address i.d. person lived at" 8050 ADDID52 = "Household address i.d. person lived at" 8051 ADDID53 = "Household address i.d. person lived at" 8052 ADDID54 = "Household address i.d. person lived at" 8053 ADDID55 = "Household address i.d. person lived at" 8054 ADDID56 = "Household address i.d. person lived at" 8055 ADDID57 = "Household address i.d. person lived at" 8056 ADDID58 = "Household address i.d. person lived at" 8057 ENRGY_Y1 = "Household received govt.energy" 8058 ENRGY_Y2 = "Household received govt.energy" 8059 ENRGY_Y3 = "Household received govt.energy" 8060 ENRGY_Y4 = "Household received govt.energy" 8061 ENRGY_Y5 = "Household received govt.energy" 8062 ENRGY_Y6 = "Household received govt.energy" 8063 ENRGY_Y7 = "Household received govt.energy" 8064 ENRGY_Y8 = "Household received govt.energy" 8065 H_ENRGY1 = "What type of household energy" 8066 H_ENRGY2 = "What type of household energy" 8067 H_ENRGY3 = "What type of household energy" 8068 H_ENRGY4 = "What type of household energy" 8069 H_ENRGY5 = "What type of household energy" 8070 H_ENRGY6 = "What type of household energy" 8071 H_ENRGY7 = "What type of household energy" 8072 H_ENRGY8 = "What type of household energy" 8073 H_48241 = "Total amount of household energy" 8074 H_48242 = "Total amount of household energy" 8075 H_48243 = "Total amount of household energy" 8076 H_48244 = "Total amount of household energy" 8077 H_48245 = "Total amount of household energy" 8078 H_48246 = "Total amount of household energy" 8079 H_48247 = "Total amount of household energy" 8080 H_48248 = "Total amount of household energy" 8081 H_LUNCH1 = "Are the lunches free or reduced-price" 8082 H_LUNCH2 = "Are the lunches free or reduced-price" 8083 H_LUNCH3 = "Are the lunches free or reduced-price" 8084 H_LUNCH4 = "Are the lunches free or reduced-price" 8085 H_LUNCH5 = "Are the lunches free or reduced-price" 8086 H_LUNCH6 = "Are the lunches free or reduced-price" 8087 H_LUNCH7 = "Are the lunches free or reduced-price" 8088 H_LUNCH8 = "Are the lunches free or reduced-price" 8089 H_48341 = "Number of children eating lunch free" 8090 H_48342 = "Number of children eating lunch free" 8091 H_48343 = "Number of children eating lunch free" 8092 H_48344 = "Number of children eating lunch free" 8093 H_48345 = "Number of children eating lunch free" 8094 H_48346 = "Number of children eating lunch free" 8095 H_48347 = "Number of children eating lunch free" 8096 H_48348 = "Number of children eating lunch free" 8097 H_BREAK1 = "Breakfasts free or reduced-price" 8098 H_BREAK2 = "Breakfasts free or reduced-price" 8099 H_BREAK3 = "Breakfasts free or reduced-price" 8100 H_BREAK4 = "Breakfasts free or reduced-price" 8101 H_BREAK5 = "Breakfasts free or reduced-price" 8102 H_BREAK6 = "Breakfasts free or reduced-price" 110 The SAS System 15:27 Thursday, July 3, 2003 8103 H_BREAK7 = "Breakfasts free or reduced-price" 8104 H_BREAK8 = "Breakfasts free or reduced-price" 8105 H_48301 = "Number of children with free or reduce" 8106 H_48302 = "Number of children with free or reduce" 8107 H_48303 = "Number of children with free or reduce" 8108 H_48304 = "Number of children with free or reduce" 8109 H_48305 = "Number of children with free or reduce" 8110 H_48306 = "Number of children with free or reduce" 8111 H_48307 = "Number of children with free or reduce" 8112 H_48308 = "Number of children with free or reduce" 8113 PUBRNTYN = "Public housing unit for which rent is" 8114 PUBRNAMT = "Monthly rent - public housing unit" 8115 UTLPAYYN = "Utility payment on public housing unit" 8116 FULLRENT = "Monthly rent on public housing unit" 8117 STATE_1 = "Fips state code from the GRIN file" 8118 STATE_2 = "Fips state code from the GRIN file" 8119 STATE_3 = "Fips state code from the GRIN file" 8120 STATE_4 = "Fips state code from the GRIN file" 8121 STATE_5 = "Fips state code from the GRIN file" 8122 STATE_6 = "Fips state code from the GRIN file" 8123 STATE_7 = "Fips state code from the GRIN file" 8124 STATE_8 = "Fips state code from the GRIN file" 8125 SC1332 = "How long did ... serve on active duty " 8126 SC1334 = "Does ... have a service connected" 8127 SC1336 = "VA percent disability" 8128 SC1346 = "Reason getting social security (ret.," 8129 SC1348 = "Another reason ...receives social" 8130 SC1360 = "Ever retired from a job or business" 8131 SC1418 = "Ever widowed or divorced" 8132 SC1456 = "Husband died in service from a" 8133 MEDCODE = "Recode of fields (SC1464 and SC1466) a" 8134 SC1468 = "Type Medicare coverage" 8135 SC1472 = "Medicare helps pay for doctor bills" 8136 DISAB = "Physical, mental,or other health" 8137 ATT_SCH1 = "Attended school in past 4 mos" 8138 ATT_SCH2 = "Attended school in past 4 mos" 8139 ATT_SCH3 = "Attended school in past 4 mos" 8140 ATT_SCH4 = "Attended school in past 4 mos" 8141 ATT_SCH5 = "Attended school in past 4 mos" 8142 ATT_SCH6 = "Attended school in past 4 mos" 8143 ATT_SCH7 = "Attended school in past 4 mos" 8144 ATT_SCH8 = "Attended school in past 4 mos" 8145 ENRL_M01 = "During which months enrolled (monthly)" 8146 ENRL_M02 = "During which months enrolled (monthly)" 8147 ENRL_M03 = "During which months enrolled (monthly)" 8148 ENRL_M04 = "During which months enrolled (monthly)" 8149 ENRL_M05 = "During which months enrolled (monthly)" 8150 ENRL_M06 = "During which months enrolled (monthly)" 8151 ENRL_M07 = "During which months enrolled (monthly)" 8152 ENRL_M08 = "During which months enrolled (monthly)" 8153 ENRL_M09 = "During which months enrolled (monthly)" 8154 ENRL_M10 = "During which months enrolled (monthly)" 8155 ENRL_M11 = "During which months enrolled (monthly)" 8156 ENRL_M12 = "During which months enrolled (monthly)" 8157 ENRL_M13 = "During which months enrolled (monthly)" 8158 ENRL_M14 = "During which months enrolled (monthly)" 8159 ENRL_M15 = "During which months enrolled (monthly)" 8160 ENRL_M16 = "During which months enrolled (monthly)" 8161 ENRL_M17 = "During which months enrolled (monthly)" 8162 ENRL_M18 = "During which months enrolled (monthly)" 8163 ENRL_M19 = "During which months enrolled (monthly)" 8164 ENRL_M20 = "During which months enrolled (monthly)" 8165 ENRL_M21 = "During which months enrolled (monthly)" 8166 ENRL_M22 = "During which months enrolled (monthly)" 8167 ENRL_M23 = "During which months enrolled (monthly)" 8168 ENRL_M24 = "During which months enrolled (monthly)" 8169 ENRL_M25 = "During which months enrolled (monthly)" 8170 ENRL_M26 = "During which months enrolled (monthly)" 8171 ENRL_M27 = "During which months enrolled (monthly)" 8172 ENRL_M28 = "During which months enrolled (monthly)" 8173 ENRL_M29 = "During which months enrolled (monthly)" 8174 ENRL_M30 = "During which months enrolled (monthly)" 8175 ENRL_M31 = "During which months enrolled (monthly)" 8176 ENRL_M32 = "During which months enrolled (monthly)" 8177 ED_LEVE1 = "Educational level or grade enrolled" 8178 ED_LEVE2 = "Educational level or grade enrolled" 111 The SAS System 15:27 Thursday, July 3, 2003 8179 ED_LEVE3 = "Educational level or grade enrolled" 8180 ED_LEVE4 = "Educational level or grade enrolled" 8181 ED_LEVE5 = "Educational level or grade enrolled" 8182 ED_LEVE6 = "Educational level or grade enrolled" 8183 ED_LEVE7 = "Educational level or grade enrolled" 8184 ED_LEVE8 = "Educational level or grade enrolled" 8185 ED_FINA1 = "Educational expenses paid for by GI bi" 8186 ED_FINA2 = "Educational expenses paid for by GI bi" 8187 ED_FINA3 = "Educational expenses paid for by GI bi" 8188 ED_FINA4 = "Educational expenses paid for by GI bi" 8189 ED_FINA5 = "Educational expenses paid for by GI bi" 8190 ED_FINA6 = "Educational expenses paid for by GI bi" 8191 ED_FINA7 = "Educational expenses paid for by GI bi" 8192 ED_FINA8 = "Educational expenses paid for by GI bi" 8193 SC16721 = "Educational assistance-GI bill" 8194 SC16722 = "Educational assistance-GI bill" 8195 SC16723 = "Educational assistance-GI bill" 8196 SC16724 = "Educational assistance-GI bill" 8197 SC16725 = "Educational assistance-GI bill" 8198 SC16726 = "Educational assistance-GI bill" 8199 SC16727 = "Educational assistance-GI bill" 8200 SC16728 = "Educational assistance-GI bill" 8201 SC16741 = "Educational assistance-other veteran's" 8202 SC16742 = "Educational assistance-other veteran's" 8203 SC16743 = "Educational assistance-other veteran's" 8204 SC16744 = "Educational assistance-other veteran's" 8205 SC16745 = "Educational assistance-other veteran's" 8206 SC16746 = "Educational assistance-other veteran's" 8207 SC16747 = "Educational assistance-other veteran's" 8208 SC16748 = "Educational assistance-other veteran's" 8209 SC16761 = "Educational assistance-college work" 8210 SC16762 = "Educational assistance-college work" 8211 SC16763 = "Educational assistance-college work" 8212 SC16764 = "Educational assistance-college work" 8213 SC16765 = "Educational assistance-college work" 8214 SC16766 = "Educational assistance-college work" 8215 SC16767 = "Educational assistance-college work" 8216 SC16768 = "Educational assistance-college work" 8217 SC16781 = "Educational assistance-Pell grant" 8218 SC16782 = "Educational assistance-Pell grant" 8219 SC16783 = "Educational assistance-Pell grant" 8220 SC16784 = "Educational assistance-Pell grant" 8221 SC16785 = "Educational assistance-Pell grant" 8222 SC16786 = "Educational assistance-Pell grant" 8223 SC16787 = "Educational assistance-Pell grant" 8224 SC16788 = "Educational assistance-Pell grant" 8225 SC16801 = "Educ. assist-suppl educ. opportunity" 8226 SC16802 = "Educ. assist-suppl educ. opportunity" 8227 SC16803 = "Educ. assist-suppl educ. opportunity" 8228 SC16804 = "Educ. assist-suppl educ. opportunity" 8229 SC16805 = "Educ. assist-suppl educ. opportunity" 8230 SC16806 = "Educ. assist-suppl educ. opportunity" 8231 SC16807 = "Educ. assist-suppl educ. opportunity" 8232 SC16808 = "Educ. assist-suppl educ. opportunity" 8233 SC16821 = "Educ. assistance-National Direct" 8234 SC16822 = "Educ. assistance-National Direct" 8235 SC16823 = "Educ. assistance-National Direct" 8236 SC16824 = "Educ. assistance-National Direct" 8237 SC16825 = "Educ. assistance-National Direct" 8238 SC16826 = "Educ. assistance-National Direct" 8239 SC16827 = "Educ. assistance-National Direct" 8240 SC16828 = "Educ. assistance-National Direct" 8241 SC16841 = "Educational assistance-guaranteed" 8242 SC16842 = "Educational assistance-guaranteed" 8243 SC16843 = "Educational assistance-guaranteed" 8244 SC16844 = "Educational assistance-guaranteed" 8245 SC16845 = "Educational assistance-guaranteed" 8246 SC16846 = "Educational assistance-guaranteed" 8247 SC16847 = "Educational assistance-guaranteed" 8248 SC16848 = "Educational assistance-guaranteed" 8249 SC16861 = "Educational assistance-JTPA training" 8250 SC16862 = "Educational assistance-JTPA training" 8251 SC16863 = "Educational assistance-JTPA training" 8252 SC16864 = "Educational assistance-JTPA training" 8253 SC16865 = "Educational assistance-JTPA training" 8254 SC16866 = "Educational assistance-JTPA training" 112 The SAS System 15:27 Thursday, July 3, 2003 8255 SC16867 = "Educational assistance-JTPA training" 8256 SC16868 = "Educational assistance-JTPA training" 8257 SC16881 = "Educational assistance-employer" 8258 SC16882 = "Educational assistance-employer" 8259 SC16883 = "Educational assistance-employer" 8260 SC16884 = "Educational assistance-employer" 8261 SC16885 = "Educational assistance-employer" 8262 SC16886 = "Educational assistance-employer" 8263 SC16887 = "Educational assistance-employer" 8264 SC16888 = "Educational assistance-employer" 8265 SC16901 = "Educational assistance, fellowship or" 8266 SC16902 = "Educational assistance, fellowship or" 8267 SC16903 = "Educational assistance, fellowship or" 8268 SC16904 = "Educational assistance, fellowship or" 8269 SC16905 = "Educational assistance, fellowship or" 8270 SC16906 = "Educational assistance, fellowship or" 8271 SC16907 = "Educational assistance, fellowship or" 8272 SC16908 = "Educational assistance, fellowship or" 8273 SC16921 = "Educational assistance-other financial" 8274 SC16922 = "Educational assistance-other financial" 8275 SC16923 = "Educational assistance-other financial" 8276 SC16924 = "Educational assistance-other financial" 8277 SC16925 = "Educational assistance-other financial" 8278 SC16926 = "Educational assistance-other financial" 8279 SC16927 = "Educational assistance-other financial" 8280 SC16928 = "Educational assistance-other financial" 8281 SC16961 = "Spouse in the armed forces" 8282 SC16962 = "Spouse in the armed forces" 8283 SC16963 = "Spouse in the armed forces" 8284 SC16964 = "Spouse in the armed forces" 8285 SC16965 = "Spouse in the armed forces" 8286 SC16966 = "Spouse in the armed forces" 8287 SC16967 = "Spouse in the armed forces" 8288 SC16968 = "Spouse in the armed forces" 8289 PP_INC01 = "Total persons income (monthly)" 8290 PP_INC02 = "Total persons income (monthly)" 8291 PP_INC03 = "Total persons income (monthly)" 8292 PP_INC04 = "Total persons income (monthly)" 8293 PP_INC05 = "Total persons income (monthly)" 8294 PP_INC06 = "Total persons income (monthly)" 8295 PP_INC07 = "Total persons income (monthly)" 8296 PP_INC08 = "Total persons income (monthly)" 8297 PP_INC09 = "Total persons income (monthly)" 8298 PP_INC10 = "Total persons income (monthly)" 8299 PP_INC11 = "Total persons income (monthly)" 8300 PP_INC12 = "Total persons income (monthly)" 8301 PP_INC13 = "Total persons income (monthly)" 8302 PP_INC14 = "Total persons income (monthly)" 8303 PP_INC15 = "Total persons income (monthly)" 8304 PP_INC16 = "Total persons income (monthly)" 8305 PP_INC17 = "Total persons income (monthly)" 8306 PP_INC18 = "Total persons income (monthly)" 8307 PP_INC19 = "Total persons income (monthly)" 8308 PP_INC20 = "Total persons income (monthly)" 8309 PP_INC21 = "Total persons income (monthly)" 8310 PP_INC22 = "Total persons income (monthly)" 8311 PP_INC23 = "Total persons income (monthly)" 8312 PP_INC24 = "Total persons income (monthly)" 8313 PP_INC25 = "Total persons income (monthly)" 8314 PP_INC26 = "Total persons income (monthly)" 8315 PP_INC27 = "Total persons income (monthly)" 8316 PP_INC28 = "Total persons income (monthly)" 8317 PP_INC29 = "Total persons income (monthly)" 8318 PP_INC30 = "Total persons income (monthly)" 8319 PP_INC31 = "Total persons income (monthly)" 8320 PP_INC32 = "Total persons income (monthly)" 8321 PP_EAR01 = "Total persons earnings (monthly)" 8322 PP_EAR02 = "Total persons earnings (monthly)" 8323 PP_EAR03 = "Total persons earnings (monthly)" 8324 PP_EAR04 = "Total persons earnings (monthly)" 8325 PP_EAR05 = "Total persons earnings (monthly)" 8326 PP_EAR06 = "Total persons earnings (monthly)" 8327 PP_EAR07 = "Total persons earnings (monthly)" 8328 PP_EAR08 = "Total persons earnings (monthly)" 8329 PP_EAR09 = "Total persons earnings (monthly)" 8330 PP_EAR10 = "Total persons earnings (monthly)" 113 The SAS System 15:27 Thursday, July 3, 2003 8331 PP_EAR11 = "Total persons earnings (monthly)" 8332 PP_EAR12 = "Total persons earnings (monthly)" 8333 PP_EAR13 = "Total persons earnings (monthly)" 8334 PP_EAR14 = "Total persons earnings (monthly)" 8335 PP_EAR15 = "Total persons earnings (monthly)" 8336 PP_EAR16 = "Total persons earnings (monthly)" 8337 PP_EAR17 = "Total persons earnings (monthly)" 8338 PP_EAR18 = "Total persons earnings (monthly)" 8339 PP_EAR19 = "Total persons earnings (monthly)" 8340 PP_EAR20 = "Total persons earnings (monthly)" 8341 PP_EAR21 = "Total persons earnings (monthly)" 8342 PP_EAR22 = "Total persons earnings (monthly)" 8343 PP_EAR23 = "Total persons earnings (monthly)" 8344 PP_EAR24 = "Total persons earnings (monthly)" 8345 PP_EAR25 = "Total persons earnings (monthly)" 8346 PP_EAR26 = "Total persons earnings (monthly)" 8347 PP_EAR27 = "Total persons earnings (monthly)" 8348 PP_EAR28 = "Total persons earnings (monthly)" 8349 PP_EAR29 = "Total persons earnings (monthly)" 8350 PP_EAR30 = "Total persons earnings (monthly)" 8351 PP_EAR31 = "Total persons earnings (monthly)" 8352 PP_EAR32 = "Total persons earnings (monthly)" 8353 FF_INC01 = "Total family income (monthly)" 8354 FF_INC02 = "Total family income (monthly)" 8355 FF_INC03 = "Total family income (monthly)" 8356 FF_INC04 = "Total family income (monthly)" 8357 FF_INC05 = "Total family income (monthly)" 8358 FF_INC06 = "Total family income (monthly)" 8359 FF_INC07 = "Total family income (monthly)" 8360 FF_INC08 = "Total family income (monthly)" 8361 FF_INC09 = "Total family income (monthly)" 8362 FF_INC10 = "Total family income (monthly)" 8363 FF_INC11 = "Total family income (monthly)" 8364 FF_INC12 = "Total family income (monthly)" 8365 FF_INC13 = "Total family income (monthly)" 8366 FF_INC14 = "Total family income (monthly)" 8367 FF_INC15 = "Total family income (monthly)" 8368 FF_INC16 = "Total family income (monthly)" 8369 FF_INC17 = "Total family income (monthly)" 8370 FF_INC18 = "Total family income (monthly)" 8371 FF_INC19 = "Total family income (monthly)" 8372 FF_INC20 = "Total family income (monthly)" 8373 FF_INC21 = "Total family income (monthly)" 8374 FF_INC22 = "Total family income (monthly)" 8375 FF_INC23 = "Total family income (monthly)" 8376 FF_INC24 = "Total family income (monthly)" 8377 FF_INC25 = "Total family income (monthly)" 8378 FF_INC26 = "Total family income (monthly)" 8379 FF_INC27 = "Total family income (monthly)" 8380 FF_INC28 = "Total family income (monthly)" 8381 FF_INC29 = "Total family income (monthly)" 8382 FF_INC30 = "Total family income (monthly)" 8383 FF_INC31 = "Total family income (monthly)" 8384 FF_INC32 = "Total family income (monthly)" 8385 FF_EAR01 = "Total family earned income" 8386 FF_EAR02 = "Total family earned income" 8387 FF_EAR03 = "Total family earned income" 8388 FF_EAR04 = "Total family earned income" 8389 FF_EAR05 = "Total family earned income" 8390 FF_EAR06 = "Total family earned income" 8391 FF_EAR07 = "Total family earned income" 8392 FF_EAR08 = "Total family earned income" 8393 FF_EAR09 = "Total family earned income" 8394 FF_EAR10 = "Total family earned income" 8395 FF_EAR11 = "Total family earned income" 8396 FF_EAR12 = "Total family earned income" 8397 FF_EAR13 = "Total family earned income" 8398 FF_EAR14 = "Total family earned income" 8399 FF_EAR15 = "Total family earned income" 8400 FF_EAR16 = "Total family earned income" 8401 FF_EAR17 = "Total family earned income" 8402 FF_EAR18 = "Total family earned income" 8403 FF_EAR19 = "Total family earned income" 8404 FF_EAR20 = "Total family earned income" 8405 FF_EAR21 = "Total family earned income" 8406 FF_EAR22 = "Total family earned income" 114 The SAS System 15:27 Thursday, July 3, 2003 8407 FF_EAR23 = "Total family earned income" 8408 FF_EAR24 = "Total family earned income" 8409 FF_EAR25 = "Total family earned income" 8410 FF_EAR26 = "Total family earned income" 8411 FF_EAR27 = "Total family earned income" 8412 FF_EAR28 = "Total family earned income" 8413 FF_EAR29 = "Total family earned income" 8414 FF_EAR30 = "Total family earned income" 8415 FF_EAR31 = "Total family earned income" 8416 FF_EAR32 = "Total family earned income" 8417 FF_PRO01 = "Total family property income" 8418 FF_PRO02 = "Total family property income" 8419 FF_PRO03 = "Total family property income" 8420 FF_PRO04 = "Total family property income" 8421 FF_PRO05 = "Total family property income" 8422 FF_PRO06 = "Total family property income" 8423 FF_PRO07 = "Total family property income" 8424 FF_PRO08 = "Total family property income" 8425 FF_PRO09 = "Total family property income" 8426 FF_PRO10 = "Total family property income" 8427 FF_PRO11 = "Total family property income" 8428 FF_PRO12 = "Total family property income" 8429 FF_PRO13 = "Total family property income" 8430 FF_PRO14 = "Total family property income" 8431 FF_PRO15 = "Total family property income" 8432 FF_PRO16 = "Total family property income" 8433 FF_PRO17 = "Total family property income" 8434 FF_PRO18 = "Total family property income" 8435 FF_PRO19 = "Total family property income" 8436 FF_PRO20 = "Total family property income" 8437 FF_PRO21 = "Total family property income" 8438 FF_PRO22 = "Total family property income" 8439 FF_PRO23 = "Total family property income" 8440 FF_PRO24 = "Total family property income" 8441 FF_PRO25 = "Total family property income" 8442 FF_PRO26 = "Total family property income" 8443 FF_PRO27 = "Total family property income" 8444 FF_PRO28 = "Total family property income" 8445 FF_PRO29 = "Total family property income" 8446 FF_PRO30 = "Total family property income" 8447 FF_PRO31 = "Total family property income" 8448 FF_PRO32 = "Total family property income" 8449 FF_TRA01 = "Total family means-tested transfers" 8450 FF_TRA02 = "Total family means-tested transfers" 8451 FF_TRA03 = "Total family means-tested transfers" 8452 FF_TRA04 = "Total family means-tested transfers" 8453 FF_TRA05 = "Total family means-tested transfers" 8454 FF_TRA06 = "Total family means-tested transfers" 8455 FF_TRA07 = "Total family means-tested transfers" 8456 FF_TRA08 = "Total family means-tested transfers" 8457 FF_TRA09 = "Total family means-tested transfers" 8458 FF_TRA10 = "Total family means-tested transfers" 8459 FF_TRA11 = "Total family means-tested transfers" 8460 FF_TRA12 = "Total family means-tested transfers" 8461 FF_TRA13 = "Total family means-tested transfers" 8462 FF_TRA14 = "Total family means-tested transfers" 8463 FF_TRA15 = "Total family means-tested transfers" 8464 FF_TRA16 = "Total family means-tested transfers" 8465 FF_TRA17 = "Total family means-tested transfers" 8466 FF_TRA18 = "Total family means-tested transfers" 8467 FF_TRA19 = "Total family means-tested transfers" 8468 FF_TRA20 = "Total family means-tested transfers" 8469 FF_TRA21 = "Total family means-tested transfers" 8470 FF_TRA22 = "Total family means-tested transfers" 8471 FF_TRA23 = "Total family means-tested transfers" 8472 FF_TRA24 = "Total family means-tested transfers" 8473 FF_TRA25 = "Total family means-tested transfers" 8474 FF_TRA26 = "Total family means-tested transfers" 8475 FF_TRA27 = "Total family means-tested transfers" 8476 FF_TRA28 = "Total family means-tested transfers" 8477 FF_TRA29 = "Total family means-tested transfers" 8478 FF_TRA30 = "Total family means-tested transfers" 8479 FF_TRA31 = "Total family means-tested transfers" 8480 FF_TRA32 = "Total family means-tested transfers" 8481 FF_OTH01 = "Total family 'other'income" 8482 FF_OTH02 = "Total family 'other'income" 115 The SAS System 15:27 Thursday, July 3, 2003 8483 FF_OTH03 = "Total family 'other'income" 8484 FF_OTH04 = "Total family 'other'income" 8485 FF_OTH05 = "Total family 'other'income" 8486 FF_OTH06 = "Total family 'other'income" 8487 FF_OTH07 = "Total family 'other'income" 8488 FF_OTH08 = "Total family 'other'income" 8489 FF_OTH09 = "Total family 'other'income" 8490 FF_OTH10 = "Total family 'other'income" 8491 FF_OTH11 = "Total family 'other'income" 8492 FF_OTH12 = "Total family 'other'income" 8493 FF_OTH13 = "Total family 'other'income" 8494 FF_OTH14 = "Total family 'other'income" 8495 FF_OTH15 = "Total family 'other'income" 8496 FF_OTH16 = "Total family 'other'income" 8497 FF_OTH17 = "Total family 'other'income" 8498 FF_OTH18 = "Total family 'other'income" 8499 FF_OTH19 = "Total family 'other'income" 8500 FF_OTH20 = "Total family 'other'income" 8501 FF_OTH21 = "Total family 'other'income" 8502 FF_OTH22 = "Total family 'other'income" 8503 FF_OTH23 = "Total family 'other'income" 8504 FF_OTH24 = "Total family 'other'income" 8505 FF_OTH25 = "Total family 'other'income" 8506 FF_OTH26 = "Total family 'other'income" 8507 FF_OTH27 = "Total family 'other'income" 8508 FF_OTH28 = "Total family 'other'income" 8509 FF_OTH29 = "Total family 'other'income" 8510 FF_OTH30 = "Total family 'other'income" 8511 FF_OTH31 = "Total family 'other'income" 8512 FF_OTH32 = "Total family 'other'income" 8513 HH_INC01 = "Total household income (monthly)" 8514 HH_INC02 = "Total household income (monthly)" 8515 HH_INC03 = "Total household income (monthly)" 8516 HH_INC04 = "Total household income (monthly)" 8517 HH_INC05 = "Total household income (monthly)" 8518 HH_INC06 = "Total household income (monthly)" 8519 HH_INC07 = "Total household income (monthly)" 8520 HH_INC08 = "Total household income (monthly)" 8521 HH_INC09 = "Total household income (monthly)" 8522 HH_INC10 = "Total household income (monthly)" 8523 HH_INC11 = "Total household income (monthly)" 8524 HH_INC12 = "Total household income (monthly)" 8525 HH_INC13 = "Total household income (monthly)" 8526 HH_INC14 = "Total household income (monthly)" 8527 HH_INC15 = "Total household income (monthly)" 8528 HH_INC16 = "Total household income (monthly)" 8529 HH_INC17 = "Total household income (monthly)" 8530 HH_INC18 = "Total household income (monthly)" 8531 HH_INC19 = "Total household income (monthly)" 8532 HH_INC20 = "Total household income (monthly)" 8533 HH_INC21 = "Total household income (monthly)" 8534 HH_INC22 = "Total household income (monthly)" 8535 HH_INC23 = "Total household income (monthly)" 8536 HH_INC24 = "Total household income (monthly)" 8537 HH_INC25 = "Total household income (monthly)" 8538 HH_INC26 = "Total household income (monthly)" 8539 HH_INC27 = "Total household income (monthly)" 8540 HH_INC28 = "Total household income (monthly)" 8541 HH_INC29 = "Total household income (monthly)" 8542 HH_INC30 = "Total household income (monthly)" 8543 HH_INC31 = "Total household income (monthly)" 8544 HH_INC32 = "Total household income (monthly)" 8545 HH_EAR01 = "Total household earned income" 8546 HH_EAR02 = "Total household earned income" 8547 HH_EAR03 = "Total household earned income" 8548 HH_EAR04 = "Total household earned income" 8549 HH_EAR05 = "Total household earned income" 8550 HH_EAR06 = "Total household earned income" 8551 HH_EAR07 = "Total household earned income" 8552 HH_EAR08 = "Total household earned income" 8553 HH_EAR09 = "Total household earned income" 8554 HH_EAR10 = "Total household earned income" 8555 HH_EAR11 = "Total household earned income" 8556 HH_EAR12 = "Total household earned income" 8557 HH_EAR13 = "Total household earned income" 8558 HH_EAR14 = "Total household earned income" 116 The SAS System 15:27 Thursday, July 3, 2003 8559 HH_EAR15 = "Total household earned income" 8560 HH_EAR16 = "Total household earned income" 8561 HH_EAR17 = "Total household earned income" 8562 HH_EAR18 = "Total household earned income" 8563 HH_EAR19 = "Total household earned income" 8564 HH_EAR20 = "Total household earned income" 8565 HH_EAR21 = "Total household earned income" 8566 HH_EAR22 = "Total household earned income" 8567 HH_EAR23 = "Total household earned income" 8568 HH_EAR24 = "Total household earned income" 8569 HH_EAR25 = "Total household earned income" 8570 HH_EAR26 = "Total household earned income" 8571 HH_EAR27 = "Total household earned income" 8572 HH_EAR28 = "Total household earned income" 8573 HH_EAR29 = "Total household earned income" 8574 HH_EAR30 = "Total household earned income" 8575 HH_EAR31 = "Total household earned income" 8576 HH_EAR32 = "Total household earned income" 8577 HH_PRO01 = "Total household property income" 8578 HH_PRO02 = "Total household property income" 8579 HH_PRO03 = "Total household property income" 8580 HH_PRO04 = "Total household property income" 8581 HH_PRO05 = "Total household property income" 8582 HH_PRO06 = "Total household property income" 8583 HH_PRO07 = "Total household property income" 8584 HH_PRO08 = "Total household property income" 8585 HH_PRO09 = "Total household property income" 8586 HH_PRO10 = "Total household property income" 8587 HH_PRO11 = "Total household property income" 8588 HH_PRO12 = "Total household property income" 8589 HH_PRO13 = "Total household property income" 8590 HH_PRO14 = "Total household property income" 8591 HH_PRO15 = "Total household property income" 8592 HH_PRO16 = "Total household property income" 8593 HH_PRO17 = "Total household property income" 8594 HH_PRO18 = "Total household property income" 8595 HH_PRO19 = "Total household property income" 8596 HH_PRO20 = "Total household property income" 8597 HH_PRO21 = "Total household property income" 8598 HH_PRO22 = "Total household property income" 8599 HH_PRO23 = "Total household property income" 8600 HH_PRO24 = "Total household property income" 8601 HH_PRO25 = "Total household property income" 8602 HH_PRO26 = "Total household property income" 8603 HH_PRO27 = "Total household property income" 8604 HH_PRO28 = "Total household property income" 8605 HH_PRO29 = "Total household property income" 8606 HH_PRO30 = "Total household property income" 8607 HH_PRO31 = "Total household property income" 8608 HH_PRO32 = "Total household property income" 8609 HH_TRA01 = "Total household means-tested cash" 8610 HH_TRA02 = "Total household means-tested cash" 8611 HH_TRA03 = "Total household means-tested cash" 8612 HH_TRA04 = "Total household means-tested cash" 8613 HH_TRA05 = "Total household means-tested cash" 8614 HH_TRA06 = "Total household means-tested cash" 8615 HH_TRA07 = "Total household means-tested cash" 8616 HH_TRA08 = "Total household means-tested cash" 8617 HH_TRA09 = "Total household means-tested cash" 8618 HH_TRA10 = "Total household means-tested cash" 8619 HH_TRA11 = "Total household means-tested cash" 8620 HH_TRA12 = "Total household means-tested cash" 8621 HH_TRA13 = "Total household means-tested cash" 8622 HH_TRA14 = "Total household means-tested cash" 8623 HH_TRA15 = "Total household means-tested cash" 8624 HH_TRA16 = "Total household means-tested cash" 8625 HH_TRA17 = "Total household means-tested cash" 8626 HH_TRA18 = "Total household means-tested cash" 8627 HH_TRA19 = "Total household means-tested cash" 8628 HH_TRA20 = "Total household means-tested cash" 8629 HH_TRA21 = "Total household means-tested cash" 8630 HH_TRA22 = "Total household means-tested cash" 8631 HH_TRA23 = "Total household means-tested cash" 8632 HH_TRA24 = "Total household means-tested cash" 8633 HH_TRA25 = "Total household means-tested cash" 8634 HH_TRA26 = "Total household means-tested cash" 117 The SAS System 15:27 Thursday, July 3, 2003 8635 HH_TRA27 = "Total household means-tested cash" 8636 HH_TRA28 = "Total household means-tested cash" 8637 HH_TRA29 = "Total household means-tested cash" 8638 HH_TRA30 = "Total household means-tested cash" 8639 HH_TRA31 = "Total household means-tested cash" 8640 HH_TRA32 = "Total household means-tested cash" 8641 HH_OTH01 = "Total household 'other' income" 8642 HH_OTH02 = "Total household 'other' income" 8643 HH_OTH03 = "Total household 'other' income" 8644 HH_OTH04 = "Total household 'other' income" 8645 HH_OTH05 = "Total household 'other' income" 8646 HH_OTH06 = "Total household 'other' income" 8647 HH_OTH07 = "Total household 'other' income" 8648 HH_OTH08 = "Total household 'other' income" 8649 HH_OTH09 = "Total household 'other' income" 8650 HH_OTH10 = "Total household 'other' income" 8651 HH_OTH11 = "Total household 'other' income" 8652 HH_OTH12 = "Total household 'other' income" 8653 HH_OTH13 = "Total household 'other' income" 8654 HH_OTH14 = "Total household 'other' income" 8655 HH_OTH15 = "Total household 'other' income" 8656 HH_OTH16 = "Total household 'other' income" 8657 HH_OTH17 = "Total household 'other' income" 8658 HH_OTH18 = "Total household 'other' income" 8659 HH_OTH19 = "Total household 'other' income" 8660 HH_OTH20 = "Total household 'other' income" 8661 HH_OTH21 = "Total household 'other' income" 8662 HH_OTH22 = "Total household 'other' income" 8663 HH_OTH23 = "Total household 'other' income" 8664 HH_OTH24 = "Total household 'other' income" 8665 HH_OTH25 = "Total household 'other' income" 8666 HH_OTH26 = "Total household 'other' income" 8667 HH_OTH27 = "Total household 'other' income" 8668 HH_OTH28 = "Total household 'other' income" 8669 HH_OTH29 = "Total household 'other' income" 8670 HH_OTH30 = "Total household 'other' income" 8671 HH_OTH31 = "Total household 'other' income" 8672 HH_OTH32 = "Total household 'other' income" 8673 FF_POV01 = "Low income cutoff for person's family" 8674 FF_POV02 = "Low income cutoff for person's family" 8675 FF_POV03 = "Low income cutoff for person's family" 8676 FF_POV04 = "Low income cutoff for person's family" 8677 FF_POV05 = "Low income cutoff for person's family" 8678 FF_POV06 = "Low income cutoff for person's family" 8679 FF_POV07 = "Low income cutoff for person's family" 8680 FF_POV08 = "Low income cutoff for person's family" 8681 FF_POV09 = "Low income cutoff for person's family" 8682 FF_POV10 = "Low income cutoff for person's family" 8683 FF_POV11 = "Low income cutoff for person's family" 8684 FF_POV12 = "Low income cutoff for person's family" 8685 FF_POV13 = "Low income cutoff for person's family" 8686 FF_POV14 = "Low income cutoff for person's family" 8687 FF_POV15 = "Low income cutoff for person's family" 8688 FF_POV16 = "Low income cutoff for person's family" 8689 FF_POV17 = "Low income cutoff for person's family" 8690 FF_POV18 = "Low income cutoff for person's family" 8691 FF_POV19 = "Low income cutoff for person's family" 8692 FF_POV20 = "Low income cutoff for person's family" 8693 FF_POV21 = "Low income cutoff for person's family" 8694 FF_POV22 = "Low income cutoff for person's family" 8695 FF_POV23 = "Low income cutoff for person's family" 8696 FF_POV24 = "Low income cutoff for person's family" 8697 FF_POV25 = "Low income cutoff for person's family" 8698 FF_POV26 = "Low income cutoff for person's family" 8699 FF_POV27 = "Low income cutoff for person's family" 8700 FF_POV28 = "Low income cutoff for person's family" 8701 FF_POV29 = "Low income cutoff for person's family" 8702 FF_POV30 = "Low income cutoff for person's family" 8703 FF_POV31 = "Low income cutoff for person's family" 8704 FF_POV32 = "Low income cutoff for person's family" 8705 TELEPHON = "Sample indicator" 8706 ESR_01 = "Employment status recode (monthly)" 8707 ESR_02 = "Employment status recode (monthly)" 8708 ESR_03 = "Employment status recode (monthly)" 8709 ESR_04 = "Employment status recode (monthly)" 8710 ESR_05 = "Employment status recode (monthly)" 118 The SAS System 15:27 Thursday, July 3, 2003 8711 ESR_06 = "Employment status recode (monthly)" 8712 ESR_07 = "Employment status recode (monthly)" 8713 ESR_08 = "Employment status recode (monthly)" 8714 ESR_09 = "Employment status recode (monthly)" 8715 ESR_10 = "Employment status recode (monthly)" 8716 ESR_11 = "Employment status recode (monthly)" 8717 ESR_12 = "Employment status recode (monthly)" 8718 ESR_13 = "Employment status recode (monthly)" 8719 ESR_14 = "Employment status recode (monthly)" 8720 ESR_15 = "Employment status recode (monthly)" 8721 ESR_16 = "Employment status recode (monthly)" 8722 ESR_17 = "Employment status recode (monthly)" 8723 ESR_18 = "Employment status recode (monthly)" 8724 ESR_19 = "Employment status recode (monthly)" 8725 ESR_20 = "Employment status recode (monthly)" 8726 ESR_21 = "Employment status recode (monthly)" 8727 ESR_22 = "Employment status recode (monthly)" 8728 ESR_23 = "Employment status recode (monthly)" 8729 ESR_24 = "Employment status recode (monthly)" 8730 ESR_25 = "Employment status recode (monthly)" 8731 ESR_26 = "Employment status recode (monthly)" 8732 ESR_27 = "Employment status recode (monthly)" 8733 ESR_28 = "Employment status recode (monthly)" 8734 ESR_29 = "Employment status recode (monthly)" 8735 ESR_30 = "Employment status recode (monthly)" 8736 ESR_31 = "Employment status recode (monthly)" 8737 ESR_32 = "Employment status recode (monthly)" 8738 WKSPER01 = "Number of weeks in the month" 8739 WKSPER02 = "Number of weeks in the month" 8740 WKSPER03 = "Number of weeks in the month" 8741 WKSPER04 = "Number of weeks in the month" 8742 WKSPER05 = "Number of weeks in the month" 8743 WKSPER06 = "Number of weeks in the month" 8744 WKSPER07 = "Number of weeks in the month" 8745 WKSPER08 = "Number of weeks in the month" 8746 WKSPER09 = "Number of weeks in the month" 8747 WKSPER10 = "Number of weeks in the month" 8748 WKSPER11 = "Number of weeks in the month" 8749 WKSPER12 = "Number of weeks in the month" 8750 WKSPER13 = "Number of weeks in the month" 8751 WKSPER14 = "Number of weeks in the month" 8752 WKSPER15 = "Number of weeks in the month" 8753 WKSPER16 = "Number of weeks in the month" 8754 WKSPER17 = "Number of weeks in the month" 8755 WKSPER18 = "Number of weeks in the month" 8756 WKSPER19 = "Number of weeks in the month" 8757 WKSPER20 = "Number of weeks in the month" 8758 WKSPER21 = "Number of weeks in the month" 8759 WKSPER22 = "Number of weeks in the month" 8760 WKSPER23 = "Number of weeks in the month" 8761 WKSPER24 = "Number of weeks in the month" 8762 WKSPER25 = "Number of weeks in the month" 8763 WKSPER26 = "Number of weeks in the month" 8764 WKSPER27 = "Number of weeks in the month" 8765 WKSPER28 = "Number of weeks in the month" 8766 WKSPER29 = "Number of weeks in the month" 8767 WKSPER30 = "Number of weeks in the month" 8768 WKSPER31 = "Number of weeks in the month" 8769 WKSPER32 = "Number of weeks in the month" 8770 WKSJB_01 = "Number of weeks with a job or business" 8771 WKSJB_02 = "Number of weeks with a job or business" 8772 WKSJB_03 = "Number of weeks with a job or business" 8773 WKSJB_04 = "Number of weeks with a job or business" 8774 WKSJB_05 = "Number of weeks with a job or business" 8775 WKSJB_06 = "Number of weeks with a job or business" 8776 WKSJB_07 = "Number of weeks with a job or business" 8777 WKSJB_08 = "Number of weeks with a job or business" 8778 WKSJB_09 = "Number of weeks with a job or business" 8779 WKSJB_10 = "Number of weeks with a job or business" 8780 WKSJB_11 = "Number of weeks with a job or business" 8781 WKSJB_12 = "Number of weeks with a job or business" 8782 WKSJB_13 = "Number of weeks with a job or business" 8783 WKSJB_14 = "Number of weeks with a job or business" 8784 WKSJB_15 = "Number of weeks with a job or business" 8785 WKSJB_16 = "Number of weeks with a job or business" 8786 WKSJB_17 = "Number of weeks with a job or business" 119 The SAS System 15:27 Thursday, July 3, 2003 8787 WKSJB_18 = "Number of weeks with a job or business" 8788 WKSJB_19 = "Number of weeks with a job or business" 8789 WKSJB_20 = "Number of weeks with a job or business" 8790 WKSJB_21 = "Number of weeks with a job or business" 8791 WKSJB_22 = "Number of weeks with a job or business" 8792 WKSJB_23 = "Number of weeks with a job or business" 8793 WKSJB_24 = "Number of weeks with a job or business" 8794 WKSJB_25 = "Number of weeks with a job or business" 8795 WKSJB_26 = "Number of weeks with a job or business" 8796 WKSJB_27 = "Number of weeks with a job or business" 8797 WKSJB_28 = "Number of weeks with a job or business" 8798 WKSJB_29 = "Number of weeks with a job or business" 8799 WKSJB_30 = "Number of weeks with a job or business" 8800 WKSJB_31 = "Number of weeks with a job or business" 8801 WKSJB_32 = "Number of weeks with a job or business" 8802 MTHWOP01 = "Weeks without pay, at a job or busines" 8803 MTHWOP02 = "Weeks without pay, at a job or busines" 8804 MTHWOP03 = "Weeks without pay, at a job or busines" 8805 MTHWOP04 = "Weeks without pay, at a job or busines" 8806 MTHWOP05 = "Weeks without pay, at a job or busines" 8807 MTHWOP06 = "Weeks without pay, at a job or busines" 8808 MTHWOP07 = "Weeks without pay, at a job or busines" 8809 MTHWOP08 = "Weeks without pay, at a job or busines" 8810 MTHWOP09 = "Weeks without pay, at a job or busines" 8811 MTHWOP10 = "Weeks without pay, at a job or busines" 8812 MTHWOP11 = "Weeks without pay, at a job or busines" 8813 MTHWOP12 = "Weeks without pay, at a job or busines" 8814 MTHWOP13 = "Weeks without pay, at a job or busines" 8815 MTHWOP14 = "Weeks without pay, at a job or busines" 8816 MTHWOP15 = "Weeks without pay, at a job or busines" 8817 MTHWOP16 = "Weeks without pay, at a job or busines" 8818 MTHWOP17 = "Weeks without pay, at a job or busines" 8819 MTHWOP18 = "Weeks without pay, at a job or busines" 8820 MTHWOP19 = "Weeks without pay, at a job or busines" 8821 MTHWOP20 = "Weeks without pay, at a job or busines" 8822 MTHWOP21 = "Weeks without pay, at a job or busines" 8823 MTHWOP22 = "Weeks without pay, at a job or busines" 8824 MTHWOP23 = "Weeks without pay, at a job or busines" 8825 MTHWOP24 = "Weeks without pay, at a job or busines" 8826 MTHWOP25 = "Weeks without pay, at a job or busines" 8827 MTHWOP26 = "Weeks without pay, at a job or busines" 8828 MTHWOP27 = "Weeks without pay, at a job or busines" 8829 MTHWOP28 = "Weeks without pay, at a job or busines" 8830 MTHWOP29 = "Weeks without pay, at a job or busines" 8831 MTHWOP30 = "Weeks without pay, at a job or busines" 8832 MTHWOP31 = "Weeks without pay, at a job or busines" 8833 MTHWOP32 = "Weeks without pay, at a job or busines" 8834 WEEKSL01 = "Weeks looking for work or on layoff" 8835 WEEKSL02 = "Weeks looking for work or on layoff" 8836 WEEKSL03 = "Weeks looking for work or on layoff" 8837 WEEKSL04 = "Weeks looking for work or on layoff" 8838 WEEKSL05 = "Weeks looking for work or on layoff" 8839 WEEKSL06 = "Weeks looking for work or on layoff" 8840 WEEKSL07 = "Weeks looking for work or on layoff" 8841 WEEKSL08 = "Weeks looking for work or on layoff" 8842 WEEKSL09 = "Weeks looking for work or on layoff" 8843 WEEKSL10 = "Weeks looking for work or on layoff" 8844 WEEKSL11 = "Weeks looking for work or on layoff" 8845 WEEKSL12 = "Weeks looking for work or on layoff" 8846 WEEKSL13 = "Weeks looking for work or on layoff" 8847 WEEKSL14 = "Weeks looking for work or on layoff" 8848 WEEKSL15 = "Weeks looking for work or on layoff" 8849 WEEKSL16 = "Weeks looking for work or on layoff" 8850 WEEKSL17 = "Weeks looking for work or on layoff" 8851 WEEKSL18 = "Weeks looking for work or on layoff" 8852 WEEKSL19 = "Weeks looking for work or on layoff" 8853 WEEKSL20 = "Weeks looking for work or on layoff" 8854 WEEKSL21 = "Weeks looking for work or on layoff" 8855 WEEKSL22 = "Weeks looking for work or on layoff" 8856 WEEKSL23 = "Weeks looking for work or on layoff" 8857 WEEKSL24 = "Weeks looking for work or on layoff" 8858 WEEKSL25 = "Weeks looking for work or on layoff" 8859 WEEKSL26 = "Weeks looking for work or on layoff" 8860 WEEKSL27 = "Weeks looking for work or on layoff" 8861 WEEKSL28 = "Weeks looking for work or on layoff" 8862 WEEKSL29 = "Weeks looking for work or on layoff" 120 The SAS System 15:27 Thursday, July 3, 2003 8863 WEEKSL30 = "Weeks looking for work or on layoff" 8864 WEEKSL31 = "Weeks looking for work or on layoff" 8865 WEEKSL32 = "Weeks looking for work or on layoff" 8866 SC12301 = "Usual hours worked per week" 8867 SC12302 = "Usual hours worked per week" 8868 SC12303 = "Usual hours worked per week" 8869 SC12304 = "Usual hours worked per week" 8870 SC12305 = "Usual hours worked per week" 8871 SC12306 = "Usual hours worked per week" 8872 SC12307 = "Usual hours worked per week" 8873 SC12308 = "Usual hours worked per week" 8874 WS1_EI01 = "Check item E3, employer ID control car" 8875 WS1_EI02 = "Check item E3, employer ID control car" 8876 WS1_EI03 = "Check item E3, employer ID control car" 8877 WS1_EI04 = "Check item E3, employer ID control car" 8878 WS1_EI05 = "Check item E3, employer ID control car" 8879 WS1_EI06 = "Check item E3, employer ID control car" 8880 WS1_EI07 = "Check item E3, employer ID control car" 8881 WS1_EI08 = "Check item E3, employer ID control car" 8882 WS1_EI09 = "Check item E3, employer ID control car" 8883 WS1_EI10 = "Check item E3, employer ID control car" 8884 WS1_EI11 = "Check item E3, employer ID control car" 8885 WS1_EI12 = "Check item E3, employer ID control car" 8886 WS1_EI13 = "Check item E3, employer ID control car" 8887 WS1_EI14 = "Check item E3, employer ID control car" 8888 WS1_EI15 = "Check item E3, employer ID control car" 8889 WS1_EI16 = "Check item E3, employer ID control car" 8890 WS1_EI17 = "Check item E3, employer ID control car" 8891 WS1_EI18 = "Check item E3, employer ID control car" 8892 WS1_EI19 = "Check item E3, employer ID control car" 8893 WS1_EI20 = "Check item E3, employer ID control car" 8894 WS1_EI21 = "Check item E3, employer ID control car" 8895 WS1_EI22 = "Check item E3, employer ID control car" 8896 WS1_EI23 = "Check item E3, employer ID control car" 8897 WS1_EI24 = "Check item E3, employer ID control car" 8898 WS1_EI25 = "Check item E3, employer ID control car" 8899 WS1_EI26 = "Check item E3, employer ID control car" 8900 WS1_EI27 = "Check item E3, employer ID control car" 8901 WS1_EI28 = "Check item E3, employer ID control car" 8902 WS1_EI29 = "Check item E3, employer ID control car" 8903 WS1_EI30 = "Check item E3, employer ID control car" 8904 WS1_EI31 = "Check item E3, employer ID control car" 8905 WS1_EI32 = "Check item E3, employer ID control car" 8906 WS2_EI01 = "Check item E3,employer ID, control car" 8907 WS2_EI02 = "Check item E3,employer ID, control car" 8908 WS2_EI03 = "Check item E3,employer ID, control car" 8909 WS2_EI04 = "Check item E3,employer ID, control car" 8910 WS2_EI05 = "Check item E3,employer ID, control car" 8911 WS2_EI06 = "Check item E3,employer ID, control car" 8912 WS2_EI07 = "Check item E3,employer ID, control car" 8913 WS2_EI08 = "Check item E3,employer ID, control car" 8914 WS2_EI09 = "Check item E3,employer ID, control car" 8915 WS2_EI10 = "Check item E3,employer ID, control car" 8916 WS2_EI11 = "Check item E3,employer ID, control car" 8917 WS2_EI12 = "Check item E3,employer ID, control car" 8918 WS2_EI13 = "Check item E3,employer ID, control car" 8919 WS2_EI14 = "Check item E3,employer ID, control car" 8920 WS2_EI15 = "Check item E3,employer ID, control car" 8921 WS2_EI16 = "Check item E3,employer ID, control car" 8922 WS2_EI17 = "Check item E3,employer ID, control car" 8923 WS2_EI18 = "Check item E3,employer ID, control car" 8924 WS2_EI19 = "Check item E3,employer ID, control car" 8925 WS2_EI20 = "Check item E3,employer ID, control car" 8926 WS2_EI21 = "Check item E3,employer ID, control car" 8927 WS2_EI22 = "Check item E3,employer ID, control car" 8928 WS2_EI23 = "Check item E3,employer ID, control car" 8929 WS2_EI24 = "Check item E3,employer ID, control car" 8930 WS2_EI25 = "Check item E3,employer ID, control car" 8931 WS2_EI26 = "Check item E3,employer ID, control car" 8932 WS2_EI27 = "Check item E3,employer ID, control car" 8933 WS2_EI28 = "Check item E3,employer ID, control car" 8934 WS2_EI29 = "Check item E3,employer ID, control car" 8935 WS2_EI30 = "Check item E3,employer ID, control car" 8936 WS2_EI31 = "Check item E3,employer ID, control car" 8937 WS2_EI32 = "Check item E3,employer ID, control car" 8938 WS1_CL01 = "Class of worker job 1(prbus, fed. civ." 121 The SAS System 15:27 Thursday, July 3, 2003 8939 WS1_CL02 = "Class of worker job 1(prbus, fed. civ." 8940 WS1_CL03 = "Class of worker job 1(prbus, fed. civ." 8941 WS1_CL04 = "Class of worker job 1(prbus, fed. civ." 8942 WS1_CL05 = "Class of worker job 1(prbus, fed. civ." 8943 WS1_CL06 = "Class of worker job 1(prbus, fed. civ." 8944 WS1_CL07 = "Class of worker job 1(prbus, fed. civ." 8945 WS1_CL08 = "Class of worker job 1(prbus, fed. civ." 8946 WS1_CL09 = "Class of worker job 1(prbus, fed. civ." 8947 WS1_CL10 = "Class of worker job 1(prbus, fed. civ." 8948 WS1_CL11 = "Class of worker job 1(prbus, fed. civ." 8949 WS1_CL12 = "Class of worker job 1(prbus, fed. civ." 8950 WS1_CL13 = "Class of worker job 1(prbus, fed. civ." 8951 WS1_CL14 = "Class of worker job 1(prbus, fed. civ." 8952 WS1_CL15 = "Class of worker job 1(prbus, fed. civ." 8953 WS1_CL16 = "Class of worker job 1(prbus, fed. civ." 8954 WS1_CL17 = "Class of worker job 1(prbus, fed. civ." 8955 WS1_CL18 = "Class of worker job 1(prbus, fed. civ." 8956 WS1_CL19 = "Class of worker job 1(prbus, fed. civ." 8957 WS1_CL20 = "Class of worker job 1(prbus, fed. civ." 8958 WS1_CL21 = "Class of worker job 1(prbus, fed. civ." 8959 WS1_CL22 = "Class of worker job 1(prbus, fed. civ." 8960 WS1_CL23 = "Class of worker job 1(prbus, fed. civ." 8961 WS1_CL24 = "Class of worker job 1(prbus, fed. civ." 8962 WS1_CL25 = "Class of worker job 1(prbus, fed. civ." 8963 WS1_CL26 = "Class of worker job 1(prbus, fed. civ." 8964 WS1_CL27 = "Class of worker job 1(prbus, fed. civ." 8965 WS1_CL28 = "Class of worker job 1(prbus, fed. civ." 8966 WS1_CL29 = "Class of worker job 1(prbus, fed. civ." 8967 WS1_CL30 = "Class of worker job 1(prbus, fed. civ." 8968 WS1_CL31 = "Class of worker job 1(prbus, fed. civ." 8969 WS1_CL32 = "Class of worker job 1(prbus, fed. civ." 8970 WS2_CL01 = "Class of worker job 2 (prbus, fed civ," 8971 WS2_CL02 = "Class of worker job 2 (prbus, fed civ," 8972 WS2_CL03 = "Class of worker job 2 (prbus, fed civ," 8973 WS2_CL04 = "Class of worker job 2 (prbus, fed civ," 8974 WS2_CL05 = "Class of worker job 2 (prbus, fed civ," 8975 WS2_CL06 = "Class of worker job 2 (prbus, fed civ," 8976 WS2_CL07 = "Class of worker job 2 (prbus, fed civ," 8977 WS2_CL08 = "Class of worker job 2 (prbus, fed civ," 8978 WS2_CL09 = "Class of worker job 2 (prbus, fed civ," 8979 WS2_CL10 = "Class of worker job 2 (prbus, fed civ," 8980 WS2_CL11 = "Class of worker job 2 (prbus, fed civ," 8981 WS2_CL12 = "Class of worker job 2 (prbus, fed civ," 8982 WS2_CL13 = "Class of worker job 2 (prbus, fed civ," 8983 WS2_CL14 = "Class of worker job 2 (prbus, fed civ," 8984 WS2_CL15 = "Class of worker job 2 (prbus, fed civ," 8985 WS2_CL16 = "Class of worker job 2 (prbus, fed civ," 8986 WS2_CL17 = "Class of worker job 2 (prbus, fed civ," 8987 WS2_CL18 = "Class of worker job 2 (prbus, fed civ," 8988 WS2_CL19 = "Class of worker job 2 (prbus, fed civ," 8989 WS2_CL20 = "Class of worker job 2 (prbus, fed civ," 8990 WS2_CL21 = "Class of worker job 2 (prbus, fed civ," 8991 WS2_CL22 = "Class of worker job 2 (prbus, fed civ," 8992 WS2_CL23 = "Class of worker job 2 (prbus, fed civ," 8993 WS2_CL24 = "Class of worker job 2 (prbus, fed civ," 8994 WS2_CL25 = "Class of worker job 2 (prbus, fed civ," 8995 WS2_CL26 = "Class of worker job 2 (prbus, fed civ," 8996 WS2_CL27 = "Class of worker job 2 (prbus, fed civ," 8997 WS2_CL28 = "Class of worker job 2 (prbus, fed civ," 8998 WS2_CL29 = "Class of worker job 2 (prbus, fed civ," 8999 WS2_CL30 = "Class of worker job 2 (prbus, fed civ," 9000 WS2_CL31 = "Class of worker job 2 (prbus, fed civ," 9001 WS2_CL32 = "Class of worker job 2 (prbus, fed civ," 9002 WS1_OC01 = "Edited and imputed 3 digit occupation" 9003 WS1_OC02 = "Edited and imputed 3 digit occupation" 9004 WS1_OC03 = "Edited and imputed 3 digit occupation" 9005 WS1_OC04 = "Edited and imputed 3 digit occupation" 9006 WS1_OC05 = "Edited and imputed 3 digit occupation" 9007 WS1_OC06 = "Edited and imputed 3 digit occupation" 9008 WS1_OC07 = "Edited and imputed 3 digit occupation" 9009 WS1_OC08 = "Edited and imputed 3 digit occupation" 9010 WS1_OC09 = "Edited and imputed 3 digit occupation" 9011 WS1_OC10 = "Edited and imputed 3 digit occupation" 9012 WS1_OC11 = "Edited and imputed 3 digit occupation" 9013 WS1_OC12 = "Edited and imputed 3 digit occupation" 9014 WS1_OC13 = "Edited and imputed 3 digit occupation" 122 The SAS System 15:27 Thursday, July 3, 2003 9015 WS1_OC14 = "Edited and imputed 3 digit occupation" 9016 WS1_OC15 = "Edited and imputed 3 digit occupation" 9017 WS1_OC16 = "Edited and imputed 3 digit occupation" 9018 WS1_OC17 = "Edited and imputed 3 digit occupation" 9019 WS1_OC18 = "Edited and imputed 3 digit occupation" 9020 WS1_OC19 = "Edited and imputed 3 digit occupation" 9021 WS1_OC20 = "Edited and imputed 3 digit occupation" 9022 WS1_OC21 = "Edited and imputed 3 digit occupation" 9023 WS1_OC22 = "Edited and imputed 3 digit occupation" 9024 WS1_OC23 = "Edited and imputed 3 digit occupation" 9025 WS1_OC24 = "Edited and imputed 3 digit occupation" 9026 WS1_OC25 = "Edited and imputed 3 digit occupation" 9027 WS1_OC26 = "Edited and imputed 3 digit occupation" 9028 WS1_OC27 = "Edited and imputed 3 digit occupation" 9029 WS1_OC28 = "Edited and imputed 3 digit occupation" 9030 WS1_OC29 = "Edited and imputed 3 digit occupation" 9031 WS1_OC30 = "Edited and imputed 3 digit occupation" 9032 WS1_OC31 = "Edited and imputed 3 digit occupation" 9033 WS1_OC32 = "Edited and imputed 3 digit occupation" 9034 WS2_OC01 = "Edited and imputed 3 digit occupation" 9035 WS2_OC02 = "Edited and imputed 3 digit occupation" 9036 WS2_OC03 = "Edited and imputed 3 digit occupation" 9037 WS2_OC04 = "Edited and imputed 3 digit occupation" 9038 WS2_OC05 = "Edited and imputed 3 digit occupation" 9039 WS2_OC06 = "Edited and imputed 3 digit occupation" 9040 WS2_OC07 = "Edited and imputed 3 digit occupation" 9041 WS2_OC08 = "Edited and imputed 3 digit occupation" 9042 WS2_OC09 = "Edited and imputed 3 digit occupation" 9043 WS2_OC10 = "Edited and imputed 3 digit occupation" 9044 WS2_OC11 = "Edited and imputed 3 digit occupation" 9045 WS2_OC12 = "Edited and imputed 3 digit occupation" 9046 WS2_OC13 = "Edited and imputed 3 digit occupation" 9047 WS2_OC14 = "Edited and imputed 3 digit occupation" 9048 WS2_OC15 = "Edited and imputed 3 digit occupation" 9049 WS2_OC16 = "Edited and imputed 3 digit occupation" 9050 WS2_OC17 = "Edited and imputed 3 digit occupation" 9051 WS2_OC18 = "Edited and imputed 3 digit occupation" 9052 WS2_OC19 = "Edited and imputed 3 digit occupation" 9053 WS2_OC20 = "Edited and imputed 3 digit occupation" 9054 WS2_OC21 = "Edited and imputed 3 digit occupation" 9055 WS2_OC22 = "Edited and imputed 3 digit occupation" 9056 WS2_OC23 = "Edited and imputed 3 digit occupation" 9057 WS2_OC24 = "Edited and imputed 3 digit occupation" 9058 WS2_OC25 = "Edited and imputed 3 digit occupation" 9059 WS2_OC26 = "Edited and imputed 3 digit occupation" 9060 WS2_OC27 = "Edited and imputed 3 digit occupation" 9061 WS2_OC28 = "Edited and imputed 3 digit occupation" 9062 WS2_OC29 = "Edited and imputed 3 digit occupation" 9063 WS2_OC30 = "Edited and imputed 3 digit occupation" 9064 WS2_OC31 = "Edited and imputed 3 digit occupation" 9065 WS2_OC32 = "Edited and imputed 3 digit occupation" 9066 WS1_IN01 = "Edited and imputed 3 digit industry co" 9067 WS1_IN02 = "Edited and imputed 3 digit industry co" 9068 WS1_IN03 = "Edited and imputed 3 digit industry co" 9069 WS1_IN04 = "Edited and imputed 3 digit industry co" 9070 WS1_IN05 = "Edited and imputed 3 digit industry co" 9071 WS1_IN06 = "Edited and imputed 3 digit industry co" 9072 WS1_IN07 = "Edited and imputed 3 digit industry co" 9073 WS1_IN08 = "Edited and imputed 3 digit industry co" 9074 WS1_IN09 = "Edited and imputed 3 digit industry co" 9075 WS1_IN10 = "Edited and imputed 3 digit industry co" 9076 WS1_IN11 = "Edited and imputed 3 digit industry co" 9077 WS1_IN12 = "Edited and imputed 3 digit industry co" 9078 WS1_IN13 = "Edited and imputed 3 digit industry co" 9079 WS1_IN14 = "Edited and imputed 3 digit industry co" 9080 WS1_IN15 = "Edited and imputed 3 digit industry co" 9081 WS1_IN16 = "Edited and imputed 3 digit industry co" 9082 WS1_IN17 = "Edited and imputed 3 digit industry co" 9083 WS1_IN18 = "Edited and imputed 3 digit industry co" 9084 WS1_IN19 = "Edited and imputed 3 digit industry co" 9085 WS1_IN20 = "Edited and imputed 3 digit industry co" 9086 WS1_IN21 = "Edited and imputed 3 digit industry co" 9087 WS1_IN22 = "Edited and imputed 3 digit industry co" 9088 WS1_IN23 = "Edited and imputed 3 digit industry co" 9089 WS1_IN24 = "Edited and imputed 3 digit industry co" 9090 WS1_IN25 = "Edited and imputed 3 digit industry co" 123 The SAS System 15:27 Thursday, July 3, 2003 9091 WS1_IN26 = "Edited and imputed 3 digit industry co" 9092 WS1_IN27 = "Edited and imputed 3 digit industry co" 9093 WS1_IN28 = "Edited and imputed 3 digit industry co" 9094 WS1_IN29 = "Edited and imputed 3 digit industry co" 9095 WS1_IN30 = "Edited and imputed 3 digit industry co" 9096 WS1_IN31 = "Edited and imputed 3 digit industry co" 9097 WS1_IN32 = "Edited and imputed 3 digit industry co" 9098 WS2_IN01 = "Edited and imputed 3 digit industry co" 9099 WS2_IN02 = "Edited and imputed 3 digit industry co" 9100 WS2_IN03 = "Edited and imputed 3 digit industry co" 9101 WS2_IN04 = "Edited and imputed 3 digit industry co" 9102 WS2_IN05 = "Edited and imputed 3 digit industry co" 9103 WS2_IN06 = "Edited and imputed 3 digit industry co" 9104 WS2_IN07 = "Edited and imputed 3 digit industry co" 9105 WS2_IN08 = "Edited and imputed 3 digit industry co" 9106 WS2_IN09 = "Edited and imputed 3 digit industry co" 9107 WS2_IN10 = "Edited and imputed 3 digit industry co" 9108 WS2_IN11 = "Edited and imputed 3 digit industry co" 9109 WS2_IN12 = "Edited and imputed 3 digit industry co" 9110 WS2_IN13 = "Edited and imputed 3 digit industry co" 9111 WS2_IN14 = "Edited and imputed 3 digit industry co" 9112 WS2_IN15 = "Edited and imputed 3 digit industry co" 9113 WS2_IN16 = "Edited and imputed 3 digit industry co" 9114 WS2_IN17 = "Edited and imputed 3 digit industry co" 9115 WS2_IN18 = "Edited and imputed 3 digit industry co" 9116 WS2_IN19 = "Edited and imputed 3 digit industry co" 9117 WS2_IN20 = "Edited and imputed 3 digit industry co" 9118 WS2_IN21 = "Edited and imputed 3 digit industry co" 9119 WS2_IN22 = "Edited and imputed 3 digit industry co" 9120 WS2_IN23 = "Edited and imputed 3 digit industry co" 9121 WS2_IN24 = "Edited and imputed 3 digit industry co" 9122 WS2_IN25 = "Edited and imputed 3 digit industry co" 9123 WS2_IN26 = "Edited and imputed 3 digit industry co" 9124 WS2_IN27 = "Edited and imputed 3 digit industry co" 9125 WS2_IN28 = "Edited and imputed 3 digit industry co" 9126 WS2_IN29 = "Edited and imputed 3 digit industry co" 9127 WS2_IN30 = "Edited and imputed 3 digit industry co" 9128 WS2_IN31 = "Edited and imputed 3 digit industry co" 9129 WS2_IN32 = "Edited and imputed 3 digit industry co" 9130 WS1_WK01 = "Number of weeks employed job 1 (monthl" 9131 WS1_WK02 = "Number of weeks employed job 1 (monthl" 9132 WS1_WK03 = "Number of weeks employed job 1 (monthl" 9133 WS1_WK04 = "Number of weeks employed job 1 (monthl" 9134 WS1_WK05 = "Number of weeks employed job 1 (monthl" 9135 WS1_WK06 = "Number of weeks employed job 1 (monthl" 9136 WS1_WK07 = "Number of weeks employed job 1 (monthl" 9137 WS1_WK08 = "Number of weeks employed job 1 (monthl" 9138 WS1_WK09 = "Number of weeks employed job 1 (monthl" 9139 WS1_WK10 = "Number of weeks employed job 1 (monthl" 9140 WS1_WK11 = "Number of weeks employed job 1 (monthl" 9141 WS1_WK12 = "Number of weeks employed job 1 (monthl" 9142 WS1_WK13 = "Number of weeks employed job 1 (monthl" 9143 WS1_WK14 = "Number of weeks employed job 1 (monthl" 9144 WS1_WK15 = "Number of weeks employed job 1 (monthl" 9145 WS1_WK16 = "Number of weeks employed job 1 (monthl" 9146 WS1_WK17 = "Number of weeks employed job 1 (monthl" 9147 WS1_WK18 = "Number of weeks employed job 1 (monthl" 9148 WS1_WK19 = "Number of weeks employed job 1 (monthl" 9149 WS1_WK20 = "Number of weeks employed job 1 (monthl" 9150 WS1_WK21 = "Number of weeks employed job 1 (monthl" 9151 WS1_WK22 = "Number of weeks employed job 1 (monthl" 9152 WS1_WK23 = "Number of weeks employed job 1 (monthl" 9153 WS1_WK24 = "Number of weeks employed job 1 (monthl" 9154 WS1_WK25 = "Number of weeks employed job 1 (monthl" 9155 WS1_WK26 = "Number of weeks employed job 1 (monthl" 9156 WS1_WK27 = "Number of weeks employed job 1 (monthl" 9157 WS1_WK28 = "Number of weeks employed job 1 (monthl" 9158 WS1_WK29 = "Number of weeks employed job 1 (monthl" 9159 WS1_WK30 = "Number of weeks employed job 1 (monthl" 9160 WS1_WK31 = "Number of weeks employed job 1 (monthl" 9161 WS1_WK32 = "Number of weeks employed job 1 (monthl" 9162 WS2_WK01 = "Number of weeks employed job 2 (monthl" 9163 WS2_WK02 = "Number of weeks employed job 2 (monthl" 9164 WS2_WK03 = "Number of weeks employed job 2 (monthl" 9165 WS2_WK04 = "Number of weeks employed job 2 (monthl" 9166 WS2_WK05 = "Number of weeks employed job 2 (monthl" 124 The SAS System 15:27 Thursday, July 3, 2003 9167 WS2_WK06 = "Number of weeks employed job 2 (monthl" 9168 WS2_WK07 = "Number of weeks employed job 2 (monthl" 9169 WS2_WK08 = "Number of weeks employed job 2 (monthl" 9170 WS2_WK09 = "Number of weeks employed job 2 (monthl" 9171 WS2_WK10 = "Number of weeks employed job 2 (monthl" 9172 WS2_WK11 = "Number of weeks employed job 2 (monthl" 9173 WS2_WK12 = "Number of weeks employed job 2 (monthl" 9174 WS2_WK13 = "Number of weeks employed job 2 (monthl" 9175 WS2_WK14 = "Number of weeks employed job 2 (monthl" 9176 WS2_WK15 = "Number of weeks employed job 2 (monthl" 9177 WS2_WK16 = "Number of weeks employed job 2 (monthl" 9178 WS2_WK17 = "Number of weeks employed job 2 (monthl" 9179 WS2_WK18 = "Number of weeks employed job 2 (monthl" 9180 WS2_WK19 = "Number of weeks employed job 2 (monthl" 9181 WS2_WK20 = "Number of weeks employed job 2 (monthl" 9182 WS2_WK21 = "Number of weeks employed job 2 (monthl" 9183 WS2_WK22 = "Number of weeks employed job 2 (monthl" 9184 WS2_WK23 = "Number of weeks employed job 2 (monthl" 9185 WS2_WK24 = "Number of weeks employed job 2 (monthl" 9186 WS2_WK25 = "Number of weeks employed job 2 (monthl" 9187 WS2_WK26 = "Number of weeks employed job 2 (monthl" 9188 WS2_WK27 = "Number of weeks employed job 2 (monthl" 9189 WS2_WK28 = "Number of weeks employed job 2 (monthl" 9190 WS2_WK29 = "Number of weeks employed job 2 (monthl" 9191 WS2_WK30 = "Number of weeks employed job 2 (monthl" 9192 WS2_WK31 = "Number of weeks employed job 2 (monthl" 9193 WS2_WK32 = "Number of weeks employed job 2 (monthl" 9194 WS1_AM01 = "Dollar amount of the earnings job 1" 9195 WS1_AM02 = "Dollar amount of the earnings job 1" 9196 WS1_AM03 = "Dollar amount of the earnings job 1" 9197 WS1_AM04 = "Dollar amount of the earnings job 1" 9198 WS1_AM05 = "Dollar amount of the earnings job 1" 9199 WS1_AM06 = "Dollar amount of the earnings job 1" 9200 WS1_AM07 = "Dollar amount of the earnings job 1" 9201 WS1_AM08 = "Dollar amount of the earnings job 1" 9202 WS1_AM09 = "Dollar amount of the earnings job 1" 9203 WS1_AM10 = "Dollar amount of the earnings job 1" 9204 WS1_AM11 = "Dollar amount of the earnings job 1" 9205 WS1_AM12 = "Dollar amount of the earnings job 1" 9206 WS1_AM13 = "Dollar amount of the earnings job 1" 9207 WS1_AM14 = "Dollar amount of the earnings job 1" 9208 WS1_AM15 = "Dollar amount of the earnings job 1" 9209 WS1_AM16 = "Dollar amount of the earnings job 1" 9210 WS1_AM17 = "Dollar amount of the earnings job 1" 9211 WS1_AM18 = "Dollar amount of the earnings job 1" 9212 WS1_AM19 = "Dollar amount of the earnings job 1" 9213 WS1_AM20 = "Dollar amount of the earnings job 1" 9214 WS1_AM21 = "Dollar amount of the earnings job 1" 9215 WS1_AM22 = "Dollar amount of the earnings job 1" 9216 WS1_AM23 = "Dollar amount of the earnings job 1" 9217 WS1_AM24 = "Dollar amount of the earnings job 1" 9218 WS1_AM25 = "Dollar amount of the earnings job 1" 9219 WS1_AM26 = "Dollar amount of the earnings job 1" 9220 WS1_AM27 = "Dollar amount of the earnings job 1" 9221 WS1_AM28 = "Dollar amount of the earnings job 1" 9222 WS1_AM29 = "Dollar amount of the earnings job 1" 9223 WS1_AM30 = "Dollar amount of the earnings job 1" 9224 WS1_AM31 = "Dollar amount of the earnings job 1" 9225 WS1_AM32 = "Dollar amount of the earnings job 1" 9226 WS2_AM01 = "Dollar amount of the earnings - job 2" 9227 WS2_AM02 = "Dollar amount of the earnings - job 2" 9228 WS2_AM03 = "Dollar amount of the earnings - job 2" 9229 WS2_AM04 = "Dollar amount of the earnings - job 2" 9230 WS2_AM05 = "Dollar amount of the earnings - job 2" 9231 WS2_AM06 = "Dollar amount of the earnings - job 2" 9232 WS2_AM07 = "Dollar amount of the earnings - job 2" 9233 WS2_AM08 = "Dollar amount of the earnings - job 2" 9234 WS2_AM09 = "Dollar amount of the earnings - job 2" 9235 WS2_AM10 = "Dollar amount of the earnings - job 2" 9236 WS2_AM11 = "Dollar amount of the earnings - job 2" 9237 WS2_AM12 = "Dollar amount of the earnings - job 2" 9238 WS2_AM13 = "Dollar amount of the earnings - job 2" 9239 WS2_AM14 = "Dollar amount of the earnings - job 2" 9240 WS2_AM15 = "Dollar amount of the earnings - job 2" 9241 WS2_AM16 = "Dollar amount of the earnings - job 2" 9242 WS2_AM17 = "Dollar amount of the earnings - job 2" 125 The SAS System 15:27 Thursday, July 3, 2003 9243 WS2_AM18 = "Dollar amount of the earnings - job 2" 9244 WS2_AM19 = "Dollar amount of the earnings - job 2" 9245 WS2_AM20 = "Dollar amount of the earnings - job 2" 9246 WS2_AM21 = "Dollar amount of the earnings - job 2" 9247 WS2_AM22 = "Dollar amount of the earnings - job 2" 9248 WS2_AM23 = "Dollar amount of the earnings - job 2" 9249 WS2_AM24 = "Dollar amount of the earnings - job 2" 9250 WS2_AM25 = "Dollar amount of the earnings - job 2" 9251 WS2_AM26 = "Dollar amount of the earnings - job 2" 9252 WS2_AM27 = "Dollar amount of the earnings - job 2" 9253 WS2_AM28 = "Dollar amount of the earnings - job 2" 9254 WS2_AM29 = "Dollar amount of the earnings - job 2" 9255 WS2_AM30 = "Dollar amount of the earnings - job 2" 9256 WS2_AM31 = "Dollar amount of the earnings - job 2" 9257 WS2_AM32 = "Dollar amount of the earnings - job 2" 9258 W2024_01 = "Usual hours per week job 1 (monthly)" 9259 W2024_02 = "Usual hours per week job 1 (monthly)" 9260 W2024_03 = "Usual hours per week job 1 (monthly)" 9261 W2024_04 = "Usual hours per week job 1 (monthly)" 9262 W2024_05 = "Usual hours per week job 1 (monthly)" 9263 W2024_06 = "Usual hours per week job 1 (monthly)" 9264 W2024_07 = "Usual hours per week job 1 (monthly)" 9265 W2024_08 = "Usual hours per week job 1 (monthly)" 9266 W2024_09 = "Usual hours per week job 1 (monthly)" 9267 W2024_10 = "Usual hours per week job 1 (monthly)" 9268 W2024_11 = "Usual hours per week job 1 (monthly)" 9269 W2024_12 = "Usual hours per week job 1 (monthly)" 9270 W2024_13 = "Usual hours per week job 1 (monthly)" 9271 W2024_14 = "Usual hours per week job 1 (monthly)" 9272 W2024_15 = "Usual hours per week job 1 (monthly)" 9273 W2024_16 = "Usual hours per week job 1 (monthly)" 9274 W2024_17 = "Usual hours per week job 1 (monthly)" 9275 W2024_18 = "Usual hours per week job 1 (monthly)" 9276 W2024_19 = "Usual hours per week job 1 (monthly)" 9277 W2024_20 = "Usual hours per week job 1 (monthly)" 9278 W2024_21 = "Usual hours per week job 1 (monthly)" 9279 W2024_22 = "Usual hours per week job 1 (monthly)" 9280 W2024_23 = "Usual hours per week job 1 (monthly)" 9281 W2024_24 = "Usual hours per week job 1 (monthly)" 9282 W2024_25 = "Usual hours per week job 1 (monthly)" 9283 W2024_26 = "Usual hours per week job 1 (monthly)" 9284 W2024_27 = "Usual hours per week job 1 (monthly)" 9285 W2024_28 = "Usual hours per week job 1 (monthly)" 9286 W2024_29 = "Usual hours per week job 1 (monthly)" 9287 W2024_30 = "Usual hours per week job 1 (monthly)" 9288 W2024_31 = "Usual hours per week job 1 (monthly)" 9289 W2024_32 = "Usual hours per week job 1 (monthly)" 9290 W2124_01 = "Usual hours per week job 2" 9291 W2124_02 = "Usual hours per week job 2" 9292 W2124_03 = "Usual hours per week job 2" 9293 W2124_04 = "Usual hours per week job 2" 9294 W2124_05 = "Usual hours per week job 2" 9295 W2124_06 = "Usual hours per week job 2" 9296 W2124_07 = "Usual hours per week job 2" 9297 W2124_08 = "Usual hours per week job 2" 9298 W2124_09 = "Usual hours per week job 2" 9299 W2124_10 = "Usual hours per week job 2" 9300 W2124_11 = "Usual hours per week job 2" 9301 W2124_12 = "Usual hours per week job 2" 9302 W2124_13 = "Usual hours per week job 2" 9303 W2124_14 = "Usual hours per week job 2" 9304 W2124_15 = "Usual hours per week job 2" 9305 W2124_16 = "Usual hours per week job 2" 9306 W2124_17 = "Usual hours per week job 2" 9307 W2124_18 = "Usual hours per week job 2" 9308 W2124_19 = "Usual hours per week job 2" 9309 W2124_20 = "Usual hours per week job 2" 9310 W2124_21 = "Usual hours per week job 2" 9311 W2124_22 = "Usual hours per week job 2" 9312 W2124_23 = "Usual hours per week job 2" 9313 W2124_24 = "Usual hours per week job 2" 9314 W2124_25 = "Usual hours per week job 2" 9315 W2124_26 = "Usual hours per week job 2" 9316 W2124_27 = "Usual hours per week job 2" 9317 W2124_28 = "Usual hours per week job 2" 9318 W2124_29 = "Usual hours per week job 2" 126 The SAS System 15:27 Thursday, July 3, 2003 9319 W2124_30 = "Usual hours per week job 2" 9320 W2124_31 = "Usual hours per week job 2" 9321 W2124_32 = "Usual hours per week job 2" 9322 W2028_01 = "Regular hourly pay rate job 1" 9323 W2028_02 = "Regular hourly pay rate job 1" 9324 W2028_03 = "Regular hourly pay rate job 1" 9325 W2028_04 = "Regular hourly pay rate job 1" 9326 W2028_05 = "Regular hourly pay rate job 1" 9327 W2028_06 = "Regular hourly pay rate job 1" 9328 W2028_07 = "Regular hourly pay rate job 1" 9329 W2028_08 = "Regular hourly pay rate job 1" 9330 W2028_09 = "Regular hourly pay rate job 1" 9331 W2028_10 = "Regular hourly pay rate job 1" 9332 W2028_11 = "Regular hourly pay rate job 1" 9333 W2028_12 = "Regular hourly pay rate job 1" 9334 W2028_13 = "Regular hourly pay rate job 1" 9335 W2028_14 = "Regular hourly pay rate job 1" 9336 W2028_15 = "Regular hourly pay rate job 1" 9337 W2028_16 = "Regular hourly pay rate job 1" 9338 W2028_17 = "Regular hourly pay rate job 1" 9339 W2028_18 = "Regular hourly pay rate job 1" 9340 W2028_19 = "Regular hourly pay rate job 1" 9341 W2028_20 = "Regular hourly pay rate job 1" 9342 W2028_21 = "Regular hourly pay rate job 1" 9343 W2028_22 = "Regular hourly pay rate job 1" 9344 W2028_23 = "Regular hourly pay rate job 1" 9345 W2028_24 = "Regular hourly pay rate job 1" 9346 W2028_25 = "Regular hourly pay rate job 1" 9347 W2028_26 = "Regular hourly pay rate job 1" 9348 W2028_27 = "Regular hourly pay rate job 1" 9349 W2028_28 = "Regular hourly pay rate job 1" 9350 W2028_29 = "Regular hourly pay rate job 1" 9351 W2028_30 = "Regular hourly pay rate job 1" 9352 W2028_31 = "Regular hourly pay rate job 1" 9353 W2028_32 = "Regular hourly pay rate job 1" 9354 W2128_01 = "Regular hourly pay rate job 2" 9355 W2128_02 = "Regular hourly pay rate job 2" 9356 W2128_03 = "Regular hourly pay rate job 2" 9357 W2128_04 = "Regular hourly pay rate job 2" 9358 W2128_05 = "Regular hourly pay rate job 2" 9359 W2128_06 = "Regular hourly pay rate job 2" 9360 W2128_07 = "Regular hourly pay rate job 2" 9361 W2128_08 = "Regular hourly pay rate job 2" 9362 W2128_09 = "Regular hourly pay rate job 2" 9363 W2128_10 = "Regular hourly pay rate job 2" 9364 W2128_11 = "Regular hourly pay rate job 2" 9365 W2128_12 = "Regular hourly pay rate job 2" 9366 W2128_13 = "Regular hourly pay rate job 2" 9367 W2128_14 = "Regular hourly pay rate job 2" 9368 W2128_15 = "Regular hourly pay rate job 2" 9369 W2128_16 = "Regular hourly pay rate job 2" 9370 W2128_17 = "Regular hourly pay rate job 2" 9371 W2128_18 = "Regular hourly pay rate job 2" 9372 W2128_19 = "Regular hourly pay rate job 2" 9373 W2128_20 = "Regular hourly pay rate job 2" 9374 W2128_21 = "Regular hourly pay rate job 2" 9375 W2128_22 = "Regular hourly pay rate job 2" 9376 W2128_23 = "Regular hourly pay rate job 2" 9377 W2128_24 = "Regular hourly pay rate job 2" 9378 W2128_25 = "Regular hourly pay rate job 2" 9379 W2128_26 = "Regular hourly pay rate job 2" 9380 W2128_27 = "Regular hourly pay rate job 2" 9381 W2128_28 = "Regular hourly pay rate job 2" 9382 W2128_29 = "Regular hourly pay rate job 2" 9383 W2128_30 = "Regular hourly pay rate job 2" 9384 W2128_31 = "Regular hourly pay rate job 2" 9385 W2128_32 = "Regular hourly pay rate job 2" 9386 S2202_01 = "Check item S1,business ID number contr" 9387 S2202_02 = "Check item S1,business ID number contr" 9388 S2202_03 = "Check item S1,business ID number contr" 9389 S2202_04 = "Check item S1,business ID number contr" 9390 S2202_05 = "Check item S1,business ID number contr" 9391 S2202_06 = "Check item S1,business ID number contr" 9392 S2202_07 = "Check item S1,business ID number contr" 9393 S2202_08 = "Check item S1,business ID number contr" 9394 S2202_09 = "Check item S1,business ID number contr" 127 The SAS System 15:27 Thursday, July 3, 2003 9395 S2202_10 = "Check item S1,business ID number contr" 9396 S2202_11 = "Check item S1,business ID number contr" 9397 S2202_12 = "Check item S1,business ID number contr" 9398 S2202_13 = "Check item S1,business ID number contr" 9399 S2202_14 = "Check item S1,business ID number contr" 9400 S2202_15 = "Check item S1,business ID number contr" 9401 S2202_16 = "Check item S1,business ID number contr" 9402 S2202_17 = "Check item S1,business ID number contr" 9403 S2202_18 = "Check item S1,business ID number contr" 9404 S2202_19 = "Check item S1,business ID number contr" 9405 S2202_20 = "Check item S1,business ID number contr" 9406 S2202_21 = "Check item S1,business ID number contr" 9407 S2202_22 = "Check item S1,business ID number contr" 9408 S2202_23 = "Check item S1,business ID number contr" 9409 S2202_24 = "Check item S1,business ID number contr" 9410 S2202_25 = "Check item S1,business ID number contr" 9411 S2202_26 = "Check item S1,business ID number contr" 9412 S2202_27 = "Check item S1,business ID number contr" 9413 S2202_28 = "Check item S1,business ID number contr" 9414 S2202_29 = "Check item S1,business ID number contr" 9415 S2202_30 = "Check item S1,business ID number contr" 9416 S2202_31 = "Check item S1,business ID number contr" 9417 S2202_32 = "Check item S1,business ID number contr" 9418 S2302_01 = "Check item S1,bus. ID number from" 9419 S2302_02 = "Check item S1,bus. ID number from" 9420 S2302_03 = "Check item S1,bus. ID number from" 9421 S2302_04 = "Check item S1,bus. ID number from" 9422 S2302_05 = "Check item S1,bus. ID number from" 9423 S2302_06 = "Check item S1,bus. ID number from" 9424 S2302_07 = "Check item S1,bus. ID number from" 9425 S2302_08 = "Check item S1,bus. ID number from" 9426 S2302_09 = "Check item S1,bus. ID number from" 9427 S2302_10 = "Check item S1,bus. ID number from" 9428 S2302_11 = "Check item S1,bus. ID number from" 9429 S2302_12 = "Check item S1,bus. ID number from" 9430 S2302_13 = "Check item S1,bus. ID number from" 9431 S2302_14 = "Check item S1,bus. ID number from" 9432 S2302_15 = "Check item S1,bus. ID number from" 9433 S2302_16 = "Check item S1,bus. ID number from" 9434 S2302_17 = "Check item S1,bus. ID number from" 9435 S2302_18 = "Check item S1,bus. ID number from" 9436 S2302_19 = "Check item S1,bus. ID number from" 9437 S2302_20 = "Check item S1,bus. ID number from" 9438 S2302_21 = "Check item S1,bus. ID number from" 9439 S2302_22 = "Check item S1,bus. ID number from" 9440 S2302_23 = "Check item S1,bus. ID number from" 9441 S2302_24 = "Check item S1,bus. ID number from" 9442 S2302_25 = "Check item S1,bus. ID number from" 9443 S2302_26 = "Check item S1,bus. ID number from" 9444 S2302_27 = "Check item S1,bus. ID number from" 9445 S2302_28 = "Check item S1,bus. ID number from" 9446 S2302_29 = "Check item S1,bus. ID number from" 9447 S2302_30 = "Check item S1,bus. ID number from" 9448 S2302_31 = "Check item S1,bus. ID number from" 9449 S2302_32 = "Check item S1,bus. ID number from" 9450 SE1_TY01 = "Type of business (sole,partnership," 9451 SE1_TY02 = "Type of business (sole,partnership," 9452 SE1_TY03 = "Type of business (sole,partnership," 9453 SE1_TY04 = "Type of business (sole,partnership," 9454 SE1_TY05 = "Type of business (sole,partnership," 9455 SE1_TY06 = "Type of business (sole,partnership," 9456 SE1_TY07 = "Type of business (sole,partnership," 9457 SE1_TY08 = "Type of business (sole,partnership," 9458 SE1_TY09 = "Type of business (sole,partnership," 9459 SE1_TY10 = "Type of business (sole,partnership," 9460 SE1_TY11 = "Type of business (sole,partnership," 9461 SE1_TY12 = "Type of business (sole,partnership," 9462 SE1_TY13 = "Type of business (sole,partnership," 9463 SE1_TY14 = "Type of business (sole,partnership," 9464 SE1_TY15 = "Type of business (sole,partnership," 9465 SE1_TY16 = "Type of business (sole,partnership," 9466 SE1_TY17 = "Type of business (sole,partnership," 9467 SE1_TY18 = "Type of business (sole,partnership," 9468 SE1_TY19 = "Type of business (sole,partnership," 9469 SE1_TY20 = "Type of business (sole,partnership," 9470 SE1_TY21 = "Type of business (sole,partnership," 128 The SAS System 15:27 Thursday, July 3, 2003 9471 SE1_TY22 = "Type of business (sole,partnership," 9472 SE1_TY23 = "Type of business (sole,partnership," 9473 SE1_TY24 = "Type of business (sole,partnership," 9474 SE1_TY25 = "Type of business (sole,partnership," 9475 SE1_TY26 = "Type of business (sole,partnership," 9476 SE1_TY27 = "Type of business (sole,partnership," 9477 SE1_TY28 = "Type of business (sole,partnership," 9478 SE1_TY29 = "Type of business (sole,partnership," 9479 SE1_TY30 = "Type of business (sole,partnership," 9480 SE1_TY31 = "Type of business (sole,partnership," 9481 SE1_TY32 = "Type of business (sole,partnership," 9482 SE2_TY01 = "Type business (sole,partnership," 9483 SE2_TY02 = "Type business (sole,partnership," 9484 SE2_TY03 = "Type business (sole,partnership," 9485 SE2_TY04 = "Type business (sole,partnership," 9486 SE2_TY05 = "Type business (sole,partnership," 9487 SE2_TY06 = "Type business (sole,partnership," 9488 SE2_TY07 = "Type business (sole,partnership," 9489 SE2_TY08 = "Type business (sole,partnership," 9490 SE2_TY09 = "Type business (sole,partnership," 9491 SE2_TY10 = "Type business (sole,partnership," 9492 SE2_TY11 = "Type business (sole,partnership," 9493 SE2_TY12 = "Type business (sole,partnership," 9494 SE2_TY13 = "Type business (sole,partnership," 9495 SE2_TY14 = "Type business (sole,partnership," 9496 SE2_TY15 = "Type business (sole,partnership," 9497 SE2_TY16 = "Type business (sole,partnership," 9498 SE2_TY17 = "Type business (sole,partnership," 9499 SE2_TY18 = "Type business (sole,partnership," 9500 SE2_TY19 = "Type business (sole,partnership," 9501 SE2_TY20 = "Type business (sole,partnership," 9502 SE2_TY21 = "Type business (sole,partnership," 9503 SE2_TY22 = "Type business (sole,partnership," 9504 SE2_TY23 = "Type business (sole,partnership," 9505 SE2_TY24 = "Type business (sole,partnership," 9506 SE2_TY25 = "Type business (sole,partnership," 9507 SE2_TY26 = "Type business (sole,partnership," 9508 SE2_TY27 = "Type business (sole,partnership," 9509 SE2_TY28 = "Type business (sole,partnership," 9510 SE2_TY29 = "Type business (sole,partnership," 9511 SE2_TY30 = "Type business (sole,partnership," 9512 SE2_TY31 = "Type business (sole,partnership," 9513 SE2_TY32 = "Type business (sole,partnership," 9514 SE1_OC01 = "Edited and imputed 3 digit occupation" 9515 SE1_OC02 = "Edited and imputed 3 digit occupation" 9516 SE1_OC03 = "Edited and imputed 3 digit occupation" 9517 SE1_OC04 = "Edited and imputed 3 digit occupation" 9518 SE1_OC05 = "Edited and imputed 3 digit occupation" 9519 SE1_OC06 = "Edited and imputed 3 digit occupation" 9520 SE1_OC07 = "Edited and imputed 3 digit occupation" 9521 SE1_OC08 = "Edited and imputed 3 digit occupation" 9522 SE1_OC09 = "Edited and imputed 3 digit occupation" 9523 SE1_OC10 = "Edited and imputed 3 digit occupation" 9524 SE1_OC11 = "Edited and imputed 3 digit occupation" 9525 SE1_OC12 = "Edited and imputed 3 digit occupation" 9526 SE1_OC13 = "Edited and imputed 3 digit occupation" 9527 SE1_OC14 = "Edited and imputed 3 digit occupation" 9528 SE1_OC15 = "Edited and imputed 3 digit occupation" 9529 SE1_OC16 = "Edited and imputed 3 digit occupation" 9530 SE1_OC17 = "Edited and imputed 3 digit occupation" 9531 SE1_OC18 = "Edited and imputed 3 digit occupation" 9532 SE1_OC19 = "Edited and imputed 3 digit occupation" 9533 SE1_OC20 = "Edited and imputed 3 digit occupation" 9534 SE1_OC21 = "Edited and imputed 3 digit occupation" 9535 SE1_OC22 = "Edited and imputed 3 digit occupation" 9536 SE1_OC23 = "Edited and imputed 3 digit occupation" 9537 SE1_OC24 = "Edited and imputed 3 digit occupation" 9538 SE1_OC25 = "Edited and imputed 3 digit occupation" 9539 SE1_OC26 = "Edited and imputed 3 digit occupation" 9540 SE1_OC27 = "Edited and imputed 3 digit occupation" 9541 SE1_OC28 = "Edited and imputed 3 digit occupation" 9542 SE1_OC29 = "Edited and imputed 3 digit occupation" 9543 SE1_OC30 = "Edited and imputed 3 digit occupation" 9544 SE1_OC31 = "Edited and imputed 3 digit occupation" 9545 SE1_OC32 = "Edited and imputed 3 digit occupation" 9546 SE2_OC01 = "Edited and imputed 3 digit occupation" 129 The SAS System 15:27 Thursday, July 3, 2003 9547 SE2_OC02 = "Edited and imputed 3 digit occupation" 9548 SE2_OC03 = "Edited and imputed 3 digit occupation" 9549 SE2_OC04 = "Edited and imputed 3 digit occupation" 9550 SE2_OC05 = "Edited and imputed 3 digit occupation" 9551 SE2_OC06 = "Edited and imputed 3 digit occupation" 9552 SE2_OC07 = "Edited and imputed 3 digit occupation" 9553 SE2_OC08 = "Edited and imputed 3 digit occupation" 9554 SE2_OC09 = "Edited and imputed 3 digit occupation" 9555 SE2_OC10 = "Edited and imputed 3 digit occupation" 9556 SE2_OC11 = "Edited and imputed 3 digit occupation" 9557 SE2_OC12 = "Edited and imputed 3 digit occupation" 9558 SE2_OC13 = "Edited and imputed 3 digit occupation" 9559 SE2_OC14 = "Edited and imputed 3 digit occupation" 9560 SE2_OC15 = "Edited and imputed 3 digit occupation" 9561 SE2_OC16 = "Edited and imputed 3 digit occupation" 9562 SE2_OC17 = "Edited and imputed 3 digit occupation" 9563 SE2_OC18 = "Edited and imputed 3 digit occupation" 9564 SE2_OC19 = "Edited and imputed 3 digit occupation" 9565 SE2_OC20 = "Edited and imputed 3 digit occupation" 9566 SE2_OC21 = "Edited and imputed 3 digit occupation" 9567 SE2_OC22 = "Edited and imputed 3 digit occupation" 9568 SE2_OC23 = "Edited and imputed 3 digit occupation" 9569 SE2_OC24 = "Edited and imputed 3 digit occupation" 9570 SE2_OC25 = "Edited and imputed 3 digit occupation" 9571 SE2_OC26 = "Edited and imputed 3 digit occupation" 9572 SE2_OC27 = "Edited and imputed 3 digit occupation" 9573 SE2_OC28 = "Edited and imputed 3 digit occupation" 9574 SE2_OC29 = "Edited and imputed 3 digit occupation" 9575 SE2_OC30 = "Edited and imputed 3 digit occupation" 9576 SE2_OC31 = "Edited and imputed 3 digit occupation" 9577 SE2_OC32 = "Edited and imputed 3 digit occupation" 9578 SE1_IN01 = "Edited and imputed 2 digit industry co" 9579 SE1_IN02 = "Edited and imputed 2 digit industry co" 9580 SE1_IN03 = "Edited and imputed 2 digit industry co" 9581 SE1_IN04 = "Edited and imputed 2 digit industry co" 9582 SE1_IN05 = "Edited and imputed 2 digit industry co" 9583 SE1_IN06 = "Edited and imputed 2 digit industry co" 9584 SE1_IN07 = "Edited and imputed 2 digit industry co" 9585 SE1_IN08 = "Edited and imputed 2 digit industry co" 9586 SE1_IN09 = "Edited and imputed 2 digit industry co" 9587 SE1_IN10 = "Edited and imputed 2 digit industry co" 9588 SE1_IN11 = "Edited and imputed 2 digit industry co" 9589 SE1_IN12 = "Edited and imputed 2 digit industry co" 9590 SE1_IN13 = "Edited and imputed 2 digit industry co" 9591 SE1_IN14 = "Edited and imputed 2 digit industry co" 9592 SE1_IN15 = "Edited and imputed 2 digit industry co" 9593 SE1_IN16 = "Edited and imputed 2 digit industry co" 9594 SE1_IN17 = "Edited and imputed 2 digit industry co" 9595 SE1_IN18 = "Edited and imputed 2 digit industry co" 9596 SE1_IN19 = "Edited and imputed 2 digit industry co" 9597 SE1_IN20 = "Edited and imputed 2 digit industry co" 9598 SE1_IN21 = "Edited and imputed 2 digit industry co" 9599 SE1_IN22 = "Edited and imputed 2 digit industry co" 9600 SE1_IN23 = "Edited and imputed 2 digit industry co" 9601 SE1_IN24 = "Edited and imputed 2 digit industry co" 9602 SE1_IN25 = "Edited and imputed 2 digit industry co" 9603 SE1_IN26 = "Edited and imputed 2 digit industry co" 9604 SE1_IN27 = "Edited and imputed 2 digit industry co" 9605 SE1_IN28 = "Edited and imputed 2 digit industry co" 9606 SE1_IN29 = "Edited and imputed 2 digit industry co" 9607 SE1_IN30 = "Edited and imputed 2 digit industry co" 9608 SE1_IN31 = "Edited and imputed 2 digit industry co" 9609 SE1_IN32 = "Edited and imputed 2 digit industry co" 9610 SE2_IN01 = "Edited and imputed 2 digit industry co" 9611 SE2_IN02 = "Edited and imputed 2 digit industry co" 9612 SE2_IN03 = "Edited and imputed 2 digit industry co" 9613 SE2_IN04 = "Edited and imputed 2 digit industry co" 9614 SE2_IN05 = "Edited and imputed 2 digit industry co" 9615 SE2_IN06 = "Edited and imputed 2 digit industry co" 9616 SE2_IN07 = "Edited and imputed 2 digit industry co" 9617 SE2_IN08 = "Edited and imputed 2 digit industry co" 9618 SE2_IN09 = "Edited and imputed 2 digit industry co" 9619 SE2_IN10 = "Edited and imputed 2 digit industry co" 9620 SE2_IN11 = "Edited and imputed 2 digit industry co" 9621 SE2_IN12 = "Edited and imputed 2 digit industry co" 9622 SE2_IN13 = "Edited and imputed 2 digit industry co" 130 The SAS System 15:27 Thursday, July 3, 2003 9623 SE2_IN14 = "Edited and imputed 2 digit industry co" 9624 SE2_IN15 = "Edited and imputed 2 digit industry co" 9625 SE2_IN16 = "Edited and imputed 2 digit industry co" 9626 SE2_IN17 = "Edited and imputed 2 digit industry co" 9627 SE2_IN18 = "Edited and imputed 2 digit industry co" 9628 SE2_IN19 = "Edited and imputed 2 digit industry co" 9629 SE2_IN20 = "Edited and imputed 2 digit industry co" 9630 SE2_IN21 = "Edited and imputed 2 digit industry co" 9631 SE2_IN22 = "Edited and imputed 2 digit industry co" 9632 SE2_IN23 = "Edited and imputed 2 digit industry co" 9633 SE2_IN24 = "Edited and imputed 2 digit industry co" 9634 SE2_IN25 = "Edited and imputed 2 digit industry co" 9635 SE2_IN26 = "Edited and imputed 2 digit industry co" 9636 SE2_IN27 = "Edited and imputed 2 digit industry co" 9637 SE2_IN28 = "Edited and imputed 2 digit industry co" 9638 SE2_IN29 = "Edited and imputed 2 digit industry co" 9639 SE2_IN30 = "Edited and imputed 2 digit industry co" 9640 SE2_IN31 = "Edited and imputed 2 digit industry co" 9641 SE2_IN32 = "Edited and imputed 2 digit industry co" 9642 SE1_WK01 = "Number of weeks with self employed" 9643 SE1_WK02 = "Number of weeks with self employed" 9644 SE1_WK03 = "Number of weeks with self employed" 9645 SE1_WK04 = "Number of weeks with self employed" 9646 SE1_WK05 = "Number of weeks with self employed" 9647 SE1_WK06 = "Number of weeks with self employed" 9648 SE1_WK07 = "Number of weeks with self employed" 9649 SE1_WK08 = "Number of weeks with self employed" 9650 SE1_WK09 = "Number of weeks with self employed" 9651 SE1_WK10 = "Number of weeks with self employed" 9652 SE1_WK11 = "Number of weeks with self employed" 9653 SE1_WK12 = "Number of weeks with self employed" 9654 SE1_WK13 = "Number of weeks with self employed" 9655 SE1_WK14 = "Number of weeks with self employed" 9656 SE1_WK15 = "Number of weeks with self employed" 9657 SE1_WK16 = "Number of weeks with self employed" 9658 SE1_WK17 = "Number of weeks with self employed" 9659 SE1_WK18 = "Number of weeks with self employed" 9660 SE1_WK19 = "Number of weeks with self employed" 9661 SE1_WK20 = "Number of weeks with self employed" 9662 SE1_WK21 = "Number of weeks with self employed" 9663 SE1_WK22 = "Number of weeks with self employed" 9664 SE1_WK23 = "Number of weeks with self employed" 9665 SE1_WK24 = "Number of weeks with self employed" 9666 SE1_WK25 = "Number of weeks with self employed" 9667 SE1_WK26 = "Number of weeks with self employed" 9668 SE1_WK27 = "Number of weeks with self employed" 9669 SE1_WK28 = "Number of weeks with self employed" 9670 SE1_WK29 = "Number of weeks with self employed" 9671 SE1_WK30 = "Number of weeks with self employed" 9672 SE1_WK31 = "Number of weeks with self employed" 9673 SE1_WK32 = "Number of weeks with self employed" 9674 SE2_WK01 = "Number of weeks with self employed" 9675 SE2_WK02 = "Number of weeks with self employed" 9676 SE2_WK03 = "Number of weeks with self employed" 9677 SE2_WK04 = "Number of weeks with self employed" 9678 SE2_WK05 = "Number of weeks with self employed" 9679 SE2_WK06 = "Number of weeks with self employed" 9680 SE2_WK07 = "Number of weeks with self employed" 9681 SE2_WK08 = "Number of weeks with self employed" 9682 SE2_WK09 = "Number of weeks with self employed" 9683 SE2_WK10 = "Number of weeks with self employed" 9684 SE2_WK11 = "Number of weeks with self employed" 9685 SE2_WK12 = "Number of weeks with self employed" 9686 SE2_WK13 = "Number of weeks with self employed" 9687 SE2_WK14 = "Number of weeks with self employed" 9688 SE2_WK15 = "Number of weeks with self employed" 9689 SE2_WK16 = "Number of weeks with self employed" 9690 SE2_WK17 = "Number of weeks with self employed" 9691 SE2_WK18 = "Number of weeks with self employed" 9692 SE2_WK19 = "Number of weeks with self employed" 9693 SE2_WK20 = "Number of weeks with self employed" 9694 SE2_WK21 = "Number of weeks with self employed" 9695 SE2_WK22 = "Number of weeks with self employed" 9696 SE2_WK23 = "Number of weeks with self employed" 9697 SE2_WK24 = "Number of weeks with self employed" 9698 SE2_WK25 = "Number of weeks with self employed" 131 The SAS System 15:27 Thursday, July 3, 2003 9699 SE2_WK26 = "Number of weeks with self employed" 9700 SE2_WK27 = "Number of weeks with self employed" 9701 SE2_WK28 = "Number of weeks with self employed" 9702 SE2_WK29 = "Number of weeks with self employed" 9703 SE2_WK30 = "Number of weeks with self employed" 9704 SE2_WK31 = "Number of weeks with self employed" 9705 SE2_WK32 = "Number of weeks with self employed" 9706 SE1_AM01 = "Income from self employed business 1" 9707 SE1_AM02 = "Income from self employed business 1" 9708 SE1_AM03 = "Income from self employed business 1" 9709 SE1_AM04 = "Income from self employed business 1" 9710 SE1_AM05 = "Income from self employed business 1" 9711 SE1_AM06 = "Income from self employed business 1" 9712 SE1_AM07 = "Income from self employed business 1" 9713 SE1_AM08 = "Income from self employed business 1" 9714 SE1_AM09 = "Income from self employed business 1" 9715 SE1_AM10 = "Income from self employed business 1" 9716 SE1_AM11 = "Income from self employed business 1" 9717 SE1_AM12 = "Income from self employed business 1" 9718 SE1_AM13 = "Income from self employed business 1" 9719 SE1_AM14 = "Income from self employed business 1" 9720 SE1_AM15 = "Income from self employed business 1" 9721 SE1_AM16 = "Income from self employed business 1" 9722 SE1_AM17 = "Income from self employed business 1" 9723 SE1_AM18 = "Income from self employed business 1" 9724 SE1_AM19 = "Income from self employed business 1" 9725 SE1_AM20 = "Income from self employed business 1" 9726 SE1_AM21 = "Income from self employed business 1" 9727 SE1_AM22 = "Income from self employed business 1" 9728 SE1_AM23 = "Income from self employed business 1" 9729 SE1_AM24 = "Income from self employed business 1" 9730 SE1_AM25 = "Income from self employed business 1" 9731 SE1_AM26 = "Income from self employed business 1" 9732 SE1_AM27 = "Income from self employed business 1" 9733 SE1_AM28 = "Income from self employed business 1" 9734 SE1_AM29 = "Income from self employed business 1" 9735 SE1_AM30 = "Income from self employed business 1" 9736 SE1_AM31 = "Income from self employed business 1" 9737 SE1_AM32 = "Income from self employed business 1" 9738 SE2_AM01 = "Income from self employed business 2" 9739 SE2_AM02 = "Income from self employed business 2" 9740 SE2_AM03 = "Income from self employed business 2" 9741 SE2_AM04 = "Income from self employed business 2" 9742 SE2_AM05 = "Income from self employed business 2" 9743 SE2_AM06 = "Income from self employed business 2" 9744 SE2_AM07 = "Income from self employed business 2" 9745 SE2_AM08 = "Income from self employed business 2" 9746 SE2_AM09 = "Income from self employed business 2" 9747 SE2_AM10 = "Income from self employed business 2" 9748 SE2_AM11 = "Income from self employed business 2" 9749 SE2_AM12 = "Income from self employed business 2" 9750 SE2_AM13 = "Income from self employed business 2" 9751 SE2_AM14 = "Income from self employed business 2" 9752 SE2_AM15 = "Income from self employed business 2" 9753 SE2_AM16 = "Income from self employed business 2" 9754 SE2_AM17 = "Income from self employed business 2" 9755 SE2_AM18 = "Income from self employed business 2" 9756 SE2_AM19 = "Income from self employed business 2" 9757 SE2_AM20 = "Income from self employed business 2" 9758 SE2_AM21 = "Income from self employed business 2" 9759 SE2_AM22 = "Income from self employed business 2" 9760 SE2_AM23 = "Income from self employed business 2" 9761 SE2_AM24 = "Income from self employed business 2" 9762 SE2_AM25 = "Income from self employed business 2" 9763 SE2_AM26 = "Income from self employed business 2" 9764 SE2_AM27 = "Income from self employed business 2" 9765 SE2_AM28 = "Income from self employed business 2" 9766 SE2_AM29 = "Income from self employed business 2" 9767 SE2_AM30 = "Income from self employed business 2" 9768 SE2_AM31 = "Income from self employed business 2" 9769 SE2_AM32 = "Income from self employed business 2" 9770 S2212_01 = "Hours per week self employed business " 9771 S2212_02 = "Hours per week self employed business " 9772 S2212_03 = "Hours per week self employed business " 9773 S2212_04 = "Hours per week self employed business " 9774 S2212_05 = "Hours per week self employed business " 132 The SAS System 15:27 Thursday, July 3, 2003 9775 S2212_06 = "Hours per week self employed business " 9776 S2212_07 = "Hours per week self employed business " 9777 S2212_08 = "Hours per week self employed business " 9778 S2212_09 = "Hours per week self employed business " 9779 S2212_10 = "Hours per week self employed business " 9780 S2212_11 = "Hours per week self employed business " 9781 S2212_12 = "Hours per week self employed business " 9782 S2212_13 = "Hours per week self employed business " 9783 S2212_14 = "Hours per week self employed business " 9784 S2212_15 = "Hours per week self employed business " 9785 S2212_16 = "Hours per week self employed business " 9786 S2212_17 = "Hours per week self employed business " 9787 S2212_18 = "Hours per week self employed business " 9788 S2212_19 = "Hours per week self employed business " 9789 S2212_20 = "Hours per week self employed business " 9790 S2212_21 = "Hours per week self employed business " 9791 S2212_22 = "Hours per week self employed business " 9792 S2212_23 = "Hours per week self employed business " 9793 S2212_24 = "Hours per week self employed business " 9794 S2212_25 = "Hours per week self employed business " 9795 S2212_26 = "Hours per week self employed business " 9796 S2212_27 = "Hours per week self employed business " 9797 S2212_28 = "Hours per week self employed business " 9798 S2212_29 = "Hours per week self employed business " 9799 S2212_30 = "Hours per week self employed business " 9800 S2212_31 = "Hours per week self employed business " 9801 S2212_32 = "Hours per week self employed business " 9802 S2312_01 = "Hours per week self employed business " 9803 S2312_02 = "Hours per week self employed business " 9804 S2312_03 = "Hours per week self employed business " 9805 S2312_04 = "Hours per week self employed business " 9806 S2312_05 = "Hours per week self employed business " 9807 S2312_06 = "Hours per week self employed business " 9808 S2312_07 = "Hours per week self employed business " 9809 S2312_08 = "Hours per week self employed business " 9810 S2312_09 = "Hours per week self employed business " 9811 S2312_10 = "Hours per week self employed business " 9812 S2312_11 = "Hours per week self employed business " 9813 S2312_12 = "Hours per week self employed business " 9814 S2312_13 = "Hours per week self employed business " 9815 S2312_14 = "Hours per week self employed business " 9816 S2312_15 = "Hours per week self employed business " 9817 S2312_16 = "Hours per week self employed business " 9818 S2312_17 = "Hours per week self employed business " 9819 S2312_18 = "Hours per week self employed business " 9820 S2312_19 = "Hours per week self employed business " 9821 S2312_20 = "Hours per week self employed business " 9822 S2312_21 = "Hours per week self employed business " 9823 S2312_22 = "Hours per week self employed business " 9824 S2312_23 = "Hours per week self employed business " 9825 S2312_24 = "Hours per week self employed business " 9826 S2312_25 = "Hours per week self employed business " 9827 S2312_26 = "Hours per week self employed business " 9828 S2312_27 = "Hours per week self employed business " 9829 S2312_28 = "Hours per week self employed business " 9830 S2312_29 = "Hours per week self employed business " 9831 S2312_30 = "Hours per week self employed business " 9832 S2312_31 = "Hours per week self employed business " 9833 S2312_32 = "Hours per week self employed business " 9834 G1SRC1 = "Income source 1" 9835 G1SRC2 = "Income source 2" 9836 G1SRC3 = "Income source 3" 9837 G1SRC4 = "Income source 4" 9838 G1SRC5 = "Income source 5" 9839 G1SRC6 = "Income source 6" 9840 G1SRC7 = "Income source 7" 9841 G1SRC8 = "Income source 8" 9842 G1SRC9 = "Income source 9" 9843 G1SRC10 = "Income source 10" 9844 G1_A1_01 = "G1 income source 1 (monthly)" 9845 G1_A1_02 = "G1 income source 1 (monthly)" 9846 G1_A1_03 = "G1 income source 1 (monthly)" 9847 G1_A1_04 = "G1 income source 1 (monthly)" 9848 G1_A1_05 = "G1 income source 1 (monthly)" 9849 G1_A1_06 = "G1 income source 1 (monthly)" 9850 G1_A1_07 = "G1 income source 1 (monthly)" 133 The SAS System 15:27 Thursday, July 3, 2003 9851 G1_A1_08 = "G1 income source 1 (monthly)" 9852 G1_A1_09 = "G1 income source 1 (monthly)" 9853 G1_A1_10 = "G1 income source 1 (monthly)" 9854 G1_A1_11 = "G1 income source 1 (monthly)" 9855 G1_A1_12 = "G1 income source 1 (monthly)" 9856 G1_A1_13 = "G1 income source 1 (monthly)" 9857 G1_A1_14 = "G1 income source 1 (monthly)" 9858 G1_A1_15 = "G1 income source 1 (monthly)" 9859 G1_A1_16 = "G1 income source 1 (monthly)" 9860 G1_A1_17 = "G1 income source 1 (monthly)" 9861 G1_A1_18 = "G1 income source 1 (monthly)" 9862 G1_A1_19 = "G1 income source 1 (monthly)" 9863 G1_A1_20 = "G1 income source 1 (monthly)" 9864 G1_A1_21 = "G1 income source 1 (monthly)" 9865 G1_A1_22 = "G1 income source 1 (monthly)" 9866 G1_A1_23 = "G1 income source 1 (monthly)" 9867 G1_A1_24 = "G1 income source 1 (monthly)" 9868 G1_A1_25 = "G1 income source 1 (monthly)" 9869 G1_A1_26 = "G1 income source 1 (monthly)" 9870 G1_A1_27 = "G1 income source 1 (monthly)" 9871 G1_A1_28 = "G1 income source 1 (monthly)" 9872 G1_A1_29 = "G1 income source 1 (monthly)" 9873 G1_A1_30 = "G1 income source 1 (monthly)" 9874 G1_A1_31 = "G1 income source 1 (monthly)" 9875 G1_A1_32 = "G1 income source 1 (monthly)" 9876 G1_A2_01 = "G1 income source 2 (monthly)" 9877 G1_A2_02 = "G1 income source 2 (monthly)" 9878 G1_A2_03 = "G1 income source 2 (monthly)" 9879 G1_A2_04 = "G1 income source 2 (monthly)" 9880 G1_A2_05 = "G1 income source 2 (monthly)" 9881 G1_A2_06 = "G1 income source 2 (monthly)" 9882 G1_A2_07 = "G1 income source 2 (monthly)" 9883 G1_A2_08 = "G1 income source 2 (monthly)" 9884 G1_A2_09 = "G1 income source 2 (monthly)" 9885 G1_A2_10 = "G1 income source 2 (monthly)" 9886 G1_A2_11 = "G1 income source 2 (monthly)" 9887 G1_A2_12 = "G1 income source 2 (monthly)" 9888 G1_A2_13 = "G1 income source 2 (monthly)" 9889 G1_A2_14 = "G1 income source 2 (monthly)" 9890 G1_A2_15 = "G1 income source 2 (monthly)" 9891 G1_A2_16 = "G1 income source 2 (monthly)" 9892 G1_A2_17 = "G1 income source 2 (monthly)" 9893 G1_A2_18 = "G1 income source 2 (monthly)" 9894 G1_A2_19 = "G1 income source 2 (monthly)" 9895 G1_A2_20 = "G1 income source 2 (monthly)" 9896 G1_A2_21 = "G1 income source 2 (monthly)" 9897 G1_A2_22 = "G1 income source 2 (monthly)" 9898 G1_A2_23 = "G1 income source 2 (monthly)" 9899 G1_A2_24 = "G1 income source 2 (monthly)" 9900 G1_A2_25 = "G1 income source 2 (monthly)" 9901 G1_A2_26 = "G1 income source 2 (monthly)" 9902 G1_A2_27 = "G1 income source 2 (monthly)" 9903 G1_A2_28 = "G1 income source 2 (monthly)" 9904 G1_A2_29 = "G1 income source 2 (monthly)" 9905 G1_A2_30 = "G1 income source 2 (monthly)" 9906 G1_A2_31 = "G1 income source 2 (monthly)" 9907 G1_A2_32 = "G1 income source 2 (monthly)" 9908 G1_A3_01 = "G1 income source 3 (monthly)" 9909 G1_A3_02 = "G1 income source 3 (monthly)" 9910 G1_A3_03 = "G1 income source 3 (monthly)" 9911 G1_A3_04 = "G1 income source 3 (monthly)" 9912 G1_A3_05 = "G1 income source 3 (monthly)" 9913 G1_A3_06 = "G1 income source 3 (monthly)" 9914 G1_A3_07 = "G1 income source 3 (monthly)" 9915 G1_A3_08 = "G1 income source 3 (monthly)" 9916 G1_A3_09 = "G1 income source 3 (monthly)" 9917 G1_A3_10 = "G1 income source 3 (monthly)" 9918 G1_A3_11 = "G1 income source 3 (monthly)" 9919 G1_A3_12 = "G1 income source 3 (monthly)" 9920 G1_A3_13 = "G1 income source 3 (monthly)" 9921 G1_A3_14 = "G1 income source 3 (monthly)" 9922 G1_A3_15 = "G1 income source 3 (monthly)" 9923 G1_A3_16 = "G1 income source 3 (monthly)" 9924 G1_A3_17 = "G1 income source 3 (monthly)" 9925 G1_A3_18 = "G1 income source 3 (monthly)" 9926 G1_A3_19 = "G1 income source 3 (monthly)" 134 The SAS System 15:27 Thursday, July 3, 2003 9927 G1_A3_20 = "G1 income source 3 (monthly)" 9928 G1_A3_21 = "G1 income source 3 (monthly)" 9929 G1_A3_22 = "G1 income source 3 (monthly)" 9930 G1_A3_23 = "G1 income source 3 (monthly)" 9931 G1_A3_24 = "G1 income source 3 (monthly)" 9932 G1_A3_25 = "G1 income source 3 (monthly)" 9933 G1_A3_26 = "G1 income source 3 (monthly)" 9934 G1_A3_27 = "G1 income source 3 (monthly)" 9935 G1_A3_28 = "G1 income source 3 (monthly)" 9936 G1_A3_29 = "G1 income source 3 (monthly)" 9937 G1_A3_30 = "G1 income source 3 (monthly)" 9938 G1_A3_31 = "G1 income source 3 (monthly)" 9939 G1_A3_32 = "G1 income source 3 (monthly)" 9940 G1_A4_01 = "G1 income source 4 (monthly)" 9941 G1_A4_02 = "G1 income source 4 (monthly)" 9942 G1_A4_03 = "G1 income source 4 (monthly)" 9943 G1_A4_04 = "G1 income source 4 (monthly)" 9944 G1_A4_05 = "G1 income source 4 (monthly)" 9945 G1_A4_06 = "G1 income source 4 (monthly)" 9946 G1_A4_07 = "G1 income source 4 (monthly)" 9947 G1_A4_08 = "G1 income source 4 (monthly)" 9948 G1_A4_09 = "G1 income source 4 (monthly)" 9949 G1_A4_10 = "G1 income source 4 (monthly)" 9950 G1_A4_11 = "G1 income source 4 (monthly)" 9951 G1_A4_12 = "G1 income source 4 (monthly)" 9952 G1_A4_13 = "G1 income source 4 (monthly)" 9953 G1_A4_14 = "G1 income source 4 (monthly)" 9954 G1_A4_15 = "G1 income source 4 (monthly)" 9955 G1_A4_16 = "G1 income source 4 (monthly)" 9956 G1_A4_17 = "G1 income source 4 (monthly)" 9957 G1_A4_18 = "G1 income source 4 (monthly)" 9958 G1_A4_19 = "G1 income source 4 (monthly)" 9959 G1_A4_20 = "G1 income source 4 (monthly)" 9960 G1_A4_21 = "G1 income source 4 (monthly)" 9961 G1_A4_22 = "G1 income source 4 (monthly)" 9962 G1_A4_23 = "G1 income source 4 (monthly)" 9963 G1_A4_24 = "G1 income source 4 (monthly)" 9964 G1_A4_25 = "G1 income source 4 (monthly)" 9965 G1_A4_26 = "G1 income source 4 (monthly)" 9966 G1_A4_27 = "G1 income source 4 (monthly)" 9967 G1_A4_28 = "G1 income source 4 (monthly)" 9968 G1_A4_29 = "G1 income source 4 (monthly)" 9969 G1_A4_30 = "G1 income source 4 (monthly)" 9970 G1_A4_31 = "G1 income source 4 (monthly)" 9971 G1_A4_32 = "G1 income source 4 (monthly)" 9972 G1_A5_01 = "G1 income source 5 (monthly)" 9973 G1_A5_02 = "G1 income source 5 (monthly)" 9974 G1_A5_03 = "G1 income source 5 (monthly)" 9975 G1_A5_04 = "G1 income source 5 (monthly)" 9976 G1_A5_05 = "G1 income source 5 (monthly)" 9977 G1_A5_06 = "G1 income source 5 (monthly)" 9978 G1_A5_07 = "G1 income source 5 (monthly)" 9979 G1_A5_08 = "G1 income source 5 (monthly)" 9980 G1_A5_09 = "G1 income source 5 (monthly)" 9981 G1_A5_10 = "G1 income source 5 (monthly)" 9982 G1_A5_11 = "G1 income source 5 (monthly)" 9983 G1_A5_12 = "G1 income source 5 (monthly)" 9984 G1_A5_13 = "G1 income source 5 (monthly)" 9985 G1_A5_14 = "G1 income source 5 (monthly)" 9986 G1_A5_15 = "G1 income source 5 (monthly)" 9987 G1_A5_16 = "G1 income source 5 (monthly)" 9988 G1_A5_17 = "G1 income source 5 (monthly)" 9989 G1_A5_18 = "G1 income source 5 (monthly)" 9990 G1_A5_19 = "G1 income source 5 (monthly)" 9991 G1_A5_20 = "G1 income source 5 (monthly)" 9992 G1_A5_21 = "G1 income source 5 (monthly)" 9993 G1_A5_22 = "G1 income source 5 (monthly)" 9994 G1_A5_23 = "G1 income source 5 (monthly)" 9995 G1_A5_24 = "G1 income source 5 (monthly)" 9996 G1_A5_25 = "G1 income source 5 (monthly)" 9997 G1_A5_26 = "G1 income source 5 (monthly)" 9998 G1_A5_27 = "G1 income source 5 (monthly)" 9999 G1_A5_28 = "G1 income source 5 (monthly)" 10000 G1_A5_29 = "G1 income source 5 (monthly)" 10001 G1_A5_30 = "G1 income source 5 (monthly)" 10002 G1_A5_31 = "G1 income source 5 (monthly)" 135 The SAS System 15:27 Thursday, July 3, 2003 10003 G1_A5_32 = "G1 income source 5 (monthly)" 10004 G1_A6_01 = "G1 income source 6 (monthly)" 10005 G1_A6_02 = "G1 income source 6 (monthly)" 10006 G1_A6_03 = "G1 income source 6 (monthly)" 10007 G1_A6_04 = "G1 income source 6 (monthly)" 10008 G1_A6_05 = "G1 income source 6 (monthly)" 10009 G1_A6_06 = "G1 income source 6 (monthly)" 10010 G1_A6_07 = "G1 income source 6 (monthly)" 10011 G1_A6_08 = "G1 income source 6 (monthly)" 10012 G1_A6_09 = "G1 income source 6 (monthly)" 10013 G1_A6_10 = "G1 income source 6 (monthly)" 10014 G1_A6_11 = "G1 income source 6 (monthly)" 10015 G1_A6_12 = "G1 income source 6 (monthly)" 10016 G1_A6_13 = "G1 income source 6 (monthly)" 10017 G1_A6_14 = "G1 income source 6 (monthly)" 10018 G1_A6_15 = "G1 income source 6 (monthly)" 10019 G1_A6_16 = "G1 income source 6 (monthly)" 10020 G1_A6_17 = "G1 income source 6 (monthly)" 10021 G1_A6_18 = "G1 income source 6 (monthly)" 10022 G1_A6_19 = "G1 income source 6 (monthly)" 10023 G1_A6_20 = "G1 income source 6 (monthly)" 10024 G1_A6_21 = "G1 income source 6 (monthly)" 10025 G1_A6_22 = "G1 income source 6 (monthly)" 10026 G1_A6_23 = "G1 income source 6 (monthly)" 10027 G1_A6_24 = "G1 income source 6 (monthly)" 10028 G1_A6_25 = "G1 income source 6 (monthly)" 10029 G1_A6_26 = "G1 income source 6 (monthly)" 10030 G1_A6_27 = "G1 income source 6 (monthly)" 10031 G1_A6_28 = "G1 income source 6 (monthly)" 10032 G1_A6_29 = "G1 income source 6 (monthly)" 10033 G1_A6_30 = "G1 income source 6 (monthly)" 10034 G1_A6_31 = "G1 income source 6 (monthly)" 10035 G1_A6_32 = "G1 income source 6 (monthly)" 10036 G1_A7_01 = "G1 income source 7 (monthly)" 10037 G1_A7_02 = "G1 income source 7 (monthly)" 10038 G1_A7_03 = "G1 income source 7 (monthly)" 10039 G1_A7_04 = "G1 income source 7 (monthly)" 10040 G1_A7_05 = "G1 income source 7 (monthly)" 10041 G1_A7_06 = "G1 income source 7 (monthly)" 10042 G1_A7_07 = "G1 income source 7 (monthly)" 10043 G1_A7_08 = "G1 income source 7 (monthly)" 10044 G1_A7_09 = "G1 income source 7 (monthly)" 10045 G1_A7_10 = "G1 income source 7 (monthly)" 10046 G1_A7_11 = "G1 income source 7 (monthly)" 10047 G1_A7_12 = "G1 income source 7 (monthly)" 10048 G1_A7_13 = "G1 income source 7 (monthly)" 10049 G1_A7_14 = "G1 income source 7 (monthly)" 10050 G1_A7_15 = "G1 income source 7 (monthly)" 10051 G1_A7_16 = "G1 income source 7 (monthly)" 10052 G1_A7_17 = "G1 income source 7 (monthly)" 10053 G1_A7_18 = "G1 income source 7 (monthly)" 10054 G1_A7_19 = "G1 income source 7 (monthly)" 10055 G1_A7_20 = "G1 income source 7 (monthly)" 10056 G1_A7_21 = "G1 income source 7 (monthly)" 10057 G1_A7_22 = "G1 income source 7 (monthly)" 10058 G1_A7_23 = "G1 income source 7 (monthly)" 10059 G1_A7_24 = "G1 income source 7 (monthly)" 10060 G1_A7_25 = "G1 income source 7 (monthly)" 10061 G1_A7_26 = "G1 income source 7 (monthly)" 10062 G1_A7_27 = "G1 income source 7 (monthly)" 10063 G1_A7_28 = "G1 income source 7 (monthly)" 10064 G1_A7_29 = "G1 income source 7 (monthly)" 10065 G1_A7_30 = "G1 income source 7 (monthly)" 10066 G1_A7_31 = "G1 income source 7 (monthly)" 10067 G1_A7_32 = "G1 income source 7 (monthly)" 10068 G1_A8_01 = "G1 income source 8 (monthly)" 10069 G1_A8_02 = "G1 income source 8 (monthly)" 10070 G1_A8_03 = "G1 income source 8 (monthly)" 10071 G1_A8_04 = "G1 income source 8 (monthly)" 10072 G1_A8_05 = "G1 income source 8 (monthly)" 10073 G1_A8_06 = "G1 income source 8 (monthly)" 10074 G1_A8_07 = "G1 income source 8 (monthly)" 10075 G1_A8_08 = "G1 income source 8 (monthly)" 10076 G1_A8_09 = "G1 income source 8 (monthly)" 10077 G1_A8_10 = "G1 income source 8 (monthly)" 10078 G1_A8_11 = "G1 income source 8 (monthly)" 136 The SAS System 15:27 Thursday, July 3, 2003 10079 G1_A8_12 = "G1 income source 8 (monthly)" 10080 G1_A8_13 = "G1 income source 8 (monthly)" 10081 G1_A8_14 = "G1 income source 8 (monthly)" 10082 G1_A8_15 = "G1 income source 8 (monthly)" 10083 G1_A8_16 = "G1 income source 8 (monthly)" 10084 G1_A8_17 = "G1 income source 8 (monthly)" 10085 G1_A8_18 = "G1 income source 8 (monthly)" 10086 G1_A8_19 = "G1 income source 8 (monthly)" 10087 G1_A8_20 = "G1 income source 8 (monthly)" 10088 G1_A8_21 = "G1 income source 8 (monthly)" 10089 G1_A8_22 = "G1 income source 8 (monthly)" 10090 G1_A8_23 = "G1 income source 8 (monthly)" 10091 G1_A8_24 = "G1 income source 8 (monthly)" 10092 G1_A8_25 = "G1 income source 8 (monthly)" 10093 G1_A8_26 = "G1 income source 8 (monthly)" 10094 G1_A8_27 = "G1 income source 8 (monthly)" 10095 G1_A8_28 = "G1 income source 8 (monthly)" 10096 G1_A8_29 = "G1 income source 8 (monthly)" 10097 G1_A8_30 = "G1 income source 8 (monthly)" 10098 G1_A8_31 = "G1 income source 8 (monthly)" 10099 G1_A8_32 = "G1 income source 8 (monthly)" 10100 G1_A9_01 = "G1 income source 9 (monthly)" 10101 G1_A9_02 = "G1 income source 9 (monthly)" 10102 G1_A9_03 = "G1 income source 9 (monthly)" 10103 G1_A9_04 = "G1 income source 9 (monthly)" 10104 G1_A9_05 = "G1 income source 9 (monthly)" 10105 G1_A9_06 = "G1 income source 9 (monthly)" 10106 G1_A9_07 = "G1 income source 9 (monthly)" 10107 G1_A9_08 = "G1 income source 9 (monthly)" 10108 G1_A9_09 = "G1 income source 9 (monthly)" 10109 G1_A9_10 = "G1 income source 9 (monthly)" 10110 G1_A9_11 = "G1 income source 9 (monthly)" 10111 G1_A9_12 = "G1 income source 9 (monthly)" 10112 G1_A9_13 = "G1 income source 9 (monthly)" 10113 G1_A9_14 = "G1 income source 9 (monthly)" 10114 G1_A9_15 = "G1 income source 9 (monthly)" 10115 G1_A9_16 = "G1 income source 9 (monthly)" 10116 G1_A9_17 = "G1 income source 9 (monthly)" 10117 G1_A9_18 = "G1 income source 9 (monthly)" 10118 G1_A9_19 = "G1 income source 9 (monthly)" 10119 G1_A9_20 = "G1 income source 9 (monthly)" 10120 G1_A9_21 = "G1 income source 9 (monthly)" 10121 G1_A9_22 = "G1 income source 9 (monthly)" 10122 G1_A9_23 = "G1 income source 9 (monthly)" 10123 G1_A9_24 = "G1 income source 9 (monthly)" 10124 G1_A9_25 = "G1 income source 9 (monthly)" 10125 G1_A9_26 = "G1 income source 9 (monthly)" 10126 G1_A9_27 = "G1 income source 9 (monthly)" 10127 G1_A9_28 = "G1 income source 9 (monthly)" 10128 G1_A9_29 = "G1 income source 9 (monthly)" 10129 G1_A9_30 = "G1 income source 9 (monthly)" 10130 G1_A9_31 = "G1 income source 9 (monthly)" 10131 G1_A9_32 = "G1 income source 9 (monthly)" 10132 G1_A1001 = "G1 income source 10 (monthly)" 10133 G1_A1002 = "G1 income source 10 (monthly)" 10134 G1_A1003 = "G1 income source 10 (monthly)" 10135 G1_A1004 = "G1 income source 10 (monthly)" 10136 G1_A1005 = "G1 income source 10 (monthly)" 10137 G1_A1006 = "G1 income source 10 (monthly)" 10138 G1_A1007 = "G1 income source 10 (monthly)" 10139 G1_A1008 = "G1 income source 10 (monthly)" 10140 G1_A1009 = "G1 income source 10 (monthly)" 10141 G1_A1010 = "G1 income source 10 (monthly)" 10142 G1_A1011 = "G1 income source 10 (monthly)" 10143 G1_A1012 = "G1 income source 10 (monthly)" 10144 G1_A1013 = "G1 income source 10 (monthly)" 10145 G1_A1014 = "G1 income source 10 (monthly)" 10146 G1_A1015 = "G1 income source 10 (monthly)" 10147 G1_A1016 = "G1 income source 10 (monthly)" 10148 G1_A1017 = "G1 income source 10 (monthly)" 10149 G1_A1018 = "G1 income source 10 (monthly)" 10150 G1_A1019 = "G1 income source 10 (monthly)" 10151 G1_A1020 = "G1 income source 10 (monthly)" 10152 G1_A1021 = "G1 income source 10 (monthly)" 10153 G1_A1022 = "G1 income source 10 (monthly)" 10154 G1_A1023 = "G1 income source 10 (monthly)" 137 The SAS System 15:27 Thursday, July 3, 2003 10155 G1_A1024 = "G1 income source 10 (monthly)" 10156 G1_A1025 = "G1 income source 10 (monthly)" 10157 G1_A1026 = "G1 income source 10 (monthly)" 10158 G1_A1027 = "G1 income source 10 (monthly)" 10159 G1_A1028 = "G1 income source 10 (monthly)" 10160 G1_A1029 = "G1 income source 10 (monthly)" 10161 G1_A1030 = "G1 income source 10 (monthly)" 10162 G1_A1031 = "G1 income source 10 (monthly)" 10163 G1_A1032 = "G1 income source 10 (monthly)" 10164 SSRECIN1 = "Social security recipiency indicator" 10165 SSRECIN2 = "Social security recipiency indicator" 10166 SSRECIN3 = "Social security recipiency indicator" 10167 SSRECIN4 = "Social security recipiency indicator" 10168 SSRECIN5 = "Social security recipiency indicator" 10169 SSRECIN6 = "Social security recipiency indicator" 10170 SSRECIN7 = "Social security recipiency indicator" 10171 SSRECIN8 = "Social security recipiency indicator" 10172 RRRECIN1 = "Railroad retirement recipiency indicat" 10173 RRRECIN2 = "Railroad retirement recipiency indicat" 10174 RRRECIN3 = "Railroad retirement recipiency indicat" 10175 RRRECIN4 = "Railroad retirement recipiency indicat" 10176 RRRECIN5 = "Railroad retirement recipiency indicat" 10177 RRRECIN6 = "Railroad retirement recipiency indicat" 10178 RRRECIN7 = "Railroad retirement recipiency indicat" 10179 RRRECIN8 = "Railroad retirement recipiency indicat" 10180 VET3060 = "Required to fill out an annual VA inco" 10181 AST1001 = "ISS Asset Code 100 - savings accounts" 10182 AST1002 = "ISS Asset Code 100 - savings accounts" 10183 AST1003 = "ISS Asset Code 100 - savings accounts" 10184 AST1004 = "ISS Asset Code 100 - savings accounts" 10185 AST1005 = "ISS Asset Code 100 - savings accounts" 10186 AST1006 = "ISS Asset Code 100 - savings accounts" 10187 AST1007 = "ISS Asset Code 100 - savings accounts" 10188 AST1008 = "ISS Asset Code 100 - savings accounts" 10189 AST1011 = "ISS Asset Code 101 - money market" 10190 AST1012 = "ISS Asset Code 101 - money market" 10191 AST1013 = "ISS Asset Code 101 - money market" 10192 AST1014 = "ISS Asset Code 101 - money market" 10193 AST1015 = "ISS Asset Code 101 - money market" 10194 AST1016 = "ISS Asset Code 101 - money market" 10195 AST1017 = "ISS Asset Code 101 - money market" 10196 AST1018 = "ISS Asset Code 101 - money market" 10197 AST1021 = "ISS Asset Code 102 - certificates of" 10198 AST1022 = "ISS Asset Code 102 - certificates of" 10199 AST1023 = "ISS Asset Code 102 - certificates of" 10200 AST1024 = "ISS Asset Code 102 - certificates of" 10201 AST1025 = "ISS Asset Code 102 - certificates of" 10202 AST1026 = "ISS Asset Code 102 - certificates of" 10203 AST1027 = "ISS Asset Code 102 - certificates of" 10204 AST1028 = "ISS Asset Code 102 - certificates of" 10205 AST1031 = "ISS Asset Code 103 - NOW accounts" 10206 AST1032 = "ISS Asset Code 103 - NOW accounts" 10207 AST1033 = "ISS Asset Code 103 - NOW accounts" 10208 AST1034 = "ISS Asset Code 103 - NOW accounts" 10209 AST1035 = "ISS Asset Code 103 - NOW accounts" 10210 AST1036 = "ISS Asset Code 103 - NOW accounts" 10211 AST1037 = "ISS Asset Code 103 - NOW accounts" 10212 AST1038 = "ISS Asset Code 103 - NOW accounts" 10213 AST1041 = "ISS Asset Code 104 - money market fund" 10214 AST1042 = "ISS Asset Code 104 - money market fund" 10215 AST1043 = "ISS Asset Code 104 - money market fund" 10216 AST1044 = "ISS Asset Code 104 - money market fund" 10217 AST1045 = "ISS Asset Code 104 - money market fund" 10218 AST1046 = "ISS Asset Code 104 - money market fund" 10219 AST1047 = "ISS Asset Code 104 - money market fund" 10220 AST1048 = "ISS Asset Code 104 - money market fund" 10221 AST1051 = "ISS Asset Code 105 - U.S. government" 10222 AST1052 = "ISS Asset Code 105 - U.S. government" 10223 AST1053 = "ISS Asset Code 105 - U.S. government" 10224 AST1054 = "ISS Asset Code 105 - U.S. government" 10225 AST1055 = "ISS Asset Code 105 - U.S. government" 10226 AST1056 = "ISS Asset Code 105 - U.S. government" 10227 AST1057 = "ISS Asset Code 105 - U.S. government" 10228 AST1058 = "ISS Asset Code 105 - U.S. government" 10229 AST1061 = "ISS Asset Code 106 municipal or" 10230 AST1062 = "ISS Asset Code 106 municipal or" 138 The SAS System 15:27 Thursday, July 3, 2003 10231 AST1063 = "ISS Asset Code 106 municipal or" 10232 AST1064 = "ISS Asset Code 106 municipal or" 10233 AST1065 = "ISS Asset Code 106 municipal or" 10234 AST1066 = "ISS Asset Code 106 municipal or" 10235 AST1067 = "ISS Asset Code 106 municipal or" 10236 AST1068 = "ISS Asset Code 106 municipal or" 10237 AST1071 = "ISS Asset Code 107, other interest" 10238 AST1072 = "ISS Asset Code 107, other interest" 10239 AST1073 = "ISS Asset Code 107, other interest" 10240 AST1074 = "ISS Asset Code 107, other interest" 10241 AST1075 = "ISS Asset Code 107, other interest" 10242 AST1076 = "ISS Asset Code 107, other interest" 10243 AST1077 = "ISS Asset Code 107, other interest" 10244 AST1078 = "ISS Asset Code 107, other interest" 10245 AST1101 = "ISS Asset Code 110 - stocks" 10246 AST1102 = "ISS Asset Code 110 - stocks" 10247 AST1103 = "ISS Asset Code 110 - stocks" 10248 AST1104 = "ISS Asset Code 110 - stocks" 10249 AST1105 = "ISS Asset Code 110 - stocks" 10250 AST1106 = "ISS Asset Code 110 - stocks" 10251 AST1107 = "ISS Asset Code 110 - stocks" 10252 AST1108 = "ISS Asset Code 110 - stocks" 10253 AST1201 = "ISS Asset Code 120 - rental property" 10254 AST1202 = "ISS Asset Code 120 - rental property" 10255 AST1203 = "ISS Asset Code 120 - rental property" 10256 AST1204 = "ISS Asset Code 120 - rental property" 10257 AST1205 = "ISS Asset Code 120 - rental property" 10258 AST1206 = "ISS Asset Code 120 - rental property" 10259 AST1207 = "ISS Asset Code 120 - rental property" 10260 AST1208 = "ISS Asset Code 120 - rental property" 10261 AST1301 = "Iss Asset Code 130 - mortgages" 10262 AST1302 = "Iss Asset Code 130 - mortgages" 10263 AST1303 = "Iss Asset Code 130 - mortgages" 10264 AST1304 = "Iss Asset Code 130 - mortgages" 10265 AST1305 = "Iss Asset Code 130 - mortgages" 10266 AST1306 = "Iss Asset Code 130 - mortgages" 10267 AST1307 = "Iss Asset Code 130 - mortgages" 10268 AST1308 = "Iss Asset Code 130 - mortgages" 10269 AST1401 = "Iss Asset Code 140 - royalties" 10270 AST1402 = "Iss Asset Code 140 - royalties" 10271 AST1403 = "Iss Asset Code 140 - royalties" 10272 AST1404 = "Iss Asset Code 140 - royalties" 10273 AST1405 = "Iss Asset Code 140 - royalties" 10274 AST1406 = "Iss Asset Code 140 - royalties" 10275 AST1407 = "Iss Asset Code 140 - royalties" 10276 AST1408 = "Iss Asset Code 140 - royalties" 10277 AST1501 = "Iss Asset Code 150 - other financial" 10278 AST1502 = "Iss Asset Code 150 - other financial" 10279 AST1503 = "Iss Asset Code 150 - other financial" 10280 AST1504 = "Iss Asset Code 150 - other financial" 10281 AST1505 = "Iss Asset Code 150 - other financial" 10282 AST1506 = "Iss Asset Code 150 - other financial" 10283 AST1507 = "Iss Asset Code 150 - other financial" 10284 AST1508 = "Iss Asset Code 150 - other financial" 10285 G2SRC100 = "G2 interest from savings, money market" 10286 G2SRC104 = "G2 interest, money market funds, gov.s" 10287 G2SRC110 = "G2 dividends from stocks or mutual fun" 10288 G2SRC120 = "Net income from the rental of" 10289 G2SRC130 = "G2 interest income from mortgages" 10290 G2SRC140 = "G2 income from royalties and other" 10291 G2A10001 = "Income from savings accounts" 10292 G2A10002 = "Income from savings accounts" 10293 G2A10003 = "Income from savings accounts" 10294 G2A10004 = "Income from savings accounts" 10295 G2A10005 = "Income from savings accounts" 10296 G2A10006 = "Income from savings accounts" 10297 G2A10007 = "Income from savings accounts" 10298 G2A10008 = "Income from savings accounts" 10299 G2A10009 = "Income from savings accounts" 10300 G2A10010 = "Income from savings accounts" 10301 G2A10011 = "Income from savings accounts" 10302 G2A10012 = "Income from savings accounts" 10303 G2A10013 = "Income from savings accounts" 10304 G2A10014 = "Income from savings accounts" 10305 G2A10015 = "Income from savings accounts" 10306 G2A10016 = "Income from savings accounts" 139 The SAS System 15:27 Thursday, July 3, 2003 10307 G2A10017 = "Income from savings accounts" 10308 G2A10018 = "Income from savings accounts" 10309 G2A10019 = "Income from savings accounts" 10310 G2A10020 = "Income from savings accounts" 10311 G2A10021 = "Income from savings accounts" 10312 G2A10022 = "Income from savings accounts" 10313 G2A10023 = "Income from savings accounts" 10314 G2A10024 = "Income from savings accounts" 10315 G2A10025 = "Income from savings accounts" 10316 G2A10026 = "Income from savings accounts" 10317 G2A10027 = "Income from savings accounts" 10318 G2A10028 = "Income from savings accounts" 10319 G2A10029 = "Income from savings accounts" 10320 G2A10030 = "Income from savings accounts" 10321 G2A10031 = "Income from savings accounts" 10322 G2A10032 = "Income from savings accounts" 10323 G2A10401 = "G2 income mm funds, secur, bonds, othe" 10324 G2A10402 = "G2 income mm funds, secur, bonds, othe" 10325 G2A10403 = "G2 income mm funds, secur, bonds, othe" 10326 G2A10404 = "G2 income mm funds, secur, bonds, othe" 10327 G2A10405 = "G2 income mm funds, secur, bonds, othe" 10328 G2A10406 = "G2 income mm funds, secur, bonds, othe" 10329 G2A10407 = "G2 income mm funds, secur, bonds, othe" 10330 G2A10408 = "G2 income mm funds, secur, bonds, othe" 10331 G2A10409 = "G2 income mm funds, secur, bonds, othe" 10332 G2A10410 = "G2 income mm funds, secur, bonds, othe" 10333 G2A10411 = "G2 income mm funds, secur, bonds, othe" 10334 G2A10412 = "G2 income mm funds, secur, bonds, othe" 10335 G2A10413 = "G2 income mm funds, secur, bonds, othe" 10336 G2A10414 = "G2 income mm funds, secur, bonds, othe" 10337 G2A10415 = "G2 income mm funds, secur, bonds, othe" 10338 G2A10416 = "G2 income mm funds, secur, bonds, othe" 10339 G2A10417 = "G2 income mm funds, secur, bonds, othe" 10340 G2A10418 = "G2 income mm funds, secur, bonds, othe" 10341 G2A10419 = "G2 income mm funds, secur, bonds, othe" 10342 G2A10420 = "G2 income mm funds, secur, bonds, othe" 10343 G2A10421 = "G2 income mm funds, secur, bonds, othe" 10344 G2A10422 = "G2 income mm funds, secur, bonds, othe" 10345 G2A10423 = "G2 income mm funds, secur, bonds, othe" 10346 G2A10424 = "G2 income mm funds, secur, bonds, othe" 10347 G2A10425 = "G2 income mm funds, secur, bonds, othe" 10348 G2A10426 = "G2 income mm funds, secur, bonds, othe" 10349 G2A10427 = "G2 income mm funds, secur, bonds, othe" 10350 G2A10428 = "G2 income mm funds, secur, bonds, othe" 10351 G2A10429 = "G2 income mm funds, secur, bonds, othe" 10352 G2A10430 = "G2 income mm funds, secur, bonds, othe" 10353 G2A10431 = "G2 income mm funds, secur, bonds, othe" 10354 G2A10432 = "G2 income mm funds, secur, bonds, othe" 10355 G2A11001 = "G2 income stocks,mutual shares (110)" 10356 G2A11002 = "G2 income stocks,mutual shares (110)" 10357 G2A11003 = "G2 income stocks,mutual shares (110)" 10358 G2A11004 = "G2 income stocks,mutual shares (110)" 10359 G2A11005 = "G2 income stocks,mutual shares (110)" 10360 G2A11006 = "G2 income stocks,mutual shares (110)" 10361 G2A11007 = "G2 income stocks,mutual shares (110)" 10362 G2A11008 = "G2 income stocks,mutual shares (110)" 10363 G2A11009 = "G2 income stocks,mutual shares (110)" 10364 G2A11010 = "G2 income stocks,mutual shares (110)" 10365 G2A11011 = "G2 income stocks,mutual shares (110)" 10366 G2A11012 = "G2 income stocks,mutual shares (110)" 10367 G2A11013 = "G2 income stocks,mutual shares (110)" 10368 G2A11014 = "G2 income stocks,mutual shares (110)" 10369 G2A11015 = "G2 income stocks,mutual shares (110)" 10370 G2A11016 = "G2 income stocks,mutual shares (110)" 10371 G2A11017 = "G2 income stocks,mutual shares (110)" 10372 G2A11018 = "G2 income stocks,mutual shares (110)" 10373 G2A11019 = "G2 income stocks,mutual shares (110)" 10374 G2A11020 = "G2 income stocks,mutual shares (110)" 10375 G2A11021 = "G2 income stocks,mutual shares (110)" 10376 G2A11022 = "G2 income stocks,mutual shares (110)" 10377 G2A11023 = "G2 income stocks,mutual shares (110)" 10378 G2A11024 = "G2 income stocks,mutual shares (110)" 10379 G2A11025 = "G2 income stocks,mutual shares (110)" 10380 G2A11026 = "G2 income stocks,mutual shares (110)" 10381 G2A11027 = "G2 income stocks,mutual shares (110)" 10382 G2A11028 = "G2 income stocks,mutual shares (110)" 140 The SAS System 15:27 Thursday, July 3, 2003 10383 G2A11029 = "G2 income stocks,mutual shares (110)" 10384 G2A11030 = "G2 income stocks,mutual shares (110)" 10385 G2A11031 = "G2 income stocks,mutual shares (110)" 10386 G2A11032 = "G2 income stocks,mutual shares (110)" 10387 G2A12001 = "G2 income from rental property (120)" 10388 G2A12002 = "G2 income from rental property (120)" 10389 G2A12003 = "G2 income from rental property (120)" 10390 G2A12004 = "G2 income from rental property (120)" 10391 G2A12005 = "G2 income from rental property (120)" 10392 G2A12006 = "G2 income from rental property (120)" 10393 G2A12007 = "G2 income from rental property (120)" 10394 G2A12008 = "G2 income from rental property (120)" 10395 G2A12009 = "G2 income from rental property (120)" 10396 G2A12010 = "G2 income from rental property (120)" 10397 G2A12011 = "G2 income from rental property (120)" 10398 G2A12012 = "G2 income from rental property (120)" 10399 G2A12013 = "G2 income from rental property (120)" 10400 G2A12014 = "G2 income from rental property (120)" 10401 G2A12015 = "G2 income from rental property (120)" 10402 G2A12016 = "G2 income from rental property (120)" 10403 G2A12017 = "G2 income from rental property (120)" 10404 G2A12018 = "G2 income from rental property (120)" 10405 G2A12019 = "G2 income from rental property (120)" 10406 G2A12020 = "G2 income from rental property (120)" 10407 G2A12021 = "G2 income from rental property (120)" 10408 G2A12022 = "G2 income from rental property (120)" 10409 G2A12023 = "G2 income from rental property (120)" 10410 G2A12024 = "G2 income from rental property (120)" 10411 G2A12025 = "G2 income from rental property (120)" 10412 G2A12026 = "G2 income from rental property (120)" 10413 G2A12027 = "G2 income from rental property (120)" 10414 G2A12028 = "G2 income from rental property (120)" 10415 G2A12029 = "G2 income from rental property (120)" 10416 G2A12030 = "G2 income from rental property (120)" 10417 G2A12031 = "G2 income from rental property (120)" 10418 G2A12032 = "G2 income from rental property (120)" 10419 G2A13001 = "G2 income from mortgages held (130)" 10420 G2A13002 = "G2 income from mortgages held (130)" 10421 G2A13003 = "G2 income from mortgages held (130)" 10422 G2A13004 = "G2 income from mortgages held (130)" 10423 G2A13005 = "G2 income from mortgages held (130)" 10424 G2A13006 = "G2 income from mortgages held (130)" 10425 G2A13007 = "G2 income from mortgages held (130)" 10426 G2A13008 = "G2 income from mortgages held (130)" 10427 G2A13009 = "G2 income from mortgages held (130)" 10428 G2A13010 = "G2 income from mortgages held (130)" 10429 G2A13011 = "G2 income from mortgages held (130)" 10430 G2A13012 = "G2 income from mortgages held (130)" 10431 G2A13013 = "G2 income from mortgages held (130)" 10432 G2A13014 = "G2 income from mortgages held (130)" 10433 G2A13015 = "G2 income from mortgages held (130)" 10434 G2A13016 = "G2 income from mortgages held (130)" 10435 G2A13017 = "G2 income from mortgages held (130)" 10436 G2A13018 = "G2 income from mortgages held (130)" 10437 G2A13019 = "G2 income from mortgages held (130)" 10438 G2A13020 = "G2 income from mortgages held (130)" 10439 G2A13021 = "G2 income from mortgages held (130)" 10440 G2A13022 = "G2 income from mortgages held (130)" 10441 G2A13023 = "G2 income from mortgages held (130)" 10442 G2A13024 = "G2 income from mortgages held (130)" 10443 G2A13025 = "G2 income from mortgages held (130)" 10444 G2A13026 = "G2 income from mortgages held (130)" 10445 G2A13027 = "G2 income from mortgages held (130)" 10446 G2A13028 = "G2 income from mortgages held (130)" 10447 G2A13029 = "G2 income from mortgages held (130)" 10448 G2A13030 = "G2 income from mortgages held (130)" 10449 G2A13031 = "G2 income from mortgages held (130)" 10450 G2A13032 = "G2 income from mortgages held (130)" 10451 G2A14001 = "G2 income royalties and other financia" 10452 G2A14002 = "G2 income royalties and other financia" 10453 G2A14003 = "G2 income royalties and other financia" 10454 G2A14004 = "G2 income royalties and other financia" 10455 G2A14005 = "G2 income royalties and other financia" 10456 G2A14006 = "G2 income royalties and other financia" 10457 G2A14007 = "G2 income royalties and other financia" 10458 G2A14008 = "G2 income royalties and other financia" 141 The SAS System 15:27 Thursday, July 3, 2003 10459 G2A14009 = "G2 income royalties and other financia" 10460 G2A14010 = "G2 income royalties and other financia" 10461 G2A14011 = "G2 income royalties and other financia" 10462 G2A14012 = "G2 income royalties and other financia" 10463 G2A14013 = "G2 income royalties and other financia" 10464 G2A14014 = "G2 income royalties and other financia" 10465 G2A14015 = "G2 income royalties and other financia" 10466 G2A14016 = "G2 income royalties and other financia" 10467 G2A14017 = "G2 income royalties and other financia" 10468 G2A14018 = "G2 income royalties and other financia" 10469 G2A14019 = "G2 income royalties and other financia" 10470 G2A14020 = "G2 income royalties and other financia" 10471 G2A14021 = "G2 income royalties and other financia" 10472 G2A14022 = "G2 income royalties and other financia" 10473 G2A14023 = "G2 income royalties and other financia" 10474 G2A14024 = "G2 income royalties and other financia" 10475 G2A14025 = "G2 income royalties and other financia" 10476 G2A14026 = "G2 income royalties and other financia" 10477 G2A14027 = "G2 income royalties and other financia" 10478 G2A14028 = "G2 income royalties and other financia" 10479 G2A14029 = "G2 income royalties and other financia" 10480 G2A14030 = "G2 income royalties and other financia" 10481 G2A14031 = "G2 income royalties and other financia" 10482 G2A14032 = "G2 income royalties and other financia" 10483 CARECO01 = "Covered by medicare (monthly)" 10484 CARECO02 = "Covered by medicare (monthly)" 10485 CARECO03 = "Covered by medicare (monthly)" 10486 CARECO04 = "Covered by medicare (monthly)" 10487 CARECO05 = "Covered by medicare (monthly)" 10488 CARECO06 = "Covered by medicare (monthly)" 10489 CARECO07 = "Covered by medicare (monthly)" 10490 CARECO08 = "Covered by medicare (monthly)" 10491 CARECO09 = "Covered by medicare (monthly)" 10492 CARECO10 = "Covered by medicare (monthly)" 10493 CARECO11 = "Covered by medicare (monthly)" 10494 CARECO12 = "Covered by medicare (monthly)" 10495 CARECO13 = "Covered by medicare (monthly)" 10496 CARECO14 = "Covered by medicare (monthly)" 10497 CARECO15 = "Covered by medicare (monthly)" 10498 CARECO16 = "Covered by medicare (monthly)" 10499 CARECO17 = "Covered by medicare (monthly)" 10500 CARECO18 = "Covered by medicare (monthly)" 10501 CARECO19 = "Covered by medicare (monthly)" 10502 CARECO20 = "Covered by medicare (monthly)" 10503 CARECO21 = "Covered by medicare (monthly)" 10504 CARECO22 = "Covered by medicare (monthly)" 10505 CARECO23 = "Covered by medicare (monthly)" 10506 CARECO24 = "Covered by medicare (monthly)" 10507 CARECO25 = "Covered by medicare (monthly)" 10508 CARECO26 = "Covered by medicare (monthly)" 10509 CARECO27 = "Covered by medicare (monthly)" 10510 CARECO28 = "Covered by medicare (monthly)" 10511 CARECO29 = "Covered by medicare (monthly)" 10512 CARECO30 = "Covered by medicare (monthly)" 10513 CARECO31 = "Covered by medicare (monthly)" 10514 CARECO32 = "Covered by medicare (monthly)" 10515 CAIDCO01 = "Covered by medicaid (monthly)" 10516 CAIDCO02 = "Covered by medicaid (monthly)" 10517 CAIDCO03 = "Covered by medicaid (monthly)" 10518 CAIDCO04 = "Covered by medicaid (monthly)" 10519 CAIDCO05 = "Covered by medicaid (monthly)" 10520 CAIDCO06 = "Covered by medicaid (monthly)" 10521 CAIDCO07 = "Covered by medicaid (monthly)" 10522 CAIDCO08 = "Covered by medicaid (monthly)" 10523 CAIDCO09 = "Covered by medicaid (monthly)" 10524 CAIDCO10 = "Covered by medicaid (monthly)" 10525 CAIDCO11 = "Covered by medicaid (monthly)" 10526 CAIDCO12 = "Covered by medicaid (monthly)" 10527 CAIDCO13 = "Covered by medicaid (monthly)" 10528 CAIDCO14 = "Covered by medicaid (monthly)" 10529 CAIDCO15 = "Covered by medicaid (monthly)" 10530 CAIDCO16 = "Covered by medicaid (monthly)" 10531 CAIDCO17 = "Covered by medicaid (monthly)" 10532 CAIDCO18 = "Covered by medicaid (monthly)" 10533 CAIDCO19 = "Covered by medicaid (monthly)" 10534 CAIDCO20 = "Covered by medicaid (monthly)" 142 The SAS System 15:27 Thursday, July 3, 2003 10535 CAIDCO21 = "Covered by medicaid (monthly)" 10536 CAIDCO22 = "Covered by medicaid (monthly)" 10537 CAIDCO23 = "Covered by medicaid (monthly)" 10538 CAIDCO24 = "Covered by medicaid (monthly)" 10539 CAIDCO25 = "Covered by medicaid (monthly)" 10540 CAIDCO26 = "Covered by medicaid (monthly)" 10541 CAIDCO27 = "Covered by medicaid (monthly)" 10542 CAIDCO28 = "Covered by medicaid (monthly)" 10543 CAIDCO29 = "Covered by medicaid (monthly)" 10544 CAIDCO30 = "Covered by medicaid (monthly)" 10545 CAIDCO31 = "Covered by medicaid (monthly)" 10546 CAIDCO32 = "Covered by medicaid (monthly)" 10547 WICCOV01 = "Covered by WIC (monthly)" 10548 WICCOV02 = "Covered by WIC (monthly)" 10549 WICCOV03 = "Covered by WIC (monthly)" 10550 WICCOV04 = "Covered by WIC (monthly)" 10551 WICCOV05 = "Covered by WIC (monthly)" 10552 WICCOV06 = "Covered by WIC (monthly)" 10553 WICCOV07 = "Covered by WIC (monthly)" 10554 WICCOV08 = "Covered by WIC (monthly)" 10555 WICCOV09 = "Covered by WIC (monthly)" 10556 WICCOV10 = "Covered by WIC (monthly)" 10557 WICCOV11 = "Covered by WIC (monthly)" 10558 WICCOV12 = "Covered by WIC (monthly)" 10559 WICCOV13 = "Covered by WIC (monthly)" 10560 WICCOV14 = "Covered by WIC (monthly)" 10561 WICCOV15 = "Covered by WIC (monthly)" 10562 WICCOV16 = "Covered by WIC (monthly)" 10563 WICCOV17 = "Covered by WIC (monthly)" 10564 WICCOV18 = "Covered by WIC (monthly)" 10565 WICCOV19 = "Covered by WIC (monthly)" 10566 WICCOV20 = "Covered by WIC (monthly)" 10567 WICCOV21 = "Covered by WIC (monthly)" 10568 WICCOV22 = "Covered by WIC (monthly)" 10569 WICCOV23 = "Covered by WIC (monthly)" 10570 WICCOV24 = "Covered by WIC (monthly)" 10571 WICCOV25 = "Covered by WIC (monthly)" 10572 WICCOV26 = "Covered by WIC (monthly)" 10573 WICCOV27 = "Covered by WIC (monthly)" 10574 WICCOV28 = "Covered by WIC (monthly)" 10575 WICCOV29 = "Covered by WIC (monthly)" 10576 WICCOV30 = "Covered by WIC (monthly)" 10577 WICCOV31 = "Covered by WIC (monthly)" 10578 WICCOV32 = "Covered by WIC (monthly)" 10579 AFDC_01 = "Covered by AFDC (monthly)" 10580 AFDC_02 = "Covered by AFDC (monthly)" 10581 AFDC_03 = "Covered by AFDC (monthly)" 10582 AFDC_04 = "Covered by AFDC (monthly)" 10583 AFDC_05 = "Covered by AFDC (monthly)" 10584 AFDC_06 = "Covered by AFDC (monthly)" 10585 AFDC_07 = "Covered by AFDC (monthly)" 10586 AFDC_08 = "Covered by AFDC (monthly)" 10587 AFDC_09 = "Covered by AFDC (monthly)" 10588 AFDC_10 = "Covered by AFDC (monthly)" 10589 AFDC_11 = "Covered by AFDC (monthly)" 10590 AFDC_12 = "Covered by AFDC (monthly)" 10591 AFDC_13 = "Covered by AFDC (monthly)" 10592 AFDC_14 = "Covered by AFDC (monthly)" 10593 AFDC_15 = "Covered by AFDC (monthly)" 10594 AFDC_16 = "Covered by AFDC (monthly)" 10595 AFDC_17 = "Covered by AFDC (monthly)" 10596 AFDC_18 = "Covered by AFDC (monthly)" 10597 AFDC_19 = "Covered by AFDC (monthly)" 10598 AFDC_20 = "Covered by AFDC (monthly)" 10599 AFDC_21 = "Covered by AFDC (monthly)" 10600 AFDC_22 = "Covered by AFDC (monthly)" 10601 AFDC_23 = "Covered by AFDC (monthly)" 10602 AFDC_24 = "Covered by AFDC (monthly)" 10603 AFDC_25 = "Covered by AFDC (monthly)" 10604 AFDC_26 = "Covered by AFDC (monthly)" 10605 AFDC_27 = "Covered by AFDC (monthly)" 10606 AFDC_28 = "Covered by AFDC (monthly)" 10607 AFDC_29 = "Covered by AFDC (monthly)" 10608 AFDC_30 = "Covered by AFDC (monthly)" 10609 AFDC_31 = "Covered by AFDC (monthly)" 10610 AFDC_32 = "Covered by AFDC (monthly)" 143 The SAS System 15:27 Thursday, July 3, 2003 10611 FOODST01 = "Covered by food stamps (monthly)" 10612 FOODST02 = "Covered by food stamps (monthly)" 10613 FOODST03 = "Covered by food stamps (monthly)" 10614 FOODST04 = "Covered by food stamps (monthly)" 10615 FOODST05 = "Covered by food stamps (monthly)" 10616 FOODST06 = "Covered by food stamps (monthly)" 10617 FOODST07 = "Covered by food stamps (monthly)" 10618 FOODST08 = "Covered by food stamps (monthly)" 10619 FOODST09 = "Covered by food stamps (monthly)" 10620 FOODST10 = "Covered by food stamps (monthly)" 10621 FOODST11 = "Covered by food stamps (monthly)" 10622 FOODST12 = "Covered by food stamps (monthly)" 10623 FOODST13 = "Covered by food stamps (monthly)" 10624 FOODST14 = "Covered by food stamps (monthly)" 10625 FOODST15 = "Covered by food stamps (monthly)" 10626 FOODST16 = "Covered by food stamps (monthly)" 10627 FOODST17 = "Covered by food stamps (monthly)" 10628 FOODST18 = "Covered by food stamps (monthly)" 10629 FOODST19 = "Covered by food stamps (monthly)" 10630 FOODST20 = "Covered by food stamps (monthly)" 10631 FOODST21 = "Covered by food stamps (monthly)" 10632 FOODST22 = "Covered by food stamps (monthly)" 10633 FOODST23 = "Covered by food stamps (monthly)" 10634 FOODST24 = "Covered by food stamps (monthly)" 10635 FOODST25 = "Covered by food stamps (monthly)" 10636 FOODST26 = "Covered by food stamps (monthly)" 10637 FOODST27 = "Covered by food stamps (monthly)" 10638 FOODST28 = "Covered by food stamps (monthly)" 10639 FOODST29 = "Covered by food stamps (monthly)" 10640 FOODST30 = "Covered by food stamps (monthly)" 10641 FOODST31 = "Covered by food stamps (monthly)" 10642 FOODST32 = "Covered by food stamps (monthly)" 10643 GEN_AS01 = "Covered by any general assistance" 10644 GEN_AS02 = "Covered by any general assistance" 10645 GEN_AS03 = "Covered by any general assistance" 10646 GEN_AS04 = "Covered by any general assistance" 10647 GEN_AS05 = "Covered by any general assistance" 10648 GEN_AS06 = "Covered by any general assistance" 10649 GEN_AS07 = "Covered by any general assistance" 10650 GEN_AS08 = "Covered by any general assistance" 10651 GEN_AS09 = "Covered by any general assistance" 10652 GEN_AS10 = "Covered by any general assistance" 10653 GEN_AS11 = "Covered by any general assistance" 10654 GEN_AS12 = "Covered by any general assistance" 10655 GEN_AS13 = "Covered by any general assistance" 10656 GEN_AS14 = "Covered by any general assistance" 10657 GEN_AS15 = "Covered by any general assistance" 10658 GEN_AS16 = "Covered by any general assistance" 10659 GEN_AS17 = "Covered by any general assistance" 10660 GEN_AS18 = "Covered by any general assistance" 10661 GEN_AS19 = "Covered by any general assistance" 10662 GEN_AS20 = "Covered by any general assistance" 10663 GEN_AS21 = "Covered by any general assistance" 10664 GEN_AS22 = "Covered by any general assistance" 10665 GEN_AS23 = "Covered by any general assistance" 10666 GEN_AS24 = "Covered by any general assistance" 10667 GEN_AS25 = "Covered by any general assistance" 10668 GEN_AS26 = "Covered by any general assistance" 10669 GEN_AS27 = "Covered by any general assistance" 10670 GEN_AS28 = "Covered by any general assistance" 10671 GEN_AS29 = "Covered by any general assistance" 10672 GEN_AS30 = "Covered by any general assistance" 10673 GEN_AS31 = "Covered by any general assistance" 10674 GEN_AS32 = "Covered by any general assistance" 10675 FOST_K01 = "Covered by any foster child care" 10676 FOST_K02 = "Covered by any foster child care" 10677 FOST_K03 = "Covered by any foster child care" 10678 FOST_K04 = "Covered by any foster child care" 10679 FOST_K05 = "Covered by any foster child care" 10680 FOST_K06 = "Covered by any foster child care" 10681 FOST_K07 = "Covered by any foster child care" 10682 FOST_K08 = "Covered by any foster child care" 10683 FOST_K09 = "Covered by any foster child care" 10684 FOST_K10 = "Covered by any foster child care" 10685 FOST_K11 = "Covered by any foster child care" 10686 FOST_K12 = "Covered by any foster child care" 144 The SAS System 15:27 Thursday, July 3, 2003 10687 FOST_K13 = "Covered by any foster child care" 10688 FOST_K14 = "Covered by any foster child care" 10689 FOST_K15 = "Covered by any foster child care" 10690 FOST_K16 = "Covered by any foster child care" 10691 FOST_K17 = "Covered by any foster child care" 10692 FOST_K18 = "Covered by any foster child care" 10693 FOST_K19 = "Covered by any foster child care" 10694 FOST_K20 = "Covered by any foster child care" 10695 FOST_K21 = "Covered by any foster child care" 10696 FOST_K22 = "Covered by any foster child care" 10697 FOST_K23 = "Covered by any foster child care" 10698 FOST_K24 = "Covered by any foster child care" 10699 FOST_K25 = "Covered by any foster child care" 10700 FOST_K26 = "Covered by any foster child care" 10701 FOST_K27 = "Covered by any foster child care" 10702 FOST_K28 = "Covered by any foster child care" 10703 FOST_K29 = "Covered by any foster child care" 10704 FOST_K30 = "Covered by any foster child care" 10705 FOST_K31 = "Covered by any foster child care" 10706 FOST_K32 = "Covered by any foster child care" 10707 OTH_WE01 = "Covered by any other welfare payments" 10708 OTH_WE02 = "Covered by any other welfare payments" 10709 OTH_WE03 = "Covered by any other welfare payments" 10710 OTH_WE04 = "Covered by any other welfare payments" 10711 OTH_WE05 = "Covered by any other welfare payments" 10712 OTH_WE06 = "Covered by any other welfare payments" 10713 OTH_WE07 = "Covered by any other welfare payments" 10714 OTH_WE08 = "Covered by any other welfare payments" 10715 OTH_WE09 = "Covered by any other welfare payments" 10716 OTH_WE10 = "Covered by any other welfare payments" 10717 OTH_WE11 = "Covered by any other welfare payments" 10718 OTH_WE12 = "Covered by any other welfare payments" 10719 OTH_WE13 = "Covered by any other welfare payments" 10720 OTH_WE14 = "Covered by any other welfare payments" 10721 OTH_WE15 = "Covered by any other welfare payments" 10722 OTH_WE16 = "Covered by any other welfare payments" 10723 OTH_WE17 = "Covered by any other welfare payments" 10724 OTH_WE18 = "Covered by any other welfare payments" 10725 OTH_WE19 = "Covered by any other welfare payments" 10726 OTH_WE20 = "Covered by any other welfare payments" 10727 OTH_WE21 = "Covered by any other welfare payments" 10728 OTH_WE22 = "Covered by any other welfare payments" 10729 OTH_WE23 = "Covered by any other welfare payments" 10730 OTH_WE24 = "Covered by any other welfare payments" 10731 OTH_WE25 = "Covered by any other welfare payments" 10732 OTH_WE26 = "Covered by any other welfare payments" 10733 OTH_WE27 = "Covered by any other welfare payments" 10734 OTH_WE28 = "Covered by any other welfare payments" 10735 OTH_WE29 = "Covered by any other welfare payments" 10736 OTH_WE30 = "Covered by any other welfare payments" 10737 OTH_WE31 = "Covered by any other welfare payments" 10738 OTH_WE32 = "Covered by any other welfare payments" 10739 SOC_SE01 = "Covered by social security payments" 10740 SOC_SE02 = "Covered by social security payments" 10741 SOC_SE03 = "Covered by social security payments" 10742 SOC_SE04 = "Covered by social security payments" 10743 SOC_SE05 = "Covered by social security payments" 10744 SOC_SE06 = "Covered by social security payments" 10745 SOC_SE07 = "Covered by social security payments" 10746 SOC_SE08 = "Covered by social security payments" 10747 SOC_SE09 = "Covered by social security payments" 10748 SOC_SE10 = "Covered by social security payments" 10749 SOC_SE11 = "Covered by social security payments" 10750 SOC_SE12 = "Covered by social security payments" 10751 SOC_SE13 = "Covered by social security payments" 10752 SOC_SE14 = "Covered by social security payments" 10753 SOC_SE15 = "Covered by social security payments" 10754 SOC_SE16 = "Covered by social security payments" 10755 SOC_SE17 = "Covered by social security payments" 10756 SOC_SE18 = "Covered by social security payments" 10757 SOC_SE19 = "Covered by social security payments" 10758 SOC_SE20 = "Covered by social security payments" 10759 SOC_SE21 = "Covered by social security payments" 10760 SOC_SE22 = "Covered by social security payments" 10761 SOC_SE23 = "Covered by social security payments" 10762 SOC_SE24 = "Covered by social security payments" 145 The SAS System 15:27 Thursday, July 3, 2003 10763 SOC_SE25 = "Covered by social security payments" 10764 SOC_SE26 = "Covered by social security payments" 10765 SOC_SE27 = "Covered by social security payments" 10766 SOC_SE28 = "Covered by social security payments" 10767 SOC_SE29 = "Covered by social security payments" 10768 SOC_SE30 = "Covered by social security payments" 10769 SOC_SE31 = "Covered by social security payments" 10770 SOC_SE32 = "Covered by social security payments" 10771 RAILRD01 = "Covered by railroad retirement payment" 10772 RAILRD02 = "Covered by railroad retirement payment" 10773 RAILRD03 = "Covered by railroad retirement payment" 10774 RAILRD04 = "Covered by railroad retirement payment" 10775 RAILRD05 = "Covered by railroad retirement payment" 10776 RAILRD06 = "Covered by railroad retirement payment" 10777 RAILRD07 = "Covered by railroad retirement payment" 10778 RAILRD08 = "Covered by railroad retirement payment" 10779 RAILRD09 = "Covered by railroad retirement payment" 10780 RAILRD10 = "Covered by railroad retirement payment" 10781 RAILRD11 = "Covered by railroad retirement payment" 10782 RAILRD12 = "Covered by railroad retirement payment" 10783 RAILRD13 = "Covered by railroad retirement payment" 10784 RAILRD14 = "Covered by railroad retirement payment" 10785 RAILRD15 = "Covered by railroad retirement payment" 10786 RAILRD16 = "Covered by railroad retirement payment" 10787 RAILRD17 = "Covered by railroad retirement payment" 10788 RAILRD18 = "Covered by railroad retirement payment" 10789 RAILRD19 = "Covered by railroad retirement payment" 10790 RAILRD20 = "Covered by railroad retirement payment" 10791 RAILRD21 = "Covered by railroad retirement payment" 10792 RAILRD22 = "Covered by railroad retirement payment" 10793 RAILRD23 = "Covered by railroad retirement payment" 10794 RAILRD24 = "Covered by railroad retirement payment" 10795 RAILRD25 = "Covered by railroad retirement payment" 10796 RAILRD26 = "Covered by railroad retirement payment" 10797 RAILRD27 = "Covered by railroad retirement payment" 10798 RAILRD28 = "Covered by railroad retirement payment" 10799 RAILRD29 = "Covered by railroad retirement payment" 10800 RAILRD30 = "Covered by railroad retirement payment" 10801 RAILRD31 = "Covered by railroad retirement payment" 10802 RAILRD32 = "Covered by railroad retirement payment" 10803 VETS_01 = "Covered by veterans payments (monthly)" 10804 VETS_02 = "Covered by veterans payments (monthly)" 10805 VETS_03 = "Covered by veterans payments (monthly)" 10806 VETS_04 = "Covered by veterans payments (monthly)" 10807 VETS_05 = "Covered by veterans payments (monthly)" 10808 VETS_06 = "Covered by veterans payments (monthly)" 10809 VETS_07 = "Covered by veterans payments (monthly)" 10810 VETS_08 = "Covered by veterans payments (monthly)" 10811 VETS_09 = "Covered by veterans payments (monthly)" 10812 VETS_10 = "Covered by veterans payments (monthly)" 10813 VETS_11 = "Covered by veterans payments (monthly)" 10814 VETS_12 = "Covered by veterans payments (monthly)" 10815 VETS_13 = "Covered by veterans payments (monthly)" 10816 VETS_14 = "Covered by veterans payments (monthly)" 10817 VETS_15 = "Covered by veterans payments (monthly)" 10818 VETS_16 = "Covered by veterans payments (monthly)" 10819 VETS_17 = "Covered by veterans payments (monthly)" 10820 VETS_18 = "Covered by veterans payments (monthly)" 10821 VETS_19 = "Covered by veterans payments (monthly)" 10822 VETS_20 = "Covered by veterans payments (monthly)" 10823 VETS_21 = "Covered by veterans payments (monthly)" 10824 VETS_22 = "Covered by veterans payments (monthly)" 10825 VETS_23 = "Covered by veterans payments (monthly)" 10826 VETS_24 = "Covered by veterans payments (monthly)" 10827 VETS_25 = "Covered by veterans payments (monthly)" 10828 VETS_26 = "Covered by veterans payments (monthly)" 10829 VETS_27 = "Covered by veterans payments (monthly)" 10830 VETS_28 = "Covered by veterans payments (monthly)" 10831 VETS_29 = "Covered by veterans payments (monthly)" 10832 VETS_30 = "Covered by veterans payments (monthly)" 10833 VETS_31 = "Covered by veterans payments (monthly)" 10834 VETS_32 = "Covered by veterans payments (monthly)" 10835 CHAMPU01 = "Covered by CHAMPUS payments (monthly)" 10836 CHAMPU02 = "Covered by CHAMPUS payments (monthly)" 10837 CHAMPU03 = "Covered by CHAMPUS payments (monthly)" 10838 CHAMPU04 = "Covered by CHAMPUS payments (monthly)" 146 The SAS System 15:27 Thursday, July 3, 2003 10839 CHAMPU05 = "Covered by CHAMPUS payments (monthly)" 10840 CHAMPU06 = "Covered by CHAMPUS payments (monthly)" 10841 CHAMPU07 = "Covered by CHAMPUS payments (monthly)" 10842 CHAMPU08 = "Covered by CHAMPUS payments (monthly)" 10843 CHAMPU09 = "Covered by CHAMPUS payments (monthly)" 10844 CHAMPU10 = "Covered by CHAMPUS payments (monthly)" 10845 CHAMPU11 = "Covered by CHAMPUS payments (monthly)" 10846 CHAMPU12 = "Covered by CHAMPUS payments (monthly)" 10847 CHAMPU13 = "Covered by CHAMPUS payments (monthly)" 10848 CHAMPU14 = "Covered by CHAMPUS payments (monthly)" 10849 CHAMPU15 = "Covered by CHAMPUS payments (monthly)" 10850 CHAMPU16 = "Covered by CHAMPUS payments (monthly)" 10851 CHAMPU17 = "Covered by CHAMPUS payments (monthly)" 10852 CHAMPU18 = "Covered by CHAMPUS payments (monthly)" 10853 CHAMPU19 = "Covered by CHAMPUS payments (monthly)" 10854 CHAMPU20 = "Covered by CHAMPUS payments (monthly)" 10855 CHAMPU21 = "Covered by CHAMPUS payments (monthly)" 10856 CHAMPU22 = "Covered by CHAMPUS payments (monthly)" 10857 CHAMPU23 = "Covered by CHAMPUS payments (monthly)" 10858 CHAMPU24 = "Covered by CHAMPUS payments (monthly)" 10859 CHAMPU25 = "Covered by CHAMPUS payments (monthly)" 10860 CHAMPU26 = "Covered by CHAMPUS payments (monthly)" 10861 CHAMPU27 = "Covered by CHAMPUS payments (monthly)" 10862 CHAMPU28 = "Covered by CHAMPUS payments (monthly)" 10863 CHAMPU29 = "Covered by CHAMPUS payments (monthly)" 10864 CHAMPU30 = "Covered by CHAMPUS payments (monthly)" 10865 CHAMPU31 = "Covered by CHAMPUS payments (monthly)" 10866 CHAMPU32 = "Covered by CHAMPUS payments (monthly)" 10867 CHAMPV01 = "Covered by CHAMPVA payments (monthly)" 10868 CHAMPV02 = "Covered by CHAMPVA payments (monthly)" 10869 CHAMPV03 = "Covered by CHAMPVA payments (monthly)" 10870 CHAMPV04 = "Covered by CHAMPVA payments (monthly)" 10871 CHAMPV05 = "Covered by CHAMPVA payments (monthly)" 10872 CHAMPV06 = "Covered by CHAMPVA payments (monthly)" 10873 CHAMPV07 = "Covered by CHAMPVA payments (monthly)" 10874 CHAMPV08 = "Covered by CHAMPVA payments (monthly)" 10875 CHAMPV09 = "Covered by CHAMPVA payments (monthly)" 10876 CHAMPV10 = "Covered by CHAMPVA payments (monthly)" 10877 CHAMPV11 = "Covered by CHAMPVA payments (monthly)" 10878 CHAMPV12 = "Covered by CHAMPVA payments (monthly)" 10879 CHAMPV13 = "Covered by CHAMPVA payments (monthly)" 10880 CHAMPV14 = "Covered by CHAMPVA payments (monthly)" 10881 CHAMPV15 = "Covered by CHAMPVA payments (monthly)" 10882 CHAMPV16 = "Covered by CHAMPVA payments (monthly)" 10883 CHAMPV17 = "Covered by CHAMPVA payments (monthly)" 10884 CHAMPV18 = "Covered by CHAMPVA payments (monthly)" 10885 CHAMPV19 = "Covered by CHAMPVA payments (monthly)" 10886 CHAMPV20 = "Covered by CHAMPVA payments (monthly)" 10887 CHAMPV21 = "Covered by CHAMPVA payments (monthly)" 10888 CHAMPV22 = "Covered by CHAMPVA payments (monthly)" 10889 CHAMPV23 = "Covered by CHAMPVA payments (monthly)" 10890 CHAMPV24 = "Covered by CHAMPVA payments (monthly)" 10891 CHAMPV25 = "Covered by CHAMPVA payments (monthly)" 10892 CHAMPV26 = "Covered by CHAMPVA payments (monthly)" 10893 CHAMPV27 = "Covered by CHAMPVA payments (monthly)" 10894 CHAMPV28 = "Covered by CHAMPVA payments (monthly)" 10895 CHAMPV29 = "Covered by CHAMPVA payments (monthly)" 10896 CHAMPV30 = "Covered by CHAMPVA payments (monthly)" 10897 CHAMPV31 = "Covered by CHAMPVA payments (monthly)" 10898 CHAMPV32 = "Covered by CHAMPVA payments (monthly)" 10899 HIOWNC01 = "Covered by private insurance coverage" 10900 HIOWNC02 = "Covered by private insurance coverage" 10901 HIOWNC03 = "Covered by private insurance coverage" 10902 HIOWNC04 = "Covered by private insurance coverage" 10903 HIOWNC05 = "Covered by private insurance coverage" 10904 HIOWNC06 = "Covered by private insurance coverage" 10905 HIOWNC07 = "Covered by private insurance coverage" 10906 HIOWNC08 = "Covered by private insurance coverage" 10907 HIOWNC09 = "Covered by private insurance coverage" 10908 HIOWNC10 = "Covered by private insurance coverage" 10909 HIOWNC11 = "Covered by private insurance coverage" 10910 HIOWNC12 = "Covered by private insurance coverage" 10911 HIOWNC13 = "Covered by private insurance coverage" 10912 HIOWNC14 = "Covered by private insurance coverage" 10913 HIOWNC15 = "Covered by private insurance coverage" 10914 HIOWNC16 = "Covered by private insurance coverage" 147 The SAS System 15:27 Thursday, July 3, 2003 10915 HIOWNC17 = "Covered by private insurance coverage" 10916 HIOWNC18 = "Covered by private insurance coverage" 10917 HIOWNC19 = "Covered by private insurance coverage" 10918 HIOWNC20 = "Covered by private insurance coverage" 10919 HIOWNC21 = "Covered by private insurance coverage" 10920 HIOWNC22 = "Covered by private insurance coverage" 10921 HIOWNC23 = "Covered by private insurance coverage" 10922 HIOWNC24 = "Covered by private insurance coverage" 10923 HIOWNC25 = "Covered by private insurance coverage" 10924 HIOWNC26 = "Covered by private insurance coverage" 10925 HIOWNC27 = "Covered by private insurance coverage" 10926 HIOWNC28 = "Covered by private insurance coverage" 10927 HIOWNC29 = "Covered by private insurance coverage" 10928 HIOWNC30 = "Covered by private insurance coverage" 10929 HIOWNC31 = "Covered by private insurance coverage" 10930 HIOWNC32 = "Covered by private insurance coverage" 10931 HI_OTC01 = "Covered by private insur cov thru some" 10932 HI_OTC02 = "Covered by private insur cov thru some" 10933 HI_OTC03 = "Covered by private insur cov thru some" 10934 HI_OTC04 = "Covered by private insur cov thru some" 10935 HI_OTC05 = "Covered by private insur cov thru some" 10936 HI_OTC06 = "Covered by private insur cov thru some" 10937 HI_OTC07 = "Covered by private insur cov thru some" 10938 HI_OTC08 = "Covered by private insur cov thru some" 10939 HI_OTC09 = "Covered by private insur cov thru some" 10940 HI_OTC10 = "Covered by private insur cov thru some" 10941 HI_OTC11 = "Covered by private insur cov thru some" 10942 HI_OTC12 = "Covered by private insur cov thru some" 10943 HI_OTC13 = "Covered by private insur cov thru some" 10944 HI_OTC14 = "Covered by private insur cov thru some" 10945 HI_OTC15 = "Covered by private insur cov thru some" 10946 HI_OTC16 = "Covered by private insur cov thru some" 10947 HI_OTC17 = "Covered by private insur cov thru some" 10948 HI_OTC18 = "Covered by private insur cov thru some" 10949 HI_OTC19 = "Covered by private insur cov thru some" 10950 HI_OTC20 = "Covered by private insur cov thru some" 10951 HI_OTC21 = "Covered by private insur cov thru some" 10952 HI_OTC22 = "Covered by private insur cov thru some" 10953 HI_OTC23 = "Covered by private insur cov thru some" 10954 HI_OTC24 = "Covered by private insur cov thru some" 10955 HI_OTC25 = "Covered by private insur cov thru some" 10956 HI_OTC26 = "Covered by private insur cov thru some" 10957 HI_OTC27 = "Covered by private insur cov thru some" 10958 HI_OTC28 = "Covered by private insur cov thru some" 10959 HI_OTC29 = "Covered by private insur cov thru some" 10960 HI_OTC30 = "Covered by private insur cov thru some" 10961 HI_OTC31 = "Covered by private insur cov thru some" 10962 HI_OTC32 = "Covered by private insur cov thru some" 10963 HIEMPL01 = "Covered by prv hlth insurance" 10964 HIEMPL02 = "Covered by prv hlth insurance" 10965 HIEMPL03 = "Covered by prv hlth insurance" 10966 HIEMPL04 = "Covered by prv hlth insurance" 10967 HIEMPL05 = "Covered by prv hlth insurance" 10968 HIEMPL06 = "Covered by prv hlth insurance" 10969 HIEMPL07 = "Covered by prv hlth insurance" 10970 HIEMPL08 = "Covered by prv hlth insurance" 10971 HIEMPL09 = "Covered by prv hlth insurance" 10972 HIEMPL10 = "Covered by prv hlth insurance" 10973 HIEMPL11 = "Covered by prv hlth insurance" 10974 HIEMPL12 = "Covered by prv hlth insurance" 10975 HIEMPL13 = "Covered by prv hlth insurance" 10976 HIEMPL14 = "Covered by prv hlth insurance" 10977 HIEMPL15 = "Covered by prv hlth insurance" 10978 HIEMPL16 = "Covered by prv hlth insurance" 10979 HIEMPL17 = "Covered by prv hlth insurance" 10980 HIEMPL18 = "Covered by prv hlth insurance" 10981 HIEMPL19 = "Covered by prv hlth insurance" 10982 HIEMPL20 = "Covered by prv hlth insurance" 10983 HIEMPL21 = "Covered by prv hlth insurance" 10984 HIEMPL22 = "Covered by prv hlth insurance" 10985 HIEMPL23 = "Covered by prv hlth insurance" 10986 HIEMPL24 = "Covered by prv hlth insurance" 10987 HIEMPL25 = "Covered by prv hlth insurance" 10988 HIEMPL26 = "Covered by prv hlth insurance" 10989 HIEMPL27 = "Covered by prv hlth insurance" 10990 HIEMPL28 = "Covered by prv hlth insurance" 148 The SAS System 15:27 Thursday, July 3, 2003 10991 HIEMPL29 = "Covered by prv hlth insurance" 10992 HIEMPL30 = "Covered by prv hlth insurance" 10993 HIEMPL31 = "Covered by prv hlth insurance" 10994 HIEMPL32 = "Covered by prv hlth insurance" 10995 SS_PID01 = "Covered by soc-soc, index number of" 10996 SS_PID02 = "Covered by soc-soc, index number of" 10997 SS_PID03 = "Covered by soc-soc, index number of" 10998 SS_PID04 = "Covered by soc-soc, index number of" 10999 SS_PID05 = "Covered by soc-soc, index number of" 11000 SS_PID06 = "Covered by soc-soc, index number of" 11001 SS_PID07 = "Covered by soc-soc, index number of" 11002 SS_PID08 = "Covered by soc-soc, index number of" 11003 SS_PID09 = "Covered by soc-soc, index number of" 11004 SS_PID10 = "Covered by soc-soc, index number of" 11005 SS_PID11 = "Covered by soc-soc, index number of" 11006 SS_PID12 = "Covered by soc-soc, index number of" 11007 SS_PID13 = "Covered by soc-soc, index number of" 11008 SS_PID14 = "Covered by soc-soc, index number of" 11009 SS_PID15 = "Covered by soc-soc, index number of" 11010 SS_PID16 = "Covered by soc-soc, index number of" 11011 SS_PID17 = "Covered by soc-soc, index number of" 11012 SS_PID18 = "Covered by soc-soc, index number of" 11013 SS_PID19 = "Covered by soc-soc, index number of" 11014 SS_PID20 = "Covered by soc-soc, index number of" 11015 SS_PID21 = "Covered by soc-soc, index number of" 11016 SS_PID22 = "Covered by soc-soc, index number of" 11017 SS_PID23 = "Covered by soc-soc, index number of" 11018 SS_PID24 = "Covered by soc-soc, index number of" 11019 SS_PID25 = "Covered by soc-soc, index number of" 11020 SS_PID26 = "Covered by soc-soc, index number of" 11021 SS_PID27 = "Covered by soc-soc, index number of" 11022 SS_PID28 = "Covered by soc-soc, index number of" 11023 SS_PID29 = "Covered by soc-soc, index number of" 11024 SS_PID30 = "Covered by soc-soc, index number of" 11025 SS_PID31 = "Covered by soc-soc, index number of" 11026 SS_PID32 = "Covered by soc-soc, index number of" 11027 RR_PID01 = "Covered by railroad, index number" 11028 RR_PID02 = "Covered by railroad, index number" 11029 RR_PID03 = "Covered by railroad, index number" 11030 RR_PID04 = "Covered by railroad, index number" 11031 RR_PID05 = "Covered by railroad, index number" 11032 RR_PID06 = "Covered by railroad, index number" 11033 RR_PID07 = "Covered by railroad, index number" 11034 RR_PID08 = "Covered by railroad, index number" 11035 RR_PID09 = "Covered by railroad, index number" 11036 RR_PID10 = "Covered by railroad, index number" 11037 RR_PID11 = "Covered by railroad, index number" 11038 RR_PID12 = "Covered by railroad, index number" 11039 RR_PID13 = "Covered by railroad, index number" 11040 RR_PID14 = "Covered by railroad, index number" 11041 RR_PID15 = "Covered by railroad, index number" 11042 RR_PID16 = "Covered by railroad, index number" 11043 RR_PID17 = "Covered by railroad, index number" 11044 RR_PID18 = "Covered by railroad, index number" 11045 RR_PID19 = "Covered by railroad, index number" 11046 RR_PID20 = "Covered by railroad, index number" 11047 RR_PID21 = "Covered by railroad, index number" 11048 RR_PID22 = "Covered by railroad, index number" 11049 RR_PID23 = "Covered by railroad, index number" 11050 RR_PID24 = "Covered by railroad, index number" 11051 RR_PID25 = "Covered by railroad, index number" 11052 RR_PID26 = "Covered by railroad, index number" 11053 RR_PID27 = "Covered by railroad, index number" 11054 RR_PID28 = "Covered by railroad, index number" 11055 RR_PID29 = "Covered by railroad, index number" 11056 RR_PID30 = "Covered by railroad, index number" 11057 RR_PID31 = "Covered by railroad, index number" 11058 RR_PID32 = "Covered by railroad, index number" 11059 VA_PID01 = "Covered by vets, index number of perso" 11060 VA_PID02 = "Covered by vets, index number of perso" 11061 VA_PID03 = "Covered by vets, index number of perso" 11062 VA_PID04 = "Covered by vets, index number of perso" 11063 VA_PID05 = "Covered by vets, index number of perso" 11064 VA_PID06 = "Covered by vets, index number of perso" 11065 VA_PID07 = "Covered by vets, index number of perso" 11066 VA_PID08 = "Covered by vets, index number of perso" 149 The SAS System 15:27 Thursday, July 3, 2003 11067 VA_PID09 = "Covered by vets, index number of perso" 11068 VA_PID10 = "Covered by vets, index number of perso" 11069 VA_PID11 = "Covered by vets, index number of perso" 11070 VA_PID12 = "Covered by vets, index number of perso" 11071 VA_PID13 = "Covered by vets, index number of perso" 11072 VA_PID14 = "Covered by vets, index number of perso" 11073 VA_PID15 = "Covered by vets, index number of perso" 11074 VA_PID16 = "Covered by vets, index number of perso" 11075 VA_PID17 = "Covered by vets, index number of perso" 11076 VA_PID18 = "Covered by vets, index number of perso" 11077 VA_PID19 = "Covered by vets, index number of perso" 11078 VA_PID20 = "Covered by vets, index number of perso" 11079 VA_PID21 = "Covered by vets, index number of perso" 11080 VA_PID22 = "Covered by vets, index number of perso" 11081 VA_PID23 = "Covered by vets, index number of perso" 11082 VA_PID24 = "Covered by vets, index number of perso" 11083 VA_PID25 = "Covered by vets, index number of perso" 11084 VA_PID26 = "Covered by vets, index number of perso" 11085 VA_PID27 = "Covered by vets, index number of perso" 11086 VA_PID28 = "Covered by vets, index number of perso" 11087 VA_PID29 = "Covered by vets, index number of perso" 11088 VA_PID30 = "Covered by vets, index number of perso" 11089 VA_PID31 = "Covered by vets, index number of perso" 11090 VA_PID32 = "Covered by vets, index number of perso" 11091 AFDCPI01 = "Covered by AFDC, index number of perso" 11092 AFDCPI02 = "Covered by AFDC, index number of perso" 11093 AFDCPI03 = "Covered by AFDC, index number of perso" 11094 AFDCPI04 = "Covered by AFDC, index number of perso" 11095 AFDCPI05 = "Covered by AFDC, index number of perso" 11096 AFDCPI06 = "Covered by AFDC, index number of perso" 11097 AFDCPI07 = "Covered by AFDC, index number of perso" 11098 AFDCPI08 = "Covered by AFDC, index number of perso" 11099 AFDCPI09 = "Covered by AFDC, index number of perso" 11100 AFDCPI10 = "Covered by AFDC, index number of perso" 11101 AFDCPI11 = "Covered by AFDC, index number of perso" 11102 AFDCPI12 = "Covered by AFDC, index number of perso" 11103 AFDCPI13 = "Covered by AFDC, index number of perso" 11104 AFDCPI14 = "Covered by AFDC, index number of perso" 11105 AFDCPI15 = "Covered by AFDC, index number of perso" 11106 AFDCPI16 = "Covered by AFDC, index number of perso" 11107 AFDCPI17 = "Covered by AFDC, index number of perso" 11108 AFDCPI18 = "Covered by AFDC, index number of perso" 11109 AFDCPI19 = "Covered by AFDC, index number of perso" 11110 AFDCPI20 = "Covered by AFDC, index number of perso" 11111 AFDCPI21 = "Covered by AFDC, index number of perso" 11112 AFDCPI22 = "Covered by AFDC, index number of perso" 11113 AFDCPI23 = "Covered by AFDC, index number of perso" 11114 AFDCPI24 = "Covered by AFDC, index number of perso" 11115 AFDCPI25 = "Covered by AFDC, index number of perso" 11116 AFDCPI26 = "Covered by AFDC, index number of perso" 11117 AFDCPI27 = "Covered by AFDC, index number of perso" 11118 AFDCPI28 = "Covered by AFDC, index number of perso" 11119 AFDCPI29 = "Covered by AFDC, index number of perso" 11120 AFDCPI30 = "Covered by AFDC, index number of perso" 11121 AFDCPI31 = "Covered by AFDC, index number of perso" 11122 AFDCPI32 = "Covered by AFDC, index number of perso" 11123 GA_PID01 = "Covered by GEN-ASST, index number" 11124 GA_PID02 = "Covered by GEN-ASST, index number" 11125 GA_PID03 = "Covered by GEN-ASST, index number" 11126 GA_PID04 = "Covered by GEN-ASST, index number" 11127 GA_PID05 = "Covered by GEN-ASST, index number" 11128 GA_PID06 = "Covered by GEN-ASST, index number" 11129 GA_PID07 = "Covered by GEN-ASST, index number" 11130 GA_PID08 = "Covered by GEN-ASST, index number" 11131 GA_PID09 = "Covered by GEN-ASST, index number" 11132 GA_PID10 = "Covered by GEN-ASST, index number" 11133 GA_PID11 = "Covered by GEN-ASST, index number" 11134 GA_PID12 = "Covered by GEN-ASST, index number" 11135 GA_PID13 = "Covered by GEN-ASST, index number" 11136 GA_PID14 = "Covered by GEN-ASST, index number" 11137 GA_PID15 = "Covered by GEN-ASST, index number" 11138 GA_PID16 = "Covered by GEN-ASST, index number" 11139 GA_PID17 = "Covered by GEN-ASST, index number" 11140 GA_PID18 = "Covered by GEN-ASST, index number" 11141 GA_PID19 = "Covered by GEN-ASST, index number" 11142 GA_PID20 = "Covered by GEN-ASST, index number" 150 The SAS System 15:27 Thursday, July 3, 2003 11143 GA_PID21 = "Covered by GEN-ASST, index number" 11144 GA_PID22 = "Covered by GEN-ASST, index number" 11145 GA_PID23 = "Covered by GEN-ASST, index number" 11146 GA_PID24 = "Covered by GEN-ASST, index number" 11147 GA_PID25 = "Covered by GEN-ASST, index number" 11148 GA_PID26 = "Covered by GEN-ASST, index number" 11149 GA_PID27 = "Covered by GEN-ASST, index number" 11150 GA_PID28 = "Covered by GEN-ASST, index number" 11151 GA_PID29 = "Covered by GEN-ASST, index number" 11152 GA_PID30 = "Covered by GEN-ASST, index number" 11153 GA_PID31 = "Covered by GEN-ASST, index number" 11154 GA_PID32 = "Covered by GEN-ASST, index number" 11155 FOSTPI01 = "Covered by FOST-KID, index number" 11156 FOSTPI02 = "Covered by FOST-KID, index number" 11157 FOSTPI03 = "Covered by FOST-KID, index number" 11158 FOSTPI04 = "Covered by FOST-KID, index number" 11159 FOSTPI05 = "Covered by FOST-KID, index number" 11160 FOSTPI06 = "Covered by FOST-KID, index number" 11161 FOSTPI07 = "Covered by FOST-KID, index number" 11162 FOSTPI08 = "Covered by FOST-KID, index number" 11163 FOSTPI09 = "Covered by FOST-KID, index number" 11164 FOSTPI10 = "Covered by FOST-KID, index number" 11165 FOSTPI11 = "Covered by FOST-KID, index number" 11166 FOSTPI12 = "Covered by FOST-KID, index number" 11167 FOSTPI13 = "Covered by FOST-KID, index number" 11168 FOSTPI14 = "Covered by FOST-KID, index number" 11169 FOSTPI15 = "Covered by FOST-KID, index number" 11170 FOSTPI16 = "Covered by FOST-KID, index number" 11171 FOSTPI17 = "Covered by FOST-KID, index number" 11172 FOSTPI18 = "Covered by FOST-KID, index number" 11173 FOSTPI19 = "Covered by FOST-KID, index number" 11174 FOSTPI20 = "Covered by FOST-KID, index number" 11175 FOSTPI21 = "Covered by FOST-KID, index number" 11176 FOSTPI22 = "Covered by FOST-KID, index number" 11177 FOSTPI23 = "Covered by FOST-KID, index number" 11178 FOSTPI24 = "Covered by FOST-KID, index number" 11179 FOSTPI25 = "Covered by FOST-KID, index number" 11180 FOSTPI26 = "Covered by FOST-KID, index number" 11181 FOSTPI27 = "Covered by FOST-KID, index number" 11182 FOSTPI28 = "Covered by FOST-KID, index number" 11183 FOSTPI29 = "Covered by FOST-KID, index number" 11184 FOSTPI30 = "Covered by FOST-KID, index number" 11185 FOSTPI31 = "Covered by FOST-KID, index number" 11186 FOSTPI32 = "Covered by FOST-KID, index number" 11187 OTH_PI01 = "Covered by OTH-WELF (index number" 11188 OTH_PI02 = "Covered by OTH-WELF (index number" 11189 OTH_PI03 = "Covered by OTH-WELF (index number" 11190 OTH_PI04 = "Covered by OTH-WELF (index number" 11191 OTH_PI05 = "Covered by OTH-WELF (index number" 11192 OTH_PI06 = "Covered by OTH-WELF (index number" 11193 OTH_PI07 = "Covered by OTH-WELF (index number" 11194 OTH_PI08 = "Covered by OTH-WELF (index number" 11195 OTH_PI09 = "Covered by OTH-WELF (index number" 11196 OTH_PI10 = "Covered by OTH-WELF (index number" 11197 OTH_PI11 = "Covered by OTH-WELF (index number" 11198 OTH_PI12 = "Covered by OTH-WELF (index number" 11199 OTH_PI13 = "Covered by OTH-WELF (index number" 11200 OTH_PI14 = "Covered by OTH-WELF (index number" 11201 OTH_PI15 = "Covered by OTH-WELF (index number" 11202 OTH_PI16 = "Covered by OTH-WELF (index number" 11203 OTH_PI17 = "Covered by OTH-WELF (index number" 11204 OTH_PI18 = "Covered by OTH-WELF (index number" 11205 OTH_PI19 = "Covered by OTH-WELF (index number" 11206 OTH_PI20 = "Covered by OTH-WELF (index number" 11207 OTH_PI21 = "Covered by OTH-WELF (index number" 11208 OTH_PI22 = "Covered by OTH-WELF (index number" 11209 OTH_PI23 = "Covered by OTH-WELF (index number" 11210 OTH_PI24 = "Covered by OTH-WELF (index number" 11211 OTH_PI25 = "Covered by OTH-WELF (index number" 11212 OTH_PI26 = "Covered by OTH-WELF (index number" 11213 OTH_PI27 = "Covered by OTH-WELF (index number" 11214 OTH_PI28 = "Covered by OTH-WELF (index number" 11215 OTH_PI29 = "Covered by OTH-WELF (index number" 11216 OTH_PI30 = "Covered by OTH-WELF (index number" 11217 OTH_PI31 = "Covered by OTH-WELF (index number" 11218 OTH_PI32 = "Covered by OTH-WELF (index number" 151 The SAS System 15:27 Thursday, July 3, 2003 11219 WIC_PI01 = "Covered by WICCOV, index number of per" 11220 WIC_PI02 = "Covered by WICCOV, index number of per" 11221 WIC_PI03 = "Covered by WICCOV, index number of per" 11222 WIC_PI04 = "Covered by WICCOV, index number of per" 11223 WIC_PI05 = "Covered by WICCOV, index number of per" 11224 WIC_PI06 = "Covered by WICCOV, index number of per" 11225 WIC_PI07 = "Covered by WICCOV, index number of per" 11226 WIC_PI08 = "Covered by WICCOV, index number of per" 11227 WIC_PI09 = "Covered by WICCOV, index number of per" 11228 WIC_PI10 = "Covered by WICCOV, index number of per" 11229 WIC_PI11 = "Covered by WICCOV, index number of per" 11230 WIC_PI12 = "Covered by WICCOV, index number of per" 11231 WIC_PI13 = "Covered by WICCOV, index number of per" 11232 WIC_PI14 = "Covered by WICCOV, index number of per" 11233 WIC_PI15 = "Covered by WICCOV, index number of per" 11234 WIC_PI16 = "Covered by WICCOV, index number of per" 11235 WIC_PI17 = "Covered by WICCOV, index number of per" 11236 WIC_PI18 = "Covered by WICCOV, index number of per" 11237 WIC_PI19 = "Covered by WICCOV, index number of per" 11238 WIC_PI20 = "Covered by WICCOV, index number of per" 11239 WIC_PI21 = "Covered by WICCOV, index number of per" 11240 WIC_PI22 = "Covered by WICCOV, index number of per" 11241 WIC_PI23 = "Covered by WICCOV, index number of per" 11242 WIC_PI24 = "Covered by WICCOV, index number of per" 11243 WIC_PI25 = "Covered by WICCOV, index number of per" 11244 WIC_PI26 = "Covered by WICCOV, index number of per" 11245 WIC_PI27 = "Covered by WICCOV, index number of per" 11246 WIC_PI28 = "Covered by WICCOV, index number of per" 11247 WIC_PI29 = "Covered by WICCOV, index number of per" 11248 WIC_PI30 = "Covered by WICCOV, index number of per" 11249 WIC_PI31 = "Covered by WICCOV, index number of per" 11250 WIC_PI32 = "Covered by WICCOV, index number of per" 11251 FS_PID01 = "Covered by foodstamps, index number of" 11252 FS_PID02 = "Covered by foodstamps, index number of" 11253 FS_PID03 = "Covered by foodstamps, index number of" 11254 FS_PID04 = "Covered by foodstamps, index number of" 11255 FS_PID05 = "Covered by foodstamps, index number of" 11256 FS_PID06 = "Covered by foodstamps, index number of" 11257 FS_PID07 = "Covered by foodstamps, index number of" 11258 FS_PID08 = "Covered by foodstamps, index number of" 11259 FS_PID09 = "Covered by foodstamps, index number of" 11260 FS_PID10 = "Covered by foodstamps, index number of" 11261 FS_PID11 = "Covered by foodstamps, index number of" 11262 FS_PID12 = "Covered by foodstamps, index number of" 11263 FS_PID13 = "Covered by foodstamps, index number of" 11264 FS_PID14 = "Covered by foodstamps, index number of" 11265 FS_PID15 = "Covered by foodstamps, index number of" 11266 FS_PID16 = "Covered by foodstamps, index number of" 11267 FS_PID17 = "Covered by foodstamps, index number of" 11268 FS_PID18 = "Covered by foodstamps, index number of" 11269 FS_PID19 = "Covered by foodstamps, index number of" 11270 FS_PID20 = "Covered by foodstamps, index number of" 11271 FS_PID21 = "Covered by foodstamps, index number of" 11272 FS_PID22 = "Covered by foodstamps, index number of" 11273 FS_PID23 = "Covered by foodstamps, index number of" 11274 FS_PID24 = "Covered by foodstamps, index number of" 11275 FS_PID25 = "Covered by foodstamps, index number of" 11276 FS_PID26 = "Covered by foodstamps, index number of" 11277 FS_PID27 = "Covered by foodstamps, index number of" 11278 FS_PID28 = "Covered by foodstamps, index number of" 11279 FS_PID29 = "Covered by foodstamps, index number of" 11280 FS_PID30 = "Covered by foodstamps, index number of" 11281 FS_PID31 = "Covered by foodstamps, index number of" 11282 FS_PID32 = "Covered by foodstamps, index number of" 11283 WS1_IM01 = "Job 1 imputation flag (monthly)" 11284 WS1_IM02 = "Job 1 imputation flag (monthly)" 11285 WS1_IM03 = "Job 1 imputation flag (monthly)" 11286 WS1_IM04 = "Job 1 imputation flag (monthly)" 11287 WS1_IM05 = "Job 1 imputation flag (monthly)" 11288 WS1_IM06 = "Job 1 imputation flag (monthly)" 11289 WS1_IM07 = "Job 1 imputation flag (monthly)" 11290 WS1_IM08 = "Job 1 imputation flag (monthly)" 11291 WS1_IM09 = "Job 1 imputation flag (monthly)" 11292 WS1_IM10 = "Job 1 imputation flag (monthly)" 11293 WS1_IM11 = "Job 1 imputation flag (monthly)" 11294 WS1_IM12 = "Job 1 imputation flag (monthly)" 152 The SAS System 15:27 Thursday, July 3, 2003 11295 WS1_IM13 = "Job 1 imputation flag (monthly)" 11296 WS1_IM14 = "Job 1 imputation flag (monthly)" 11297 WS1_IM15 = "Job 1 imputation flag (monthly)" 11298 WS1_IM16 = "Job 1 imputation flag (monthly)" 11299 WS1_IM17 = "Job 1 imputation flag (monthly)" 11300 WS1_IM18 = "Job 1 imputation flag (monthly)" 11301 WS1_IM19 = "Job 1 imputation flag (monthly)" 11302 WS1_IM20 = "Job 1 imputation flag (monthly)" 11303 WS1_IM21 = "Job 1 imputation flag (monthly)" 11304 WS1_IM22 = "Job 1 imputation flag (monthly)" 11305 WS1_IM23 = "Job 1 imputation flag (monthly)" 11306 WS1_IM24 = "Job 1 imputation flag (monthly)" 11307 WS1_IM25 = "Job 1 imputation flag (monthly)" 11308 WS1_IM26 = "Job 1 imputation flag (monthly)" 11309 WS1_IM27 = "Job 1 imputation flag (monthly)" 11310 WS1_IM28 = "Job 1 imputation flag (monthly)" 11311 WS1_IM29 = "Job 1 imputation flag (monthly)" 11312 WS1_IM30 = "Job 1 imputation flag (monthly)" 11313 WS1_IM31 = "Job 1 imputation flag (monthly)" 11314 WS1_IM32 = "Job 1 imputation flag (monthly)" 11315 WS2_IM01 = "Job 2 imputation flag (monthly)" 11316 WS2_IM02 = "Job 2 imputation flag (monthly)" 11317 WS2_IM03 = "Job 2 imputation flag (monthly)" 11318 WS2_IM04 = "Job 2 imputation flag (monthly)" 11319 WS2_IM05 = "Job 2 imputation flag (monthly)" 11320 WS2_IM06 = "Job 2 imputation flag (monthly)" 11321 WS2_IM07 = "Job 2 imputation flag (monthly)" 11322 WS2_IM08 = "Job 2 imputation flag (monthly)" 11323 WS2_IM09 = "Job 2 imputation flag (monthly)" 11324 WS2_IM10 = "Job 2 imputation flag (monthly)" 11325 WS2_IM11 = "Job 2 imputation flag (monthly)" 11326 WS2_IM12 = "Job 2 imputation flag (monthly)" 11327 WS2_IM13 = "Job 2 imputation flag (monthly)" 11328 WS2_IM14 = "Job 2 imputation flag (monthly)" 11329 WS2_IM15 = "Job 2 imputation flag (monthly)" 11330 WS2_IM16 = "Job 2 imputation flag (monthly)" 11331 WS2_IM17 = "Job 2 imputation flag (monthly)" 11332 WS2_IM18 = "Job 2 imputation flag (monthly)" 11333 WS2_IM19 = "Job 2 imputation flag (monthly)" 11334 WS2_IM20 = "Job 2 imputation flag (monthly)" 11335 WS2_IM21 = "Job 2 imputation flag (monthly)" 11336 WS2_IM22 = "Job 2 imputation flag (monthly)" 11337 WS2_IM23 = "Job 2 imputation flag (monthly)" 11338 WS2_IM24 = "Job 2 imputation flag (monthly)" 11339 WS2_IM25 = "Job 2 imputation flag (monthly)" 11340 WS2_IM26 = "Job 2 imputation flag (monthly)" 11341 WS2_IM27 = "Job 2 imputation flag (monthly)" 11342 WS2_IM28 = "Job 2 imputation flag (monthly)" 11343 WS2_IM29 = "Job 2 imputation flag (monthly)" 11344 WS2_IM30 = "Job 2 imputation flag (monthly)" 11345 WS2_IM31 = "Job 2 imputation flag (monthly)" 11346 WS2_IM32 = "Job 2 imputation flag (monthly)" 11347 SE1_IM01 = "Self employment business 1" 11348 SE1_IM02 = "Self employment business 1" 11349 SE1_IM03 = "Self employment business 1" 11350 SE1_IM04 = "Self employment business 1" 11351 SE1_IM05 = "Self employment business 1" 11352 SE1_IM06 = "Self employment business 1" 11353 SE1_IM07 = "Self employment business 1" 11354 SE1_IM08 = "Self employment business 1" 11355 SE1_IM09 = "Self employment business 1" 11356 SE1_IM10 = "Self employment business 1" 11357 SE1_IM11 = "Self employment business 1" 11358 SE1_IM12 = "Self employment business 1" 11359 SE1_IM13 = "Self employment business 1" 11360 SE1_IM14 = "Self employment business 1" 11361 SE1_IM15 = "Self employment business 1" 11362 SE1_IM16 = "Self employment business 1" 11363 SE1_IM17 = "Self employment business 1" 11364 SE1_IM18 = "Self employment business 1" 11365 SE1_IM19 = "Self employment business 1" 11366 SE1_IM20 = "Self employment business 1" 11367 SE1_IM21 = "Self employment business 1" 11368 SE1_IM22 = "Self employment business 1" 11369 SE1_IM23 = "Self employment business 1" 11370 SE1_IM24 = "Self employment business 1" 153 The SAS System 15:27 Thursday, July 3, 2003 11371 SE1_IM25 = "Self employment business 1" 11372 SE1_IM26 = "Self employment business 1" 11373 SE1_IM27 = "Self employment business 1" 11374 SE1_IM28 = "Self employment business 1" 11375 SE1_IM29 = "Self employment business 1" 11376 SE1_IM30 = "Self employment business 1" 11377 SE1_IM31 = "Self employment business 1" 11378 SE1_IM32 = "Self employment business 1" 11379 SE2_IM01 = "Self employment business 2" 11380 SE2_IM02 = "Self employment business 2" 11381 SE2_IM03 = "Self employment business 2" 11382 SE2_IM04 = "Self employment business 2" 11383 SE2_IM05 = "Self employment business 2" 11384 SE2_IM06 = "Self employment business 2" 11385 SE2_IM07 = "Self employment business 2" 11386 SE2_IM08 = "Self employment business 2" 11387 SE2_IM09 = "Self employment business 2" 11388 SE2_IM10 = "Self employment business 2" 11389 SE2_IM11 = "Self employment business 2" 11390 SE2_IM12 = "Self employment business 2" 11391 SE2_IM13 = "Self employment business 2" 11392 SE2_IM14 = "Self employment business 2" 11393 SE2_IM15 = "Self employment business 2" 11394 SE2_IM16 = "Self employment business 2" 11395 SE2_IM17 = "Self employment business 2" 11396 SE2_IM18 = "Self employment business 2" 11397 SE2_IM19 = "Self employment business 2" 11398 SE2_IM20 = "Self employment business 2" 11399 SE2_IM21 = "Self employment business 2" 11400 SE2_IM22 = "Self employment business 2" 11401 SE2_IM23 = "Self employment business 2" 11402 SE2_IM24 = "Self employment business 2" 11403 SE2_IM25 = "Self employment business 2" 11404 SE2_IM26 = "Self employment business 2" 11405 SE2_IM27 = "Self employment business 2" 11406 SE2_IM28 = "Self employment business 2" 11407 SE2_IM29 = "Self employment business 2" 11408 SE2_IM30 = "Self employment business 2" 11409 SE2_IM31 = "Self employment business 2" 11410 SE2_IM32 = "Self employment business 2" 11411 G1_I1_01 = "G1 amount 1 imputation flag (monthly)" 11412 G1_I1_02 = "G1 amount 1 imputation flag (monthly)" 11413 G1_I1_03 = "G1 amount 1 imputation flag (monthly)" 11414 G1_I1_04 = "G1 amount 1 imputation flag (monthly)" 11415 G1_I1_05 = "G1 amount 1 imputation flag (monthly)" 11416 G1_I1_06 = "G1 amount 1 imputation flag (monthly)" 11417 G1_I1_07 = "G1 amount 1 imputation flag (monthly)" 11418 G1_I1_08 = "G1 amount 1 imputation flag (monthly)" 11419 G1_I1_09 = "G1 amount 1 imputation flag (monthly)" 11420 G1_I1_10 = "G1 amount 1 imputation flag (monthly)" 11421 G1_I1_11 = "G1 amount 1 imputation flag (monthly)" 11422 G1_I1_12 = "G1 amount 1 imputation flag (monthly)" 11423 G1_I1_13 = "G1 amount 1 imputation flag (monthly)" 11424 G1_I1_14 = "G1 amount 1 imputation flag (monthly)" 11425 G1_I1_15 = "G1 amount 1 imputation flag (monthly)" 11426 G1_I1_16 = "G1 amount 1 imputation flag (monthly)" 11427 G1_I1_17 = "G1 amount 1 imputation flag (monthly)" 11428 G1_I1_18 = "G1 amount 1 imputation flag (monthly)" 11429 G1_I1_19 = "G1 amount 1 imputation flag (monthly)" 11430 G1_I1_20 = "G1 amount 1 imputation flag (monthly)" 11431 G1_I1_21 = "G1 amount 1 imputation flag (monthly)" 11432 G1_I1_22 = "G1 amount 1 imputation flag (monthly)" 11433 G1_I1_23 = "G1 amount 1 imputation flag (monthly)" 11434 G1_I1_24 = "G1 amount 1 imputation flag (monthly)" 11435 G1_I1_25 = "G1 amount 1 imputation flag (monthly)" 11436 G1_I1_26 = "G1 amount 1 imputation flag (monthly)" 11437 G1_I1_27 = "G1 amount 1 imputation flag (monthly)" 11438 G1_I1_28 = "G1 amount 1 imputation flag (monthly)" 11439 G1_I1_29 = "G1 amount 1 imputation flag (monthly)" 11440 G1_I1_30 = "G1 amount 1 imputation flag (monthly)" 11441 G1_I1_31 = "G1 amount 1 imputation flag (monthly)" 11442 G1_I1_32 = "G1 amount 1 imputation flag (monthly)" 11443 G1_I2_01 = "G1 amount 2 imputation flag (monthly)" 11444 G1_I2_02 = "G1 amount 2 imputation flag (monthly)" 11445 G1_I2_03 = "G1 amount 2 imputation flag (monthly)" 11446 G1_I2_04 = "G1 amount 2 imputation flag (monthly)" 154 The SAS System 15:27 Thursday, July 3, 2003 11447 G1_I2_05 = "G1 amount 2 imputation flag (monthly)" 11448 G1_I2_06 = "G1 amount 2 imputation flag (monthly)" 11449 G1_I2_07 = "G1 amount 2 imputation flag (monthly)" 11450 G1_I2_08 = "G1 amount 2 imputation flag (monthly)" 11451 G1_I2_09 = "G1 amount 2 imputation flag (monthly)" 11452 G1_I2_10 = "G1 amount 2 imputation flag (monthly)" 11453 G1_I2_11 = "G1 amount 2 imputation flag (monthly)" 11454 G1_I2_12 = "G1 amount 2 imputation flag (monthly)" 11455 G1_I2_13 = "G1 amount 2 imputation flag (monthly)" 11456 G1_I2_14 = "G1 amount 2 imputation flag (monthly)" 11457 G1_I2_15 = "G1 amount 2 imputation flag (monthly)" 11458 G1_I2_16 = "G1 amount 2 imputation flag (monthly)" 11459 G1_I2_17 = "G1 amount 2 imputation flag (monthly)" 11460 G1_I2_18 = "G1 amount 2 imputation flag (monthly)" 11461 G1_I2_19 = "G1 amount 2 imputation flag (monthly)" 11462 G1_I2_20 = "G1 amount 2 imputation flag (monthly)" 11463 G1_I2_21 = "G1 amount 2 imputation flag (monthly)" 11464 G1_I2_22 = "G1 amount 2 imputation flag (monthly)" 11465 G1_I2_23 = "G1 amount 2 imputation flag (monthly)" 11466 G1_I2_24 = "G1 amount 2 imputation flag (monthly)" 11467 G1_I2_25 = "G1 amount 2 imputation flag (monthly)" 11468 G1_I2_26 = "G1 amount 2 imputation flag (monthly)" 11469 G1_I2_27 = "G1 amount 2 imputation flag (monthly)" 11470 G1_I2_28 = "G1 amount 2 imputation flag (monthly)" 11471 G1_I2_29 = "G1 amount 2 imputation flag (monthly)" 11472 G1_I2_30 = "G1 amount 2 imputation flag (monthly)" 11473 G1_I2_31 = "G1 amount 2 imputation flag (monthly)" 11474 G1_I2_32 = "G1 amount 2 imputation flag (monthly)" 11475 G1_I3_01 = "G1 amount 3 imputation flag (monthly)" 11476 G1_I3_02 = "G1 amount 3 imputation flag (monthly)" 11477 G1_I3_03 = "G1 amount 3 imputation flag (monthly)" 11478 G1_I3_04 = "G1 amount 3 imputation flag (monthly)" 11479 G1_I3_05 = "G1 amount 3 imputation flag (monthly)" 11480 G1_I3_06 = "G1 amount 3 imputation flag (monthly)" 11481 G1_I3_07 = "G1 amount 3 imputation flag (monthly)" 11482 G1_I3_08 = "G1 amount 3 imputation flag (monthly)" 11483 G1_I3_09 = "G1 amount 3 imputation flag (monthly)" 11484 G1_I3_10 = "G1 amount 3 imputation flag (monthly)" 11485 G1_I3_11 = "G1 amount 3 imputation flag (monthly)" 11486 G1_I3_12 = "G1 amount 3 imputation flag (monthly)" 11487 G1_I3_13 = "G1 amount 3 imputation flag (monthly)" 11488 G1_I3_14 = "G1 amount 3 imputation flag (monthly)" 11489 G1_I3_15 = "G1 amount 3 imputation flag (monthly)" 11490 G1_I3_16 = "G1 amount 3 imputation flag (monthly)" 11491 G1_I3_17 = "G1 amount 3 imputation flag (monthly)" 11492 G1_I3_18 = "G1 amount 3 imputation flag (monthly)" 11493 G1_I3_19 = "G1 amount 3 imputation flag (monthly)" 11494 G1_I3_20 = "G1 amount 3 imputation flag (monthly)" 11495 G1_I3_21 = "G1 amount 3 imputation flag (monthly)" 11496 G1_I3_22 = "G1 amount 3 imputation flag (monthly)" 11497 G1_I3_23 = "G1 amount 3 imputation flag (monthly)" 11498 G1_I3_24 = "G1 amount 3 imputation flag (monthly)" 11499 G1_I3_25 = "G1 amount 3 imputation flag (monthly)" 11500 G1_I3_26 = "G1 amount 3 imputation flag (monthly)" 11501 G1_I3_27 = "G1 amount 3 imputation flag (monthly)" 11502 G1_I3_28 = "G1 amount 3 imputation flag (monthly)" 11503 G1_I3_29 = "G1 amount 3 imputation flag (monthly)" 11504 G1_I3_30 = "G1 amount 3 imputation flag (monthly)" 11505 G1_I3_31 = "G1 amount 3 imputation flag (monthly)" 11506 G1_I3_32 = "G1 amount 3 imputation flag (monthly)" 11507 G1_I4_01 = "G1 amount 4 imputation flag (monthly)" 11508 G1_I4_02 = "G1 amount 4 imputation flag (monthly)" 11509 G1_I4_03 = "G1 amount 4 imputation flag (monthly)" 11510 G1_I4_04 = "G1 amount 4 imputation flag (monthly)" 11511 G1_I4_05 = "G1 amount 4 imputation flag (monthly)" 11512 G1_I4_06 = "G1 amount 4 imputation flag (monthly)" 11513 G1_I4_07 = "G1 amount 4 imputation flag (monthly)" 11514 G1_I4_08 = "G1 amount 4 imputation flag (monthly)" 11515 G1_I4_09 = "G1 amount 4 imputation flag (monthly)" 11516 G1_I4_10 = "G1 amount 4 imputation flag (monthly)" 11517 G1_I4_11 = "G1 amount 4 imputation flag (monthly)" 11518 G1_I4_12 = "G1 amount 4 imputation flag (monthly)" 11519 G1_I4_13 = "G1 amount 4 imputation flag (monthly)" 11520 G1_I4_14 = "G1 amount 4 imputation flag (monthly)" 11521 G1_I4_15 = "G1 amount 4 imputation flag (monthly)" 11522 G1_I4_16 = "G1 amount 4 imputation flag (monthly)" 155 The SAS System 15:27 Thursday, July 3, 2003 11523 G1_I4_17 = "G1 amount 4 imputation flag (monthly)" 11524 G1_I4_18 = "G1 amount 4 imputation flag (monthly)" 11525 G1_I4_19 = "G1 amount 4 imputation flag (monthly)" 11526 G1_I4_20 = "G1 amount 4 imputation flag (monthly)" 11527 G1_I4_21 = "G1 amount 4 imputation flag (monthly)" 11528 G1_I4_22 = "G1 amount 4 imputation flag (monthly)" 11529 G1_I4_23 = "G1 amount 4 imputation flag (monthly)" 11530 G1_I4_24 = "G1 amount 4 imputation flag (monthly)" 11531 G1_I4_25 = "G1 amount 4 imputation flag (monthly)" 11532 G1_I4_26 = "G1 amount 4 imputation flag (monthly)" 11533 G1_I4_27 = "G1 amount 4 imputation flag (monthly)" 11534 G1_I4_28 = "G1 amount 4 imputation flag (monthly)" 11535 G1_I4_29 = "G1 amount 4 imputation flag (monthly)" 11536 G1_I4_30 = "G1 amount 4 imputation flag (monthly)" 11537 G1_I4_31 = "G1 amount 4 imputation flag (monthly)" 11538 G1_I4_32 = "G1 amount 4 imputation flag (monthly)" 11539 G11_IM01 = "G1 amt 5 imp flag (monthly)" 11540 G11_IM02 = "G1 amt 5 imp flag (monthly)" 11541 G11_IM03 = "G1 amt 5 imp flag (monthly)" 11542 G11_IM04 = "G1 amt 5 imp flag (monthly)" 11543 G11_IM05 = "G1 amt 5 imp flag (monthly)" 11544 G11_IM06 = "G1 amt 5 imp flag (monthly)" 11545 G11_IM07 = "G1 amt 5 imp flag (monthly)" 11546 G11_IM08 = "G1 amt 5 imp flag (monthly)" 11547 G11_IM09 = "G1 amt 5 imp flag (monthly)" 11548 G11_IM10 = "G1 amt 5 imp flag (monthly)" 11549 G11_IM11 = "G1 amt 5 imp flag (monthly)" 11550 G11_IM12 = "G1 amt 5 imp flag (monthly)" 11551 G11_IM13 = "G1 amt 5 imp flag (monthly)" 11552 G11_IM14 = "G1 amt 5 imp flag (monthly)" 11553 G11_IM15 = "G1 amt 5 imp flag (monthly)" 11554 G11_IM16 = "G1 amt 5 imp flag (monthly)" 11555 G11_IM17 = "G1 amt 5 imp flag (monthly)" 11556 G11_IM18 = "G1 amt 5 imp flag (monthly)" 11557 G11_IM19 = "G1 amt 5 imp flag (monthly)" 11558 G11_IM20 = "G1 amt 5 imp flag (monthly)" 11559 G11_IM21 = "G1 amt 5 imp flag (monthly)" 11560 G11_IM22 = "G1 amt 5 imp flag (monthly)" 11561 G11_IM23 = "G1 amt 5 imp flag (monthly)" 11562 G11_IM24 = "G1 amt 5 imp flag (monthly)" 11563 G11_IM25 = "G1 amt 5 imp flag (monthly)" 11564 G11_IM26 = "G1 amt 5 imp flag (monthly)" 11565 G11_IM27 = "G1 amt 5 imp flag (monthly)" 11566 G11_IM28 = "G1 amt 5 imp flag (monthly)" 11567 G11_IM29 = "G1 amt 5 imp flag (monthly)" 11568 G11_IM30 = "G1 amt 5 imp flag (monthly)" 11569 G11_IM31 = "G1 amt 5 imp flag (monthly)" 11570 G11_IM32 = "G1 amt 5 imp flag (monthly)" 11571 G1_I6_01 = "G1 amount 6 imputation flag (monthly)" 11572 G1_I6_02 = "G1 amount 6 imputation flag (monthly)" 11573 G1_I6_03 = "G1 amount 6 imputation flag (monthly)" 11574 G1_I6_04 = "G1 amount 6 imputation flag (monthly)" 11575 G1_I6_05 = "G1 amount 6 imputation flag (monthly)" 11576 G1_I6_06 = "G1 amount 6 imputation flag (monthly)" 11577 G1_I6_07 = "G1 amount 6 imputation flag (monthly)" 11578 G1_I6_08 = "G1 amount 6 imputation flag (monthly)" 11579 G1_I6_09 = "G1 amount 6 imputation flag (monthly)" 11580 G1_I6_10 = "G1 amount 6 imputation flag (monthly)" 11581 G1_I6_11 = "G1 amount 6 imputation flag (monthly)" 11582 G1_I6_12 = "G1 amount 6 imputation flag (monthly)" 11583 G1_I6_13 = "G1 amount 6 imputation flag (monthly)" 11584 G1_I6_14 = "G1 amount 6 imputation flag (monthly)" 11585 G1_I6_15 = "G1 amount 6 imputation flag (monthly)" 11586 G1_I6_16 = "G1 amount 6 imputation flag (monthly)" 11587 G1_I6_17 = "G1 amount 6 imputation flag (monthly)" 11588 G1_I6_18 = "G1 amount 6 imputation flag (monthly)" 11589 G1_I6_19 = "G1 amount 6 imputation flag (monthly)" 11590 G1_I6_20 = "G1 amount 6 imputation flag (monthly)" 11591 G1_I6_21 = "G1 amount 6 imputation flag (monthly)" 11592 G1_I6_22 = "G1 amount 6 imputation flag (monthly)" 11593 G1_I6_23 = "G1 amount 6 imputation flag (monthly)" 11594 G1_I6_24 = "G1 amount 6 imputation flag (monthly)" 11595 G1_I6_25 = "G1 amount 6 imputation flag (monthly)" 11596 G1_I6_26 = "G1 amount 6 imputation flag (monthly)" 11597 G1_I6_27 = "G1 amount 6 imputation flag (monthly)" 11598 G1_I6_28 = "G1 amount 6 imputation flag (monthly)" 156 The SAS System 15:27 Thursday, July 3, 2003 11599 G1_I6_29 = "G1 amount 6 imputation flag (monthly)" 11600 G1_I6_30 = "G1 amount 6 imputation flag (monthly)" 11601 G1_I6_31 = "G1 amount 6 imputation flag (monthly)" 11602 G1_I6_32 = "G1 amount 6 imputation flag (monthly)" 11603 G1_I7_01 = "G1 amount 7 imputation flag (monthly)" 11604 G1_I7_02 = "G1 amount 7 imputation flag (monthly)" 11605 G1_I7_03 = "G1 amount 7 imputation flag (monthly)" 11606 G1_I7_04 = "G1 amount 7 imputation flag (monthly)" 11607 G1_I7_05 = "G1 amount 7 imputation flag (monthly)" 11608 G1_I7_06 = "G1 amount 7 imputation flag (monthly)" 11609 G1_I7_07 = "G1 amount 7 imputation flag (monthly)" 11610 G1_I7_08 = "G1 amount 7 imputation flag (monthly)" 11611 G1_I7_09 = "G1 amount 7 imputation flag (monthly)" 11612 G1_I7_10 = "G1 amount 7 imputation flag (monthly)" 11613 G1_I7_11 = "G1 amount 7 imputation flag (monthly)" 11614 G1_I7_12 = "G1 amount 7 imputation flag (monthly)" 11615 G1_I7_13 = "G1 amount 7 imputation flag (monthly)" 11616 G1_I7_14 = "G1 amount 7 imputation flag (monthly)" 11617 G1_I7_15 = "G1 amount 7 imputation flag (monthly)" 11618 G1_I7_16 = "G1 amount 7 imputation flag (monthly)" 11619 G1_I7_17 = "G1 amount 7 imputation flag (monthly)" 11620 G1_I7_18 = "G1 amount 7 imputation flag (monthly)" 11621 G1_I7_19 = "G1 amount 7 imputation flag (monthly)" 11622 G1_I7_20 = "G1 amount 7 imputation flag (monthly)" 11623 G1_I7_21 = "G1 amount 7 imputation flag (monthly)" 11624 G1_I7_22 = "G1 amount 7 imputation flag (monthly)" 11625 G1_I7_23 = "G1 amount 7 imputation flag (monthly)" 11626 G1_I7_24 = "G1 amount 7 imputation flag (monthly)" 11627 G1_I7_25 = "G1 amount 7 imputation flag (monthly)" 11628 G1_I7_26 = "G1 amount 7 imputation flag (monthly)" 11629 G1_I7_27 = "G1 amount 7 imputation flag (monthly)" 11630 G1_I7_28 = "G1 amount 7 imputation flag (monthly)" 11631 G1_I7_29 = "G1 amount 7 imputation flag (monthly)" 11632 G1_I7_30 = "G1 amount 7 imputation flag (monthly)" 11633 G1_I7_31 = "G1 amount 7 imputation flag (monthly)" 11634 G1_I7_32 = "G1 amount 7 imputation flag (monthly)" 11635 G1_I8_01 = "G1 amount 8 imputation flag (monthly)" 11636 G1_I8_02 = "G1 amount 8 imputation flag (monthly)" 11637 G1_I8_03 = "G1 amount 8 imputation flag (monthly)" 11638 G1_I8_04 = "G1 amount 8 imputation flag (monthly)" 11639 G1_I8_05 = "G1 amount 8 imputation flag (monthly)" 11640 G1_I8_06 = "G1 amount 8 imputation flag (monthly)" 11641 G1_I8_07 = "G1 amount 8 imputation flag (monthly)" 11642 G1_I8_08 = "G1 amount 8 imputation flag (monthly)" 11643 G1_I8_09 = "G1 amount 8 imputation flag (monthly)" 11644 G1_I8_10 = "G1 amount 8 imputation flag (monthly)" 11645 G1_I8_11 = "G1 amount 8 imputation flag (monthly)" 11646 G1_I8_12 = "G1 amount 8 imputation flag (monthly)" 11647 G1_I8_13 = "G1 amount 8 imputation flag (monthly)" 11648 G1_I8_14 = "G1 amount 8 imputation flag (monthly)" 11649 G1_I8_15 = "G1 amount 8 imputation flag (monthly)" 11650 G1_I8_16 = "G1 amount 8 imputation flag (monthly)" 11651 G1_I8_17 = "G1 amount 8 imputation flag (monthly)" 11652 G1_I8_18 = "G1 amount 8 imputation flag (monthly)" 11653 G1_I8_19 = "G1 amount 8 imputation flag (monthly)" 11654 G1_I8_20 = "G1 amount 8 imputation flag (monthly)" 11655 G1_I8_21 = "G1 amount 8 imputation flag (monthly)" 11656 G1_I8_22 = "G1 amount 8 imputation flag (monthly)" 11657 G1_I8_23 = "G1 amount 8 imputation flag (monthly)" 11658 G1_I8_24 = "G1 amount 8 imputation flag (monthly)" 11659 G1_I8_25 = "G1 amount 8 imputation flag (monthly)" 11660 G1_I8_26 = "G1 amount 8 imputation flag (monthly)" 11661 G1_I8_27 = "G1 amount 8 imputation flag (monthly)" 11662 G1_I8_28 = "G1 amount 8 imputation flag (monthly)" 11663 G1_I8_29 = "G1 amount 8 imputation flag (monthly)" 11664 G1_I8_30 = "G1 amount 8 imputation flag (monthly)" 11665 G1_I8_31 = "G1 amount 8 imputation flag (monthly)" 11666 G1_I8_32 = "G1 amount 8 imputation flag (monthly)" 11667 G1_I9_01 = "G1 amt 9 imp flag (monthly)" 11668 G1_I9_02 = "G1 amt 9 imp flag (monthly)" 11669 G1_I9_03 = "G1 amt 9 imp flag (monthly)" 11670 G1_I9_04 = "G1 amt 9 imp flag (monthly)" 11671 G1_I9_05 = "G1 amt 9 imp flag (monthly)" 11672 G1_I9_06 = "G1 amt 9 imp flag (monthly)" 11673 G1_I9_07 = "G1 amt 9 imp flag (monthly)" 11674 G1_I9_08 = "G1 amt 9 imp flag (monthly)" 157 The SAS System 15:27 Thursday, July 3, 2003 11675 G1_I9_09 = "G1 amt 9 imp flag (monthly)" 11676 G1_I9_10 = "G1 amt 9 imp flag (monthly)" 11677 G1_I9_11 = "G1 amt 9 imp flag (monthly)" 11678 G1_I9_12 = "G1 amt 9 imp flag (monthly)" 11679 G1_I9_13 = "G1 amt 9 imp flag (monthly)" 11680 G1_I9_14 = "G1 amt 9 imp flag (monthly)" 11681 G1_I9_15 = "G1 amt 9 imp flag (monthly)" 11682 G1_I9_16 = "G1 amt 9 imp flag (monthly)" 11683 G1_I9_17 = "G1 amt 9 imp flag (monthly)" 11684 G1_I9_18 = "G1 amt 9 imp flag (monthly)" 11685 G1_I9_19 = "G1 amt 9 imp flag (monthly)" 11686 G1_I9_20 = "G1 amt 9 imp flag (monthly)" 11687 G1_I9_21 = "G1 amt 9 imp flag (monthly)" 11688 G1_I9_22 = "G1 amt 9 imp flag (monthly)" 11689 G1_I9_23 = "G1 amt 9 imp flag (monthly)" 11690 G1_I9_24 = "G1 amt 9 imp flag (monthly)" 11691 G1_I9_25 = "G1 amt 9 imp flag (monthly)" 11692 G1_I9_26 = "G1 amt 9 imp flag (monthly)" 11693 G1_I9_27 = "G1 amt 9 imp flag (monthly)" 11694 G1_I9_28 = "G1 amt 9 imp flag (monthly)" 11695 G1_I9_29 = "G1 amt 9 imp flag (monthly)" 11696 G1_I9_30 = "G1 amt 9 imp flag (monthly)" 11697 G1_I9_31 = "G1 amt 9 imp flag (monthly)" 11698 G1_I9_32 = "G1 amt 9 imp flag (monthly)" 11699 G1_I1001 = "G1 amount 10 imputation flag (monthly)" 11700 G1_I1002 = "G1 amount 10 imputation flag (monthly)" 11701 G1_I1003 = "G1 amount 10 imputation flag (monthly)" 11702 G1_I1004 = "G1 amount 10 imputation flag (monthly)" 11703 G1_I1005 = "G1 amount 10 imputation flag (monthly)" 11704 G1_I1006 = "G1 amount 10 imputation flag (monthly)" 11705 G1_I1007 = "G1 amount 10 imputation flag (monthly)" 11706 G1_I1008 = "G1 amount 10 imputation flag (monthly)" 11707 G1_I1009 = "G1 amount 10 imputation flag (monthly)" 11708 G1_I1010 = "G1 amount 10 imputation flag (monthly)" 11709 G1_I1011 = "G1 amount 10 imputation flag (monthly)" 11710 G1_I1012 = "G1 amount 10 imputation flag (monthly)" 11711 G1_I1013 = "G1 amount 10 imputation flag (monthly)" 11712 G1_I1014 = "G1 amount 10 imputation flag (monthly)" 11713 G1_I1015 = "G1 amount 10 imputation flag (monthly)" 11714 G1_I1016 = "G1 amount 10 imputation flag (monthly)" 11715 G1_I1017 = "G1 amount 10 imputation flag (monthly)" 11716 G1_I1018 = "G1 amount 10 imputation flag (monthly)" 11717 G1_I1019 = "G1 amount 10 imputation flag (monthly)" 11718 G1_I1020 = "G1 amount 10 imputation flag (monthly)" 11719 G1_I1021 = "G1 amount 10 imputation flag (monthly)" 11720 G1_I1022 = "G1 amount 10 imputation flag (monthly)" 11721 G1_I1023 = "G1 amount 10 imputation flag (monthly)" 11722 G1_I1024 = "G1 amount 10 imputation flag (monthly)" 11723 G1_I1025 = "G1 amount 10 imputation flag (monthly)" 11724 G1_I1026 = "G1 amount 10 imputation flag (monthly)" 11725 G1_I1027 = "G1 amount 10 imputation flag (monthly)" 11726 G1_I1028 = "G1 amount 10 imputation flag (monthly)" 11727 G1_I1029 = "G1 amount 10 imputation flag (monthly)" 11728 G1_I1030 = "G1 amount 10 imputation flag (monthly)" 11729 G1_I1031 = "G1 amount 10 imputation flag (monthly)" 11730 G1_I1032 = "G1 amount 10 imputation flag (monthly)" 11731 G2I10001 = "G2 income imputation flag (100) (month" 11732 G2I10002 = "G2 income imputation flag (100) (month" 11733 G2I10003 = "G2 income imputation flag (100) (month" 11734 G2I10004 = "G2 income imputation flag (100) (month" 11735 G2I10005 = "G2 income imputation flag (100) (month" 11736 G2I10006 = "G2 income imputation flag (100) (month" 11737 G2I10007 = "G2 income imputation flag (100) (month" 11738 G2I10008 = "G2 income imputation flag (100) (month" 11739 G2I10009 = "G2 income imputation flag (100) (month" 11740 G2I10010 = "G2 income imputation flag (100) (month" 11741 G2I10011 = "G2 income imputation flag (100) (month" 11742 G2I10012 = "G2 income imputation flag (100) (month" 11743 G2I10013 = "G2 income imputation flag (100) (month" 11744 G2I10014 = "G2 income imputation flag (100) (month" 11745 G2I10015 = "G2 income imputation flag (100) (month" 11746 G2I10016 = "G2 income imputation flag (100) (month" 11747 G2I10017 = "G2 income imputation flag (100) (month" 11748 G2I10018 = "G2 income imputation flag (100) (month" 11749 G2I10019 = "G2 income imputation flag (100) (month" 11750 G2I10020 = "G2 income imputation flag (100) (month" 158 The SAS System 15:27 Thursday, July 3, 2003 11751 G2I10021 = "G2 income imputation flag (100) (month" 11752 G2I10022 = "G2 income imputation flag (100) (month" 11753 G2I10023 = "G2 income imputation flag (100) (month" 11754 G2I10024 = "G2 income imputation flag (100) (month" 11755 G2I10025 = "G2 income imputation flag (100) (month" 11756 G2I10026 = "G2 income imputation flag (100) (month" 11757 G2I10027 = "G2 income imputation flag (100) (month" 11758 G2I10028 = "G2 income imputation flag (100) (month" 11759 G2I10029 = "G2 income imputation flag (100) (month" 11760 G2I10030 = "G2 income imputation flag (100) (month" 11761 G2I10031 = "G2 income imputation flag (100) (month" 11762 G2I10032 = "G2 income imputation flag (100) (month" 11763 G2I10401 = "G2 income imputation flag (104) (month" 11764 G2I10402 = "G2 income imputation flag (104) (month" 11765 G2I10403 = "G2 income imputation flag (104) (month" 11766 G2I10404 = "G2 income imputation flag (104) (month" 11767 G2I10405 = "G2 income imputation flag (104) (month" 11768 G2I10406 = "G2 income imputation flag (104) (month" 11769 G2I10407 = "G2 income imputation flag (104) (month" 11770 G2I10408 = "G2 income imputation flag (104) (month" 11771 G2I10409 = "G2 income imputation flag (104) (month" 11772 G2I10410 = "G2 income imputation flag (104) (month" 11773 G2I10411 = "G2 income imputation flag (104) (month" 11774 G2I10412 = "G2 income imputation flag (104) (month" 11775 G2I10413 = "G2 income imputation flag (104) (month" 11776 G2I10414 = "G2 income imputation flag (104) (month" 11777 G2I10415 = "G2 income imputation flag (104) (month" 11778 G2I10416 = "G2 income imputation flag (104) (month" 11779 G2I10417 = "G2 income imputation flag (104) (month" 11780 G2I10418 = "G2 income imputation flag (104) (month" 11781 G2I10419 = "G2 income imputation flag (104) (month" 11782 G2I10420 = "G2 income imputation flag (104) (month" 11783 G2I10421 = "G2 income imputation flag (104) (month" 11784 G2I10422 = "G2 income imputation flag (104) (month" 11785 G2I10423 = "G2 income imputation flag (104) (month" 11786 G2I10424 = "G2 income imputation flag (104) (month" 11787 G2I10425 = "G2 income imputation flag (104) (month" 11788 G2I10426 = "G2 income imputation flag (104) (month" 11789 G2I10427 = "G2 income imputation flag (104) (month" 11790 G2I10428 = "G2 income imputation flag (104) (month" 11791 G2I10429 = "G2 income imputation flag (104) (month" 11792 G2I10430 = "G2 income imputation flag (104) (month" 11793 G2I10431 = "G2 income imputation flag (104) (month" 11794 G2I10432 = "G2 income imputation flag (104) (month" 11795 G2I11001 = "G2 income imputation flag (110) (month" 11796 G2I11002 = "G2 income imputation flag (110) (month" 11797 G2I11003 = "G2 income imputation flag (110) (month" 11798 G2I11004 = "G2 income imputation flag (110) (month" 11799 G2I11005 = "G2 income imputation flag (110) (month" 11800 G2I11006 = "G2 income imputation flag (110) (month" 11801 G2I11007 = "G2 income imputation flag (110) (month" 11802 G2I11008 = "G2 income imputation flag (110) (month" 11803 G2I11009 = "G2 income imputation flag (110) (month" 11804 G2I11010 = "G2 income imputation flag (110) (month" 11805 G2I11011 = "G2 income imputation flag (110) (month" 11806 G2I11012 = "G2 income imputation flag (110) (month" 11807 G2I11013 = "G2 income imputation flag (110) (month" 11808 G2I11014 = "G2 income imputation flag (110) (month" 11809 G2I11015 = "G2 income imputation flag (110) (month" 11810 G2I11016 = "G2 income imputation flag (110) (month" 11811 G2I11017 = "G2 income imputation flag (110) (month" 11812 G2I11018 = "G2 income imputation flag (110) (month" 11813 G2I11019 = "G2 income imputation flag (110) (month" 11814 G2I11020 = "G2 income imputation flag (110) (month" 11815 G2I11021 = "G2 income imputation flag (110) (month" 11816 G2I11022 = "G2 income imputation flag (110) (month" 11817 G2I11023 = "G2 income imputation flag (110) (month" 11818 G2I11024 = "G2 income imputation flag (110) (month" 11819 G2I11025 = "G2 income imputation flag (110) (month" 11820 G2I11026 = "G2 income imputation flag (110) (month" 11821 G2I11027 = "G2 income imputation flag (110) (month" 11822 G2I11028 = "G2 income imputation flag (110) (month" 11823 G2I11029 = "G2 income imputation flag (110) (month" 11824 G2I11030 = "G2 income imputation flag (110) (month" 11825 G2I11031 = "G2 income imputation flag (110) (month" 11826 G2I11032 = "G2 income imputation flag (110) (month" 159 The SAS System 15:27 Thursday, July 3, 2003 11827 G2I12001 = "G2 income imputation flag (120) (month" 11828 G2I12002 = "G2 income imputation flag (120) (month" 11829 G2I12003 = "G2 income imputation flag (120) (month" 11830 G2I12004 = "G2 income imputation flag (120) (month" 11831 G2I12005 = "G2 income imputation flag (120) (month" 11832 G2I12006 = "G2 income imputation flag (120) (month" 11833 G2I12007 = "G2 income imputation flag (120) (month" 11834 G2I12008 = "G2 income imputation flag (120) (month" 11835 G2I12009 = "G2 income imputation flag (120) (month" 11836 G2I12010 = "G2 income imputation flag (120) (month" 11837 G2I12011 = "G2 income imputation flag (120) (month" 11838 G2I12012 = "G2 income imputation flag (120) (month" 11839 G2I12013 = "G2 income imputation flag (120) (month" 11840 G2I12014 = "G2 income imputation flag (120) (month" 11841 G2I12015 = "G2 income imputation flag (120) (month" 11842 G2I12016 = "G2 income imputation flag (120) (month" 11843 G2I12017 = "G2 income imputation flag (120) (month" 11844 G2I12018 = "G2 income imputation flag (120) (month" 11845 G2I12019 = "G2 income imputation flag (120) (month" 11846 G2I12020 = "G2 income imputation flag (120) (month" 11847 G2I12021 = "G2 income imputation flag (120) (month" 11848 G2I12022 = "G2 income imputation flag (120) (month" 11849 G2I12023 = "G2 income imputation flag (120) (month" 11850 G2I12024 = "G2 income imputation flag (120) (month" 11851 G2I12025 = "G2 income imputation flag (120) (month" 11852 G2I12026 = "G2 income imputation flag (120) (month" 11853 G2I12027 = "G2 income imputation flag (120) (month" 11854 G2I12028 = "G2 income imputation flag (120) (month" 11855 G2I12029 = "G2 income imputation flag (120) (month" 11856 G2I12030 = "G2 income imputation flag (120) (month" 11857 G2I12031 = "G2 income imputation flag (120) (month" 11858 G2I12032 = "G2 income imputation flag (120) (month" 11859 G2I13001 = "G2 income imputation flag (130) (month" 11860 G2I13002 = "G2 income imputation flag (130) (month" 11861 G2I13003 = "G2 income imputation flag (130) (month" 11862 G2I13004 = "G2 income imputation flag (130) (month" 11863 G2I13005 = "G2 income imputation flag (130) (month" 11864 G2I13006 = "G2 income imputation flag (130) (month" 11865 G2I13007 = "G2 income imputation flag (130) (month" 11866 G2I13008 = "G2 income imputation flag (130) (month" 11867 G2I13009 = "G2 income imputation flag (130) (month" 11868 G2I13010 = "G2 income imputation flag (130) (month" 11869 G2I13011 = "G2 income imputation flag (130) (month" 11870 G2I13012 = "G2 income imputation flag (130) (month" 11871 G2I13013 = "G2 income imputation flag (130) (month" 11872 G2I13014 = "G2 income imputation flag (130) (month" 11873 G2I13015 = "G2 income imputation flag (130) (month" 11874 G2I13016 = "G2 income imputation flag (130) (month" 11875 G2I13017 = "G2 income imputation flag (130) (month" 11876 G2I13018 = "G2 income imputation flag (130) (month" 11877 G2I13019 = "G2 income imputation flag (130) (month" 11878 G2I13020 = "G2 income imputation flag (130) (month" 11879 G2I13021 = "G2 income imputation flag (130) (month" 11880 G2I13022 = "G2 income imputation flag (130) (month" 11881 G2I13023 = "G2 income imputation flag (130) (month" 11882 G2I13024 = "G2 income imputation flag (130) (month" 11883 G2I13025 = "G2 income imputation flag (130) (month" 11884 G2I13026 = "G2 income imputation flag (130) (month" 11885 G2I13027 = "G2 income imputation flag (130) (month" 11886 G2I13028 = "G2 income imputation flag (130) (month" 11887 G2I13029 = "G2 income imputation flag (130) (month" 11888 G2I13030 = "G2 income imputation flag (130) (month" 11889 G2I13031 = "G2 income imputation flag (130) (month" 11890 G2I13032 = "G2 income imputation flag (130) (month" 11891 G2I14001 = "G2 income imputation flag (140) (month" 11892 G2I14002 = "G2 income imputation flag (140) (month" 11893 G2I14003 = "G2 income imputation flag (140) (month" 11894 G2I14004 = "G2 income imputation flag (140) (month" 11895 G2I14005 = "G2 income imputation flag (140) (month" 11896 G2I14006 = "G2 income imputation flag (140) (month" 11897 G2I14007 = "G2 income imputation flag (140) (month" 11898 G2I14008 = "G2 income imputation flag (140) (month" 11899 G2I14009 = "G2 income imputation flag (140) (month" 11900 G2I14010 = "G2 income imputation flag (140) (month" 11901 G2I14011 = "G2 income imputation flag (140) (month" 11902 G2I14012 = "G2 income imputation flag (140) (month" 160 The SAS System 15:27 Thursday, July 3, 2003 11903 G2I14013 = "G2 income imputation flag (140) (month" 11904 G2I14014 = "G2 income imputation flag (140) (month" 11905 G2I14015 = "G2 income imputation flag (140) (month" 11906 G2I14016 = "G2 income imputation flag (140) (month" 11907 G2I14017 = "G2 income imputation flag (140) (month" 11908 G2I14018 = "G2 income imputation flag (140) (month" 11909 G2I14019 = "G2 income imputation flag (140) (month" 11910 G2I14020 = "G2 income imputation flag (140) (month" 11911 G2I14021 = "G2 income imputation flag (140) (month" 11912 G2I14022 = "G2 income imputation flag (140) (month" 11913 G2I14023 = "G2 income imputation flag (140) (month" 11914 G2I14024 = "G2 income imputation flag (140) (month" 11915 G2I14025 = "G2 income imputation flag (140) (month" 11916 G2I14026 = "G2 income imputation flag (140) (month" 11917 G2I14027 = "G2 income imputation flag (140) (month" 11918 G2I14028 = "G2 income imputation flag (140) (month" 11919 G2I14029 = "G2 income imputation flag (140) (month" 11920 G2I14030 = "G2 income imputation flag (140) (month" 11921 G2I14031 = "G2 income imputation flag (140) (month" 11922 G2I14032 = "G2 income imputation flag (140) (month" 11923 ; 11924 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1986/sipp86fp.zip " NOTE: 100 records were read from the infile RAW. The minimum record length was 12572. The maximum record length was 12572. NOTE: The data set LIBRARY.SIP86FP has 100 observations and 4684 variables. NOTE: DATA statement used: real time 8.070 seconds cpu time 2.528 seconds 11925 proc print data=library.sip86fp (obs=6); 11926 11927 11928 FORMAT 11929 PP_INTV1 PP_INTV. 11930 PP_INTV2 PP_INTV. 11931 PP_INTV3 PP_INTV. 11932 PP_INTV4 PP_INTV. 11933 PP_INTV5 PP_INTV. 11934 PP_INTV6 PP_INTV. 11935 PP_INTV7 PP_INTV. 11936 PP_INTV8 PP_INTV. 11937 PP_MIS01 PP_MIS. 11938 PP_MIS02 PP_MIS. 11939 PP_MIS03 PP_MIS. 11940 PP_MIS04 PP_MIS. 11941 PP_MIS05 PP_MIS. 11942 PP_MIS06 PP_MIS. 11943 PP_MIS07 PP_MIS. 11944 PP_MIS08 PP_MIS. 11945 PP_MIS09 PP_MIS. 11946 PP_MIS10 PP_MIS. 11947 PP_MIS11 PP_MIS. 11948 PP_MIS12 PP_MIS. 11949 PP_MIS13 PP_MIS. 11950 PP_MIS14 PP_MIS. 11951 PP_MIS15 PP_MIS. 11952 PP_MIS16 PP_MIS. 11953 PP_MIS17 PP_MIS. 11954 PP_MIS18 PP_MIS. 11955 PP_MIS19 PP_MIS. 11956 PP_MIS20 PP_MIS. 11957 PP_MIS21 PP_MIS. 11958 PP_MIS22 PP_MIS. 11959 PP_MIS23 PP_MIS. 11960 PP_MIS24 PP_MIS. 11961 PP_MIS25 PP_MIS. 11962 PP_MIS26 PP_MIS. 11963 PP_MIS27 PP_MIS. 11964 PP_MIS28 PP_MIS. 11965 PP_MIS29 PP_MIS. 161 The SAS System 15:27 Thursday, July 3, 2003 11966 PP_MIS30 PP_MIS. 11967 PP_MIS31 PP_MIS. 11968 PP_MIS32 PP_MIS. 11969 REASLEF1 REASLEF. 11970 REASLEF2 REASLEF. 11971 REASLEF3 REASLEF. 11972 REASLEF4 REASLEF. 11973 REASLEF5 REASLEF. 11974 REASLEF6 REASLEF. 11975 REASLEF7 REASLEF. 11976 REASLEF8 REASLEF. 11977 HHINST01 HHINST. 11978 HHINST02 HHINST. 11979 HHINST03 HHINST. 11980 HHINST04 HHINST. 11981 HHINST05 HHINST. 11982 HHINST06 HHINST. 11983 HHINST07 HHINST. 11984 HHINST08 HHINST. 11985 HHINST09 HHINST. 11986 HHINST10 HHINST. 11987 HHINST11 HHINST. 11988 HHINST12 HHINST. 11989 HHINST13 HHINST. 11990 HHINST14 HHINST. 11991 HHINST15 HHINST. 11992 HHINST16 HHINST. 11993 HHINST17 HHINST. 11994 HHINST18 HHINST. 11995 HHINST19 HHINST. 11996 HHINST20 HHINST. 11997 HHINST21 HHINST. 11998 HHINST22 HHINST. 11999 HHINST23 HHINST. 12000 HHINST24 HHINST. 12001 HHINST25 HHINST. 12002 HHINST26 HHINST. 12003 HHINST27 HHINST. 12004 HHINST28 HHINST. 12005 HHINST29 HHINST. 12006 HHINST30 HHINST. 12007 HHINST31 HHINST. 12008 HHINST32 HHINST. 12009 SU_RGC SU_RGC. 12010 LGTHHT01 LGTHHT. 12011 LGTHHT02 LGTHHT. 12012 LGTHHT03 LGTHHT. 12013 LGTHHT04 LGTHHT. 12014 LGTHHT05 LGTHHT. 12015 LGTHHT06 LGTHHT. 12016 LGTHHT07 LGTHHT. 12017 LGTHHT08 LGTHHT. 12018 LGTHHT09 LGTHHT. 12019 LGTHHT10 LGTHHT. 12020 LGTHHT11 LGTHHT. 12021 LGTHHT12 LGTHHT. 12022 LGTHHT13 LGTHHT. 12023 LGTHHT14 LGTHHT. 12024 LGTHHT15 LGTHHT. 12025 LGTHHT16 LGTHHT. 12026 LGTHHT17 LGTHHT. 12027 LGTHHT18 LGTHHT. 12028 LGTHHT19 LGTHHT. 12029 LGTHHT20 LGTHHT. 12030 LGTHHT21 LGTHHT. 12031 LGTHHT22 LGTHHT. 12032 LGTHHT23 LGTHHT. 12033 LGTHHT24 LGTHHT. 12034 LGTHHT25 LGTHHT. 12035 LGTHHT26 LGTHHT. 12036 LGTHHT27 LGTHHT. 12037 LGTHHT28 LGTHHT. 12038 LGTHHT29 LGTHHT. 12039 LGTHHT30 LGTHHT. 12040 LGTHHT31 LGTHHT. 12041 LGTHHT32 LGTHHT. 162 The SAS System 15:27 Thursday, July 3, 2003 12042 LGTKEY01 LGTKEY. 12043 LGTKEY02 LGTKEY. 12044 LGTKEY03 LGTKEY. 12045 LGTKEY04 LGTKEY. 12046 LGTKEY05 LGTKEY. 12047 LGTKEY06 LGTKEY. 12048 LGTKEY07 LGTKEY. 12049 LGTKEY08 LGTKEY. 12050 LGTKEY09 LGTKEY. 12051 LGTKEY10 LGTKEY. 12052 LGTKEY11 LGTKEY. 12053 LGTKEY12 LGTKEY. 12054 LGTKEY13 LGTKEY. 12055 LGTKEY14 LGTKEY. 12056 LGTKEY15 LGTKEY. 12057 LGTKEY16 LGTKEY. 12058 LGTKEY17 LGTKEY. 12059 LGTKEY18 LGTKEY. 12060 LGTKEY19 LGTKEY. 12061 LGTKEY20 LGTKEY. 12062 LGTKEY21 LGTKEY. 12063 LGTKEY22 LGTKEY. 12064 LGTKEY23 LGTKEY. 12065 LGTKEY24 LGTKEY. 12066 LGTKEY25 LGTKEY. 12067 LGTKEY26 LGTKEY. 12068 LGTKEY27 LGTKEY. 12069 LGTKEY28 LGTKEY. 12070 LGTKEY29 LGTKEY. 12071 LGTKEY30 LGTKEY. 12072 LGTKEY31 LGTKEY. 12073 LGTKEY32 LGTKEY. 12074 LGTOTH01 LGTOTH. 12075 LGTOTH02 LGTOTH. 12076 LGTOTH03 LGTOTH. 12077 LGTOTH04 LGTOTH. 12078 LGTOTH05 LGTOTH. 12079 LGTOTH06 LGTOTH. 12080 LGTOTH07 LGTOTH. 12081 LGTOTH08 LGTOTH. 12082 LGTOTH09 LGTOTH. 12083 LGTOTH10 LGTOTH. 12084 LGTOTH11 LGTOTH. 12085 LGTOTH12 LGTOTH. 12086 LGTOTH13 LGTOTH. 12087 LGTOTH14 LGTOTH. 12088 LGTOTH15 LGTOTH. 12089 LGTOTH16 LGTOTH. 12090 LGTOTH17 LGTOTH. 12091 LGTOTH18 LGTOTH. 12092 LGTOTH19 LGTOTH. 12093 LGTOTH20 LGTOTH. 12094 LGTOTH21 LGTOTH. 12095 LGTOTH22 LGTOTH. 12096 LGTOTH23 LGTOTH. 12097 LGTOTH24 LGTOTH. 12098 LGTOTH25 LGTOTH. 12099 LGTOTH26 LGTOTH. 12100 LGTOTH27 LGTOTH. 12101 LGTOTH28 LGTOTH. 12102 LGTOTH29 LGTOTH. 12103 LGTOTH30 LGTOTH. 12104 LGTOTH31 LGTOTH. 12105 LGTOTH32 LGTOTH. 12106 SEX SEX. 12107 RACE RACE. 12108 ETHNICTY ETHNICTY. 12109 RRP_01 RRP. 12110 RRP_02 RRP. 12111 RRP_03 RRP. 12112 RRP_04 RRP. 12113 RRP_05 RRP. 12114 RRP_06 RRP. 12115 RRP_07 RRP. 12116 RRP_08 RRP. 12117 RRP_09 RRP. 163 The SAS System 15:27 Thursday, July 3, 2003 12118 RRP_10 RRP. 12119 RRP_11 RRP. 12120 RRP_12 RRP. 12121 RRP_13 RRP. 12122 RRP_14 RRP. 12123 RRP_15 RRP. 12124 RRP_16 RRP. 12125 RRP_17 RRP. 12126 RRP_18 RRP. 12127 RRP_19 RRP. 12128 RRP_20 RRP. 12129 RRP_21 RRP. 12130 RRP_22 RRP. 12131 RRP_23 RRP. 12132 RRP_24 RRP. 12133 RRP_25 RRP. 12134 RRP_26 RRP. 12135 RRP_27 RRP. 12136 RRP_28 RRP. 12137 RRP_29 RRP. 12138 RRP_30 RRP. 12139 RRP_31 RRP. 12140 RRP_32 RRP. 12141 AGE_01 AGE. 12142 AGE_02 AGE. 12143 AGE_03 AGE. 12144 AGE_04 AGE. 12145 AGE_05 AGE. 12146 AGE_06 AGE. 12147 AGE_07 AGE. 12148 AGE_08 AGE. 12149 AGE_09 AGE. 12150 AGE_10 AGE. 12151 AGE_11 AGE. 12152 AGE_12 AGE. 12153 AGE_13 AGE. 12154 AGE_14 AGE. 12155 AGE_15 AGE. 12156 AGE_16 AGE. 12157 AGE_17 AGE. 12158 AGE_18 AGE. 12159 AGE_19 AGE. 12160 AGE_20 AGE. 12161 AGE_21 AGE. 12162 AGE_22 AGE. 12163 AGE_23 AGE. 12164 AGE_24 AGE. 12165 AGE_25 AGE. 12166 AGE_26 AGE. 12167 AGE_27 AGE. 12168 AGE_28 AGE. 12169 AGE_29 AGE. 12170 AGE_30 AGE. 12171 AGE_31 AGE. 12172 AGE_32 AGE. 12173 MS_01 MS. 12174 MS_02 MS. 12175 MS_03 MS. 12176 MS_04 MS. 12177 MS_05 MS. 12178 MS_06 MS. 12179 MS_07 MS. 12180 MS_08 MS. 12181 MS_09 MS. 12182 MS_10 MS. 12183 MS_11 MS. 12184 MS_12 MS. 12185 MS_13 MS. 12186 MS_14 MS. 12187 MS_15 MS. 12188 MS_16 MS. 12189 MS_17 MS. 12190 MS_18 MS. 12191 MS_19 MS. 12192 MS_20 MS. 12193 MS_21 MS. 164 The SAS System 15:27 Thursday, July 3, 2003 12194 MS_22 MS. 12195 MS_23 MS. 12196 MS_24 MS. 12197 MS_25 MS. 12198 MS_26 MS. 12199 MS_27 MS. 12200 MS_28 MS. 12201 MS_29 MS. 12202 MS_30 MS. 12203 MS_31 MS. 12204 MS_32 MS. 12205 FAMTYP01 FAMTYP. 12206 FAMTYP02 FAMTYP. 12207 FAMTYP03 FAMTYP. 12208 FAMTYP04 FAMTYP. 12209 FAMTYP05 FAMTYP. 12210 FAMTYP06 FAMTYP. 12211 FAMTYP07 FAMTYP. 12212 FAMTYP08 FAMTYP. 12213 FAMTYP09 FAMTYP. 12214 FAMTYP10 FAMTYP. 12215 FAMTYP11 FAMTYP. 12216 FAMTYP12 FAMTYP. 12217 FAMTYP13 FAMTYP. 12218 FAMTYP14 FAMTYP. 12219 FAMTYP15 FAMTYP. 12220 FAMTYP16 FAMTYP. 12221 FAMTYP17 FAMTYP. 12222 FAMTYP18 FAMTYP. 12223 FAMTYP19 FAMTYP. 12224 FAMTYP20 FAMTYP. 12225 FAMTYP21 FAMTYP. 12226 FAMTYP22 FAMTYP. 12227 FAMTYP23 FAMTYP. 12228 FAMTYP24 FAMTYP. 12229 FAMTYP25 FAMTYP. 12230 FAMTYP26 FAMTYP. 12231 FAMTYP27 FAMTYP. 12232 FAMTYP28 FAMTYP. 12233 FAMTYP29 FAMTYP. 12234 FAMTYP30 FAMTYP. 12235 FAMTYP31 FAMTYP. 12236 FAMTYP32 FAMTYP. 12237 FAMREL01 FAMREL. 12238 FAMREL02 FAMREL. 12239 FAMREL03 FAMREL. 12240 FAMREL04 FAMREL. 12241 FAMREL05 FAMREL. 12242 FAMREL06 FAMREL. 12243 FAMREL07 FAMREL. 12244 FAMREL08 FAMREL. 12245 FAMREL09 FAMREL. 12246 FAMREL10 FAMREL. 12247 FAMREL11 FAMREL. 12248 FAMREL12 FAMREL. 12249 FAMREL13 FAMREL. 12250 FAMREL14 FAMREL. 12251 FAMREL15 FAMREL. 12252 FAMREL16 FAMREL. 12253 FAMREL17 FAMREL. 12254 FAMREL18 FAMREL. 12255 FAMREL19 FAMREL. 12256 FAMREL20 FAMREL. 12257 FAMREL21 FAMREL. 12258 FAMREL22 FAMREL. 12259 FAMREL23 FAMREL. 12260 FAMREL24 FAMREL. 12261 FAMREL25 FAMREL. 12262 FAMREL26 FAMREL. 12263 FAMREL27 FAMREL. 12264 FAMREL28 FAMREL. 12265 FAMREL29 FAMREL. 12266 FAMREL30 FAMREL. 12267 FAMREL31 FAMREL. 12268 FAMREL32 FAMREL. 12269 FAMNUM01 FAMNUM. 165 The SAS System 15:27 Thursday, July 3, 2003 12270 FAMNUM02 FAMNUM. 12271 FAMNUM03 FAMNUM. 12272 FAMNUM04 FAMNUM. 12273 FAMNUM05 FAMNUM. 12274 FAMNUM06 FAMNUM. 12275 FAMNUM07 FAMNUM. 12276 FAMNUM08 FAMNUM. 12277 FAMNUM09 FAMNUM. 12278 FAMNUM10 FAMNUM. 12279 FAMNUM11 FAMNUM. 12280 FAMNUM12 FAMNUM. 12281 FAMNUM13 FAMNUM. 12282 FAMNUM14 FAMNUM. 12283 FAMNUM15 FAMNUM. 12284 FAMNUM16 FAMNUM. 12285 FAMNUM17 FAMNUM. 12286 FAMNUM18 FAMNUM. 12287 FAMNUM19 FAMNUM. 12288 FAMNUM20 FAMNUM. 12289 FAMNUM21 FAMNUM. 12290 FAMNUM22 FAMNUM. 12291 FAMNUM23 FAMNUM. 12292 FAMNUM24 FAMNUM. 12293 FAMNUM25 FAMNUM. 12294 FAMNUM26 FAMNUM. 12295 FAMNUM27 FAMNUM. 12296 FAMNUM28 FAMNUM. 12297 FAMNUM29 FAMNUM. 12298 FAMNUM30 FAMNUM. 12299 FAMNUM31 FAMNUM. 12300 FAMNUM32 FAMNUM. 12301 PNSP_01 PNSP. 12302 PNSP_02 PNSP. 12303 PNSP_03 PNSP. 12304 PNSP_04 PNSP. 12305 PNSP_05 PNSP. 12306 PNSP_06 PNSP. 12307 PNSP_07 PNSP. 12308 PNSP_08 PNSP. 12309 PNSP_09 PNSP. 12310 PNSP_10 PNSP. 12311 PNSP_11 PNSP. 12312 PNSP_12 PNSP. 12313 PNSP_13 PNSP. 12314 PNSP_14 PNSP. 12315 PNSP_15 PNSP. 12316 PNSP_16 PNSP. 12317 PNSP_17 PNSP. 12318 PNSP_18 PNSP. 12319 PNSP_19 PNSP. 12320 PNSP_20 PNSP. 12321 PNSP_21 PNSP. 12322 PNSP_22 PNSP. 12323 PNSP_23 PNSP. 12324 PNSP_24 PNSP. 12325 PNSP_25 PNSP. 12326 PNSP_26 PNSP. 12327 PNSP_27 PNSP. 12328 PNSP_28 PNSP. 12329 PNSP_29 PNSP. 12330 PNSP_30 PNSP. 12331 PNSP_31 PNSP. 12332 PNSP_32 PNSP. 12333 ENT_SP01 ENT_SP. 12334 ENT_SP02 ENT_SP. 12335 ENT_SP03 ENT_SP. 12336 ENT_SP04 ENT_SP. 12337 ENT_SP05 ENT_SP. 12338 ENT_SP06 ENT_SP. 12339 ENT_SP07 ENT_SP. 12340 ENT_SP08 ENT_SP. 12341 ENT_SP09 ENT_SP. 12342 ENT_SP10 ENT_SP. 12343 ENT_SP11 ENT_SP. 12344 ENT_SP12 ENT_SP. 12345 ENT_SP13 ENT_SP. 166 The SAS System 15:27 Thursday, July 3, 2003 12346 ENT_SP14 ENT_SP. 12347 ENT_SP15 ENT_SP. 12348 ENT_SP16 ENT_SP. 12349 ENT_SP17 ENT_SP. 12350 ENT_SP18 ENT_SP. 12351 ENT_SP19 ENT_SP. 12352 ENT_SP20 ENT_SP. 12353 ENT_SP21 ENT_SP. 12354 ENT_SP22 ENT_SP. 12355 ENT_SP23 ENT_SP. 12356 ENT_SP24 ENT_SP. 12357 ENT_SP25 ENT_SP. 12358 ENT_SP26 ENT_SP. 12359 ENT_SP27 ENT_SP. 12360 ENT_SP28 ENT_SP. 12361 ENT_SP29 ENT_SP. 12362 ENT_SP30 ENT_SP. 12363 ENT_SP31 ENT_SP. 12364 ENT_SP32 ENT_SP. 12365 PNPT_01 PNPT. 12366 PNPT_02 PNPT. 12367 PNPT_03 PNPT. 12368 PNPT_04 PNPT. 12369 PNPT_05 PNPT. 12370 PNPT_06 PNPT. 12371 PNPT_07 PNPT. 12372 PNPT_08 PNPT. 12373 PNPT_09 PNPT. 12374 PNPT_10 PNPT. 12375 PNPT_11 PNPT. 12376 PNPT_12 PNPT. 12377 PNPT_13 PNPT. 12378 PNPT_14 PNPT. 12379 PNPT_15 PNPT. 12380 PNPT_16 PNPT. 12381 PNPT_17 PNPT. 12382 PNPT_18 PNPT. 12383 PNPT_19 PNPT. 12384 PNPT_20 PNPT. 12385 PNPT_21 PNPT. 12386 PNPT_22 PNPT. 12387 PNPT_23 PNPT. 12388 PNPT_24 PNPT. 12389 PNPT_25 PNPT. 12390 PNPT_26 PNPT. 12391 PNPT_27 PNPT. 12392 PNPT_28 PNPT. 12393 PNPT_29 PNPT. 12394 PNPT_30 PNPT. 12395 PNPT_31 PNPT. 12396 PNPT_32 PNPT. 12397 ENT_PT01 ENT_PT. 12398 ENT_PT02 ENT_PT. 12399 ENT_PT03 ENT_PT. 12400 ENT_PT04 ENT_PT. 12401 ENT_PT05 ENT_PT. 12402 ENT_PT06 ENT_PT. 12403 ENT_PT07 ENT_PT. 12404 ENT_PT08 ENT_PT. 12405 ENT_PT09 ENT_PT. 12406 ENT_PT10 ENT_PT. 12407 ENT_PT11 ENT_PT. 12408 ENT_PT12 ENT_PT. 12409 ENT_PT13 ENT_PT. 12410 ENT_PT14 ENT_PT. 12411 ENT_PT15 ENT_PT. 12412 ENT_PT16 ENT_PT. 12413 ENT_PT17 ENT_PT. 12414 ENT_PT18 ENT_PT. 12415 ENT_PT19 ENT_PT. 12416 ENT_PT20 ENT_PT. 12417 ENT_PT21 ENT_PT. 12418 ENT_PT22 ENT_PT. 12419 ENT_PT23 ENT_PT. 12420 ENT_PT24 ENT_PT. 12421 ENT_PT25 ENT_PT. 167 The SAS System 15:27 Thursday, July 3, 2003 12422 ENT_PT26 ENT_PT. 12423 ENT_PT27 ENT_PT. 12424 ENT_PT28 ENT_PT. 12425 ENT_PT29 ENT_PT. 12426 ENT_PT30 ENT_PT. 12427 ENT_PT31 ENT_PT. 12428 ENT_PT32 ENT_PT. 12429 HIGRADE1 HIGRADE. 12430 HIGRADE2 HIGRADE. 12431 HIGRADE3 HIGRADE. 12432 HIGRADE4 HIGRADE. 12433 HIGRADE5 HIGRADE. 12434 HIGRADE6 HIGRADE. 12435 HIGRADE7 HIGRADE. 12436 HIGRADE8 HIGRADE. 12437 GRD_CMP1 GRD_CMP. 12438 GRD_CMP2 GRD_CMP. 12439 GRD_CMP3 GRD_CMP. 12440 GRD_CMP4 GRD_CMP. 12441 GRD_CMP5 GRD_CMP. 12442 GRD_CMP6 GRD_CMP. 12443 GRD_CMP7 GRD_CMP. 12444 GRD_CMP8 GRD_CMP. 12445 U_VET_1 U_VET. 12446 U_VET_2 U_VET. 12447 U_VET_3 U_VET. 12448 U_VET_4 U_VET. 12449 U_VET_5 U_VET. 12450 U_VET_6 U_VET. 12451 U_VET_7 U_VET. 12452 U_VET_8 U_VET. 12453 IN_AF_1 IN_AF. 12454 IN_AF_2 IN_AF. 12455 IN_AF_3 IN_AF. 12456 IN_AF_4 IN_AF. 12457 IN_AF_5 IN_AF. 12458 IN_AF_6 IN_AF. 12459 IN_AF_7 IN_AF. 12460 IN_AF_8 IN_AF. 12461 USRV1_1 USRV1L. 12462 USRV1_2 USRV1L. 12463 USRV1_3 USRV1L. 12464 USRV1_4 USRV1L. 12465 USRV1_5 USRV1L. 12466 USRV1_6 USRV1L. 12467 USRV1_7 USRV1L. 12468 USRV1_8 USRV1L. 12469 USRV2_1 USRV2L. 12470 USRV2_2 USRV2L. 12471 USRV2_3 USRV2L. 12472 USRV2_4 USRV2L. 12473 USRV2_5 USRV2L. 12474 USRV2_6 USRV2L. 12475 USRV2_7 USRV2L. 12476 USRV2_8 USRV2L. 12477 USRV3_1 USRV3L. 12478 USRV3_2 USRV3L. 12479 USRV3_3 USRV3L. 12480 USRV3_4 USRV3L. 12481 USRV3_5 USRV3L. 12482 USRV3_6 USRV3L. 12483 USRV3_7 USRV3L. 12484 USRV3_8 USRV3L. 12485 BRTHMN BRTHMN. 12486 BRTHYR BRTHYR. 12487 U_PNGD1 U_PNGD. 12488 U_PNGD2 U_PNGD. 12489 U_PNGD3 U_PNGD. 12490 U_PNGD4 U_PNGD. 12491 U_PNGD5 U_PNGD. 12492 U_PNGD6 U_PNGD. 12493 U_PNGD7 U_PNGD. 12494 U_PNGD8 U_PNGD. 12495 ENTID_G1 ENTID_G. 12496 ENTID_G2 ENTID_G. 12497 ENTID_G3 ENTID_G. 168 The SAS System 15:27 Thursday, July 3, 2003 12498 ENTID_G4 ENTID_G. 12499 ENTID_G5 ENTID_G. 12500 ENTID_G6 ENTID_G. 12501 ENTID_G7 ENTID_G. 12502 ENTID_G8 ENTID_G. 12503 U_LVQT01 U_LVQT. 12504 U_LVQT02 U_LVQT. 12505 U_LVQT03 U_LVQT. 12506 U_LVQT04 U_LVQT. 12507 U_LVQT05 U_LVQT. 12508 U_LVQT06 U_LVQT. 12509 U_LVQT07 U_LVQT. 12510 U_LVQT08 U_LVQT. 12511 U_LVQT09 U_LVQT. 12512 U_LVQT10 U_LVQT. 12513 U_LVQT11 U_LVQT. 12514 U_LVQT12 U_LVQT. 12515 U_LVQT13 U_LVQT. 12516 U_LVQT14 U_LVQT. 12517 U_LVQT15 U_LVQT. 12518 U_LVQT16 U_LVQT. 12519 U_LVQT17 U_LVQT. 12520 U_LVQT18 U_LVQT. 12521 U_LVQT19 U_LVQT. 12522 U_LVQT20 U_LVQT. 12523 U_LVQT21 U_LVQT. 12524 U_LVQT22 U_LVQT. 12525 U_LVQT23 U_LVQT. 12526 U_LVQT24 U_LVQT. 12527 U_LVQT25 U_LVQT. 12528 U_LVQT26 U_LVQT. 12529 U_LVQT27 U_LVQT. 12530 U_LVQT28 U_LVQT. 12531 U_LVQT29 U_LVQT. 12532 U_LVQT30 U_LVQT. 12533 U_LVQT31 U_LVQT. 12534 U_LVQT32 U_LVQT. 12535 TENURE01 TENURE. 12536 TENURE02 TENURE. 12537 TENURE03 TENURE. 12538 TENURE04 TENURE. 12539 TENURE05 TENURE. 12540 TENURE06 TENURE. 12541 TENURE07 TENURE. 12542 TENURE08 TENURE. 12543 TENURE09 TENURE. 12544 TENURE10 TENURE. 12545 TENURE11 TENURE. 12546 TENURE12 TENURE. 12547 TENURE13 TENURE. 12548 TENURE14 TENURE. 12549 TENURE15 TENURE. 12550 TENURE16 TENURE. 12551 TENURE17 TENURE. 12552 TENURE18 TENURE. 12553 TENURE19 TENURE. 12554 TENURE20 TENURE. 12555 TENURE21 TENURE. 12556 TENURE22 TENURE. 12557 TENURE23 TENURE. 12558 TENURE24 TENURE. 12559 TENURE25 TENURE. 12560 TENURE26 TENURE. 12561 TENURE27 TENURE. 12562 TENURE28 TENURE. 12563 TENURE29 TENURE. 12564 TENURE30 TENURE. 12565 TENURE31 TENURE. 12566 TENURE32 TENURE. 12567 PUBHS_01 PUBHS. 12568 PUBHS_02 PUBHS. 12569 PUBHS_03 PUBHS. 12570 PUBHS_04 PUBHS. 12571 PUBHS_05 PUBHS. 12572 PUBHS_06 PUBHS. 12573 PUBHS_07 PUBHS. 169 The SAS System 15:27 Thursday, July 3, 2003 12574 PUBHS_08 PUBHS. 12575 PUBHS_09 PUBHS. 12576 PUBHS_10 PUBHS. 12577 PUBHS_11 PUBHS. 12578 PUBHS_12 PUBHS. 12579 PUBHS_13 PUBHS. 12580 PUBHS_14 PUBHS. 12581 PUBHS_15 PUBHS. 12582 PUBHS_16 PUBHS. 12583 PUBHS_17 PUBHS. 12584 PUBHS_18 PUBHS. 12585 PUBHS_19 PUBHS. 12586 PUBHS_20 PUBHS. 12587 PUBHS_21 PUBHS. 12588 PUBHS_22 PUBHS. 12589 PUBHS_23 PUBHS. 12590 PUBHS_24 PUBHS. 12591 PUBHS_25 PUBHS. 12592 PUBHS_26 PUBHS. 12593 PUBHS_27 PUBHS. 12594 PUBHS_28 PUBHS. 12595 PUBHS_29 PUBHS. 12596 PUBHS_30 PUBHS. 12597 PUBHS_31 PUBHS. 12598 PUBHS_32 PUBHS. 12599 LOW_RE01 LOW_RE. 12600 LOW_RE02 LOW_RE. 12601 LOW_RE03 LOW_RE. 12602 LOW_RE04 LOW_RE. 12603 LOW_RE05 LOW_RE. 12604 LOW_RE06 LOW_RE. 12605 LOW_RE07 LOW_RE. 12606 LOW_RE08 LOW_RE. 12607 LOW_RE09 LOW_RE. 12608 LOW_RE10 LOW_RE. 12609 LOW_RE11 LOW_RE. 12610 LOW_RE12 LOW_RE. 12611 LOW_RE13 LOW_RE. 12612 LOW_RE14 LOW_RE. 12613 LOW_RE15 LOW_RE. 12614 LOW_RE16 LOW_RE. 12615 LOW_RE17 LOW_RE. 12616 LOW_RE18 LOW_RE. 12617 LOW_RE19 LOW_RE. 12618 LOW_RE20 LOW_RE. 12619 LOW_RE21 LOW_RE. 12620 LOW_RE22 LOW_RE. 12621 LOW_RE23 LOW_RE. 12622 LOW_RE24 LOW_RE. 12623 LOW_RE25 LOW_RE. 12624 LOW_RE26 LOW_RE. 12625 LOW_RE27 LOW_RE. 12626 LOW_RE28 LOW_RE. 12627 LOW_RE29 LOW_RE. 12628 LOW_RE30 LOW_RE. 12629 LOW_RE31 LOW_RE. 12630 LOW_RE32 LOW_RE. 12631 ENRGY_Y1 ENRGY_Y. 12632 ENRGY_Y2 ENRGY_Y. 12633 ENRGY_Y3 ENRGY_Y. 12634 ENRGY_Y4 ENRGY_Y. 12635 ENRGY_Y5 ENRGY_Y. 12636 ENRGY_Y6 ENRGY_Y. 12637 ENRGY_Y7 ENRGY_Y. 12638 ENRGY_Y8 ENRGY_Y. 12639 H_ENRGY1 H_ENRGY. 12640 H_ENRGY2 H_ENRGY. 12641 H_ENRGY3 H_ENRGY. 12642 H_ENRGY4 H_ENRGY. 12643 H_ENRGY5 H_ENRGY. 12644 H_ENRGY6 H_ENRGY. 12645 H_ENRGY7 H_ENRGY. 12646 H_ENRGY8 H_ENRGY. 12647 H_48241 H_4824L. 12648 H_48242 H_4824L. 12649 H_48243 H_4824L. 170 The SAS System 15:27 Thursday, July 3, 2003 12650 H_48244 H_4824L. 12651 H_48245 H_4824L. 12652 H_48246 H_4824L. 12653 H_48247 H_4824L. 12654 H_48248 H_4824L. 12655 H_LUNCH1 H_LUNCH. 12656 H_LUNCH2 H_LUNCH. 12657 H_LUNCH3 H_LUNCH. 12658 H_LUNCH4 H_LUNCH. 12659 H_LUNCH5 H_LUNCH. 12660 H_LUNCH6 H_LUNCH. 12661 H_LUNCH7 H_LUNCH. 12662 H_LUNCH8 H_LUNCH. 12663 H_48341 H_4834L. 12664 H_48342 H_4834L. 12665 H_48343 H_4834L. 12666 H_48344 H_4834L. 12667 H_48345 H_4834L. 12668 H_48346 H_4834L. 12669 H_48347 H_4834L. 12670 H_48348 H_4834L. 12671 H_BREAK1 H_BREAK. 12672 H_BREAK2 H_BREAK. 12673 H_BREAK3 H_BREAK. 12674 H_BREAK4 H_BREAK. 12675 H_BREAK5 H_BREAK. 12676 H_BREAK6 H_BREAK. 12677 H_BREAK7 H_BREAK. 12678 H_BREAK8 H_BREAK. 12679 H_48301 H_4830L. 12680 H_48302 H_4830L. 12681 H_48303 H_4830L. 12682 H_48304 H_4830L. 12683 H_48305 H_4830L. 12684 H_48306 H_4830L. 12685 H_48307 H_4830L. 12686 H_48308 H_4830L. 12687 PUBRNTYN PUBRNTYN. 12688 PUBRNAMT PUBRNAMT. 12689 UTLPAYYN UTLPAYYN. 12690 FULLRENT FULLRENT. 12691 STATE_1 STATE. 12692 STATE_2 STATE. 12693 STATE_3 STATE. 12694 STATE_4 STATE. 12695 STATE_5 STATE. 12696 STATE_6 STATE. 12697 STATE_7 STATE. 12698 STATE_8 STATE. 12699 SC1332 SC1332L. 12700 SC1334 SC1334L. 12701 SC1336 SC1336L. 12702 SC1346 SC1346L. 12703 SC1348 SC1348L. 12704 SC1360 SC1360L. 12705 SC1418 SC1418L. 12706 SC1456 SC1456L. 12707 MEDCODE MEDCODE. 12708 SC1468 SC1468L. 12709 SC1472 SC1472L. 12710 DISAB DISAB. 12711 ATT_SCH1 ATT_SCH. 12712 ATT_SCH2 ATT_SCH. 12713 ATT_SCH3 ATT_SCH. 12714 ATT_SCH4 ATT_SCH. 12715 ATT_SCH5 ATT_SCH. 12716 ATT_SCH6 ATT_SCH. 12717 ATT_SCH7 ATT_SCH. 12718 ATT_SCH8 ATT_SCH. 12719 ENRL_M01 ENRL_M. 12720 ENRL_M02 ENRL_M. 12721 ENRL_M03 ENRL_M. 12722 ENRL_M04 ENRL_M. 12723 ENRL_M05 ENRL_M. 12724 ENRL_M06 ENRL_M. 12725 ENRL_M07 ENRL_M. 171 The SAS System 15:27 Thursday, July 3, 2003 12726 ENRL_M08 ENRL_M. 12727 ENRL_M09 ENRL_M. 12728 ENRL_M10 ENRL_M. 12729 ENRL_M11 ENRL_M. 12730 ENRL_M12 ENRL_M. 12731 ENRL_M13 ENRL_M. 12732 ENRL_M14 ENRL_M. 12733 ENRL_M15 ENRL_M. 12734 ENRL_M16 ENRL_M. 12735 ENRL_M17 ENRL_M. 12736 ENRL_M18 ENRL_M. 12737 ENRL_M19 ENRL_M. 12738 ENRL_M20 ENRL_M. 12739 ENRL_M21 ENRL_M. 12740 ENRL_M22 ENRL_M. 12741 ENRL_M23 ENRL_M. 12742 ENRL_M24 ENRL_M. 12743 ENRL_M25 ENRL_M. 12744 ENRL_M26 ENRL_M. 12745 ENRL_M27 ENRL_M. 12746 ENRL_M28 ENRL_M. 12747 ENRL_M29 ENRL_M. 12748 ENRL_M30 ENRL_M. 12749 ENRL_M31 ENRL_M. 12750 ENRL_M32 ENRL_M. 12751 ED_LEVE1 ED_LEVE. 12752 ED_LEVE2 ED_LEVE. 12753 ED_LEVE3 ED_LEVE. 12754 ED_LEVE4 ED_LEVE. 12755 ED_LEVE5 ED_LEVE. 12756 ED_LEVE6 ED_LEVE. 12757 ED_LEVE7 ED_LEVE. 12758 ED_LEVE8 ED_LEVE. 12759 ED_FINA1 ED_FINA. 12760 ED_FINA2 ED_FINA. 12761 ED_FINA3 ED_FINA. 12762 ED_FINA4 ED_FINA. 12763 ED_FINA5 ED_FINA. 12764 ED_FINA6 ED_FINA. 12765 ED_FINA7 ED_FINA. 12766 ED_FINA8 ED_FINA. 12767 SC16721 SC1672L. 12768 SC16722 SC1672L. 12769 SC16723 SC1672L. 12770 SC16724 SC1672L. 12771 SC16725 SC1672L. 12772 SC16726 SC1672L. 12773 SC16727 SC1672L. 12774 SC16728 SC1672L. 12775 SC16741 SC1674L. 12776 SC16742 SC1674L. 12777 SC16743 SC1674L. 12778 SC16744 SC1674L. 12779 SC16745 SC1674L. 12780 SC16746 SC1674L. 12781 SC16747 SC1674L. 12782 SC16748 SC1674L. 12783 SC16761 SC1676L. 12784 SC16762 SC1676L. 12785 SC16763 SC1676L. 12786 SC16764 SC1676L. 12787 SC16765 SC1676L. 12788 SC16766 SC1676L. 12789 SC16767 SC1676L. 12790 SC16768 SC1676L. 12791 SC16781 SC1678L. 12792 SC16782 SC1678L. 12793 SC16783 SC1678L. 12794 SC16784 SC1678L. 12795 SC16785 SC1678L. 12796 SC16786 SC1678L. 12797 SC16787 SC1678L. 12798 SC16788 SC1678L. 12799 SC16801 SC1680L. 12800 SC16802 SC1680L. 12801 SC16803 SC1680L. 172 The SAS System 15:27 Thursday, July 3, 2003 12802 SC16804 SC1680L. 12803 SC16805 SC1680L. 12804 SC16806 SC1680L. 12805 SC16807 SC1680L. 12806 SC16808 SC1680L. 12807 SC16821 SC1682L. 12808 SC16822 SC1682L. 12809 SC16823 SC1682L. 12810 SC16824 SC1682L. 12811 SC16825 SC1682L. 12812 SC16826 SC1682L. 12813 SC16827 SC1682L. 12814 SC16828 SC1682L. 12815 SC16841 SC1684L. 12816 SC16842 SC1684L. 12817 SC16843 SC1684L. 12818 SC16844 SC1684L. 12819 SC16845 SC1684L. 12820 SC16846 SC1684L. 12821 SC16847 SC1684L. 12822 SC16848 SC1684L. 12823 SC16861 SC1686L. 12824 SC16862 SC1686L. 12825 SC16863 SC1686L. 12826 SC16864 SC1686L. 12827 SC16865 SC1686L. 12828 SC16866 SC1686L. 12829 SC16867 SC1686L. 12830 SC16868 SC1686L. 12831 SC16881 SC1688L. 12832 SC16882 SC1688L. 12833 SC16883 SC1688L. 12834 SC16884 SC1688L. 12835 SC16885 SC1688L. 12836 SC16886 SC1688L. 12837 SC16887 SC1688L. 12838 SC16888 SC1688L. 12839 SC16901 SC1690L. 12840 SC16902 SC1690L. 12841 SC16903 SC1690L. 12842 SC16904 SC1690L. 12843 SC16905 SC1690L. 12844 SC16906 SC1690L. 12845 SC16907 SC1690L. 12846 SC16908 SC1690L. 12847 SC16921 SC1692L. 12848 SC16922 SC1692L. 12849 SC16923 SC1692L. 12850 SC16924 SC1692L. 12851 SC16925 SC1692L. 12852 SC16926 SC1692L. 12853 SC16927 SC1692L. 12854 SC16928 SC1692L. 12855 SC16961 SC1696L. 12856 SC16962 SC1696L. 12857 SC16963 SC1696L. 12858 SC16964 SC1696L. 12859 SC16965 SC1696L. 12860 SC16966 SC1696L. 12861 SC16967 SC1696L. 12862 SC16968 SC1696L. 12863 TELEPHON TELEPHON. 12864 ESR_01 ESR. 12865 ESR_02 ESR. 12866 ESR_03 ESR. 12867 ESR_04 ESR. 12868 ESR_05 ESR. 12869 ESR_06 ESR. 12870 ESR_07 ESR. 12871 ESR_08 ESR. 12872 ESR_09 ESR. 12873 ESR_10 ESR. 12874 ESR_11 ESR. 12875 ESR_12 ESR. 12876 ESR_13 ESR. 12877 ESR_14 ESR. 173 The SAS System 15:27 Thursday, July 3, 2003 12878 ESR_15 ESR. 12879 ESR_16 ESR. 12880 ESR_17 ESR. 12881 ESR_18 ESR. 12882 ESR_19 ESR. 12883 ESR_20 ESR. 12884 ESR_21 ESR. 12885 ESR_22 ESR. 12886 ESR_23 ESR. 12887 ESR_24 ESR. 12888 ESR_25 ESR. 12889 ESR_26 ESR. 12890 ESR_27 ESR. 12891 ESR_28 ESR. 12892 ESR_29 ESR. 12893 ESR_30 ESR. 12894 ESR_31 ESR. 12895 ESR_32 ESR. 12896 WKSPER01 WKSPER. 12897 WKSPER02 WKSPER. 12898 WKSPER03 WKSPER. 12899 WKSPER04 WKSPER. 12900 WKSPER05 WKSPER. 12901 WKSPER06 WKSPER. 12902 WKSPER07 WKSPER. 12903 WKSPER08 WKSPER. 12904 WKSPER09 WKSPER. 12905 WKSPER10 WKSPER. 12906 WKSPER11 WKSPER. 12907 WKSPER12 WKSPER. 12908 WKSPER13 WKSPER. 12909 WKSPER14 WKSPER. 12910 WKSPER15 WKSPER. 12911 WKSPER16 WKSPER. 12912 WKSPER17 WKSPER. 12913 WKSPER18 WKSPER. 12914 WKSPER19 WKSPER. 12915 WKSPER20 WKSPER. 12916 WKSPER21 WKSPER. 12917 WKSPER22 WKSPER. 12918 WKSPER23 WKSPER. 12919 WKSPER24 WKSPER. 12920 WKSPER25 WKSPER. 12921 WKSPER26 WKSPER. 12922 WKSPER27 WKSPER. 12923 WKSPER28 WKSPER. 12924 WKSPER29 WKSPER. 12925 WKSPER30 WKSPER. 12926 WKSPER31 WKSPER. 12927 WKSPER32 WKSPER. 12928 WKSJB_01 WKSJB. 12929 WKSJB_02 WKSJB. 12930 WKSJB_03 WKSJB. 12931 WKSJB_04 WKSJB. 12932 WKSJB_05 WKSJB. 12933 WKSJB_06 WKSJB. 12934 WKSJB_07 WKSJB. 12935 WKSJB_08 WKSJB. 12936 WKSJB_09 WKSJB. 12937 WKSJB_10 WKSJB. 12938 WKSJB_11 WKSJB. 12939 WKSJB_12 WKSJB. 12940 WKSJB_13 WKSJB. 12941 WKSJB_14 WKSJB. 12942 WKSJB_15 WKSJB. 12943 WKSJB_16 WKSJB. 12944 WKSJB_17 WKSJB. 12945 WKSJB_18 WKSJB. 12946 WKSJB_19 WKSJB. 12947 WKSJB_20 WKSJB. 12948 WKSJB_21 WKSJB. 12949 WKSJB_22 WKSJB. 12950 WKSJB_23 WKSJB. 12951 WKSJB_24 WKSJB. 12952 WKSJB_25 WKSJB. 12953 WKSJB_26 WKSJB. 174 The SAS System 15:27 Thursday, July 3, 2003 12954 WKSJB_27 WKSJB. 12955 WKSJB_28 WKSJB. 12956 WKSJB_29 WKSJB. 12957 WKSJB_30 WKSJB. 12958 WKSJB_31 WKSJB. 12959 WKSJB_32 WKSJB. 12960 MTHWOP01 MTHWOP. 12961 MTHWOP02 MTHWOP. 12962 MTHWOP03 MTHWOP. 12963 MTHWOP04 MTHWOP. 12964 MTHWOP05 MTHWOP. 12965 MTHWOP06 MTHWOP. 12966 MTHWOP07 MTHWOP. 12967 MTHWOP08 MTHWOP. 12968 MTHWOP09 MTHWOP. 12969 MTHWOP10 MTHWOP. 12970 MTHWOP11 MTHWOP. 12971 MTHWOP12 MTHWOP. 12972 MTHWOP13 MTHWOP. 12973 MTHWOP14 MTHWOP. 12974 MTHWOP15 MTHWOP. 12975 MTHWOP16 MTHWOP. 12976 MTHWOP17 MTHWOP. 12977 MTHWOP18 MTHWOP. 12978 MTHWOP19 MTHWOP. 12979 MTHWOP20 MTHWOP. 12980 MTHWOP21 MTHWOP. 12981 MTHWOP22 MTHWOP. 12982 MTHWOP23 MTHWOP. 12983 MTHWOP24 MTHWOP. 12984 MTHWOP25 MTHWOP. 12985 MTHWOP26 MTHWOP. 12986 MTHWOP27 MTHWOP. 12987 MTHWOP28 MTHWOP. 12988 MTHWOP29 MTHWOP. 12989 MTHWOP30 MTHWOP. 12990 MTHWOP31 MTHWOP. 12991 MTHWOP32 MTHWOP. 12992 WEEKSL01 WEEKSL. 12993 WEEKSL02 WEEKSL. 12994 WEEKSL03 WEEKSL. 12995 WEEKSL04 WEEKSL. 12996 WEEKSL05 WEEKSL. 12997 WEEKSL06 WEEKSL. 12998 WEEKSL07 WEEKSL. 12999 WEEKSL08 WEEKSL. 13000 WEEKSL09 WEEKSL. 13001 WEEKSL10 WEEKSL. 13002 WEEKSL11 WEEKSL. 13003 WEEKSL12 WEEKSL. 13004 WEEKSL13 WEEKSL. 13005 WEEKSL14 WEEKSL. 13006 WEEKSL15 WEEKSL. 13007 WEEKSL16 WEEKSL. 13008 WEEKSL17 WEEKSL. 13009 WEEKSL18 WEEKSL. 13010 WEEKSL19 WEEKSL. 13011 WEEKSL20 WEEKSL. 13012 WEEKSL21 WEEKSL. 13013 WEEKSL22 WEEKSL. 13014 WEEKSL23 WEEKSL. 13015 WEEKSL24 WEEKSL. 13016 WEEKSL25 WEEKSL. 13017 WEEKSL26 WEEKSL. 13018 WEEKSL27 WEEKSL. 13019 WEEKSL28 WEEKSL. 13020 WEEKSL29 WEEKSL. 13021 WEEKSL30 WEEKSL. 13022 WEEKSL31 WEEKSL. 13023 WEEKSL32 WEEKSL. 13024 SC12301 SC1230L. 13025 SC12302 SC1230L. 13026 SC12303 SC1230L. 13027 SC12304 SC1230L. 13028 SC12305 SC1230L. 13029 SC12306 SC1230L. 175 The SAS System 15:27 Thursday, July 3, 2003 13030 SC12307 SC1230L. 13031 SC12308 SC1230L. 13032 WS1_EI01 WS1_EI. 13033 WS1_EI02 WS1_EI. 13034 WS1_EI03 WS1_EI. 13035 WS1_EI04 WS1_EI. 13036 WS1_EI05 WS1_EI. 13037 WS1_EI06 WS1_EI. 13038 WS1_EI07 WS1_EI. 13039 WS1_EI08 WS1_EI. 13040 WS1_EI09 WS1_EI. 13041 WS1_EI10 WS1_EI. 13042 WS1_EI11 WS1_EI. 13043 WS1_EI12 WS1_EI. 13044 WS1_EI13 WS1_EI. 13045 WS1_EI14 WS1_EI. 13046 WS1_EI15 WS1_EI. 13047 WS1_EI16 WS1_EI. 13048 WS1_EI17 WS1_EI. 13049 WS1_EI18 WS1_EI. 13050 WS1_EI19 WS1_EI. 13051 WS1_EI20 WS1_EI. 13052 WS1_EI21 WS1_EI. 13053 WS1_EI22 WS1_EI. 13054 WS1_EI23 WS1_EI. 13055 WS1_EI24 WS1_EI. 13056 WS1_EI25 WS1_EI. 13057 WS1_EI26 WS1_EI. 13058 WS1_EI27 WS1_EI. 13059 WS1_EI28 WS1_EI. 13060 WS1_EI29 WS1_EI. 13061 WS1_EI30 WS1_EI. 13062 WS1_EI31 WS1_EI. 13063 WS1_EI32 WS1_EI. 13064 WS2_EI01 WS2_EI. 13065 WS2_EI02 WS2_EI. 13066 WS2_EI03 WS2_EI. 13067 WS2_EI04 WS2_EI. 13068 WS2_EI05 WS2_EI. 13069 WS2_EI06 WS2_EI. 13070 WS2_EI07 WS2_EI. 13071 WS2_EI08 WS2_EI. 13072 WS2_EI09 WS2_EI. 13073 WS2_EI10 WS2_EI. 13074 WS2_EI11 WS2_EI. 13075 WS2_EI12 WS2_EI. 13076 WS2_EI13 WS2_EI. 13077 WS2_EI14 WS2_EI. 13078 WS2_EI15 WS2_EI. 13079 WS2_EI16 WS2_EI. 13080 WS2_EI17 WS2_EI. 13081 WS2_EI18 WS2_EI. 13082 WS2_EI19 WS2_EI. 13083 WS2_EI20 WS2_EI. 13084 WS2_EI21 WS2_EI. 13085 WS2_EI22 WS2_EI. 13086 WS2_EI23 WS2_EI. 13087 WS2_EI24 WS2_EI. 13088 WS2_EI25 WS2_EI. 13089 WS2_EI26 WS2_EI. 13090 WS2_EI27 WS2_EI. 13091 WS2_EI28 WS2_EI. 13092 WS2_EI29 WS2_EI. 13093 WS2_EI30 WS2_EI. 13094 WS2_EI31 WS2_EI. 13095 WS2_EI32 WS2_EI. 13096 WS1_CL01 WS1_CL. 13097 WS1_CL02 WS1_CL. 13098 WS1_CL03 WS1_CL. 13099 WS1_CL04 WS1_CL. 13100 WS1_CL05 WS1_CL. 13101 WS1_CL06 WS1_CL. 13102 WS1_CL07 WS1_CL. 13103 WS1_CL08 WS1_CL. 13104 WS1_CL09 WS1_CL. 13105 WS1_CL10 WS1_CL. 176 The SAS System 15:27 Thursday, July 3, 2003 13106 WS1_CL11 WS1_CL. 13107 WS1_CL12 WS1_CL. 13108 WS1_CL13 WS1_CL. 13109 WS1_CL14 WS1_CL. 13110 WS1_CL15 WS1_CL. 13111 WS1_CL16 WS1_CL. 13112 WS1_CL17 WS1_CL. 13113 WS1_CL18 WS1_CL. 13114 WS1_CL19 WS1_CL. 13115 WS1_CL20 WS1_CL. 13116 WS1_CL21 WS1_CL. 13117 WS1_CL22 WS1_CL. 13118 WS1_CL23 WS1_CL. 13119 WS1_CL24 WS1_CL. 13120 WS1_CL25 WS1_CL. 13121 WS1_CL26 WS1_CL. 13122 WS1_CL27 WS1_CL. 13123 WS1_CL28 WS1_CL. 13124 WS1_CL29 WS1_CL. 13125 WS1_CL30 WS1_CL. 13126 WS1_CL31 WS1_CL. 13127 WS1_CL32 WS1_CL. 13128 WS2_CL01 WS2_CL. 13129 WS2_CL02 WS2_CL. 13130 WS2_CL03 WS2_CL. 13131 WS2_CL04 WS2_CL. 13132 WS2_CL05 WS2_CL. 13133 WS2_CL06 WS2_CL. 13134 WS2_CL07 WS2_CL. 13135 WS2_CL08 WS2_CL. 13136 WS2_CL09 WS2_CL. 13137 WS2_CL10 WS2_CL. 13138 WS2_CL11 WS2_CL. 13139 WS2_CL12 WS2_CL. 13140 WS2_CL13 WS2_CL. 13141 WS2_CL14 WS2_CL. 13142 WS2_CL15 WS2_CL. 13143 WS2_CL16 WS2_CL. 13144 WS2_CL17 WS2_CL. 13145 WS2_CL18 WS2_CL. 13146 WS2_CL19 WS2_CL. 13147 WS2_CL20 WS2_CL. 13148 WS2_CL21 WS2_CL. 13149 WS2_CL22 WS2_CL. 13150 WS2_CL23 WS2_CL. 13151 WS2_CL24 WS2_CL. 13152 WS2_CL25 WS2_CL. 13153 WS2_CL26 WS2_CL. 13154 WS2_CL27 WS2_CL. 13155 WS2_CL28 WS2_CL. 13156 WS2_CL29 WS2_CL. 13157 WS2_CL30 WS2_CL. 13158 WS2_CL31 WS2_CL. 13159 WS2_CL32 WS2_CL. 13160 WS1_WK01 WS1_WK. 13161 WS1_WK02 WS1_WK. 13162 WS1_WK03 WS1_WK. 13163 WS1_WK04 WS1_WK. 13164 WS1_WK05 WS1_WK. 13165 WS1_WK06 WS1_WK. 13166 WS1_WK07 WS1_WK. 13167 WS1_WK08 WS1_WK. 13168 WS1_WK09 WS1_WK. 13169 WS1_WK10 WS1_WK. 13170 WS1_WK11 WS1_WK. 13171 WS1_WK12 WS1_WK. 13172 WS1_WK13 WS1_WK. 13173 WS1_WK14 WS1_WK. 13174 WS1_WK15 WS1_WK. 13175 WS1_WK16 WS1_WK. 13176 WS1_WK17 WS1_WK. 13177 WS1_WK18 WS1_WK. 13178 WS1_WK19 WS1_WK. 13179 WS1_WK20 WS1_WK. 13180 WS1_WK21 WS1_WK. 13181 WS1_WK22 WS1_WK. 177 The SAS System 15:27 Thursday, July 3, 2003 13182 WS1_WK23 WS1_WK. 13183 WS1_WK24 WS1_WK. 13184 WS1_WK25 WS1_WK. 13185 WS1_WK26 WS1_WK. 13186 WS1_WK27 WS1_WK. 13187 WS1_WK28 WS1_WK. 13188 WS1_WK29 WS1_WK. 13189 WS1_WK30 WS1_WK. 13190 WS1_WK31 WS1_WK. 13191 WS1_WK32 WS1_WK. 13192 WS2_WK01 WS2_WK. 13193 WS2_WK02 WS2_WK. 13194 WS2_WK03 WS2_WK. 13195 WS2_WK04 WS2_WK. 13196 WS2_WK05 WS2_WK. 13197 WS2_WK06 WS2_WK. 13198 WS2_WK07 WS2_WK. 13199 WS2_WK08 WS2_WK. 13200 WS2_WK09 WS2_WK. 13201 WS2_WK10 WS2_WK. 13202 WS2_WK11 WS2_WK. 13203 WS2_WK12 WS2_WK. 13204 WS2_WK13 WS2_WK. 13205 WS2_WK14 WS2_WK. 13206 WS2_WK15 WS2_WK. 13207 WS2_WK16 WS2_WK. 13208 WS2_WK17 WS2_WK. 13209 WS2_WK18 WS2_WK. 13210 WS2_WK19 WS2_WK. 13211 WS2_WK20 WS2_WK. 13212 WS2_WK21 WS2_WK. 13213 WS2_WK22 WS2_WK. 13214 WS2_WK23 WS2_WK. 13215 WS2_WK24 WS2_WK. 13216 WS2_WK25 WS2_WK. 13217 WS2_WK26 WS2_WK. 13218 WS2_WK27 WS2_WK. 13219 WS2_WK28 WS2_WK. 13220 WS2_WK29 WS2_WK. 13221 WS2_WK30 WS2_WK. 13222 WS2_WK31 WS2_WK. 13223 WS2_WK32 WS2_WK. 13224 W2024_01 W2024L. 13225 W2024_02 W2024L. 13226 W2024_03 W2024L. 13227 W2024_04 W2024L. 13228 W2024_05 W2024L. 13229 W2024_06 W2024L. 13230 W2024_07 W2024L. 13231 W2024_08 W2024L. 13232 W2024_09 W2024L. 13233 W2024_10 W2024L. 13234 W2024_11 W2024L. 13235 W2024_12 W2024L. 13236 W2024_13 W2024L. 13237 W2024_14 W2024L. 13238 W2024_15 W2024L. 13239 W2024_16 W2024L. 13240 W2024_17 W2024L. 13241 W2024_18 W2024L. 13242 W2024_19 W2024L. 13243 W2024_20 W2024L. 13244 W2024_21 W2024L. 13245 W2024_22 W2024L. 13246 W2024_23 W2024L. 13247 W2024_24 W2024L. 13248 W2024_25 W2024L. 13249 W2024_26 W2024L. 13250 W2024_27 W2024L. 13251 W2024_28 W2024L. 13252 W2024_29 W2024L. 13253 W2024_30 W2024L. 13254 W2024_31 W2024L. 13255 W2024_32 W2024L. 13256 W2124_01 W2124L. 13257 W2124_02 W2124L. 178 The SAS System 15:27 Thursday, July 3, 2003 13258 W2124_03 W2124L. 13259 W2124_04 W2124L. 13260 W2124_05 W2124L. 13261 W2124_06 W2124L. 13262 W2124_07 W2124L. 13263 W2124_08 W2124L. 13264 W2124_09 W2124L. 13265 W2124_10 W2124L. 13266 W2124_11 W2124L. 13267 W2124_12 W2124L. 13268 W2124_13 W2124L. 13269 W2124_14 W2124L. 13270 W2124_15 W2124L. 13271 W2124_16 W2124L. 13272 W2124_17 W2124L. 13273 W2124_18 W2124L. 13274 W2124_19 W2124L. 13275 W2124_20 W2124L. 13276 W2124_21 W2124L. 13277 W2124_22 W2124L. 13278 W2124_23 W2124L. 13279 W2124_24 W2124L. 13280 W2124_25 W2124L. 13281 W2124_26 W2124L. 13282 W2124_27 W2124L. 13283 W2124_28 W2124L. 13284 W2124_29 W2124L. 13285 W2124_30 W2124L. 13286 W2124_31 W2124L. 13287 W2124_32 W2124L. 13288 W2028_01 W2028L. 13289 W2028_02 W2028L. 13290 W2028_03 W2028L. 13291 W2028_04 W2028L. 13292 W2028_05 W2028L. 13293 W2028_06 W2028L. 13294 W2028_07 W2028L. 13295 W2028_08 W2028L. 13296 W2028_09 W2028L. 13297 W2028_10 W2028L. 13298 W2028_11 W2028L. 13299 W2028_12 W2028L. 13300 W2028_13 W2028L. 13301 W2028_14 W2028L. 13302 W2028_15 W2028L. 13303 W2028_16 W2028L. 13304 W2028_17 W2028L. 13305 W2028_18 W2028L. 13306 W2028_19 W2028L. 13307 W2028_20 W2028L. 13308 W2028_21 W2028L. 13309 W2028_22 W2028L. 13310 W2028_23 W2028L. 13311 W2028_24 W2028L. 13312 W2028_25 W2028L. 13313 W2028_26 W2028L. 13314 W2028_27 W2028L. 13315 W2028_28 W2028L. 13316 W2028_29 W2028L. 13317 W2028_30 W2028L. 13318 W2028_31 W2028L. 13319 W2028_32 W2028L. 13320 W2128_01 W2128L. 13321 W2128_02 W2128L. 13322 W2128_03 W2128L. 13323 W2128_04 W2128L. 13324 W2128_05 W2128L. 13325 W2128_06 W2128L. 13326 W2128_07 W2128L. 13327 W2128_08 W2128L. 13328 W2128_09 W2128L. 13329 W2128_10 W2128L. 13330 W2128_11 W2128L. 13331 W2128_12 W2128L. 13332 W2128_13 W2128L. 13333 W2128_14 W2128L. 179 The SAS System 15:27 Thursday, July 3, 2003 13334 W2128_15 W2128L. 13335 W2128_16 W2128L. 13336 W2128_17 W2128L. 13337 W2128_18 W2128L. 13338 W2128_19 W2128L. 13339 W2128_20 W2128L. 13340 W2128_21 W2128L. 13341 W2128_22 W2128L. 13342 W2128_23 W2128L. 13343 W2128_24 W2128L. 13344 W2128_25 W2128L. 13345 W2128_26 W2128L. 13346 W2128_27 W2128L. 13347 W2128_28 W2128L. 13348 W2128_29 W2128L. 13349 W2128_30 W2128L. 13350 W2128_31 W2128L. 13351 W2128_32 W2128L. 13352 S2202_01 S2202L. 13353 S2202_02 S2202L. 13354 S2202_03 S2202L. 13355 S2202_04 S2202L. 13356 S2202_05 S2202L. 13357 S2202_06 S2202L. 13358 S2202_07 S2202L. 13359 S2202_08 S2202L. 13360 S2202_09 S2202L. 13361 S2202_10 S2202L. 13362 S2202_11 S2202L. 13363 S2202_12 S2202L. 13364 S2202_13 S2202L. 13365 S2202_14 S2202L. 13366 S2202_15 S2202L. 13367 S2202_16 S2202L. 13368 S2202_17 S2202L. 13369 S2202_18 S2202L. 13370 S2202_19 S2202L. 13371 S2202_20 S2202L. 13372 S2202_21 S2202L. 13373 S2202_22 S2202L. 13374 S2202_23 S2202L. 13375 S2202_24 S2202L. 13376 S2202_25 S2202L. 13377 S2202_26 S2202L. 13378 S2202_27 S2202L. 13379 S2202_28 S2202L. 13380 S2202_29 S2202L. 13381 S2202_30 S2202L. 13382 S2202_31 S2202L. 13383 S2202_32 S2202L. 13384 S2302_01 S2302L. 13385 S2302_02 S2302L. 13386 S2302_03 S2302L. 13387 S2302_04 S2302L. 13388 S2302_05 S2302L. 13389 S2302_06 S2302L. 13390 S2302_07 S2302L. 13391 S2302_08 S2302L. 13392 S2302_09 S2302L. 13393 S2302_10 S2302L. 13394 S2302_11 S2302L. 13395 S2302_12 S2302L. 13396 S2302_13 S2302L. 13397 S2302_14 S2302L. 13398 S2302_15 S2302L. 13399 S2302_16 S2302L. 13400 S2302_17 S2302L. 13401 S2302_18 S2302L. 13402 S2302_19 S2302L. 13403 S2302_20 S2302L. 13404 S2302_21 S2302L. 13405 S2302_22 S2302L. 13406 S2302_23 S2302L. 13407 S2302_24 S2302L. 13408 S2302_25 S2302L. 13409 S2302_26 S2302L. 180 The SAS System 15:27 Thursday, July 3, 2003 13410 S2302_27 S2302L. 13411 S2302_28 S2302L. 13412 S2302_29 S2302L. 13413 S2302_30 S2302L. 13414 S2302_31 S2302L. 13415 S2302_32 S2302L. 13416 SE1_TY01 SE1_TY. 13417 SE1_TY02 SE1_TY. 13418 SE1_TY03 SE1_TY. 13419 SE1_TY04 SE1_TY. 13420 SE1_TY05 SE1_TY. 13421 SE1_TY06 SE1_TY. 13422 SE1_TY07 SE1_TY. 13423 SE1_TY08 SE1_TY. 13424 SE1_TY09 SE1_TY. 13425 SE1_TY10 SE1_TY. 13426 SE1_TY11 SE1_TY. 13427 SE1_TY12 SE1_TY. 13428 SE1_TY13 SE1_TY. 13429 SE1_TY14 SE1_TY. 13430 SE1_TY15 SE1_TY. 13431 SE1_TY16 SE1_TY. 13432 SE1_TY17 SE1_TY. 13433 SE1_TY18 SE1_TY. 13434 SE1_TY19 SE1_TY. 13435 SE1_TY20 SE1_TY. 13436 SE1_TY21 SE1_TY. 13437 SE1_TY22 SE1_TY. 13438 SE1_TY23 SE1_TY. 13439 SE1_TY24 SE1_TY. 13440 SE1_TY25 SE1_TY. 13441 SE1_TY26 SE1_TY. 13442 SE1_TY27 SE1_TY. 13443 SE1_TY28 SE1_TY. 13444 SE1_TY29 SE1_TY. 13445 SE1_TY30 SE1_TY. 13446 SE1_TY31 SE1_TY. 13447 SE1_TY32 SE1_TY. 13448 SE2_TY01 SE2_TY. 13449 SE2_TY02 SE2_TY. 13450 SE2_TY03 SE2_TY. 13451 SE2_TY04 SE2_TY. 13452 SE2_TY05 SE2_TY. 13453 SE2_TY06 SE2_TY. 13454 SE2_TY07 SE2_TY. 13455 SE2_TY08 SE2_TY. 13456 SE2_TY09 SE2_TY. 13457 SE2_TY10 SE2_TY. 13458 SE2_TY11 SE2_TY. 13459 SE2_TY12 SE2_TY. 13460 SE2_TY13 SE2_TY. 13461 SE2_TY14 SE2_TY. 13462 SE2_TY15 SE2_TY. 13463 SE2_TY16 SE2_TY. 13464 SE2_TY17 SE2_TY. 13465 SE2_TY18 SE2_TY. 13466 SE2_TY19 SE2_TY. 13467 SE2_TY20 SE2_TY. 13468 SE2_TY21 SE2_TY. 13469 SE2_TY22 SE2_TY. 13470 SE2_TY23 SE2_TY. 13471 SE2_TY24 SE2_TY. 13472 SE2_TY25 SE2_TY. 13473 SE2_TY26 SE2_TY. 13474 SE2_TY27 SE2_TY. 13475 SE2_TY28 SE2_TY. 13476 SE2_TY29 SE2_TY. 13477 SE2_TY30 SE2_TY. 13478 SE2_TY31 SE2_TY. 13479 SE2_TY32 SE2_TY. 13480 SE1_IN01 SE1_IN. 13481 SE1_IN02 SE1_IN. 13482 SE1_IN03 SE1_IN. 13483 SE1_IN04 SE1_IN. 13484 SE1_IN05 SE1_IN. 13485 SE1_IN06 SE1_IN. 181 The SAS System 15:27 Thursday, July 3, 2003 13486 SE1_IN07 SE1_IN. 13487 SE1_IN08 SE1_IN. 13488 SE1_IN09 SE1_IN. 13489 SE1_IN10 SE1_IN. 13490 SE1_IN11 SE1_IN. 13491 SE1_IN12 SE1_IN. 13492 SE1_IN13 SE1_IN. 13493 SE1_IN14 SE1_IN. 13494 SE1_IN15 SE1_IN. 13495 SE1_IN16 SE1_IN. 13496 SE1_IN17 SE1_IN. 13497 SE1_IN18 SE1_IN. 13498 SE1_IN19 SE1_IN. 13499 SE1_IN20 SE1_IN. 13500 SE1_IN21 SE1_IN. 13501 SE1_IN22 SE1_IN. 13502 SE1_IN23 SE1_IN. 13503 SE1_IN24 SE1_IN. 13504 SE1_IN25 SE1_IN. 13505 SE1_IN26 SE1_IN. 13506 SE1_IN27 SE1_IN. 13507 SE1_IN28 SE1_IN. 13508 SE1_IN29 SE1_IN. 13509 SE1_IN30 SE1_IN. 13510 SE1_IN31 SE1_IN. 13511 SE1_IN32 SE1_IN. 13512 SE2_IN01 SE2_IN. 13513 SE2_IN02 SE2_IN. 13514 SE2_IN03 SE2_IN. 13515 SE2_IN04 SE2_IN. 13516 SE2_IN05 SE2_IN. 13517 SE2_IN06 SE2_IN. 13518 SE2_IN07 SE2_IN. 13519 SE2_IN08 SE2_IN. 13520 SE2_IN09 SE2_IN. 13521 SE2_IN10 SE2_IN. 13522 SE2_IN11 SE2_IN. 13523 SE2_IN12 SE2_IN. 13524 SE2_IN13 SE2_IN. 13525 SE2_IN14 SE2_IN. 13526 SE2_IN15 SE2_IN. 13527 SE2_IN16 SE2_IN. 13528 SE2_IN17 SE2_IN. 13529 SE2_IN18 SE2_IN. 13530 SE2_IN19 SE2_IN. 13531 SE2_IN20 SE2_IN. 13532 SE2_IN21 SE2_IN. 13533 SE2_IN22 SE2_IN. 13534 SE2_IN23 SE2_IN. 13535 SE2_IN24 SE2_IN. 13536 SE2_IN25 SE2_IN. 13537 SE2_IN26 SE2_IN. 13538 SE2_IN27 SE2_IN. 13539 SE2_IN28 SE2_IN. 13540 SE2_IN29 SE2_IN. 13541 SE2_IN30 SE2_IN. 13542 SE2_IN31 SE2_IN. 13543 SE2_IN32 SE2_IN. 13544 SE1_WK01 SE1_WK. 13545 SE1_WK02 SE1_WK. 13546 SE1_WK03 SE1_WK. 13547 SE1_WK04 SE1_WK. 13548 SE1_WK05 SE1_WK. 13549 SE1_WK06 SE1_WK. 13550 SE1_WK07 SE1_WK. 13551 SE1_WK08 SE1_WK. 13552 SE1_WK09 SE1_WK. 13553 SE1_WK10 SE1_WK. 13554 SE1_WK11 SE1_WK. 13555 SE1_WK12 SE1_WK. 13556 SE1_WK13 SE1_WK. 13557 SE1_WK14 SE1_WK. 13558 SE1_WK15 SE1_WK. 13559 SE1_WK16 SE1_WK. 13560 SE1_WK17 SE1_WK. 13561 SE1_WK18 SE1_WK. 182 The SAS System 15:27 Thursday, July 3, 2003 13562 SE1_WK19 SE1_WK. 13563 SE1_WK20 SE1_WK. 13564 SE1_WK21 SE1_WK. 13565 SE1_WK22 SE1_WK. 13566 SE1_WK23 SE1_WK. 13567 SE1_WK24 SE1_WK. 13568 SE1_WK25 SE1_WK. 13569 SE1_WK26 SE1_WK. 13570 SE1_WK27 SE1_WK. 13571 SE1_WK28 SE1_WK. 13572 SE1_WK29 SE1_WK. 13573 SE1_WK30 SE1_WK. 13574 SE1_WK31 SE1_WK. 13575 SE1_WK32 SE1_WK. 13576 SE2_WK01 SE2_WK. 13577 SE2_WK02 SE2_WK. 13578 SE2_WK03 SE2_WK. 13579 SE2_WK04 SE2_WK. 13580 SE2_WK05 SE2_WK. 13581 SE2_WK06 SE2_WK. 13582 SE2_WK07 SE2_WK. 13583 SE2_WK08 SE2_WK. 13584 SE2_WK09 SE2_WK. 13585 SE2_WK10 SE2_WK. 13586 SE2_WK11 SE2_WK. 13587 SE2_WK12 SE2_WK. 13588 SE2_WK13 SE2_WK. 13589 SE2_WK14 SE2_WK. 13590 SE2_WK15 SE2_WK. 13591 SE2_WK16 SE2_WK. 13592 SE2_WK17 SE2_WK. 13593 SE2_WK18 SE2_WK. 13594 SE2_WK19 SE2_WK. 13595 SE2_WK20 SE2_WK. 13596 SE2_WK21 SE2_WK. 13597 SE2_WK22 SE2_WK. 13598 SE2_WK23 SE2_WK. 13599 SE2_WK24 SE2_WK. 13600 SE2_WK25 SE2_WK. 13601 SE2_WK26 SE2_WK. 13602 SE2_WK27 SE2_WK. 13603 SE2_WK28 SE2_WK. 13604 SE2_WK29 SE2_WK. 13605 SE2_WK30 SE2_WK. 13606 SE2_WK31 SE2_WK. 13607 SE2_WK32 SE2_WK. 13608 S2212_01 S2212L. 13609 S2212_02 S2212L. 13610 S2212_03 S2212L. 13611 S2212_04 S2212L. 13612 S2212_05 S2212L. 13613 S2212_06 S2212L. 13614 S2212_07 S2212L. 13615 S2212_08 S2212L. 13616 S2212_09 S2212L. 13617 S2212_10 S2212L. 13618 S2212_11 S2212L. 13619 S2212_12 S2212L. 13620 S2212_13 S2212L. 13621 S2212_14 S2212L. 13622 S2212_15 S2212L. 13623 S2212_16 S2212L. 13624 S2212_17 S2212L. 13625 S2212_18 S2212L. 13626 S2212_19 S2212L. 13627 S2212_20 S2212L. 13628 S2212_21 S2212L. 13629 S2212_22 S2212L. 13630 S2212_23 S2212L. 13631 S2212_24 S2212L. 13632 S2212_25 S2212L. 13633 S2212_26 S2212L. 13634 S2212_27 S2212L. 13635 S2212_28 S2212L. 13636 S2212_29 S2212L. 13637 S2212_30 S2212L. 183 The SAS System 15:27 Thursday, July 3, 2003 13638 S2212_31 S2212L. 13639 S2212_32 S2212L. 13640 S2312_01 S2312L. 13641 S2312_02 S2312L. 13642 S2312_03 S2312L. 13643 S2312_04 S2312L. 13644 S2312_05 S2312L. 13645 S2312_06 S2312L. 13646 S2312_07 S2312L. 13647 S2312_08 S2312L. 13648 S2312_09 S2312L. 13649 S2312_10 S2312L. 13650 S2312_11 S2312L. 13651 S2312_12 S2312L. 13652 S2312_13 S2312L. 13653 S2312_14 S2312L. 13654 S2312_15 S2312L. 13655 S2312_16 S2312L. 13656 S2312_17 S2312L. 13657 S2312_18 S2312L. 13658 S2312_19 S2312L. 13659 S2312_20 S2312L. 13660 S2312_21 S2312L. 13661 S2312_22 S2312L. 13662 S2312_23 S2312L. 13663 S2312_24 S2312L. 13664 S2312_25 S2312L. 13665 S2312_26 S2312L. 13666 S2312_27 S2312L. 13667 S2312_28 S2312L. 13668 S2312_29 S2312L. 13669 S2312_30 S2312L. 13670 S2312_31 S2312L. 13671 S2312_32 S2312L. 13672 G1SRC1 G1SRC1L. 13673 G1SRC2 G1SRC2L. 13674 G1SRC3 G1SRC3L. 13675 G1SRC4 G1SRC4L. 13676 G1SRC5 G1SRC5L. 13677 G1SRC6 G1SRC6L. 13678 G1SRC7 G1SRC7L. 13679 G1SRC8 G1SRC8L. 13680 G1SRC9 G1SRC9L. 13681 G1SRC10 G1SRC10L. 13682 SSRECIN1 SSRECIN. 13683 SSRECIN2 SSRECIN. 13684 SSRECIN3 SSRECIN. 13685 SSRECIN4 SSRECIN. 13686 SSRECIN5 SSRECIN. 13687 SSRECIN6 SSRECIN. 13688 SSRECIN7 SSRECIN. 13689 SSRECIN8 SSRECIN. 13690 RRRECIN1 RRRECIN. 13691 RRRECIN2 RRRECIN. 13692 RRRECIN3 RRRECIN. 13693 RRRECIN4 RRRECIN. 13694 RRRECIN5 RRRECIN. 13695 RRRECIN6 RRRECIN. 13696 RRRECIN7 RRRECIN. 13697 RRRECIN8 RRRECIN. 13698 VET3060 VET3060L. 13699 AST1001 AST100L. 13700 AST1002 AST100L. 13701 AST1003 AST100L. 13702 AST1004 AST100L. 13703 AST1005 AST100L. 13704 AST1006 AST100L. 13705 AST1007 AST100L. 13706 AST1008 AST100L. 13707 AST1011 AST101L. 13708 AST1012 AST101L. 13709 AST1013 AST101L. 13710 AST1014 AST101L. 13711 AST1015 AST101L. 13712 AST1016 AST101L. 13713 AST1017 AST101L. 184 The SAS System 15:27 Thursday, July 3, 2003 13714 AST1018 AST101L. 13715 AST1021 AST102L. 13716 AST1022 AST102L. 13717 AST1023 AST102L. 13718 AST1024 AST102L. 13719 AST1025 AST102L. 13720 AST1026 AST102L. 13721 AST1027 AST102L. 13722 AST1028 AST102L. 13723 AST1031 AST103L. 13724 AST1032 AST103L. 13725 AST1033 AST103L. 13726 AST1034 AST103L. 13727 AST1035 AST103L. 13728 AST1036 AST103L. 13729 AST1037 AST103L. 13730 AST1038 AST103L. 13731 AST1041 AST104L. 13732 AST1042 AST104L. 13733 AST1043 AST104L. 13734 AST1044 AST104L. 13735 AST1045 AST104L. 13736 AST1046 AST104L. 13737 AST1047 AST104L. 13738 AST1048 AST104L. 13739 AST1051 AST105L. 13740 AST1052 AST105L. 13741 AST1053 AST105L. 13742 AST1054 AST105L. 13743 AST1055 AST105L. 13744 AST1056 AST105L. 13745 AST1057 AST105L. 13746 AST1058 AST105L. 13747 AST1061 AST106L. 13748 AST1062 AST106L. 13749 AST1063 AST106L. 13750 AST1064 AST106L. 13751 AST1065 AST106L. 13752 AST1066 AST106L. 13753 AST1067 AST106L. 13754 AST1068 AST106L. 13755 AST1071 AST107L. 13756 AST1072 AST107L. 13757 AST1073 AST107L. 13758 AST1074 AST107L. 13759 AST1075 AST107L. 13760 AST1076 AST107L. 13761 AST1077 AST107L. 13762 AST1078 AST107L. 13763 AST1101 AST110L. 13764 AST1102 AST110L. 13765 AST1103 AST110L. 13766 AST1104 AST110L. 13767 AST1105 AST110L. 13768 AST1106 AST110L. 13769 AST1107 AST110L. 13770 AST1108 AST110L. 13771 RR_PID01 RR_PID. 13772 RR_PID02 RR_PID. 13773 RR_PID03 RR_PID. 13774 RR_PID04 RR_PID. 13775 RR_PID05 RR_PID. 13776 RR_PID06 RR_PID. 13777 RR_PID07 RR_PID. 13778 RR_PID08 RR_PID. 13779 RR_PID09 RR_PID. 13780 RR_PID10 RR_PID. 13781 RR_PID11 RR_PID. 13782 RR_PID12 RR_PID. 13783 RR_PID13 RR_PID. 13784 RR_PID14 RR_PID. 13785 RR_PID15 RR_PID. 13786 RR_PID16 RR_PID. 13787 RR_PID17 RR_PID. 13788 RR_PID18 RR_PID. 13789 RR_PID19 RR_PID. 185 The SAS System 15:27 Thursday, July 3, 2003 13790 RR_PID20 RR_PID. 13791 RR_PID21 RR_PID. 13792 RR_PID22 RR_PID. 13793 RR_PID23 RR_PID. 13794 RR_PID24 RR_PID. 13795 RR_PID25 RR_PID. 13796 RR_PID26 RR_PID. 13797 RR_PID27 RR_PID. 13798 RR_PID28 RR_PID. 13799 RR_PID29 RR_PID. 13800 RR_PID30 RR_PID. 13801 RR_PID31 RR_PID. 13802 RR_PID32 RR_PID. 13803 VA_PID01 VA_PID. 13804 VA_PID02 VA_PID. 13805 VA_PID03 VA_PID. 13806 VA_PID04 VA_PID. 13807 VA_PID05 VA_PID. 13808 VA_PID06 VA_PID. 13809 VA_PID07 VA_PID. 13810 VA_PID08 VA_PID. 13811 VA_PID09 VA_PID. 13812 VA_PID10 VA_PID. 13813 VA_PID11 VA_PID. 13814 VA_PID12 VA_PID. 13815 VA_PID13 VA_PID. 13816 VA_PID14 VA_PID. 13817 VA_PID15 VA_PID. 13818 VA_PID16 VA_PID. 13819 VA_PID17 VA_PID. 13820 VA_PID18 VA_PID. 13821 VA_PID19 VA_PID. 13822 VA_PID20 VA_PID. 13823 VA_PID21 VA_PID. 13824 VA_PID22 VA_PID. 13825 VA_PID23 VA_PID. 13826 VA_PID24 VA_PID. 13827 VA_PID25 VA_PID. 13828 VA_PID26 VA_PID. 13829 VA_PID27 VA_PID. 13830 VA_PID28 VA_PID. 13831 VA_PID29 VA_PID. 13832 VA_PID30 VA_PID. 13833 VA_PID31 VA_PID. 13834 VA_PID32 VA_PID. 13835 AFDCPI01 AFDCPI. 13836 AFDCPI02 AFDCPI. 13837 AFDCPI03 AFDCPI. 13838 AFDCPI04 AFDCPI. 13839 AFDCPI05 AFDCPI. 13840 AFDCPI06 AFDCPI. 13841 AFDCPI07 AFDCPI. 13842 AFDCPI08 AFDCPI. 13843 AFDCPI09 AFDCPI. 13844 AFDCPI10 AFDCPI. 13845 AFDCPI11 AFDCPI. 13846 AFDCPI12 AFDCPI. 13847 AFDCPI13 AFDCPI. 13848 AFDCPI14 AFDCPI. 13849 AFDCPI15 AFDCPI. 13850 AFDCPI16 AFDCPI. 13851 AFDCPI17 AFDCPI. 13852 AFDCPI18 AFDCPI. 13853 AFDCPI19 AFDCPI. 13854 AFDCPI20 AFDCPI. 13855 AFDCPI21 AFDCPI. 13856 AFDCPI22 AFDCPI. 13857 AFDCPI23 AFDCPI. 13858 AFDCPI24 AFDCPI. 13859 AFDCPI25 AFDCPI. 13860 AFDCPI26 AFDCPI. 13861 AFDCPI27 AFDCPI. 13862 AFDCPI28 AFDCPI. 13863 AFDCPI29 AFDCPI. 13864 AFDCPI30 AFDCPI. 13865 AFDCPI31 AFDCPI. 186 The SAS System 15:27 Thursday, July 3, 2003 13866 AFDCPI32 AFDCPI. 13867 GA_PID01 GA_PID. 13868 GA_PID02 GA_PID. 13869 GA_PID03 GA_PID. 13870 GA_PID04 GA_PID. 13871 GA_PID05 GA_PID. 13872 GA_PID06 GA_PID. 13873 GA_PID07 GA_PID. 13874 GA_PID08 GA_PID. 13875 GA_PID09 GA_PID. 13876 GA_PID10 GA_PID. 13877 GA_PID11 GA_PID. 13878 GA_PID12 GA_PID. 13879 GA_PID13 GA_PID. 13880 GA_PID14 GA_PID. 13881 GA_PID15 GA_PID. 13882 GA_PID16 GA_PID. 13883 GA_PID17 GA_PID. 13884 GA_PID18 GA_PID. 13885 GA_PID19 GA_PID. 13886 GA_PID20 GA_PID. 13887 GA_PID21 GA_PID. 13888 GA_PID22 GA_PID. 13889 GA_PID23 GA_PID. 13890 GA_PID24 GA_PID. 13891 GA_PID25 GA_PID. 13892 GA_PID26 GA_PID. 13893 GA_PID27 GA_PID. 13894 GA_PID28 GA_PID. 13895 GA_PID29 GA_PID. 13896 GA_PID30 GA_PID. 13897 GA_PID31 GA_PID. 13898 GA_PID32 GA_PID. 13899 FOSTPI01 FOSTPI. 13900 FOSTPI02 FOSTPI. 13901 FOSTPI03 FOSTPI. 13902 FOSTPI04 FOSTPI. 13903 FOSTPI05 FOSTPI. 13904 FOSTPI06 FOSTPI. 13905 FOSTPI07 FOSTPI. 13906 FOSTPI08 FOSTPI. 13907 FOSTPI09 FOSTPI. 13908 FOSTPI10 FOSTPI. 13909 FOSTPI11 FOSTPI. 13910 FOSTPI12 FOSTPI. 13911 FOSTPI13 FOSTPI. 13912 FOSTPI14 FOSTPI. 13913 FOSTPI15 FOSTPI. 13914 FOSTPI16 FOSTPI. 13915 FOSTPI17 FOSTPI. 13916 FOSTPI18 FOSTPI. 13917 FOSTPI19 FOSTPI. 13918 FOSTPI20 FOSTPI. 13919 FOSTPI21 FOSTPI. 13920 FOSTPI22 FOSTPI. 13921 FOSTPI23 FOSTPI. 13922 FOSTPI24 FOSTPI. 13923 FOSTPI25 FOSTPI. 13924 FOSTPI26 FOSTPI. 13925 FOSTPI27 FOSTPI. 13926 FOSTPI28 FOSTPI. 13927 FOSTPI29 FOSTPI. 13928 FOSTPI30 FOSTPI. 13929 FOSTPI31 FOSTPI. 13930 FOSTPI32 FOSTPI. 13931 OTH_PI01 OTH_PI. 13932 OTH_PI02 OTH_PI. 13933 OTH_PI03 OTH_PI. 13934 OTH_PI04 OTH_PI. 13935 OTH_PI05 OTH_PI. 13936 OTH_PI06 OTH_PI. 13937 OTH_PI07 OTH_PI. 13938 OTH_PI08 OTH_PI. 13939 OTH_PI09 OTH_PI. 13940 OTH_PI10 OTH_PI. 13941 OTH_PI11 OTH_PI. 187 The SAS System 15:27 Thursday, July 3, 2003 13942 OTH_PI12 OTH_PI. 13943 OTH_PI13 OTH_PI. 13944 OTH_PI14 OTH_PI. 13945 OTH_PI15 OTH_PI. 13946 OTH_PI16 OTH_PI. 13947 OTH_PI17 OTH_PI. 13948 OTH_PI18 OTH_PI. 13949 OTH_PI19 OTH_PI. 13950 OTH_PI20 OTH_PI. 13951 OTH_PI21 OTH_PI. 13952 OTH_PI22 OTH_PI. 13953 OTH_PI23 OTH_PI. 13954 OTH_PI24 OTH_PI. 13955 OTH_PI25 OTH_PI. 13956 OTH_PI26 OTH_PI. 13957 OTH_PI27 OTH_PI. 13958 OTH_PI28 OTH_PI. 13959 OTH_PI29 OTH_PI. 13960 OTH_PI30 OTH_PI. 13961 OTH_PI31 OTH_PI. 13962 OTH_PI32 OTH_PI. 13963 WIC_PI01 WIC_PI. 13964 WIC_PI02 WIC_PI. 13965 WIC_PI03 WIC_PI. 13966 WIC_PI04 WIC_PI. 13967 WIC_PI05 WIC_PI. 13968 WIC_PI06 WIC_PI. 13969 WIC_PI07 WIC_PI. 13970 WIC_PI08 WIC_PI. 13971 WIC_PI09 WIC_PI. 13972 WIC_PI10 WIC_PI. 13973 WIC_PI11 WIC_PI. 13974 WIC_PI12 WIC_PI. 13975 WIC_PI13 WIC_PI. 13976 WIC_PI14 WIC_PI. 13977 WIC_PI15 WIC_PI. 13978 WIC_PI16 WIC_PI. 13979 WIC_PI17 WIC_PI. 13980 WIC_PI18 WIC_PI. 13981 WIC_PI19 WIC_PI. 13982 WIC_PI20 WIC_PI. 13983 WIC_PI21 WIC_PI. 13984 WIC_PI22 WIC_PI. 13985 WIC_PI23 WIC_PI. 13986 WIC_PI24 WIC_PI. 13987 WIC_PI25 WIC_PI. 13988 WIC_PI26 WIC_PI. 13989 WIC_PI27 WIC_PI. 13990 WIC_PI28 WIC_PI. 13991 WIC_PI29 WIC_PI. 13992 WIC_PI30 WIC_PI. 13993 WIC_PI31 WIC_PI. 13994 WIC_PI32 WIC_PI. 13995 FS_PID01 FS_PID. 13996 FS_PID02 FS_PID. 13997 FS_PID03 FS_PID. 13998 FS_PID04 FS_PID. 13999 FS_PID05 FS_PID. 14000 FS_PID06 FS_PID. 14001 FS_PID07 FS_PID. 14002 FS_PID08 FS_PID. 14003 FS_PID09 FS_PID. 14004 FS_PID10 FS_PID. 14005 FS_PID11 FS_PID. 14006 FS_PID12 FS_PID. 14007 FS_PID13 FS_PID. 14008 FS_PID14 FS_PID. 14009 FS_PID15 FS_PID. 14010 FS_PID16 FS_PID. 14011 FS_PID17 FS_PID. 14012 FS_PID18 FS_PID. 14013 FS_PID19 FS_PID. 14014 FS_PID20 FS_PID. 14015 FS_PID21 FS_PID. 14016 FS_PID22 FS_PID. 14017 FS_PID23 FS_PID. 188 The SAS System 15:27 Thursday, July 3, 2003 14018 FS_PID24 FS_PID. 14019 FS_PID25 FS_PID. 14020 FS_PID26 FS_PID. 14021 FS_PID27 FS_PID. 14022 FS_PID28 FS_PID. 14023 FS_PID29 FS_PID. 14024 FS_PID30 FS_PID. 14025 FS_PID31 FS_PID. 14026 FS_PID32 FS_PID. 14027 WS1_IM01 WS1_IM. 14028 WS1_IM02 WS1_IM. 14029 WS1_IM03 WS1_IM. 14030 WS1_IM04 WS1_IM. 14031 WS1_IM05 WS1_IM. 14032 WS1_IM06 WS1_IM. 14033 WS1_IM07 WS1_IM. 14034 WS1_IM08 WS1_IM. 14035 WS1_IM09 WS1_IM. 14036 WS1_IM10 WS1_IM. 14037 WS1_IM11 WS1_IM. 14038 WS1_IM12 WS1_IM. 14039 WS1_IM13 WS1_IM. 14040 WS1_IM14 WS1_IM. 14041 WS1_IM15 WS1_IM. 14042 WS1_IM16 WS1_IM. 14043 WS1_IM17 WS1_IM. 14044 WS1_IM18 WS1_IM. 14045 WS1_IM19 WS1_IM. 14046 WS1_IM20 WS1_IM. 14047 WS1_IM21 WS1_IM. 14048 WS1_IM22 WS1_IM. 14049 WS1_IM23 WS1_IM. 14050 WS1_IM24 WS1_IM. 14051 WS1_IM25 WS1_IM. 14052 WS1_IM26 WS1_IM. 14053 WS1_IM27 WS1_IM. 14054 WS1_IM28 WS1_IM. 14055 WS1_IM29 WS1_IM. 14056 WS1_IM30 WS1_IM. 14057 WS1_IM31 WS1_IM. 14058 WS1_IM32 WS1_IM. 14059 WS2_IM01 WS2_IM. 14060 WS2_IM02 WS2_IM. 14061 WS2_IM03 WS2_IM. 14062 WS2_IM04 WS2_IM. 14063 WS2_IM05 WS2_IM. 14064 WS2_IM06 WS2_IM. 14065 WS2_IM07 WS2_IM. 14066 WS2_IM08 WS2_IM. 14067 WS2_IM09 WS2_IM. 14068 WS2_IM10 WS2_IM. 14069 WS2_IM11 WS2_IM. 14070 WS2_IM12 WS2_IM. 14071 WS2_IM13 WS2_IM. 14072 WS2_IM14 WS2_IM. 14073 WS2_IM15 WS2_IM. 14074 WS2_IM16 WS2_IM. 14075 WS2_IM17 WS2_IM. 14076 WS2_IM18 WS2_IM. 14077 WS2_IM19 WS2_IM. 14078 WS2_IM20 WS2_IM. 14079 WS2_IM21 WS2_IM. 14080 WS2_IM22 WS2_IM. 14081 WS2_IM23 WS2_IM. 14082 WS2_IM24 WS2_IM. 14083 WS2_IM25 WS2_IM. 14084 WS2_IM26 WS2_IM. 14085 WS2_IM27 WS2_IM. 14086 WS2_IM28 WS2_IM. 14087 WS2_IM29 WS2_IM. 14088 WS2_IM30 WS2_IM. 14089 WS2_IM31 WS2_IM. 14090 WS2_IM32 WS2_IM. 14091 SE1_IM01 SE1_IM. 14092 SE1_IM02 SE1_IM. 14093 SE1_IM03 SE1_IM. 189 The SAS System 15:27 Thursday, July 3, 2003 14094 SE1_IM04 SE1_IM. 14095 SE1_IM05 SE1_IM. 14096 SE1_IM06 SE1_IM. 14097 SE1_IM07 SE1_IM. 14098 SE1_IM08 SE1_IM. 14099 SE1_IM09 SE1_IM. 14100 SE1_IM10 SE1_IM. 14101 SE1_IM11 SE1_IM. 14102 SE1_IM12 SE1_IM. 14103 SE1_IM13 SE1_IM. 14104 SE1_IM14 SE1_IM. 14105 SE1_IM15 SE1_IM. 14106 SE1_IM16 SE1_IM. 14107 SE1_IM17 SE1_IM. 14108 SE1_IM18 SE1_IM. 14109 SE1_IM19 SE1_IM. 14110 SE1_IM20 SE1_IM. 14111 SE1_IM21 SE1_IM. 14112 SE1_IM22 SE1_IM. 14113 SE1_IM23 SE1_IM. 14114 SE1_IM24 SE1_IM. 14115 SE1_IM25 SE1_IM. 14116 SE1_IM26 SE1_IM. 14117 SE1_IM27 SE1_IM. 14118 SE1_IM28 SE1_IM. 14119 SE1_IM29 SE1_IM. 14120 SE1_IM30 SE1_IM. 14121 SE1_IM31 SE1_IM. 14122 SE1_IM32 SE1_IM. 14123 SE2_IM01 SE2_IM. 14124 SE2_IM02 SE2_IM. 14125 SE2_IM03 SE2_IM. 14126 SE2_IM04 SE2_IM. 14127 SE2_IM05 SE2_IM. 14128 SE2_IM06 SE2_IM. 14129 SE2_IM07 SE2_IM. 14130 SE2_IM08 SE2_IM. 14131 SE2_IM09 SE2_IM. 14132 SE2_IM10 SE2_IM. 14133 SE2_IM11 SE2_IM. 14134 SE2_IM12 SE2_IM. 14135 SE2_IM13 SE2_IM. 14136 SE2_IM14 SE2_IM. 14137 SE2_IM15 SE2_IM. 14138 SE2_IM16 SE2_IM. 14139 SE2_IM17 SE2_IM. 14140 SE2_IM18 SE2_IM. 14141 SE2_IM19 SE2_IM. 14142 SE2_IM20 SE2_IM. 14143 SE2_IM21 SE2_IM. 14144 SE2_IM22 SE2_IM. 14145 SE2_IM23 SE2_IM. 14146 SE2_IM24 SE2_IM. 14147 SE2_IM25 SE2_IM. 14148 SE2_IM26 SE2_IM. 14149 SE2_IM27 SE2_IM. 14150 SE2_IM28 SE2_IM. 14151 SE2_IM29 SE2_IM. 14152 SE2_IM30 SE2_IM. 14153 SE2_IM31 SE2_IM. 14154 SE2_IM32 SE2_IM. 14155 G1_I1_01 G1_I1L. 14156 G1_I1_02 G1_I1L. 14157 G1_I1_03 G1_I1L. 14158 G1_I1_04 G1_I1L. 14159 G1_I1_05 G1_I1L. 14160 G1_I1_06 G1_I1L. 14161 G1_I1_07 G1_I1L. 14162 G1_I1_08 G1_I1L. 14163 G1_I1_09 G1_I1L. 14164 G1_I1_10 G1_I1L. 14165 G1_I1_11 G1_I1L. 14166 G1_I1_12 G1_I1L. 14167 G1_I1_13 G1_I1L. 14168 G1_I1_14 G1_I1L. 14169 G1_I1_15 G1_I1L. 190 The SAS System 15:27 Thursday, July 3, 2003 14170 G1_I1_16 G1_I1L. 14171 G1_I1_17 G1_I1L. 14172 G1_I1_18 G1_I1L. 14173 G1_I1_19 G1_I1L. 14174 G1_I1_20 G1_I1L. 14175 G1_I1_21 G1_I1L. 14176 G1_I1_22 G1_I1L. 14177 G1_I1_23 G1_I1L. 14178 G1_I1_24 G1_I1L. 14179 G1_I1_25 G1_I1L. 14180 G1_I1_26 G1_I1L. 14181 G1_I1_27 G1_I1L. 14182 G1_I1_28 G1_I1L. 14183 G1_I1_29 G1_I1L. 14184 G1_I1_30 G1_I1L. 14185 G1_I1_31 G1_I1L. 14186 G1_I1_32 G1_I1L. 14187 G1_I2_01 G1_I2L. 14188 G1_I2_02 G1_I2L. 14189 G1_I2_03 G1_I2L. 14190 G1_I2_04 G1_I2L. 14191 G1_I2_05 G1_I2L. 14192 G1_I2_06 G1_I2L. 14193 G1_I2_07 G1_I2L. 14194 G1_I2_08 G1_I2L. 14195 G1_I2_09 G1_I2L. 14196 G1_I2_10 G1_I2L. 14197 G1_I2_11 G1_I2L. 14198 G1_I2_12 G1_I2L. 14199 G1_I2_13 G1_I2L. 14200 G1_I2_14 G1_I2L. 14201 G1_I2_15 G1_I2L. 14202 G1_I2_16 G1_I2L. 14203 G1_I2_17 G1_I2L. 14204 G1_I2_18 G1_I2L. 14205 G1_I2_19 G1_I2L. 14206 G1_I2_20 G1_I2L. 14207 G1_I2_21 G1_I2L. 14208 G1_I2_22 G1_I2L. 14209 G1_I2_23 G1_I2L. 14210 G1_I2_24 G1_I2L. 14211 G1_I2_25 G1_I2L. 14212 G1_I2_26 G1_I2L. 14213 G1_I2_27 G1_I2L. 14214 G1_I2_28 G1_I2L. 14215 G1_I2_29 G1_I2L. 14216 G1_I2_30 G1_I2L. 14217 G1_I2_31 G1_I2L. 14218 G1_I2_32 G1_I2L. 14219 G1_I3_01 G1_I3L. 14220 G1_I3_02 G1_I3L. 14221 G1_I3_03 G1_I3L. 14222 G1_I3_04 G1_I3L. 14223 G1_I3_05 G1_I3L. 14224 G1_I3_06 G1_I3L. 14225 G1_I3_07 G1_I3L. 14226 G1_I3_08 G1_I3L. 14227 G1_I3_09 G1_I3L. 14228 G1_I3_10 G1_I3L. 14229 G1_I3_11 G1_I3L. 14230 G1_I3_12 G1_I3L. 14231 G1_I3_13 G1_I3L. 14232 G1_I3_14 G1_I3L. 14233 G1_I3_15 G1_I3L. 14234 G1_I3_16 G1_I3L. 14235 G1_I3_17 G1_I3L. 14236 G1_I3_18 G1_I3L. 14237 G1_I3_19 G1_I3L. 14238 G1_I3_20 G1_I3L. 14239 G1_I3_21 G1_I3L. 14240 G1_I3_22 G1_I3L. 14241 G1_I3_23 G1_I3L. 14242 G1_I3_24 G1_I3L. 14243 G1_I3_25 G1_I3L. 14244 G1_I3_26 G1_I3L. 14245 G1_I3_27 G1_I3L. 191 The SAS System 15:27 Thursday, July 3, 2003 14246 G1_I3_28 G1_I3L. 14247 G1_I3_29 G1_I3L. 14248 G1_I3_30 G1_I3L. 14249 G1_I3_31 G1_I3L. 14250 G1_I3_32 G1_I3L. 14251 G1_I4_01 G1_I4L. 14252 G1_I4_02 G1_I4L. 14253 G1_I4_03 G1_I4L. 14254 G1_I4_04 G1_I4L. 14255 G1_I4_05 G1_I4L. 14256 G1_I4_06 G1_I4L. 14257 G1_I4_07 G1_I4L. 14258 G1_I4_08 G1_I4L. 14259 G1_I4_09 G1_I4L. 14260 G1_I4_10 G1_I4L. 14261 G1_I4_11 G1_I4L. 14262 G1_I4_12 G1_I4L. 14263 G1_I4_13 G1_I4L. 14264 G1_I4_14 G1_I4L. 14265 G1_I4_15 G1_I4L. 14266 G1_I4_16 G1_I4L. 14267 G1_I4_17 G1_I4L. 14268 G1_I4_18 G1_I4L. 14269 G1_I4_19 G1_I4L. 14270 G1_I4_20 G1_I4L. 14271 G1_I4_21 G1_I4L. 14272 G1_I4_22 G1_I4L. 14273 G1_I4_23 G1_I4L. 14274 G1_I4_24 G1_I4L. 14275 G1_I4_25 G1_I4L. 14276 G1_I4_26 G1_I4L. 14277 G1_I4_27 G1_I4L. 14278 G1_I4_28 G1_I4L. 14279 G1_I4_29 G1_I4L. 14280 G1_I4_30 G1_I4L. 14281 G1_I4_31 G1_I4L. 14282 G1_I4_32 G1_I4L. 14283 G11_IM01 G11_IM. 14284 G11_IM02 G11_IM. 14285 G11_IM03 G11_IM. 14286 G11_IM04 G11_IM. 14287 G11_IM05 G11_IM. 14288 G11_IM06 G11_IM. 14289 G11_IM07 G11_IM. 14290 G11_IM08 G11_IM. 14291 G11_IM09 G11_IM. 14292 G11_IM10 G11_IM. 14293 G11_IM11 G11_IM. 14294 G11_IM12 G11_IM. 14295 G11_IM13 G11_IM. 14296 G11_IM14 G11_IM. 14297 G11_IM15 G11_IM. 14298 G11_IM16 G11_IM. 14299 G11_IM17 G11_IM. 14300 G11_IM18 G11_IM. 14301 G11_IM19 G11_IM. 14302 G11_IM20 G11_IM. 14303 G11_IM21 G11_IM. 14304 G11_IM22 G11_IM. 14305 G11_IM23 G11_IM. 14306 G11_IM24 G11_IM. 14307 G11_IM25 G11_IM. 14308 G11_IM26 G11_IM. 14309 G11_IM27 G11_IM. 14310 G11_IM28 G11_IM. 14311 G11_IM29 G11_IM. 14312 G11_IM30 G11_IM. 14313 G11_IM31 G11_IM. 14314 G11_IM32 G11_IM. 14315 G1_I6_01 G1_I6L. 14316 G1_I6_02 G1_I6L. 14317 G1_I6_03 G1_I6L. 14318 G1_I6_04 G1_I6L. 14319 G1_I6_05 G1_I6L. 14320 G1_I6_06 G1_I6L. 14321 G1_I6_07 G1_I6L. 192 The SAS System 15:27 Thursday, July 3, 2003 14322 G1_I6_08 G1_I6L. 14323 G1_I6_09 G1_I6L. 14324 G1_I6_10 G1_I6L. 14325 G1_I6_11 G1_I6L. 14326 G1_I6_12 G1_I6L. 14327 G1_I6_13 G1_I6L. 14328 G1_I6_14 G1_I6L. 14329 G1_I6_15 G1_I6L. 14330 G1_I6_16 G1_I6L. 14331 G1_I6_17 G1_I6L. 14332 G1_I6_18 G1_I6L. 14333 G1_I6_19 G1_I6L. 14334 G1_I6_20 G1_I6L. 14335 G1_I6_21 G1_I6L. 14336 G1_I6_22 G1_I6L. 14337 G1_I6_23 G1_I6L. 14338 G1_I6_24 G1_I6L. 14339 G1_I6_25 G1_I6L. 14340 G1_I6_26 G1_I6L. 14341 G1_I6_27 G1_I6L. 14342 G1_I6_28 G1_I6L. 14343 G1_I6_29 G1_I6L. 14344 G1_I6_30 G1_I6L. 14345 G1_I6_31 G1_I6L. 14346 G1_I6_32 G1_I6L. 14347 G1_I7_01 G1_I7L. 14348 G1_I7_02 G1_I7L. 14349 G1_I7_03 G1_I7L. 14350 G1_I7_04 G1_I7L. 14351 G1_I7_05 G1_I7L. 14352 G1_I7_06 G1_I7L. 14353 G1_I7_07 G1_I7L. 14354 G1_I7_08 G1_I7L. 14355 G1_I7_09 G1_I7L. 14356 G1_I7_10 G1_I7L. 14357 G1_I7_11 G1_I7L. 14358 G1_I7_12 G1_I7L. 14359 G1_I7_13 G1_I7L. 14360 G1_I7_14 G1_I7L. 14361 G1_I7_15 G1_I7L. 14362 G1_I7_16 G1_I7L. 14363 G1_I7_17 G1_I7L. 14364 G1_I7_18 G1_I7L. 14365 G1_I7_19 G1_I7L. 14366 G1_I7_20 G1_I7L. 14367 G1_I7_21 G1_I7L. 14368 G1_I7_22 G1_I7L. 14369 G1_I7_23 G1_I7L. 14370 G1_I7_24 G1_I7L. 14371 G1_I7_25 G1_I7L. 14372 G1_I7_26 G1_I7L. 14373 G1_I7_27 G1_I7L. 14374 G1_I7_28 G1_I7L. 14375 G1_I7_29 G1_I7L. 14376 G1_I7_30 G1_I7L. 14377 G1_I7_31 G1_I7L. 14378 G1_I7_32 G1_I7L. 14379 G1_I8_01 G1_I8L. 14380 G1_I8_02 G1_I8L. 14381 G1_I8_03 G1_I8L. 14382 G1_I8_04 G1_I8L. 14383 G1_I8_05 G1_I8L. 14384 G1_I8_06 G1_I8L. 14385 G1_I8_07 G1_I8L. 14386 G1_I8_08 G1_I8L. 14387 G1_I8_09 G1_I8L. 14388 G1_I8_10 G1_I8L. 14389 G1_I8_11 G1_I8L. 14390 G1_I8_12 G1_I8L. 14391 G1_I8_13 G1_I8L. 14392 G1_I8_14 G1_I8L. 14393 G1_I8_15 G1_I8L. 14394 G1_I8_16 G1_I8L. 14395 G1_I8_17 G1_I8L. 14396 G1_I8_18 G1_I8L. 14397 G1_I8_19 G1_I8L. 193 The SAS System 15:27 Thursday, July 3, 2003 14398 G1_I8_20 G1_I8L. 14399 G1_I8_21 G1_I8L. 14400 G1_I8_22 G1_I8L. 14401 G1_I8_23 G1_I8L. 14402 G1_I8_24 G1_I8L. 14403 G1_I8_25 G1_I8L. 14404 G1_I8_26 G1_I8L. 14405 G1_I8_27 G1_I8L. 14406 G1_I8_28 G1_I8L. 14407 G1_I8_29 G1_I8L. 14408 G1_I8_30 G1_I8L. 14409 G1_I8_31 G1_I8L. 14410 G1_I8_32 G1_I8L. 14411 G1_I9_01 G1_I9L. 14412 G1_I9_02 G1_I9L. 14413 G1_I9_03 G1_I9L. 14414 G1_I9_04 G1_I9L. 14415 G1_I9_05 G1_I9L. 14416 G1_I9_06 G1_I9L. 14417 G1_I9_07 G1_I9L. 14418 G1_I9_08 G1_I9L. 14419 G1_I9_09 G1_I9L. 14420 G1_I9_10 G1_I9L. 14421 G1_I9_11 G1_I9L. 14422 G1_I9_12 G1_I9L. 14423 G1_I9_13 G1_I9L. 14424 G1_I9_14 G1_I9L. 14425 G1_I9_15 G1_I9L. 14426 G1_I9_16 G1_I9L. 14427 G1_I9_17 G1_I9L. 14428 G1_I9_18 G1_I9L. 14429 G1_I9_19 G1_I9L. 14430 G1_I9_20 G1_I9L. 14431 G1_I9_21 G1_I9L. 14432 G1_I9_22 G1_I9L. 14433 G1_I9_23 G1_I9L. 14434 G1_I9_24 G1_I9L. 14435 G1_I9_25 G1_I9L. 14436 G1_I9_26 G1_I9L. 14437 G1_I9_27 G1_I9L. 14438 G1_I9_28 G1_I9L. 14439 G1_I9_29 G1_I9L. 14440 G1_I9_30 G1_I9L. 14441 G1_I9_31 G1_I9L. 14442 G1_I9_32 G1_I9L. 14443 G1_I1001 G1_I10L. 14444 G1_I1002 G1_I10L. 14445 G1_I1003 G1_I10L. 14446 G1_I1004 G1_I10L. 14447 G1_I1005 G1_I10L. 14448 G1_I1006 G1_I10L. 14449 G1_I1007 G1_I10L. 14450 G1_I1008 G1_I10L. 14451 G1_I1009 G1_I10L. 14452 G1_I1010 G1_I10L. 14453 G1_I1011 G1_I10L. 14454 G1_I1012 G1_I10L. 14455 G1_I1013 G1_I10L. 14456 G1_I1014 G1_I10L. 14457 G1_I1015 G1_I10L. 14458 G1_I1016 G1_I10L. 14459 G1_I1017 G1_I10L. 14460 G1_I1018 G1_I10L. 14461 G1_I1019 G1_I10L. 14462 G1_I1020 G1_I10L. 14463 G1_I1021 G1_I10L. 14464 G1_I1022 G1_I10L. 14465 G1_I1023 G1_I10L. 14466 G1_I1024 G1_I10L. 14467 G1_I1025 G1_I10L. 14468 G1_I1026 G1_I10L. 14469 G1_I1027 G1_I10L. 14470 G1_I1028 G1_I10L. 14471 G1_I1029 G1_I10L. 14472 G1_I1030 G1_I10L. 14473 G1_I1031 G1_I10L. 194 The SAS System 15:27 Thursday, July 3, 2003 14474 G1_I1032 G1_I10L. 14475 G2I10001 G2I100L. 14476 G2I10002 G2I100L. 14477 G2I10003 G2I100L. 14478 G2I10004 G2I100L. 14479 G2I10005 G2I100L. 14480 G2I10006 G2I100L. 14481 G2I10007 G2I100L. 14482 G2I10008 G2I100L. 14483 G2I10009 G2I100L. 14484 G2I10010 G2I100L. 14485 G2I10011 G2I100L. 14486 G2I10012 G2I100L. 14487 G2I10013 G2I100L. 14488 G2I10014 G2I100L. 14489 G2I10015 G2I100L. 14490 G2I10016 G2I100L. 14491 G2I10017 G2I100L. 14492 G2I10018 G2I100L. 14493 G2I10019 G2I100L. 14494 G2I10020 G2I100L. 14495 G2I10021 G2I100L. 14496 G2I10022 G2I100L. 14497 G2I10023 G2I100L. 14498 G2I10024 G2I100L. 14499 G2I10025 G2I100L. 14500 G2I10026 G2I100L. 14501 G2I10027 G2I100L. 14502 G2I10028 G2I100L. 14503 G2I10029 G2I100L. 14504 G2I10030 G2I100L. 14505 G2I10031 G2I100L. 14506 G2I10032 G2I100L. 14507 G2I10401 G2I104L. 14508 G2I10402 G2I104L. 14509 G2I10403 G2I104L. 14510 G2I10404 G2I104L. 14511 G2I10405 G2I104L. 14512 G2I10406 G2I104L. 14513 G2I10407 G2I104L. 14514 G2I10408 G2I104L. 14515 G2I10409 G2I104L. 14516 G2I10410 G2I104L. 14517 G2I10411 G2I104L. 14518 G2I10412 G2I104L. 14519 G2I10413 G2I104L. 14520 G2I10414 G2I104L. 14521 G2I10415 G2I104L. 14522 G2I10416 G2I104L. 14523 G2I10417 G2I104L. 14524 G2I10418 G2I104L. 14525 G2I10419 G2I104L. 14526 G2I10420 G2I104L. 14527 G2I10421 G2I104L. 14528 G2I10422 G2I104L. 14529 G2I10423 G2I104L. 14530 G2I10424 G2I104L. 14531 G2I10425 G2I104L. 14532 G2I10426 G2I104L. 14533 G2I10427 G2I104L. 14534 G2I10428 G2I104L. 14535 G2I10429 G2I104L. 14536 G2I10430 G2I104L. 14537 G2I10431 G2I104L. 14538 G2I10432 G2I104L. 14539 G2I11001 G2I110L. 14540 G2I11002 G2I110L. 14541 G2I11003 G2I110L. 14542 G2I11004 G2I110L. 14543 G2I11005 G2I110L. 14544 G2I11006 G2I110L. 14545 G2I11007 G2I110L. 14546 G2I11008 G2I110L. 14547 G2I11009 G2I110L. 14548 G2I11010 G2I110L. 14549 G2I11011 G2I110L. 195 The SAS System 15:27 Thursday, July 3, 2003 14550 G2I11012 G2I110L. 14551 G2I11013 G2I110L. 14552 G2I11014 G2I110L. 14553 G2I11015 G2I110L. 14554 G2I11016 G2I110L. 14555 G2I11017 G2I110L. 14556 G2I11018 G2I110L. 14557 G2I11019 G2I110L. 14558 G2I11020 G2I110L. 14559 G2I11021 G2I110L. 14560 G2I11022 G2I110L. 14561 G2I11023 G2I110L. 14562 G2I11024 G2I110L. 14563 G2I11025 G2I110L. 14564 G2I11026 G2I110L. 14565 G2I11027 G2I110L. 14566 G2I11028 G2I110L. 14567 G2I11029 G2I110L. 14568 G2I11030 G2I110L. 14569 G2I11031 G2I110L. 14570 G2I11032 G2I110L. 14571 G2I12001 G2I120L. 14572 G2I12002 G2I120L. 14573 G2I12003 G2I120L. 14574 G2I12004 G2I120L. 14575 G2I12005 G2I120L. 14576 G2I12006 G2I120L. 14577 G2I12007 G2I120L. 14578 G2I12008 G2I120L. 14579 G2I12009 G2I120L. 14580 G2I12010 G2I120L. 14581 G2I12011 G2I120L. 14582 G2I12012 G2I120L. 14583 G2I12013 G2I120L. 14584 G2I12014 G2I120L. 14585 G2I12015 G2I120L. 14586 G2I12016 G2I120L. 14587 G2I12017 G2I120L. 14588 G2I12018 G2I120L. 14589 G2I12019 G2I120L. 14590 G2I12020 G2I120L. 14591 G2I12021 G2I120L. 14592 G2I12022 G2I120L. 14593 G2I12023 G2I120L. 14594 G2I12024 G2I120L. 14595 G2I12025 G2I120L. 14596 G2I12026 G2I120L. 14597 G2I12027 G2I120L. 14598 G2I12028 G2I120L. 14599 G2I12029 G2I120L. 14600 G2I12030 G2I120L. 14601 G2I12031 G2I120L. 14602 G2I12032 G2I120L. 14603 G2I13001 G2I130L. 14604 G2I13002 G2I130L. 14605 G2I13003 G2I130L. 14606 G2I13004 G2I130L. 14607 G2I13005 G2I130L. 14608 G2I13006 G2I130L. 14609 G2I13007 G2I130L. 14610 G2I13008 G2I130L. 14611 G2I13009 G2I130L. 14612 G2I13010 G2I130L. 14613 G2I13011 G2I130L. 14614 G2I13012 G2I130L. 14615 G2I13013 G2I130L. 14616 G2I13014 G2I130L. 14617 G2I13015 G2I130L. 14618 G2I13016 G2I130L. 14619 G2I13017 G2I130L. 14620 G2I13018 G2I130L. 14621 G2I13019 G2I130L. 14622 G2I13020 G2I130L. 14623 G2I13021 G2I130L. 14624 G2I13022 G2I130L. 14625 G2I13023 G2I130L. 196 The SAS System 15:27 Thursday, July 3, 2003 14626 G2I13024 G2I130L. 14627 G2I13025 G2I130L. 14628 G2I13026 G2I130L. 14629 G2I13027 G2I130L. 14630 G2I13028 G2I130L. 14631 G2I13029 G2I130L. 14632 G2I13030 G2I130L. 14633 G2I13031 G2I130L. 14634 G2I13032 G2I130L. 14635 G2I14001 G2I140L. 14636 G2I14002 G2I140L. 14637 G2I14003 G2I140L. 14638 G2I14004 G2I140L. 14639 G2I14005 G2I140L. 14640 G2I14006 G2I140L. 14641 G2I14007 G2I140L. 14642 G2I14008 G2I140L. 14643 G2I14009 G2I140L. 14644 G2I14010 G2I140L. 14645 G2I14011 G2I140L. 14646 G2I14012 G2I140L. 14647 G2I14013 G2I140L. 14648 G2I14014 G2I140L. 14649 G2I14015 G2I140L. 14650 G2I14016 G2I140L. 14651 G2I14017 G2I140L. 14652 G2I14018 G2I140L. 14653 G2I14019 G2I140L. 14654 G2I14020 G2I140L. 14655 G2I14021 G2I140L. 14656 G2I14022 G2I140L. 14657 G2I14023 G2I140L. 14658 G2I14024 G2I140L. 14659 G2I14025 G2I140L. 14660 G2I14026 G2I140L. 14661 G2I14027 G2I140L. 14662 G2I14028 G2I140L. 14663 G2I14029 G2I140L. 14664 G2I14030 G2I140L. 14665 G2I14031 G2I140L. 14666 G2I14032 G2I140L. 14667 ; NOTE: The PROCEDURE PRINT printed pages 1-95. NOTE: PROCEDURE PRINT used: real time 4.050 seconds cpu time 2.740 seconds 14668 proc contents data=library.sip86fp; 14669 /* 14670 Copyright 2003 shared by Jean Roth and the National Bureau of Economic Research 14671 14672 National Bureau of Economic Research. 14673 1050 Massachusetts Avenue 14674 Cambridge, MA 02138 14675 jroth@nber.org 14676 14677 This program and all programs referenced in it are free software. You 14678 can redistribute the program or modify it under the terms of the GNU 14679 General Public License as published by the Free Software Foundation; 14680 either version 2 of the License, or (at your option) any later version. 14681 14682 This program is distributed in the hope that it will be useful, 14683 but WITHOUT ANY WARRANTY; without even the implied warranty of 14684 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14685 GNU General Public License for more details. 14686 14687 You should have received a copy of the GNU General Public License 14688 along with this program; if not, write to the Free Software 14689 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 14690 USA. 14691 */ WARNING: No datasets qualify for FIRSTOBS and OBS processing. NOTE: The PROCEDURE CONTENTS printed pages 96-161. NOTE: PROCEDURE CONTENTS used: 197 The SAS System 15:27 Thursday, July 3, 2003 real time 0.310 seconds cpu time 0.211 seconds NOTE: The SAS System used: real time 17.990 seconds cpu time 6.134 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414