1 The SAS System 13:10 Thursday, March 25, 2010 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to HARVARD UNIV - SCHOOL OF PUBLIC HEALTH - T&R, Site 0001177014. NOTE: This session is executing on the SunOS 5.10 platform. NOTE: SAS 9.1.3 Service Pack 3 ----------------------------------------------------------------------- NBER NOTE: sas now defaults to sas9. sas8 or sas6 will invoke sas version 8 or 6 respectively. - 2005/10/21 ----------------------------------------------------------------------- You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 4.90 seconds cpu time 0.19 seconds 1 2 /*------------------------------------------------------------------------------------*/ 3 /*by Jean Roth Wed Jun 9 16:58:40 EDT 2004 4 This program reads the 1984 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 ; 2 The SAS System 13:10 Thursday, March 25, 2010 24 *options pagesize=59 linesize=72; 25 26 /*------------------------------------------------------------------------------------*/ 27 28 29 libname library './'; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /disk/nber10/SCCS/sipp/1984 30 31 *See the codebook for more detail; 32 PROC FORMAT cntlout=library.fsp84fp; 33 34 /* 35 The PROC FORMAT statement will store the formats in a sas data set called fsip84fp 36 To use the stored formats in a subsequent program, include something like this: 37 38 proc format cntlin=library.fsp84fp; 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) 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 answered or" 60 1 = "Left - Deceased" 61 2 = "Left - Institutionalized" 62 3 = "Left - Living in Armed Forces barracks" 63 4 = "Left - Moved outside of country" 64 5 = "Left - Separation or divorce" 65 6 = "Left - Person #201 or greater no" 66 7 = "Left - Other" 67 8 = "Entered merged household" 68 9 = "Interviewed in previous Wave but" 69 ; NOTE: Format REASLEF has been output. 70 VALUE SU_RGC (default=32) 71 0 = "Not applicable for coverage" 72 101 = "Applicable for coverage" 73 ; NOTE: Format SU_RGC has been output. 74 VALUE LGTHHT (default=32) 3 The SAS System 13:10 Thursday, March 25, 2010 75 0 = "Not available or not in a" 76 1 = "Married couple household" 77 2 = "Other family household, male" 78 3 = "Other family household, female" 79 4 = "Nonfamily household, male" 80 5 = "Nonfamily household, female" 81 ; NOTE: Format LGTHHT has been output. 82 VALUE LGTKEY (default=32) 83 0 = "This is not a key person" 84 ; NOTE: Format LGTKEY has been output. 85 VALUE LGTOTH (default=32) 86 0 = "This is not an 'other' person" 87 ; NOTE: Format LGTOTH has been output. 88 VALUE SEX (default=32) 89 1 = "Male" 90 2 = "Female" 91 ; NOTE: Format SEX has been output. 92 VALUE RACE (default=32) 93 1 = "White" 94 2 = "Black" 95 3 = "American Indian, Eskimo or" 96 4 = "Asian or Pacific Islander" 97 ; NOTE: Format RACE has been output. 98 VALUE ETHNICTY (default=32) 99 1 = "German" 100 2 = "English" 101 3 = "Irish" 102 4 = "French" 103 5 = "Italian" 104 6 = "Scotish" 105 7 = "Polish" 106 8 = "Dutch" 107 9 = "Swedish" 108 10 = "Norwegian" 109 11 = "Russian" 110 12 = "Ukranian" 111 13 = "Welsh" 112 14 = "Mexican-American" 113 15 = "Chicano" 114 16 = "Mexican" 115 17 = "Puerto Rican" 116 18 = "Cuban" 117 19 = "Central or South American" 118 20 = "Other Spanish" 119 21 = "Afro-American (Black or Negro)" 120 30 = "Another group not listed" 121 39 = "Don't know" 122 ; NOTE: Format ETHNICTY has been output. 123 VALUE RRP (default=32) 124 0 = "Not a sample person in this" 125 1 = "Household reference person," 126 2 = "Household reference person living" 4 The SAS System 13:10 Thursday, March 25, 2010 127 3 = "Spouse of household reference" 128 4 = "Child of household reference" 129 5 = "Other relative of household" 130 6 = "Nonrelative of household reference" 131 7 = "Nonrelative of household reference" 132 ; NOTE: Format RRP has been output. 133 VALUE AGE (default=32) 134 0 = "Less than 1 full year or not a" 135 1 = "1 year" 136 2 = "2 years" 137 85 = "85 years or more" 138 ; NOTE: Format AGE has been output. 139 VALUE MS (default=32) 140 0 = "Not a sample person in this" 141 1 = "Married, spouse present" 142 2 = "Married, spouse absent" 143 3 = "Widowed" 144 4 = "Divorced" 145 5 = "Separated" 146 6 = "Never married" 147 ; NOTE: Format MS has been output. 148 VALUE FAMTYP (default=32) 149 0 = "Primary family or not a sample" 150 1 = "Secondary individual (not a family" 151 2 = "Unrelated sub (secondary) family" 152 3 = "Related subfamily" 153 4 = "Primary individual" 154 ; NOTE: Format FAMTYP has been output. 155 VALUE FAMREL (default=32) 156 0 = "Not applicable, not in sample," 157 1 = "Reference person of family" 158 2 = "Spouse of family reference person" 159 3 = "Child of family reference person" 160 4 = "Other relative of family reference" 161 ; NOTE: Format FAMREL has been output. 162 VALUE FAMNUM (default=32) 163 0 = "Not applicable, not in sample," 164 ; NOTE: Format FAMNUM has been output. 165 VALUE PNSP (default=32) 166 0 = "Not a sample person in this" 167 999 = "Not applicable" 168 ; NOTE: Format PNSP has been output. 169 VALUE ENT_SP (default=32) 170 0 = "Not a sample person in this" 171 99 = "Not applicable" 172 ; NOTE: Format ENT_SP has been output. 173 VALUE PNPT (default=32) 174 0 = "Not a sample person in this" 175 999 = "Not applicable" 176 ; 5 The SAS System 13:10 Thursday, March 25, 2010 NOTE: Format PNPT has been output. 177 VALUE ENT_PT (default=32) 178 0 = "Not a sample person in this" 179 99 = "Not applicable" 180 ; NOTE: Format ENT_PT has been output. 181 VALUE HIGRADE (default=32) 182 0 = "Not applicable if under 15," 183 ; NOTE: Format HIGRADE has been output. 184 VALUE GRD_CMP (default=32) 185 0 = "Not applicable, not in sample," 186 1 = "Yes" 187 2 = "No" 188 ; NOTE: Format GRD_CMP has been output. 189 VALUE IN_AF (default=32) 190 0 = "Not applicable if under 15," 191 1 = "Yes" 192 2 = "No" 193 ; NOTE: Format IN_AF has been output. 194 VALUE USRVE (default=32) 195 0 = "Not applicable, not in sample," 196 1 = "Vietnam Era (August 1964-" 197 2 = "Korean Conflict (June 1950-" 198 3 = "World War II (September 1940-" 199 4 = "World War I (April 1917-" 200 5 = "May 1975 or later" 201 6 = "Other service" 202 9 = "Not answered" 203 ; NOTE: Format USRVE has been output. 204 VALUE U_BRTHMN (default=32) 205 -9 = "Not answered" 206 1 = "January" 207 2 = "February" 208 12 = "December" 209 ; NOTE: Format U_BRTHMN has been output. 210 VALUE U_BRTHYR (default=32) 211 -009 = "Not answered" 212 1901 = "1901 or earlier" 213 ; NOTE: Format U_BRTHYR has been output. 214 VALUE U_PNGD (default=32) 215 0 = "Not in universe, not in" 216 999 = "Not applicable" 217 -09 = "Not answered" 218 ; NOTE: Format U_PNGD has been output. 219 VALUE ENTID_G (default=32) 220 0 = "Not in universe, not in sample," 221 99 = "Not applicable or not answered" 222 ; NOTE: Format ENTID_G has been output. 223 VALUE LVQTR (default=32) 224 0 = "Not applicable, not in sample," 6 The SAS System 13:10 Thursday, March 25, 2010 225 1 = "House, apartment, flat" 226 2 = "Housing unit in nontransient hotel," 227 3 = "Housing unit, permanent in" 228 4 = "Housing unit in rooming house" 229 5 = "Mobile home or trailer with no" 230 6 = "Mobile home or trailer with one" 231 7 = "Housing unit not specified above" 232 8 = "Quarters not housing unit in" 233 9 = "Housing unit not permanent in" 234 10 = "Unoccupied tent or trailer site" 235 11 = "Other unit not specified above" 236 ; NOTE: Format LVQTR has been output. 237 VALUE TENUR (default=32) 238 0 = "Not in sample or nonmatch?" 239 1 = "Owned or being bought by someone" 240 2 = "Rented for cash?" 241 3 = "Occupied without payment of" 242 ; NOTE: Format TENUR has been output. 243 VALUE PUBHS (default=32) 244 0 = "Not applicable, not in sample," 245 1 = "Yes" 246 2 = "No" 247 ; NOTE: Format PUBHS has been output. 248 VALUE LORNT (default=32) 249 0 = "Not applicable, not" 250 1 = "Yes" 251 2 = "No" 252 ; NOTE: Format LORNT has been output. 253 VALUE ENRGY_Y (default=32) 254 0 = "Not in universe, not in a sample" 255 1 = "Yes" 256 2 = "No" 257 ; NOTE: Format ENRGY_Y has been output. 258 VALUE Hs_ENRG (default=32) 259 0 = "Not applicable, not in a sample" 260 1 = "Checks sent to household" 261 2 = "Coupons or vouchers sent to household" 262 3 = "Payments sent elsewhere" 263 4 = "Checks and coupons or vouchers sent to" 264 5 = "Checks sent to household and payments" 265 6 = "Coupons or voucher sent to household" 266 7 = "All three types of assistance" 267 ; NOTE: Format HS_ENRG has been output. 268 VALUE ENRGY (default=32) 269 0 = "Not in universe, not in" 270 ; NOTE: Format ENRGY has been output. 271 VALUE Hs_LUNC (default=32) 272 0 = "Not applicable, not in sample" 273 1 = "Free" 274 2 = "Reduced-price" 275 3 = "Both" 7 The SAS System 13:10 Thursday, March 25, 2010 276 ; NOTE: Format HS_LUNC has been output. 277 VALUE LUNCH (default=32) 278 0 = "Not in universe, not in" 279 ; NOTE: Format LUNCH has been output. 280 VALUE BREAK (default=32) 281 0 = "Not applicable, not in sample" 282 1 = "Free" 283 2 = "Reduced-price" 284 3 = "Both" 285 ; NOTE: Format BREAK has been output. 286 VALUE H8_4830L (default=32) 287 0 = "Not in universe, not in" 288 ; NOTE: Format H8_4830L has been output. 289 VALUE Hs_PUBHS (default=32) 290 0 = "Not in sample in Wave 1" 291 1 = "Yes" 292 2 = "No" 293 ; NOTE: Format HS_PUBHS has been output. 294 VALUE PUBRNAMT (default=32) 295 0 = "Not applicable" 296 ; NOTE: Format PUBRNAMT has been output. 297 VALUE UTLPAYYN (default=32) 298 0 = "Not applicable" 299 1 = "Yes" 300 2 = "No" 301 ; NOTE: Format UTLPAYYN has been output. 302 VALUE FULLRENT (default=32) 303 0 = "Not in universe" 304 ; NOTE: Format FULLRENT has been output. 305 VALUE STATE (default=32) 306 0 = "Nonmatch" 307 1 = "Alabama" 308 4 = "Arizona" 309 5 = "Arkansas" 310 6 = "California" 311 8 = "Colorado" 312 9 = "Connecticut" 313 10 = "Delaware" 314 11 = "District of Columbia" 315 12 = "Florida" 316 13 = "Georgia" 317 15 = "Hawaii" 318 17 = "Illinois" 319 18 = "Indiana" 320 19 = "Iowa" 321 20 = "Kansas" 322 21 = "Kentucky" 323 22 = "Louisiana" 324 23 = "Maine" 325 24 = "Maryland" 8 The SAS System 13:10 Thursday, March 25, 2010 326 25 = "Massachusetts" 327 26 = "Michigan" 328 27 = "Minnesota" 329 29 = "Missouri" 330 30 = "Montana" 331 31 = "Nebraska" 332 32 = "Nevada" 333 33 = "New Hampshire" 334 34 = "New Jersey" 335 36 = "New York" 336 37 = "North Carolina" 337 38 = "North Dakota" 338 39 = "Ohio" 339 40 = "Oklahoma" 340 41 = "Oregon" 341 42 = "Pennsylvania" 342 44 = "Rhode Island" 343 45 = "South Carolina" 344 47 = "Tennessee" 345 48 = "Texas" 346 49 = "Utah" 347 50 = "Vermont" 348 51 = "Virginia" 349 53 = "Washington" 350 55 = "Wisconsin" 351 57 = "Mississippi and West Virginia" 352 58 = "Idaho, New Mexico, South Dakota," 353 ; NOTE: Format STATE has been output. 354 VALUE METRO (default=32) 355 0 = "Not in sample or nonmatch" 356 1 = "Central city of an MSA or PMSA" 357 2 = "In an MSA or PMSA but not" 358 3 = "Not in an MSA or PMSA" 359 ; NOTE: Format METRO has been output. 360 VALUE SC1332L (default=32) 361 0 = "Not in universe, not in" 362 1 = "Less than 6 months" 363 2 = "6 to 23 months" 364 3 = "2 to 19 years" 365 4 = "20 or more years" 366 -1 = "Don't know" 367 ; NOTE: Format SC1332L has been output. 368 VALUE SC1334L (default=32) 369 0 = "Not in universe, not in" 370 1 = "Yes" 371 2 = "No" 372 -1 = "Don't know" 373 ; NOTE: Format SC1334L has been output. 374 VALUE SC1336L (default=32) 375 0 = "Not in universe, not in" 376 1 = "1 percent to 10 percent" 377 2 = "11 percent to 29 percent" 378 3 = "30 percent to 49 percent" 379 4 = "50 percent" 9 The SAS System 13:10 Thursday, March 25, 2010 380 5 = "51 percent to 89 percent" 381 6 = "90 percent to 99 percent" 382 7 = "100 percent" 383 101 = "No rating" 384 -1 = "Don't know" 385 -2 = "Refused" 386 -3 = "0 percent" 387 ; NOTE: Format SC1336L has been output. 388 VALUE SC1346L (default=32) 389 0 = "Not in universe, not in sample," 390 1 = "Retired?" 391 2 = "Disabled?" 392 3 = "Widow(ed) or surviving child?" 393 4 = "Spouse or dependent child?" 394 5 = "Some other reason" 395 -1 = "Don't know" 396 ; NOTE: Format SC1346L has been output. 397 VALUE SC1348L (default=32) 398 0 = "Not in universe, not in sample," 399 1 = "Retired" 400 2 = "Disabled" 401 3 = "Widow(ed) or surviving child" 402 4 = "Spouse or dependent child" 403 5 = "No other reason" 404 -1 = "Don't know" 405 ; NOTE: Format SC1348L has been output. 406 VALUE SC1360L (default=32) 407 0 = "Not in universe, not in sample," 408 1 = "Yes" 409 2 = "No" 410 ; NOTE: Format SC1360L has been output. 411 VALUE SC1418L (default=32) 412 0 = "Not in universe, not in sample," 413 1 = "Widowed" 414 2 = "Divorced" 415 3 = "Both widowed and divorced" 416 4 = "No" 417 ; NOTE: Format SC1418L has been output. 418 VALUE SC1456L (default=32) 419 0 = "Not in universe, not in sample," 420 1 = "Yes, in the service" 421 2 = "Yes, from service-related injury" 422 3 = "No" 423 ; NOTE: Format SC1456L has been output. 424 VALUE SC1468L (default=32) 425 0 = "Not in universe or card not" 426 1 = "Hospital only (Type A)" 427 2 = "Medical only (Type B)" 428 3 = "Both hospital and medical" 429 4 = "Card not available" 430 ; NOTE: Format SC1468L has been output. 10 The SAS System 13:10 Thursday, March 25, 2010 431 VALUE SC1472L (default=32) 432 0 = "Not in universe" 433 1 = "Yes" 434 2 = "No" 435 -1 = "Don't know" 436 ; NOTE: Format SC1472L has been output. 437 VALUE DISAB (default=32) 438 0 = "Not in universe (under 15 years" 439 1 = "Ever disabled marked on the" 440 ; NOTE: Format DISAB has been output. 441 VALUE ATT_SCH (default=32) 442 0 = "Not in universe, not in sample," 443 1 = "Yes" 444 2 = "No" 445 ; NOTE: Format ATT_SCH has been output. 446 VALUE SC1682L (default=32) 447 0 = "Not in universe, not in sample," 448 ; NOTE: Format SC1682L has been output. 449 VALUE SC1690L (default=32) 450 0 = "Not in universe, not in sample," 451 ; NOTE: Format SC1690L has been output. 452 VALUE ESR (default=32) 453 0 = "Not applicable, not in sample," 454 1 = "With a job entire month, worked" 455 2 = "With a job entire month, missed" 456 3 = "With a job entire month, missed" 457 4 = "With job one or more weeks, no" 458 5 = "With job one or more weeks, spent" 459 6 = "No job during month, spent entire" 460 7 = "No job during month, spent one or" 461 8 = "No job during month, no time spent" 462 ; NOTE: Format ESR has been output. 463 VALUE WKSPER (default=32) 464 0 = " Not applicable, not in sample," 465 4 = "4 weeks" 466 5 = "5 weeks" 467 ; NOTE: Format WKSPER has been output. 468 VALUE WKSJB (default=32) 469 0 = "0 weeks or not applicable, not" 470 1 = "1 week" 471 2 = "2 weeks" 472 3 = "3 weeks" 473 4 = "4 weeks" 474 5 = "5 weeks (only applicable for" 475 ; NOTE: Format WKSJB has been output. 476 VALUE MTHWOP (default=32) 477 0 = "0 weeks or not applicable," 478 1 = "1 week" 479 2 = "2 weeks" 480 3 = "3 weeks" 11 The SAS System 13:10 Thursday, March 25, 2010 481 4 = "4 weeks" 482 5 = "5 weeks (only applicable for" 483 ; NOTE: Format MTHWOP has been output. 484 VALUE WEEKSL (default=32) 485 0 = "None or not applicable, not in" 486 1 = "1 week" 487 2 = "2 weeks" 488 3 = "3 weeks" 489 4 = "4 weeks" 490 5 = "5 weeks (only applicable for" 491 ; NOTE: Format WEEKSL has been output. 492 VALUE SC1230L (default=32) 493 0 = "Not in universe" 494 -3 = "None" 495 ; NOTE: Format SC1230L has been output. 496 VALUE JOBID2L (default=32) 497 0 = "Not in universe, not in sample," 498 ; NOTE: Format JOBID2L has been output. 499 VALUE CLSWK2L (default=32) 500 0 = "Not in universe, not in sample," 501 1 = "A private company or individual" 502 2 = "Federal Government (exclude" 503 3 = "State government" 504 4 = "Local government" 505 5 = "Armed Forces" 506 6 = "Unpaid in family business or farm" 507 ; NOTE: Format CLSWK2L has been output. 508 VALUE WS2_WK (default=32) 509 0 = "None or not in universe if" 510 1 = "1 week" 511 2 = "2 weeks" 512 3 = "3 weeks" 513 4 = "4 weeks" 514 5 = "5 weeks" 515 ; NOTE: Format WS2_WK has been output. 516 VALUE W2124L (default=32) 517 0 = "Not in universe, not in sample," 518 -3 = "None" 519 ; NOTE: Format W2124L has been output. 520 VALUE W2128L (default=32) 521 0 = "Not in universe, not in sample," 522 ; NOTE: Format W2128L has been output. 523 VALUE S2302L (default=32) 524 0 = "Not in universe, not in sample," 525 ; NOTE: Format S2302L has been output. 526 VALUE TYPBS2L (default=32) 527 0 = "Not in universe, not in sample," 528 1 = "Sole proprietorship" 529 2 = "Partnership" 12 The SAS System 13:10 Thursday, March 25, 2010 530 3 = "Corporation" 531 ; NOTE: Format TYPBS2L has been output. 532 VALUE SE2_WK (default=32) 533 0 = "None, not in universe, not in sample," 534 1 = "1 week" 535 2 = "2 weeks" 536 3 = "3 weeks" 537 4 = "4 weeks" 538 5 = "5 weeks" 539 ; NOTE: Format SE2_WK has been output. 540 VALUE S2312L (default=32) 541 0 = "Not in universe, not in sample," 542 -3 = "None" 543 ; NOTE: Format S2312L has been output. 544 VALUE G1SRC (default=32) 545 0 = "NOT APPLICABLE, NOT IN" 546 1 = "SOCIAL SECURITY" 547 2 = "RAILROAD RETIREMENT" 548 3 = "FEDERAL SUPPLEMENTAL SECURITY" 549 5 = "STATE UNEMPLOYMENT" 550 6 = "SUPPLEMENTAL UNEMPLOYMENT" 551 7 = "OTHER UNEMPLOYMENT" 552 8 = "VETERANS COMPENSATION OR" 553 10 = "WORKERS COMPENSATION" 554 12 = "EMPLOYER OR UNION TEMPORARY" 555 13 = "PAYMENTS FROM A SICKNESS," 556 20 = "AID TO FAMILIES WITH" 557 21 = "GENERAL ASSISTANCE OR GENERAL" 558 23 = "FOSTER CHILD CARE PAYMENTS" 559 24 = "OTHER WELFARE" 560 25 = "WIC" 561 27 = "FOOD STAMPS" 562 28 = "CHILD SUPPORT PAYMENTS" 563 29 = "ALIMONY PAYMENTS" 564 30 = "PENSION FROM COMPANY OR UNION" 565 31 = "FEDERAL CIVIL SERVICE OR" 566 32 = "U.S. MILITARY RETIREMENT PAY" 567 34 = "STATE GOVERNMENT PENSIONS" 568 35 = "LOCAL GOVERNMENT PENSIONS" 569 36 = "INCOME FROM PAID UP LIFE" 570 37 = "ESTATES AND TRUSTS" 571 38 = "OTHER PAYMENTS FOR" 572 40 = "GI BILL EDUCATION BENEFITS" 573 41 = "OTHER VA EDUCATIONAL" 574 50 = "INCOME ASSISTANCE FROM A" 575 51 = "MONEY FROM RELATIVES OR" 576 52 = "LUMP SUM PAYMENTS" 577 53 = "INCOME FROM ROOMERS OR" 578 54 = "NATIONAL GUARD OR RESERVE PAY" 579 55 = "INCIDENTAL OR CASUAL EARNINGS" 580 56 = "OTHER CASH INCOME NOT" 581 75 = "STATE SSI/BLACK LUNG/STATE" 582 ; NOTE: Format G1SRC has been output. 583 VALUE SSRECIN (default=32) 13 The SAS System 13:10 Thursday, March 25, 2010 584 0 = "Not in universe" 585 1 = "Adult benefits received in own" 586 2 = "Only adult benefits received jointly" 587 3 = "Only child benefits received" 588 4 = "Adult benefits received in own name" 589 5 = "Adult benefits received jointly" 590 ; NOTE: Format SSRECIN has been output. 591 VALUE RRRECIN (default=32) 592 0 = "Not in universe" 593 1 = "Adult benefits received in own" 594 2 = "Only adult benefits received jointly" 595 3 = "Only child benefits received" 596 4 = "Adult benefits received in own name" 597 5 = "Adult benefits received jointly" 598 ; NOTE: Format RRRECIN has been output. 599 VALUE VET3060L (default=32) 600 0 = "Not in universe or don't know" 601 1 = "Yes" 602 2 = "No" 603 -1 = "Don't know" 604 ; NOTE: Format VET3060L has been output. 605 VALUE CARECO (default=32) 606 0 = "Not applicable if age under 15," 607 1 = "Yes" 608 2 = "No" 609 ; NOTE: Format CARECO has been output. 610 VALUE CAIDCO (default=32) 611 0 = "Not applicable, not in sample," 612 1 = "Yes" 613 2 = "No" 614 ; NOTE: Format CAIDCO has been output. 615 VALUE WICCOV (default=32) 616 0 = "Not applicable, not in sample," 617 1 = "Yes" 618 2 = "No" 619 ; NOTE: Format WICCOV has been output. 620 VALUE AFDC (default=32) 621 0 = "Not applicable, not in sample," 622 1 = "Yes" 623 2 = "No" 624 ; NOTE: Format AFDC has been output. 625 VALUE FOODST (default=32) 626 0 = "Not applicable, not in sample," 627 1 = "Yes" 628 2 = "No" 629 ; NOTE: Format FOODST has been output. 630 VALUE GEN_AS (default=32) 631 0 = "Not applicable, not in sample," 632 1 = "Yes" 633 2 = "No" 14 The SAS System 13:10 Thursday, March 25, 2010 634 ; NOTE: Format GEN_AS has been output. 635 VALUE FOST_K (default=32) 636 0 = "Not applicable, not in sample," 637 1 = "Yes" 638 2 = "No" 639 ; NOTE: Format FOST_K has been output. 640 VALUE OTH_WE (default=32) 641 0 = "Not applicable, not in sample," 642 1 = "Yes" 643 2 = "No" 644 ; NOTE: Format OTH_WE has been output. 645 VALUE SOC_SE (default=32) 646 0 = "Not applicable, not in sample," 647 1 = "Yes" 648 2 = "No" 649 ; NOTE: Format SOC_SE has been output. 650 VALUE RAILRD (default=32) 651 0 = "Not applicable, not in sample," 652 1 = "Yes" 653 2 = "No" 654 ; NOTE: Format RAILRD has been output. 655 VALUE VETS (default=32) 656 0 = "Not applicable, not in sample," 657 1 = "Yes" 658 2 = "No" 659 ; NOTE: Format VETS has been output. 660 VALUE HIOWNC (default=32) 661 1 = "Had health insurance in own name" 662 2 = "Did not have health insurance in own n" /* ame */ 663 ; NOTE: Format HIOWNC has been output. 664 VALUE HI_OTC (default=32) 665 1 = "Had health insurance thru someone" 666 2 = "Did not have health insurance coverage" 667 ; NOTE: Format HI_OTC has been output. 668 VALUE HIEMPL (default=32) 669 0 = "Not in universe, not in sample," 670 1 = "Health insurance coverage obtained thr" /* u */ 671 2 = "Health insurance coverage not obtained" 672 ; NOTE: Format HIEMPL has been output. 673 VALUE SS_PID (default=32) 674 0 = "Not in universe, not in sample," 675 ; NOTE: Format SS_PID has been output. 676 VALUE RR_PID (default=32) 677 0 = "Not in universe, not in sample," 678 ; NOTE: Format RR_PID has been output. 679 VALUE VA_PID (default=32) 680 0 = "Not in universe, not in sample," 15 The SAS System 13:10 Thursday, March 25, 2010 681 ; NOTE: Format VA_PID has been output. 682 VALUE AFDCPI (default=32) 683 0 = "Not in universe, not in sample," 684 ; NOTE: Format AFDCPI has been output. 685 VALUE GA_PID (default=32) 686 0 = "Not in universe, not in sample," 687 ; NOTE: Format GA_PID has been output. 688 VALUE FOSTPI (default=32) 689 0 = "Not in universe, not in sample," 690 ; NOTE: Format FOSTPI has been output. 691 VALUE OTH_PI (default=32) 692 0 = "Not in universe, not in sample," 693 ; NOTE: Format OTH_PI has been output. 694 VALUE WIC_PI (default=32) 695 0 = "Not in universe, not in sample," 696 ; NOTE: Format WIC_PI has been output. 697 VALUE FS_PID (default=32) 698 0 = "Not in universe, not in sample," 699 ; NOTE: Format FS_PID has been output. 700 VALUE WS_I1L (default=32) 701 0 = "No imputations, not applicable," 702 1 = "Monthly amount imputed" 703 ; NOTE: Format WS_I1L has been output. 704 VALUE WS_I2L (default=32) 705 0 = "No imputations, not applicable," 706 1 = "Monthly amount imputed" 707 ; NOTE: Format WS_I2L has been output. 708 VALUE SE_I1L (default=32) 709 0 = "No imputations, not applicable," 710 1 = "Monthly amount imputed" 711 ; NOTE: Format SE_I1L has been output. 712 VALUE SE_I2L (default=32) 713 0 = "No imputations, not applicable," 714 1 = "Monthly amount imputed" 715 ; NOTE: Format SE_I2L has been output. 716 VALUE G1_I1L (default=32) 717 0 = "No imputations, not applicable," 718 1 = "Monthly amount imputed" 719 ; NOTE: Format G1_I1L has been output. 720 VALUE G1_I2L (default=32) 721 0 = "No imputations, not applicable," 722 1 = "Monthly amount imputed" 723 ; NOTE: Format G1_I2L has been output. 724 VALUE G1_I3L (default=32) 725 0 = "No imputations, not applicable," 16 The SAS System 13:10 Thursday, March 25, 2010 726 1 = "Monthly amount imputed" 727 ; NOTE: Format G1_I3L has been output. 728 VALUE G1_I4L (default=32) 729 0 = "No imputations, not applicable," 730 1 = "Monthly amount imputed" 731 ; NOTE: Format G1_I4L has been output. 732 VALUE G1_I5L (default=32) 733 0 = "No imputations, not applicable," 734 1 = "Monthly amount imputed" 735 ; NOTE: Format G1_I5L has been output. 736 VALUE G1_I6L (default=32) 737 0 = "No imputations, not applicable," 738 1 = "Monthly amount imputed" 739 ; NOTE: Format G1_I6L has been output. 740 VALUE G1_I7L (default=32) 741 0 = "No imputations, not applicable," 742 1 = "Monthly amount imputed" 743 ; NOTE: Format G1_I7L has been output. 744 VALUE G1_I8L (default=32) 745 0 = "No imputations, not applicable," 746 1 = "Monthly amount imputed" 747 ; NOTE: Format G1_I8L has been output. 748 VALUE G1_I9L (default=32) 749 0 = "No imputations, not applicable," 750 1 = "Monthly amount imputed" 751 ; NOTE: Format G1_I9L has been output. 752 VALUE G1_I10L (default=32) 753 0 = "No imputations, not applicable," 754 1 = "Monthly amount imputed" 755 ; NOTE: Format G1_I10L has been output. 756 VALUE G2I100L (default=32) 757 0 = "No imputations, not applicable," 758 1 = "Monthly amount imputed" 759 ; NOTE: Format G2I100L has been output. 760 VALUE G2I104L (default=32) 761 0 = "No imputations, not applicable," 762 1 = "Monthly amount imputed" 763 ; NOTE: Format G2I104L has been output. 764 VALUE G2I110L (default=32) 765 0 = "No imputations, not applicable," 766 1 = "Monthly amount imputed" 767 ; NOTE: Format G2I110L has been output. 768 VALUE G2I120L (default=32) 769 0 = "No imputations, not applicable," 770 1 = "Monthly amount imputed" 771 ; NOTE: Format G2I120L has been output. 17 The SAS System 13:10 Thursday, March 25, 2010 772 VALUE G2I130L (default=32) 773 0 = "No imputations, not applicable," 774 1 = "Monthly amount imputed" 775 ; NOTE: Format G2I130L has been output. 776 VALUE G2I140L (default=32) 777 0 = "No imputations, not applicable," 778 1 = "Monthly amount imputed" 779 ; NOTE: Format G2I140L has been output. 780 781 filename raw pipe "unzip -p /homes/data/sipp/1984/sipp84fp.zip "; 782 NOTE: The data set LIBRARY.FSP84FP has 492 observations and 21 variables. NOTE: PROCEDURE FORMAT used (Total process time): real time 0.90 seconds cpu time 0.15 seconds 783 data library.sip84fp; 784 785 missing A; 786 infile raw lrecl = 20000 missover ; 787 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 788 * On a PC, you may need to change the direction of the slashes as in C:\; 789 *INFILE '/homes/data/sipp/1984/sipp84fp.dat' LRECL=20000 PAD END=EOF; 790 791 792 793 *LENGTH 794 SUSEQNUM $6 795 SU_ID $9 796 PP_ENTRY $2 797 HH_ADD01 $2 798 HH_ADD02 $2 799 HH_ADD03 $2 800 HH_ADD04 $2 801 HH_ADD05 $2 802 HH_ADD06 $2 803 HH_ADD07 $2 804 HH_ADD08 $2 805 HH_ADD09 $2 806 HH_ADD10 $2 807 HH_ADD11 $2 808 HH_ADD12 $2 809 HH_ADD13 $2 810 HH_ADD14 $2 811 HH_ADD15 $2 812 HH_ADD16 $2 813 HH_ADD17 $2 814 HH_ADD18 $2 815 HH_ADD19 $2 816 HH_ADD20 $2 817 HH_ADD21 $2 818 HH_ADD22 $2 819 HH_ADD23 $2 820 HH_ADD24 $2 18 The SAS System 13:10 Thursday, March 25, 2010 821 HH_ADD25 $2 822 HH_ADD26 $2 823 HH_ADD27 $2 824 HH_ADD28 $2 825 HH_ADD29 $2 826 HH_ADD30 $2 827 HH_ADD31 $2 828 HH_ADD32 $2 829 PNLWGT 8 830 FNLWGT84 8 831 FNLWGT85 8 832 LGTFA101 8 833 LGTFA102 8 834 LGTFA103 8 835 LGTFA104 8 836 LGTFA105 8 837 LGTFA106 8 838 LGTFA107 8 839 LGTFA108 8 840 LGTFA109 8 841 LGTFA110 8 842 LGTFA111 8 843 LGTFA112 8 844 LGTFA113 8 845 LGTFA114 8 846 LGTFA115 8 847 LGTFA116 8 848 LGTFA117 8 849 LGTFA118 8 850 LGTFA119 8 851 LGTFA120 8 852 LGTFA121 8 853 LGTFA122 8 854 LGTFA123 8 855 LGTFA124 8 856 LGTFA125 8 857 LGTFA126 8 858 LGTFA127 8 859 LGTFA128 8 860 LGTFA129 8 861 LGTFA130 8 862 LGTFA131 8 863 LGTFA132 8 864 LGTFA201 8 865 LGTFA202 8 866 LGTFA203 8 867 LGTFA204 8 868 LGTFA205 8 869 LGTFA206 8 870 LGTFA207 8 871 LGTFA208 8 872 LGTFA209 8 873 LGTFA210 8 874 LGTFA211 8 875 LGTFA212 8 876 LGTFA213 8 877 LGTFA214 8 878 LGTFA215 8 19 The SAS System 13:10 Thursday, March 25, 2010 879 LGTFA216 8 880 LGTFA217 8 881 LGTFA218 8 882 LGTFA219 8 883 LGTFA220 8 884 LGTFA221 8 885 LGTFA222 8 886 LGTFA223 8 887 LGTFA224 8 888 LGTFA225 8 889 LGTFA226 8 890 LGTFA227 8 891 LGTFA228 8 892 LGTFA229 8 893 LGTFA230 8 894 LGTFA231 8 895 LGTFA232 8 896 U_BRTHYR 4 897 ENRGY_1 4 898 ENRGY_2 4 899 ENRGY_3 4 900 ENRGY_4 4 901 ENRGY_5 4 902 ENRGY_6 4 903 ENRGY_7 4 904 ENRGY_8 4 905 PUBRNAMT 4 906 FULLRENT 4 907 SC1466_2 $2 908 PP_INC01 5 909 PP_INC02 5 910 PP_INC03 5 911 PP_INC04 5 912 PP_INC05 5 913 PP_INC06 5 914 PP_INC07 5 915 PP_INC08 5 916 PP_INC09 5 917 PP_INC10 5 918 PP_INC11 5 919 PP_INC12 5 920 PP_INC13 5 921 PP_INC14 5 922 PP_INC15 5 923 PP_INC16 5 924 PP_INC17 5 925 PP_INC18 5 926 PP_INC19 5 927 PP_INC20 5 928 PP_INC21 5 929 PP_INC22 5 930 PP_INC23 5 931 PP_INC24 5 932 PP_INC25 5 933 PP_INC26 5 934 PP_INC27 5 935 PP_INC28 5 936 PP_INC29 5 20 The SAS System 13:10 Thursday, March 25, 2010 937 PP_INC30 5 938 PP_INC31 5 939 PP_INC32 5 940 PP_EAR01 5 941 PP_EAR02 5 942 PP_EAR03 5 943 PP_EAR04 5 944 PP_EAR05 5 945 PP_EAR06 5 946 PP_EAR07 5 947 PP_EAR08 5 948 PP_EAR09 5 949 PP_EAR10 5 950 PP_EAR11 5 951 PP_EAR12 5 952 PP_EAR13 5 953 PP_EAR14 5 954 PP_EAR15 5 955 PP_EAR16 5 956 PP_EAR17 5 957 PP_EAR18 5 958 PP_EAR19 5 959 PP_EAR20 5 960 PP_EAR21 5 961 PP_EAR22 5 962 PP_EAR23 5 963 PP_EAR24 5 964 PP_EAR25 5 965 PP_EAR26 5 966 PP_EAR27 5 967 PP_EAR28 5 968 PP_EAR29 5 969 PP_EAR30 5 970 PP_EAR31 5 971 PP_EAR32 5 972 FF_INC01 5 973 FF_INC02 5 974 FF_INC03 5 975 FF_INC04 5 976 FF_INC05 5 977 FF_INC06 5 978 FF_INC07 5 979 FF_INC08 5 980 FF_INC09 5 981 FF_INC10 5 982 FF_INC11 5 983 FF_INC12 5 984 FF_INC13 5 985 FF_INC14 5 986 FF_INC15 5 987 FF_INC16 5 988 FF_INC17 5 989 FF_INC18 5 990 FF_INC19 5 991 FF_INC20 5 992 FF_INC21 5 993 FF_INC22 5 994 FF_INC23 5 21 The SAS System 13:10 Thursday, March 25, 2010 995 FF_INC24 5 996 FF_INC25 5 997 FF_INC26 5 998 FF_INC27 5 999 FF_INC28 5 1000 FF_INC29 5 1001 FF_INC30 5 1002 FF_INC31 5 1003 FF_INC32 5 1004 HH_INC01 5 1005 HH_INC02 5 1006 HH_INC03 5 1007 HH_INC04 5 1008 HH_INC05 5 1009 HH_INC06 5 1010 HH_INC07 5 1011 HH_INC08 5 1012 HH_INC09 5 1013 HH_INC10 5 1014 HH_INC11 5 1015 HH_INC12 5 1016 HH_INC13 5 1017 HH_INC14 5 1018 HH_INC15 5 1019 HH_INC16 5 1020 HH_INC17 5 1021 HH_INC18 5 1022 HH_INC19 5 1023 HH_INC20 5 1024 HH_INC21 5 1025 HH_INC22 5 1026 HH_INC23 5 1027 HH_INC24 5 1028 HH_INC25 5 1029 HH_INC26 5 1030 HH_INC27 5 1031 HH_INC28 5 1032 HH_INC29 5 1033 HH_INC30 5 1034 HH_INC31 5 1035 HH_INC32 5 1036 FF_POV01 4 1037 FF_POV02 4 1038 FF_POV03 4 1039 FF_POV04 4 1040 FF_POV05 4 1041 FF_POV06 4 1042 FF_POV07 4 1043 FF_POV08 4 1044 FF_POV09 4 1045 FF_POV10 4 1046 FF_POV11 4 1047 FF_POV12 4 1048 FF_POV13 4 1049 FF_POV14 4 1050 FF_POV15 4 1051 FF_POV16 4 1052 FF_POV17 4 22 The SAS System 13:10 Thursday, March 25, 2010 1053 FF_POV18 4 1054 FF_POV19 4 1055 FF_POV20 4 1056 FF_POV21 4 1057 FF_POV22 4 1058 FF_POV23 4 1059 FF_POV24 4 1060 FF_POV25 4 1061 FF_POV26 4 1062 FF_POV27 4 1063 FF_POV28 4 1064 FF_POV29 4 1065 FF_POV30 4 1066 FF_POV31 4 1067 FF_POV32 4 1068 WS1_AM01 4 1069 WS1_AM02 4 1070 WS1_AM03 4 1071 WS1_AM04 4 1072 WS1_AM05 4 1073 WS1_AM06 4 1074 WS1_AM07 4 1075 WS1_AM08 4 1076 WS1_AM09 4 1077 WS1_AM10 4 1078 WS1_AM11 4 1079 WS1_AM12 4 1080 WS1_AM13 4 1081 WS1_AM14 4 1082 WS1_AM15 4 1083 WS1_AM16 4 1084 WS1_AM17 4 1085 WS1_AM18 4 1086 WS1_AM19 4 1087 WS1_AM20 4 1088 WS1_AM21 4 1089 WS1_AM22 4 1090 WS1_AM23 4 1091 WS1_AM24 4 1092 WS1_AM25 4 1093 WS1_AM26 4 1094 WS1_AM27 4 1095 WS1_AM28 4 1096 WS1_AM29 4 1097 WS1_AM30 4 1098 WS1_AM31 4 1099 WS1_AM32 4 1100 WS2_AM01 4 1101 WS2_AM02 4 1102 WS2_AM03 4 1103 WS2_AM04 4 1104 WS2_AM05 4 1105 WS2_AM06 4 1106 WS2_AM07 4 1107 WS2_AM08 4 1108 WS2_AM09 4 1109 WS2_AM10 4 1110 WS2_AM11 4 23 The SAS System 13:10 Thursday, March 25, 2010 1111 WS2_AM12 4 1112 WS2_AM13 4 1113 WS2_AM14 4 1114 WS2_AM15 4 1115 WS2_AM16 4 1116 WS2_AM17 4 1117 WS2_AM18 4 1118 WS2_AM19 4 1119 WS2_AM20 4 1120 WS2_AM21 4 1121 WS2_AM22 4 1122 WS2_AM23 4 1123 WS2_AM24 4 1124 WS2_AM25 4 1125 WS2_AM26 4 1126 WS2_AM27 4 1127 WS2_AM28 4 1128 WS2_AM29 4 1129 WS2_AM30 4 1130 WS2_AM31 4 1131 WS2_AM32 4 1132 W2028_01 8 1133 W2028_02 8 1134 W2028_03 8 1135 W2028_04 8 1136 W2028_05 8 1137 W2028_06 8 1138 W2028_07 8 1139 W2028_08 8 1140 W2028_09 8 1141 W2028_10 8 1142 W2028_11 8 1143 W2028_12 8 1144 W2028_13 8 1145 W2028_14 8 1146 W2028_15 8 1147 W2028_16 8 1148 W2028_17 8 1149 W2028_18 8 1150 W2028_19 8 1151 W2028_20 8 1152 W2028_21 8 1153 W2028_22 8 1154 W2028_23 8 1155 W2028_24 8 1156 W2028_25 8 1157 W2028_26 8 1158 W2028_27 8 1159 W2028_28 8 1160 W2028_29 8 1161 W2028_30 8 1162 W2028_31 8 1163 W2028_32 8 1164 W2128_01 8 1165 W2128_02 8 1166 W2128_03 8 1167 W2128_04 8 1168 W2128_05 8 24 The SAS System 13:10 Thursday, March 25, 2010 1169 W2128_06 8 1170 W2128_07 8 1171 W2128_08 8 1172 W2128_09 8 1173 W2128_10 8 1174 W2128_11 8 1175 W2128_12 8 1176 W2128_13 8 1177 W2128_14 8 1178 W2128_15 8 1179 W2128_16 8 1180 W2128_17 8 1181 W2128_18 8 1182 W2128_19 8 1183 W2128_20 8 1184 W2128_21 8 1185 W2128_22 8 1186 W2128_23 8 1187 W2128_24 8 1188 W2128_25 8 1189 W2128_26 8 1190 W2128_27 8 1191 W2128_28 8 1192 W2128_29 8 1193 W2128_30 8 1194 W2128_31 8 1195 W2128_32 8 1196 SE1_AM01 4 1197 SE1_AM02 4 1198 SE1_AM03 4 1199 SE1_AM04 4 1200 SE1_AM05 4 1201 SE1_AM06 4 1202 SE1_AM07 4 1203 SE1_AM08 4 1204 SE1_AM09 4 1205 SE1_AM10 4 1206 SE1_AM11 4 1207 SE1_AM12 4 1208 SE1_AM13 4 1209 SE1_AM14 4 1210 SE1_AM15 4 1211 SE1_AM16 4 1212 SE1_AM17 4 1213 SE1_AM18 4 1214 SE1_AM19 4 1215 SE1_AM20 4 1216 SE1_AM21 4 1217 SE1_AM22 4 1218 SE1_AM23 4 1219 SE1_AM24 4 1220 SE1_AM25 4 1221 SE1_AM26 4 1222 SE1_AM27 4 1223 SE1_AM28 4 1224 SE1_AM29 4 1225 SE1_AM30 4 1226 SE1_AM31 4 25 The SAS System 13:10 Thursday, March 25, 2010 1227 SE1_AM32 4 1228 SE2_AM01 4 1229 SE2_AM02 4 1230 SE2_AM03 4 1231 SE2_AM04 4 1232 SE2_AM05 4 1233 SE2_AM06 4 1234 SE2_AM07 4 1235 SE2_AM08 4 1236 SE2_AM09 4 1237 SE2_AM10 4 1238 SE2_AM11 4 1239 SE2_AM12 4 1240 SE2_AM13 4 1241 SE2_AM14 4 1242 SE2_AM15 4 1243 SE2_AM16 4 1244 SE2_AM17 4 1245 SE2_AM18 4 1246 SE2_AM19 4 1247 SE2_AM20 4 1248 SE2_AM21 4 1249 SE2_AM22 4 1250 SE2_AM23 4 1251 SE2_AM24 4 1252 SE2_AM25 4 1253 SE2_AM26 4 1254 SE2_AM27 4 1255 SE2_AM28 4 1256 SE2_AM29 4 1257 SE2_AM30 4 1258 SE2_AM31 4 1259 SE2_AM32 4 1260 G1_A_01 8 1261 G1_A_02 8 1262 G1_A_03 8 1263 G1_A_04 8 1264 G1_A_05 8 1265 G1_A_06 8 1266 G1_A_07 8 1267 G1_A_08 8 1268 G1_A_09 8 1269 G1_A_10 8 1270 G1_A_11 8 1271 G1_A_12 8 1272 G1_A_13 8 1273 G1_A_14 8 1274 G1_A_15 8 1275 G1_A_16 8 1276 G1_A_17 8 1277 G1_A_18 8 1278 G1_A_19 8 1279 G1_A_20 8 1280 G1_A_21 8 1281 G1_A_22 8 1282 G1_A_23 8 1283 G1_A_24 8 1284 G1_A_25 8 26 The SAS System 13:10 Thursday, March 25, 2010 1285 G1_A_26 8 1286 G1_A_27 8 1287 G1_A_28 8 1288 G1_A_29 8 1289 G1_A_30 8 1290 G1_A_31 8 1291 G1_A_32 8 1292 G2A10001 5 1293 G2A10002 5 1294 G2A10003 5 1295 G2A10004 5 1296 G2A10005 5 1297 G2A10006 5 1298 G2A10007 5 1299 G2A10008 5 1300 G2A10009 5 1301 G2A10010 5 1302 G2A10011 5 1303 G2A10012 5 1304 G2A10013 5 1305 G2A10014 5 1306 G2A10015 5 1307 G2A10016 5 1308 G2A10017 5 1309 G2A10018 5 1310 G2A10019 5 1311 G2A10020 5 1312 G2A10021 5 1313 G2A10022 5 1314 G2A10023 5 1315 G2A10024 5 1316 G2A10025 5 1317 G2A10026 5 1318 G2A10027 5 1319 G2A10028 5 1320 G2A10029 5 1321 G2A10030 5 1322 G2A10031 5 1323 G2A10032 5 1324 G2A10401 5 1325 G2A10402 5 1326 G2A10403 5 1327 G2A10404 5 1328 G2A10405 5 1329 G2A10406 5 1330 G2A10407 5 1331 G2A10408 5 1332 G2A10409 5 1333 G2A10410 5 1334 G2A10411 5 1335 G2A10412 5 1336 G2A10413 5 1337 G2A10414 5 1338 G2A10415 5 1339 G2A10416 5 1340 G2A10417 5 1341 G2A10418 5 1342 G2A10419 5 27 The SAS System 13:10 Thursday, March 25, 2010 1343 G2A10420 5 1344 G2A10421 5 1345 G2A10422 5 1346 G2A10423 5 1347 G2A10424 5 1348 G2A10425 5 1349 G2A10426 5 1350 G2A10427 5 1351 G2A10428 5 1352 G2A10429 5 1353 G2A10430 5 1354 G2A10431 5 1355 G2A10432 5 1356 G2A11001 5 1357 G2A11002 5 1358 G2A11003 5 1359 G2A11004 5 1360 G2A11005 5 1361 G2A11006 5 1362 G2A11007 5 1363 G2A11008 5 1364 G2A11009 5 1365 G2A11010 5 1366 G2A11011 5 1367 G2A11012 5 1368 G2A11013 5 1369 G2A11014 5 1370 G2A11015 5 1371 G2A11016 5 1372 G2A11017 5 1373 G2A11018 5 1374 G2A11019 5 1375 G2A11020 5 1376 G2A11021 5 1377 G2A11022 5 1378 G2A11023 5 1379 G2A11024 5 1380 G2A11025 5 1381 G2A11026 5 1382 G2A11027 5 1383 G2A11028 5 1384 G2A11029 5 1385 G2A11030 5 1386 G2A11031 5 1387 G2A11032 5 1388 G2A12001 5 1389 G2A12002 5 1390 G2A12003 5 1391 G2A12004 5 1392 G2A12005 5 1393 G2A12006 5 1394 G2A12007 5 1395 G2A12008 5 1396 G2A12009 5 1397 G2A12010 5 1398 G2A12011 5 1399 G2A12012 5 1400 G2A12013 5 28 The SAS System 13:10 Thursday, March 25, 2010 1401 G2A12014 5 1402 G2A12015 5 1403 G2A12016 5 1404 G2A12017 5 1405 G2A12018 5 1406 G2A12019 5 1407 G2A12020 5 1408 G2A12021 5 1409 G2A12022 5 1410 G2A12023 5 1411 G2A12024 5 1412 G2A12025 5 1413 G2A12026 5 1414 G2A12027 5 1415 G2A12028 5 1416 G2A12029 5 1417 G2A12030 5 1418 G2A12031 5 1419 G2A12032 5 1420 G2A13001 5 1421 G2A13002 5 1422 G2A13003 5 1423 G2A13004 5 1424 G2A13005 5 1425 G2A13006 5 1426 G2A13007 5 1427 G2A13008 5 1428 G2A13009 5 1429 G2A13010 5 1430 G2A13011 5 1431 G2A13012 5 1432 G2A13013 5 1433 G2A13014 5 1434 G2A13015 5 1435 G2A13016 5 1436 G2A13017 5 1437 G2A13018 5 1438 G2A13019 5 1439 G2A13020 5 1440 G2A13021 5 1441 G2A13022 5 1442 G2A13023 5 1443 G2A13024 5 1444 G2A13025 5 1445 G2A13026 5 1446 G2A13027 5 1447 G2A13028 5 1448 G2A13029 5 1449 G2A13030 5 1450 G2A13031 5 1451 G2A13032 5 1452 G2A14001 5 1453 G2A14002 5 1454 G2A14003 5 1455 G2A14004 5 1456 G2A14005 5 1457 G2A14006 5 1458 G2A14007 5 29 The SAS System 13:10 Thursday, March 25, 2010 1459 G2A14008 5 1460 G2A14009 5 1461 G2A14010 5 1462 G2A14011 5 1463 G2A14012 5 1464 G2A14013 5 1465 G2A14014 5 1466 G2A14015 5 1467 G2A14016 5 1468 G2A14017 5 1469 G2A14018 5 1470 G2A14019 5 1471 G2A14020 5 1472 G2A14021 5 1473 G2A14022 5 1474 G2A14023 5 1475 G2A14024 5 1476 G2A14025 5 1477 G2A14026 5 1478 G2A14027 5 1479 G2A14028 5 1480 G2A14029 5 1481 G2A14030 5 1482 G2A14031 5 1483 G2A14032 5 1484 DEFAULT=3; 1485 1486 1487 /*-------------------------------------------------------------------------------------*/ 1488 /* The following changes in variable names have been made, if necessary: 1489 '$' to 'd'; '-' to '_'; '%' to 'p'; 1490 1491 Note: Variable names in SAS are not case-sensitive */ 1492 1493 /*-------------------------------------------------------------------------------------*/ 1494 1495 INPUT 1496 1497 @1 SUSEQNUM $6. 1498 @7 ROT 1. 1499 @8 SU_ID $9. 1500 @17 PP_ENTRY $2. 1501 @19 PP_PNUM $3. 1502 @22 SU_TOTPP 2. 1503 @24 HH_ADD01 $2. 1504 @26 HH_ADD02 $2. 1505 @28 HH_ADD03 $2. 1506 @30 HH_ADD04 $2. 1507 @32 HH_ADD05 $2. 1508 @34 HH_ADD06 $2. 1509 @36 HH_ADD07 $2. 1510 @38 HH_ADD08 $2. 1511 @40 HH_ADD09 $2. 1512 @42 HH_ADD10 $2. 1513 @44 HH_ADD11 $2. 1514 @46 HH_ADD12 $2. 1515 @48 HH_ADD13 $2. 1516 @50 HH_ADD14 $2. 30 The SAS System 13:10 Thursday, March 25, 2010 1517 @52 HH_ADD15 $2. 1518 @54 HH_ADD16 $2. 1519 @56 HH_ADD17 $2. 1520 @58 HH_ADD18 $2. 1521 @60 HH_ADD19 $2. 1522 @62 HH_ADD20 $2. 1523 @64 HH_ADD21 $2. 1524 @66 HH_ADD22 $2. 1525 @68 HH_ADD23 $2. 1526 @70 HH_ADD24 $2. 1527 @72 HH_ADD25 $2. 1528 @74 HH_ADD26 $2. 1529 @76 HH_ADD27 $2. 1530 @78 HH_ADD28 $2. 1531 @80 HH_ADD29 $2. 1532 @82 HH_ADD30 $2. 1533 @84 HH_ADD31 $2. 1534 @86 HH_ADD32 $2. 1535 @88 PP_INTV1 1. 1536 @89 PP_INTV2 1. 1537 @90 PP_INTV3 1. 1538 @91 PP_INTV4 1. 1539 @92 PP_INTV5 1. 1540 @93 PP_INTV6 1. 1541 @94 PP_INTV7 1. 1542 @95 PP_INTV8 1. 1543 @96 PP_MIS01 1. 1544 @97 PP_MIS02 1. 1545 @98 PP_MIS03 1. 1546 @99 PP_MIS04 1. 1547 @100 PP_MIS05 1. 1548 @101 PP_MIS06 1. 1549 @102 PP_MIS07 1. 1550 @103 PP_MIS08 1. 1551 @104 PP_MIS09 1. 1552 @105 PP_MIS10 1. 1553 @106 PP_MIS11 1. 1554 @107 PP_MIS12 1. 1555 @108 PP_MIS13 1. 1556 @109 PP_MIS14 1. 1557 @110 PP_MIS15 1. 1558 @111 PP_MIS16 1. 1559 @112 PP_MIS17 1. 1560 @113 PP_MIS18 1. 1561 @114 PP_MIS19 1. 1562 @115 PP_MIS20 1. 1563 @116 PP_MIS21 1. 1564 @117 PP_MIS22 1. 1565 @118 PP_MIS23 1. 1566 @119 PP_MIS24 1. 1567 @120 PP_MIS25 1. 1568 @121 PP_MIS26 1. 1569 @122 PP_MIS27 1. 1570 @123 PP_MIS28 1. 1571 @124 PP_MIS29 1. 1572 @125 PP_MIS30 1. 1573 @126 PP_MIS31 1. 1574 @127 PP_MIS32 1. 31 The SAS System 13:10 Thursday, March 25, 2010 1575 @128 REASLEF1 1. 1576 @129 REASLEF2 1. 1577 @130 REASLEF3 1. 1578 @131 REASLEF4 1. 1579 @132 REASLEF5 1. 1580 @133 REASLEF6 1. 1581 @134 REASLEF7 1. 1582 @135 REASLEF8 1. 1583 @136 PNLWGT 12.4 1584 @148 FNLWGT84 12.4 1585 @172 FNLWGT85 12.4 1586 @196 SU_RGC 3. 1587 @199 Hs_HSC 1. 1588 @200 LGTHHT01 1. 1589 @201 LGTHHT02 1. 1590 @202 LGTHHT03 1. 1591 @203 LGTHHT04 1. 1592 @204 LGTHHT05 1. 1593 @205 LGTHHT06 1. 1594 @206 LGTHHT07 1. 1595 @207 LGTHHT08 1. 1596 @208 LGTHHT09 1. 1597 @209 LGTHHT10 1. 1598 @210 LGTHHT11 1. 1599 @211 LGTHHT12 1. 1600 @212 LGTHHT13 1. 1601 @213 LGTHHT14 1. 1602 @214 LGTHHT15 1. 1603 @215 LGTHHT16 1. 1604 @216 LGTHHT17 1. 1605 @217 LGTHHT18 1. 1606 @218 LGTHHT19 1. 1607 @219 LGTHHT20 1. 1608 @220 LGTHHT21 1. 1609 @221 LGTHHT22 1. 1610 @222 LGTHHT23 1. 1611 @223 LGTHHT24 1. 1612 @224 LGTHHT25 1. 1613 @225 LGTHHT26 1. 1614 @226 LGTHHT27 1. 1615 @227 LGTHHT28 1. 1616 @228 LGTHHT29 1. 1617 @229 LGTHHT30 1. 1618 @230 LGTHHT31 1. 1619 @231 LGTHHT32 1. 1620 @232 LGTKEY01 3. 1621 @235 LGTKEY02 3. 1622 @238 LGTKEY03 3. 1623 @241 LGTKEY04 3. 1624 @244 LGTKEY05 3. 1625 @247 LGTKEY06 3. 1626 @250 LGTKEY07 3. 1627 @253 LGTKEY08 3. 1628 @256 LGTKEY09 3. 1629 @259 LGTKEY10 3. 1630 @262 LGTKEY11 3. 1631 @265 LGTKEY12 3. 1632 @268 LGTKEY13 3. 32 The SAS System 13:10 Thursday, March 25, 2010 1633 @271 LGTKEY14 3. 1634 @274 LGTKEY15 3. 1635 @277 LGTKEY16 3. 1636 @280 LGTKEY17 3. 1637 @283 LGTKEY18 3. 1638 @286 LGTKEY19 3. 1639 @289 LGTKEY20 3. 1640 @292 LGTKEY21 3. 1641 @295 LGTKEY22 3. 1642 @298 LGTKEY23 3. 1643 @301 LGTKEY24 3. 1644 @304 LGTKEY25 3. 1645 @307 LGTKEY26 3. 1646 @310 LGTKEY27 3. 1647 @313 LGTKEY28 3. 1648 @316 LGTKEY29 3. 1649 @319 LGTKEY30 3. 1650 @322 LGTKEY31 3. 1651 @325 LGTKEY32 3. 1652 @328 LGTOTH01 3. 1653 @331 LGTOTH02 3. 1654 @334 LGTOTH03 3. 1655 @337 LGTOTH04 3. 1656 @340 LGTOTH05 3. 1657 @343 LGTOTH06 3. 1658 @346 LGTOTH07 3. 1659 @349 LGTOTH08 3. 1660 @352 LGTOTH09 3. 1661 @355 LGTOTH10 3. 1662 @358 LGTOTH11 3. 1663 @361 LGTOTH12 3. 1664 @364 LGTOTH13 3. 1665 @367 LGTOTH14 3. 1666 @370 LGTOTH15 3. 1667 @373 LGTOTH16 3. 1668 @376 LGTOTH17 3. 1669 @379 LGTOTH18 3. 1670 @382 LGTOTH19 3. 1671 @385 LGTOTH20 3. 1672 @388 LGTOTH21 3. 1673 @391 LGTOTH22 3. 1674 @394 LGTOTH23 3. 1675 @397 LGTOTH24 3. 1676 @400 LGTOTH25 3. 1677 @403 LGTOTH26 3. 1678 @406 LGTOTH27 3. 1679 @409 LGTOTH28 3. 1680 @412 LGTOTH29 3. 1681 @415 LGTOTH30 3. 1682 @418 LGTOTH31 3. 1683 @421 LGTOTH32 3. 1684 @424 LGTFA101 12.4 1685 @436 LGTFA102 12.4 1686 @448 LGTFA103 12.4 1687 @460 LGTFA104 12.4 1688 @472 LGTFA105 12.4 1689 @484 LGTFA106 12.4 1690 @496 LGTFA107 12.4 33 The SAS System 13:10 Thursday, March 25, 2010 1691 @508 LGTFA108 12.4 1692 @520 LGTFA109 12.4 1693 @532 LGTFA110 12.4 1694 @544 LGTFA111 12.4 1695 @556 LGTFA112 12.4 1696 @568 LGTFA113 12.4 1697 @580 LGTFA114 12.4 1698 @592 LGTFA115 12.4 1699 @604 LGTFA116 12.4 1700 @616 LGTFA117 12.4 1701 @628 LGTFA118 12.4 1702 @640 LGTFA119 12.4 1703 @652 LGTFA120 12.4 1704 @664 LGTFA121 12.4 1705 @676 LGTFA122 12.4 1706 @688 LGTFA123 12.4 1707 @700 LGTFA124 12.4 1708 @712 LGTFA125 12.4 1709 @724 LGTFA126 12.4 1710 @736 LGTFA127 12.4 1711 @748 LGTFA128 12.4 1712 @760 LGTFA129 12.4 1713 @772 LGTFA130 12.4 1714 @784 LGTFA131 12.4 1715 @796 LGTFA132 12.4 1716 @808 LGTFA201 12.4 1717 @820 LGTFA202 12.4 1718 @832 LGTFA203 12.4 1719 @844 LGTFA204 12.4 1720 @856 LGTFA205 12.4 1721 @868 LGTFA206 12.4 1722 @880 LGTFA207 12.4 1723 @892 LGTFA208 12.4 1724 @904 LGTFA209 12.4 1725 @916 LGTFA210 12.4 1726 @928 LGTFA211 12.4 1727 @940 LGTFA212 12.4 1728 @952 LGTFA213 12.4 1729 @964 LGTFA214 12.4 1730 @976 LGTFA215 12.4 1731 @988 LGTFA216 12.4 1732 @1000 LGTFA217 12.4 1733 @1012 LGTFA218 12.4 1734 @1024 LGTFA219 12.4 1735 @1036 LGTFA220 12.4 1736 @1048 LGTFA221 12.4 1737 @1060 LGTFA222 12.4 1738 @1072 LGTFA223 12.4 1739 @1084 LGTFA224 12.4 1740 @1096 LGTFA225 12.4 1741 @1108 LGTFA226 12.4 1742 @1120 LGTFA227 12.4 1743 @1132 LGTFA228 12.4 1744 @1144 LGTFA229 12.4 1745 @1156 LGTFA230 12.4 1746 @1168 LGTFA231 12.4 1747 @1180 LGTFA232 12.4 1748 @1192 SEX 1. 34 The SAS System 13:10 Thursday, March 25, 2010 1749 @1193 RACE 1. 1750 @1194 ETHNICTY 2. 1751 @1196 RRP_01 1. 1752 @1197 RRP_02 1. 1753 @1198 RRP_03 1. 1754 @1199 RRP_04 1. 1755 @1200 RRP_05 1. 1756 @1201 RRP_06 1. 1757 @1202 RRP_07 1. 1758 @1203 RRP_08 1. 1759 @1204 RRP_09 1. 1760 @1205 RRP_10 1. 1761 @1206 RRP_11 1. 1762 @1207 RRP_12 1. 1763 @1208 RRP_13 1. 1764 @1209 RRP_14 1. 1765 @1210 RRP_15 1. 1766 @1211 RRP_16 1. 1767 @1212 RRP_17 1. 1768 @1213 RRP_18 1. 1769 @1214 RRP_19 1. 1770 @1215 RRP_20 1. 1771 @1216 RRP_21 1. 1772 @1217 RRP_22 1. 1773 @1218 RRP_23 1. 1774 @1219 RRP_24 1. 1775 @1220 RRP_25 1. 1776 @1221 RRP_26 1. 1777 @1222 RRP_27 1. 1778 @1223 RRP_28 1. 1779 @1224 RRP_29 1. 1780 @1225 RRP_30 1. 1781 @1226 RRP_31 1. 1782 @1227 RRP_32 1. 1783 @1228 AGE_01 2. 1784 @1230 AGE_02 2. 1785 @1232 AGE_03 2. 1786 @1234 AGE_04 2. 1787 @1236 AGE_05 2. 1788 @1238 AGE_06 2. 1789 @1240 AGE_07 2. 1790 @1242 AGE_08 2. 1791 @1244 AGE_09 2. 1792 @1246 AGE_10 2. 1793 @1248 AGE_11 2. 1794 @1250 AGE_12 2. 1795 @1252 AGE_13 2. 1796 @1254 AGE_14 2. 1797 @1256 AGE_15 2. 1798 @1258 AGE_16 2. 1799 @1260 AGE_17 2. 1800 @1262 AGE_18 2. 1801 @1264 AGE_19 2. 1802 @1266 AGE_20 2. 1803 @1268 AGE_21 2. 1804 @1270 AGE_22 2. 1805 @1272 AGE_23 2. 1806 @1274 AGE_24 2. 35 The SAS System 13:10 Thursday, March 25, 2010 1807 @1276 AGE_25 2. 1808 @1278 AGE_26 2. 1809 @1280 AGE_27 2. 1810 @1282 AGE_28 2. 1811 @1284 AGE_29 2. 1812 @1286 AGE_30 2. 1813 @1288 AGE_31 2. 1814 @1290 AGE_32 2. 1815 @1292 MS_01 1. 1816 @1293 MS_02 1. 1817 @1294 MS_03 1. 1818 @1295 MS_04 1. 1819 @1296 MS_05 1. 1820 @1297 MS_06 1. 1821 @1298 MS_07 1. 1822 @1299 MS_08 1. 1823 @1300 MS_09 1. 1824 @1301 MS_10 1. 1825 @1302 MS_11 1. 1826 @1303 MS_12 1. 1827 @1304 MS_13 1. 1828 @1305 MS_14 1. 1829 @1306 MS_15 1. 1830 @1307 MS_16 1. 1831 @1308 MS_17 1. 1832 @1309 MS_18 1. 1833 @1310 MS_19 1. 1834 @1311 MS_20 1. 1835 @1312 MS_21 1. 1836 @1313 MS_22 1. 1837 @1314 MS_23 1. 1838 @1315 MS_24 1. 1839 @1316 MS_25 1. 1840 @1317 MS_26 1. 1841 @1318 MS_27 1. 1842 @1319 MS_28 1. 1843 @1320 MS_29 1. 1844 @1321 MS_30 1. 1845 @1322 MS_31 1. 1846 @1323 MS_32 1. 1847 @1324 FAMTYP01 1. 1848 @1325 FAMTYP02 1. 1849 @1326 FAMTYP03 1. 1850 @1327 FAMTYP04 1. 1851 @1328 FAMTYP05 1. 1852 @1329 FAMTYP06 1. 1853 @1330 FAMTYP07 1. 1854 @1331 FAMTYP08 1. 1855 @1332 FAMTYP09 1. 1856 @1333 FAMTYP10 1. 1857 @1334 FAMTYP11 1. 1858 @1335 FAMTYP12 1. 1859 @1336 FAMTYP13 1. 1860 @1337 FAMTYP14 1. 1861 @1338 FAMTYP15 1. 1862 @1339 FAMTYP16 1. 1863 @1340 FAMTYP17 1. 1864 @1341 FAMTYP18 1. 36 The SAS System 13:10 Thursday, March 25, 2010 1865 @1342 FAMTYP19 1. 1866 @1343 FAMTYP20 1. 1867 @1344 FAMTYP21 1. 1868 @1345 FAMTYP22 1. 1869 @1346 FAMTYP23 1. 1870 @1347 FAMTYP24 1. 1871 @1348 FAMTYP25 1. 1872 @1349 FAMTYP26 1. 1873 @1350 FAMTYP27 1. 1874 @1351 FAMTYP28 1. 1875 @1352 FAMTYP29 1. 1876 @1353 FAMTYP30 1. 1877 @1354 FAMTYP31 1. 1878 @1355 FAMTYP32 1. 1879 @1356 FAMREL01 1. 1880 @1357 FAMREL02 1. 1881 @1358 FAMREL03 1. 1882 @1359 FAMREL04 1. 1883 @1360 FAMREL05 1. 1884 @1361 FAMREL06 1. 1885 @1362 FAMREL07 1. 1886 @1363 FAMREL08 1. 1887 @1364 FAMREL09 1. 1888 @1365 FAMREL10 1. 1889 @1366 FAMREL11 1. 1890 @1367 FAMREL12 1. 1891 @1368 FAMREL13 1. 1892 @1369 FAMREL14 1. 1893 @1370 FAMREL15 1. 1894 @1371 FAMREL16 1. 1895 @1372 FAMREL17 1. 1896 @1373 FAMREL18 1. 1897 @1374 FAMREL19 1. 1898 @1375 FAMREL20 1. 1899 @1376 FAMREL21 1. 1900 @1377 FAMREL22 1. 1901 @1378 FAMREL23 1. 1902 @1379 FAMREL24 1. 1903 @1380 FAMREL25 1. 1904 @1381 FAMREL26 1. 1905 @1382 FAMREL27 1. 1906 @1383 FAMREL28 1. 1907 @1384 FAMREL29 1. 1908 @1385 FAMREL30 1. 1909 @1386 FAMREL31 1. 1910 @1387 FAMREL32 1. 1911 @1388 FAMNUM01 1. 1912 @1389 FAMNUM02 1. 1913 @1390 FAMNUM03 1. 1914 @1391 FAMNUM04 1. 1915 @1392 FAMNUM05 1. 1916 @1393 FAMNUM06 1. 1917 @1394 FAMNUM07 1. 1918 @1395 FAMNUM08 1. 1919 @1396 FAMNUM09 1. 1920 @1397 FAMNUM10 1. 1921 @1398 FAMNUM11 1. 1922 @1399 FAMNUM12 1. 37 The SAS System 13:10 Thursday, March 25, 2010 1923 @1400 FAMNUM13 1. 1924 @1401 FAMNUM14 1. 1925 @1402 FAMNUM15 1. 1926 @1403 FAMNUM16 1. 1927 @1404 FAMNUM17 1. 1928 @1405 FAMNUM18 1. 1929 @1406 FAMNUM19 1. 1930 @1407 FAMNUM20 1. 1931 @1408 FAMNUM21 1. 1932 @1409 FAMNUM22 1. 1933 @1410 FAMNUM23 1. 1934 @1411 FAMNUM24 1. 1935 @1412 FAMNUM25 1. 1936 @1413 FAMNUM26 1. 1937 @1414 FAMNUM27 1. 1938 @1415 FAMNUM28 1. 1939 @1416 FAMNUM29 1. 1940 @1417 FAMNUM30 1. 1941 @1418 FAMNUM31 1. 1942 @1419 FAMNUM32 1. 1943 @1420 PNSP_01 3. 1944 @1423 PNSP_02 3. 1945 @1426 PNSP_03 3. 1946 @1429 PNSP_04 3. 1947 @1432 PNSP_05 3. 1948 @1435 PNSP_06 3. 1949 @1438 PNSP_07 3. 1950 @1441 PNSP_08 3. 1951 @1444 PNSP_09 3. 1952 @1447 PNSP_10 3. 1953 @1450 PNSP_11 3. 1954 @1453 PNSP_12 3. 1955 @1456 PNSP_13 3. 1956 @1459 PNSP_14 3. 1957 @1462 PNSP_15 3. 1958 @1465 PNSP_16 3. 1959 @1468 PNSP_17 3. 1960 @1471 PNSP_18 3. 1961 @1474 PNSP_19 3. 1962 @1477 PNSP_20 3. 1963 @1480 PNSP_21 3. 1964 @1483 PNSP_22 3. 1965 @1486 PNSP_23 3. 1966 @1489 PNSP_24 3. 1967 @1492 PNSP_25 3. 1968 @1495 PNSP_26 3. 1969 @1498 PNSP_27 3. 1970 @1501 PNSP_28 3. 1971 @1504 PNSP_29 3. 1972 @1507 PNSP_30 3. 1973 @1510 PNSP_31 3. 1974 @1513 PNSP_32 3. 1975 @1516 ENT_SP01 2. 1976 @1518 ENT_SP02 2. 1977 @1520 ENT_SP03 2. 1978 @1522 ENT_SP04 2. 1979 @1524 ENT_SP05 2. 1980 @1526 ENT_SP06 2. 38 The SAS System 13:10 Thursday, March 25, 2010 1981 @1528 ENT_SP07 2. 1982 @1530 ENT_SP08 2. 1983 @1532 ENT_SP09 2. 1984 @1534 ENT_SP10 2. 1985 @1536 ENT_SP11 2. 1986 @1538 ENT_SP12 2. 1987 @1540 ENT_SP13 2. 1988 @1542 ENT_SP14 2. 1989 @1544 ENT_SP15 2. 1990 @1546 ENT_SP16 2. 1991 @1548 ENT_SP17 2. 1992 @1550 ENT_SP18 2. 1993 @1552 ENT_SP19 2. 1994 @1554 ENT_SP20 2. 1995 @1556 ENT_SP21 2. 1996 @1558 ENT_SP22 2. 1997 @1560 ENT_SP23 2. 1998 @1562 ENT_SP24 2. 1999 @1564 ENT_SP25 2. 2000 @1566 ENT_SP26 2. 2001 @1568 ENT_SP27 2. 2002 @1570 ENT_SP28 2. 2003 @1572 ENT_SP29 2. 2004 @1574 ENT_SP30 2. 2005 @1576 ENT_SP31 2. 2006 @1578 ENT_SP32 2. 2007 @1580 PNPT_01 3. 2008 @1583 PNPT_02 3. 2009 @1586 PNPT_03 3. 2010 @1589 PNPT_04 3. 2011 @1592 PNPT_05 3. 2012 @1595 PNPT_06 3. 2013 @1598 PNPT_07 3. 2014 @1601 PNPT_08 3. 2015 @1604 PNPT_09 3. 2016 @1607 PNPT_10 3. 2017 @1610 PNPT_11 3. 2018 @1613 PNPT_12 3. 2019 @1616 PNPT_13 3. 2020 @1619 PNPT_14 3. 2021 @1622 PNPT_15 3. 2022 @1625 PNPT_16 3. 2023 @1628 PNPT_17 3. 2024 @1631 PNPT_18 3. 2025 @1634 PNPT_19 3. 2026 @1637 PNPT_20 3. 2027 @1640 PNPT_21 3. 2028 @1643 PNPT_22 3. 2029 @1646 PNPT_23 3. 2030 @1649 PNPT_24 3. 2031 @1652 PNPT_25 3. 2032 @1655 PNPT_26 3. 2033 @1658 PNPT_27 3. 2034 @1661 PNPT_28 3. 2035 @1664 PNPT_29 3. 2036 @1667 PNPT_30 3. 2037 @1670 PNPT_31 3. 2038 @1673 PNPT_32 3. 39 The SAS System 13:10 Thursday, March 25, 2010 2039 @1676 ENT_PT01 2. 2040 @1678 ENT_PT02 2. 2041 @1680 ENT_PT03 2. 2042 @1682 ENT_PT04 2. 2043 @1684 ENT_PT05 2. 2044 @1686 ENT_PT06 2. 2045 @1688 ENT_PT07 2. 2046 @1690 ENT_PT08 2. 2047 @1692 ENT_PT09 2. 2048 @1694 ENT_PT10 2. 2049 @1696 ENT_PT11 2. 2050 @1698 ENT_PT12 2. 2051 @1700 ENT_PT13 2. 2052 @1702 ENT_PT14 2. 2053 @1704 ENT_PT15 2. 2054 @1706 ENT_PT16 2. 2055 @1708 ENT_PT17 2. 2056 @1710 ENT_PT18 2. 2057 @1712 ENT_PT19 2. 2058 @1714 ENT_PT20 2. 2059 @1716 ENT_PT21 2. 2060 @1718 ENT_PT22 2. 2061 @1720 ENT_PT23 2. 2062 @1722 ENT_PT24 2. 2063 @1724 ENT_PT25 2. 2064 @1726 ENT_PT26 2. 2065 @1728 ENT_PT27 2. 2066 @1730 ENT_PT28 2. 2067 @1732 ENT_PT29 2. 2068 @1734 ENT_PT30 2. 2069 @1736 ENT_PT31 2. 2070 @1738 ENT_PT32 2. 2071 @1740 HIGRADE1 2. 2072 @1742 HIGRADE2 2. 2073 @1744 HIGRADE3 2. 2074 @1746 HIGRADE4 2. 2075 @1748 HIGRADE5 2. 2076 @1750 HIGRADE6 2. 2077 @1752 HIGRADE7 2. 2078 @1754 HIGRADE8 2. 2079 @1756 GRD_CMP1 1. 2080 @1757 GRD_CMP2 1. 2081 @1758 GRD_CMP3 1. 2082 @1759 GRD_CMP4 1. 2083 @1760 GRD_CMP5 1. 2084 @1761 GRD_CMP6 1. 2085 @1762 GRD_CMP7 1. 2086 @1763 GRD_CMP8 1. 2087 @1764 IN_AF_1 1. 2088 @1765 IN_AF_2 1. 2089 @1766 IN_AF_3 1. 2090 @1767 IN_AF_4 1. 2091 @1768 IN_AF_5 1. 2092 @1769 IN_AF_6 1. 2093 @1770 IN_AF_7 1. 2094 @1771 IN_AF_8 1. 2095 @1772 USRVE_1 1. 2096 @1773 USRVE_2 1. 40 The SAS System 13:10 Thursday, March 25, 2010 2097 @1774 USRVE_3 1. 2098 @1775 USRVE_4 1. 2099 @1776 USRVE_5 1. 2100 @1777 USRVE_6 1. 2101 @1778 USRVE_7 1. 2102 @1779 USRVE_8 1. 2103 @1780 U_BRTHMN 2. 2104 @1782 U_BRTHYR 4. 2105 @1786 U_PNGD1 3. 2106 @1789 U_PNGD2 3. 2107 @1792 U_PNGD3 3. 2108 @1795 U_PNGD4 3. 2109 @1798 U_PNGD5 3. 2110 @1801 U_PNGD6 3. 2111 @1804 U_PNGD7 3. 2112 @1807 U_PNGD8 3. 2113 @1810 ENTID_G1 2. 2114 @1812 ENTID_G2 2. 2115 @1814 ENTID_G3 2. 2116 @1816 ENTID_G4 2. 2117 @1818 ENTID_G5 2. 2118 @1820 ENTID_G6 2. 2119 @1822 ENTID_G7 2. 2120 @1824 ENTID_G8 2. 2121 @1826 LVQTR_01 2. 2122 @1828 LVQTR_02 2. 2123 @1830 LVQTR_03 2. 2124 @1832 LVQTR_04 2. 2125 @1834 LVQTR_05 2. 2126 @1836 LVQTR_06 2. 2127 @1838 LVQTR_07 2. 2128 @1840 LVQTR_08 2. 2129 @1842 LVQTR_09 2. 2130 @1844 LVQTR_10 2. 2131 @1846 LVQTR_11 2. 2132 @1848 LVQTR_12 2. 2133 @1850 LVQTR_13 2. 2134 @1852 LVQTR_14 2. 2135 @1854 LVQTR_15 2. 2136 @1856 LVQTR_16 2. 2137 @1858 LVQTR_17 2. 2138 @1860 LVQTR_18 2. 2139 @1862 LVQTR_19 2. 2140 @1864 LVQTR_20 2. 2141 @1866 LVQTR_21 2. 2142 @1868 LVQTR_22 2. 2143 @1870 LVQTR_23 2. 2144 @1872 LVQTR_24 2. 2145 @1874 LVQTR_25 2. 2146 @1876 LVQTR_26 2. 2147 @1878 LVQTR_27 2. 2148 @1880 LVQTR_28 2. 2149 @1882 LVQTR_29 2. 2150 @1884 LVQTR_30 2. 2151 @1886 LVQTR_31 2. 2152 @1888 LVQTR_32 2. 2153 @1890 TENUR_01 1. 2154 @1891 TENUR_02 1. 41 The SAS System 13:10 Thursday, March 25, 2010 2155 @1892 TENUR_03 1. 2156 @1893 TENUR_04 1. 2157 @1894 TENUR_05 1. 2158 @1895 TENUR_06 1. 2159 @1896 TENUR_07 1. 2160 @1897 TENUR_08 1. 2161 @1898 TENUR_09 1. 2162 @1899 TENUR_10 1. 2163 @1900 TENUR_11 1. 2164 @1901 TENUR_12 1. 2165 @1902 TENUR_13 1. 2166 @1903 TENUR_14 1. 2167 @1904 TENUR_15 1. 2168 @1905 TENUR_16 1. 2169 @1906 TENUR_17 1. 2170 @1907 TENUR_18 1. 2171 @1908 TENUR_19 1. 2172 @1909 TENUR_20 1. 2173 @1910 TENUR_21 1. 2174 @1911 TENUR_22 1. 2175 @1912 TENUR_23 1. 2176 @1913 TENUR_24 1. 2177 @1914 TENUR_25 1. 2178 @1915 TENUR_26 1. 2179 @1916 TENUR_27 1. 2180 @1917 TENUR_28 1. 2181 @1918 TENUR_29 1. 2182 @1919 TENUR_30 1. 2183 @1920 TENUR_31 1. 2184 @1921 TENUR_32 1. 2185 @1922 PUBHS_01 1. 2186 @1923 PUBHS_02 1. 2187 @1924 PUBHS_03 1. 2188 @1925 PUBHS_04 1. 2189 @1926 PUBHS_05 1. 2190 @1927 PUBHS_06 1. 2191 @1928 PUBHS_07 1. 2192 @1929 PUBHS_08 1. 2193 @1930 PUBHS_09 1. 2194 @1931 PUBHS_10 1. 2195 @1932 PUBHS_11 1. 2196 @1933 PUBHS_12 1. 2197 @1934 PUBHS_13 1. 2198 @1935 PUBHS_14 1. 2199 @1936 PUBHS_15 1. 2200 @1937 PUBHS_16 1. 2201 @1938 PUBHS_17 1. 2202 @1939 PUBHS_18 1. 2203 @1940 PUBHS_19 1. 2204 @1941 PUBHS_20 1. 2205 @1942 PUBHS_21 1. 2206 @1943 PUBHS_22 1. 2207 @1944 PUBHS_23 1. 2208 @1945 PUBHS_24 1. 2209 @1946 PUBHS_25 1. 2210 @1947 PUBHS_26 1. 2211 @1948 PUBHS_27 1. 2212 @1949 PUBHS_28 1. 42 The SAS System 13:10 Thursday, March 25, 2010 2213 @1950 PUBHS_29 1. 2214 @1951 PUBHS_30 1. 2215 @1952 PUBHS_31 1. 2216 @1953 PUBHS_32 1. 2217 @1954 LORNT_01 1. 2218 @1955 LORNT_02 1. 2219 @1956 LORNT_03 1. 2220 @1957 LORNT_04 1. 2221 @1958 LORNT_05 1. 2222 @1959 LORNT_06 1. 2223 @1960 LORNT_07 1. 2224 @1961 LORNT_08 1. 2225 @1962 LORNT_09 1. 2226 @1963 LORNT_10 1. 2227 @1964 LORNT_11 1. 2228 @1965 LORNT_12 1. 2229 @1966 LORNT_13 1. 2230 @1967 LORNT_14 1. 2231 @1968 LORNT_15 1. 2232 @1969 LORNT_16 1. 2233 @1970 LORNT_17 1. 2234 @1971 LORNT_18 1. 2235 @1972 LORNT_19 1. 2236 @1973 LORNT_20 1. 2237 @1974 LORNT_21 1. 2238 @1975 LORNT_22 1. 2239 @1976 LORNT_23 1. 2240 @1977 LORNT_24 1. 2241 @1978 LORNT_25 1. 2242 @1979 LORNT_26 1. 2243 @1980 LORNT_27 1. 2244 @1981 LORNT_28 1. 2245 @1982 LORNT_29 1. 2246 @1983 LORNT_30 1. 2247 @1984 LORNT_31 1. 2248 @1985 LORNT_32 1. 2249 @1986 ADDID51 2. 2250 @1988 ADDID52 2. 2251 @1990 ADDID53 2. 2252 @1992 ADDID54 2. 2253 @1994 ADDID55 2. 2254 @1996 ADDID56 2. 2255 @1998 ADDID57 2. 2256 @2000 ADDID58 2. 2257 @2002 ENRGY_Y1 1. 2258 @2003 ENRGY_Y2 1. 2259 @2004 ENRGY_Y3 1. 2260 @2005 ENRGY_Y4 1. 2261 @2006 ENRGY_Y5 1. 2262 @2007 ENRGY_Y6 1. 2263 @2008 ENRGY_Y7 1. 2264 @2009 ENRGY_Y8 1. 2265 @2010 Hs_ENRG1 1. 2266 @2011 Hs_ENRG2 1. 2267 @2012 Hs_ENRG3 1. 2268 @2013 Hs_ENRG4 1. 2269 @2014 Hs_ENRG5 1. 2270 @2015 Hs_ENRG6 1. 43 The SAS System 13:10 Thursday, March 25, 2010 2271 @2016 Hs_ENRG7 1. 2272 @2017 Hs_ENRG8 1. 2273 @2018 ENRGY_1 6. 2274 @2024 ENRGY_2 6. 2275 @2030 ENRGY_3 6. 2276 @2036 ENRGY_4 6. 2277 @2042 ENRGY_5 6. 2278 @2048 ENRGY_6 6. 2279 @2054 ENRGY_7 6. 2280 @2060 ENRGY_8 6. 2281 @2066 Hs_LUNC1 1. 2282 @2067 Hs_LUNC2 1. 2283 @2068 Hs_LUNC3 1. 2284 @2069 Hs_LUNC4 1. 2285 @2070 Hs_LUNC5 1. 2286 @2071 Hs_LUNC6 1. 2287 @2072 Hs_LUNC7 1. 2288 @2073 Hs_LUNC8 1. 2289 @2074 LUNCH_1 2. 2290 @2076 LUNCH_2 2. 2291 @2078 LUNCH_3 2. 2292 @2080 LUNCH_4 2. 2293 @2082 LUNCH_5 2. 2294 @2084 LUNCH_6 2. 2295 @2086 LUNCH_7 2. 2296 @2088 LUNCH_8 2. 2297 @2090 BREAK_1 1. 2298 @2091 BREAK_2 1. 2299 @2092 BREAK_3 1. 2300 @2093 BREAK_4 1. 2301 @2094 BREAK_5 1. 2302 @2095 BREAK_6 1. 2303 @2096 BREAK_7 1. 2304 @2097 BREAK_8 1. 2305 @2098 H8_48301 2. 2306 @2100 H8_48302 2. 2307 @2102 H8_48303 2. 2308 @2104 H8_48304 2. 2309 @2106 H8_48305 2. 2310 @2108 H8_48306 2. 2311 @2110 H8_48307 2. 2312 @2112 H8_48308 2. 2313 @2114 Hs_PUBHS 1. 2314 @2115 PUBRNAMT 6. 2315 @2121 UTLPAYYN 1. 2316 @2122 FULLRENT 6. 2317 @2128 STATE_1 2. 2318 @2130 STATE_2 2. 2319 @2132 STATE_3 2. 2320 @2134 STATE_4 2. 2321 @2136 STATE_5 2. 2322 @2138 STATE_6 2. 2323 @2140 STATE_7 2. 2324 @2142 STATE_8 2. 2325 @2144 METRO_1 1. 2326 @2145 METRO_2 1. 2327 @2146 METRO_3 1. 2328 @2147 METRO_4 1. 44 The SAS System 13:10 Thursday, March 25, 2010 2329 @2148 METRO_5 1. 2330 @2149 METRO_6 1. 2331 @2150 METRO_7 1. 2332 @2151 METRO_8 1. 2333 @2152 SC1332 2. 2334 @2154 SC1334 2. 2335 @2156 SC1336 3. 2336 @2159 SC1346 2. 2337 @2161 SC1348 2. 2338 @2163 SC1360 1. 2339 @2164 SC1418 1. 2340 @2165 SC1456 1. 2341 @2166 SC1466_2 $2. 2342 @2168 SC1468 1. 2343 @2169 SC1472 2. 2344 @2171 DISAB 1. 2345 @2172 ATT_SCH1 1. 2346 @2173 ATT_SCH2 1. 2347 @2174 ATT_SCH3 1. 2348 @2175 ATT_SCH4 1. 2349 @2176 ATT_SCH5 1. 2350 @2177 ATT_SCH6 1. 2351 @2178 ATT_SCH7 1. 2352 @2179 ATT_SCH8 1. 2353 @2180 SC168201 1. 2354 @2181 SC168202 1. 2355 @2182 SC168203 1. 2356 @2183 SC168204 1. 2357 @2184 SC168205 1. 2358 @2185 SC168206 1. 2359 @2186 SC168207 1. 2360 @2187 SC168208 1. 2361 @2188 SC168209 1. 2362 @2189 SC168210 1. 2363 @2190 SC168211 1. 2364 @2191 SC168212 1. 2365 @2192 SC168213 1. 2366 @2193 SC168214 1. 2367 @2194 SC168215 1. 2368 @2195 SC168216 1. 2369 @2196 SC168217 1. 2370 @2197 SC168218 1. 2371 @2198 SC168219 1. 2372 @2199 SC168220 1. 2373 @2200 SC168221 1. 2374 @2201 SC168222 1. 2375 @2202 SC168223 1. 2376 @2203 SC168224 1. 2377 @2204 SC168225 1. 2378 @2205 SC168226 1. 2379 @2206 SC168227 1. 2380 @2207 SC168228 1. 2381 @2208 SC168229 1. 2382 @2209 SC168230 1. 2383 @2210 SC168231 1. 2384 @2211 SC168232 1. 2385 @2212 SC169001 1. 2386 @2213 SC169002 1. 45 The SAS System 13:10 Thursday, March 25, 2010 2387 @2214 SC169003 1. 2388 @2215 SC169004 1. 2389 @2216 SC169005 1. 2390 @2217 SC169006 1. 2391 @2218 SC169007 1. 2392 @2219 SC169008 1. 2393 @2220 SC169009 1. 2394 @2221 SC169010 1. 2395 @2222 SC169011 1. 2396 @2223 SC169012 1. 2397 @2224 SC169013 1. 2398 @2225 SC169014 1. 2399 @2226 SC169015 1. 2400 @2227 SC169016 1. 2401 @2228 SC169017 1. 2402 @2229 SC169018 1. 2403 @2230 SC169019 1. 2404 @2231 SC169020 1. 2405 @2232 SC169021 1. 2406 @2233 SC169022 1. 2407 @2234 SC169023 1. 2408 @2235 SC169024 1. 2409 @2236 SC169025 1. 2410 @2237 SC169026 1. 2411 @2238 SC169027 1. 2412 @2239 SC169028 1. 2413 @2240 SC169029 1. 2414 @2241 SC169030 1. 2415 @2242 SC169031 1. 2416 @2243 SC169032 1. 2417 @2244 PP_INC01 8. 2418 @2252 PP_INC02 8. 2419 @2260 PP_INC03 8. 2420 @2268 PP_INC04 8. 2421 @2276 PP_INC05 8. 2422 @2284 PP_INC06 8. 2423 @2292 PP_INC07 8. 2424 @2300 PP_INC08 8. 2425 @2308 PP_INC09 8. 2426 @2316 PP_INC10 8. 2427 @2324 PP_INC11 8. 2428 @2332 PP_INC12 8. 2429 @2340 PP_INC13 8. 2430 @2348 PP_INC14 8. 2431 @2356 PP_INC15 8. 2432 @2364 PP_INC16 8. 2433 @2372 PP_INC17 8. 2434 @2380 PP_INC18 8. 2435 @2388 PP_INC19 8. 2436 @2396 PP_INC20 8. 2437 @2404 PP_INC21 8. 2438 @2412 PP_INC22 8. 2439 @2420 PP_INC23 8. 2440 @2428 PP_INC24 8. 2441 @2436 PP_INC25 8. 2442 @2444 PP_INC26 8. 2443 @2452 PP_INC27 8. 2444 @2460 PP_INC28 8. 46 The SAS System 13:10 Thursday, March 25, 2010 2445 @2468 PP_INC29 8. 2446 @2476 PP_INC30 8. 2447 @2484 PP_INC31 8. 2448 @2492 PP_INC32 8. 2449 @2500 PP_EAR01 7. 2450 @2507 PP_EAR02 7. 2451 @2514 PP_EAR03 7. 2452 @2521 PP_EAR04 7. 2453 @2528 PP_EAR05 7. 2454 @2535 PP_EAR06 7. 2455 @2542 PP_EAR07 7. 2456 @2549 PP_EAR08 7. 2457 @2556 PP_EAR09 7. 2458 @2563 PP_EAR10 7. 2459 @2570 PP_EAR11 7. 2460 @2577 PP_EAR12 7. 2461 @2584 PP_EAR13 7. 2462 @2591 PP_EAR14 7. 2463 @2598 PP_EAR15 7. 2464 @2605 PP_EAR16 7. 2465 @2612 PP_EAR17 7. 2466 @2619 PP_EAR18 7. 2467 @2626 PP_EAR19 7. 2468 @2633 PP_EAR20 7. 2469 @2640 PP_EAR21 7. 2470 @2647 PP_EAR22 7. 2471 @2654 PP_EAR23 7. 2472 @2661 PP_EAR24 7. 2473 @2668 PP_EAR25 7. 2474 @2675 PP_EAR26 7. 2475 @2682 PP_EAR27 7. 2476 @2689 PP_EAR28 7. 2477 @2696 PP_EAR29 7. 2478 @2703 PP_EAR30 7. 2479 @2710 PP_EAR31 7. 2480 @2717 PP_EAR32 7. 2481 @2724 FF_INC01 8. 2482 @2732 FF_INC02 8. 2483 @2740 FF_INC03 8. 2484 @2748 FF_INC04 8. 2485 @2756 FF_INC05 8. 2486 @2764 FF_INC06 8. 2487 @2772 FF_INC07 8. 2488 @2780 FF_INC08 8. 2489 @2788 FF_INC09 8. 2490 @2796 FF_INC10 8. 2491 @2804 FF_INC11 8. 2492 @2812 FF_INC12 8. 2493 @2820 FF_INC13 8. 2494 @2828 FF_INC14 8. 2495 @2836 FF_INC15 8. 2496 @2844 FF_INC16 8. 2497 @2852 FF_INC17 8. 2498 @2860 FF_INC18 8. 2499 @2868 FF_INC19 8. 2500 @2876 FF_INC20 8. 2501 @2884 FF_INC21 8. 2502 @2892 FF_INC22 8. 47 The SAS System 13:10 Thursday, March 25, 2010 2503 @2900 FF_INC23 8. 2504 @2908 FF_INC24 8. 2505 @2916 FF_INC25 8. 2506 @2924 FF_INC26 8. 2507 @2932 FF_INC27 8. 2508 @2940 FF_INC28 8. 2509 @2948 FF_INC29 8. 2510 @2956 FF_INC30 8. 2511 @2964 FF_INC31 8. 2512 @2972 FF_INC32 8. 2513 @2980 HH_INC01 8. 2514 @2988 HH_INC02 8. 2515 @2996 HH_INC03 8. 2516 @3004 HH_INC04 8. 2517 @3012 HH_INC05 8. 2518 @3020 HH_INC06 8. 2519 @3028 HH_INC07 8. 2520 @3036 HH_INC08 8. 2521 @3044 HH_INC09 8. 2522 @3052 HH_INC10 8. 2523 @3060 HH_INC11 8. 2524 @3068 HH_INC12 8. 2525 @3076 HH_INC13 8. 2526 @3084 HH_INC14 8. 2527 @3092 HH_INC15 8. 2528 @3100 HH_INC16 8. 2529 @3108 HH_INC17 8. 2530 @3116 HH_INC18 8. 2531 @3124 HH_INC19 8. 2532 @3132 HH_INC20 8. 2533 @3140 HH_INC21 8. 2534 @3148 HH_INC22 8. 2535 @3156 HH_INC23 8. 2536 @3164 HH_INC24 8. 2537 @3172 HH_INC25 8. 2538 @3180 HH_INC26 8. 2539 @3188 HH_INC27 8. 2540 @3196 HH_INC28 8. 2541 @3204 HH_INC29 8. 2542 @3212 HH_INC30 8. 2543 @3220 HH_INC31 8. 2544 @3228 HH_INC32 8. 2545 @3236 FF_POV01 5. 2546 @3241 FF_POV02 5. 2547 @3246 FF_POV03 5. 2548 @3251 FF_POV04 5. 2549 @3256 FF_POV05 5. 2550 @3261 FF_POV06 5. 2551 @3266 FF_POV07 5. 2552 @3271 FF_POV08 5. 2553 @3276 FF_POV09 5. 2554 @3281 FF_POV10 5. 2555 @3286 FF_POV11 5. 2556 @3291 FF_POV12 5. 2557 @3296 FF_POV13 5. 2558 @3301 FF_POV14 5. 2559 @3306 FF_POV15 5. 2560 @3311 FF_POV16 5. 48 The SAS System 13:10 Thursday, March 25, 2010 2561 @3316 FF_POV17 5. 2562 @3321 FF_POV18 5. 2563 @3326 FF_POV19 5. 2564 @3331 FF_POV20 5. 2565 @3336 FF_POV21 5. 2566 @3341 FF_POV22 5. 2567 @3346 FF_POV23 5. 2568 @3351 FF_POV24 5. 2569 @3356 FF_POV25 5. 2570 @3361 FF_POV26 5. 2571 @3366 FF_POV27 5. 2572 @3371 FF_POV28 5. 2573 @3376 FF_POV29 5. 2574 @3381 FF_POV30 5. 2575 @3386 FF_POV31 5. 2576 @3391 FF_POV32 5. 2577 @3397 ESR_01 1. 2578 @3398 ESR_02 1. 2579 @3399 ESR_03 1. 2580 @3400 ESR_04 1. 2581 @3401 ESR_05 1. 2582 @3402 ESR_06 1. 2583 @3403 ESR_07 1. 2584 @3404 ESR_08 1. 2585 @3405 ESR_09 1. 2586 @3406 ESR_10 1. 2587 @3407 ESR_11 1. 2588 @3408 ESR_12 1. 2589 @3409 ESR_13 1. 2590 @3410 ESR_14 1. 2591 @3411 ESR_15 1. 2592 @3412 ESR_16 1. 2593 @3413 ESR_17 1. 2594 @3414 ESR_18 1. 2595 @3415 ESR_19 1. 2596 @3416 ESR_20 1. 2597 @3417 ESR_21 1. 2598 @3418 ESR_22 1. 2599 @3419 ESR_23 1. 2600 @3420 ESR_24 1. 2601 @3421 ESR_25 1. 2602 @3422 ESR_26 1. 2603 @3423 ESR_27 1. 2604 @3424 ESR_28 1. 2605 @3425 ESR_29 1. 2606 @3426 ESR_30 1. 2607 @3427 ESR_31 1. 2608 @3428 ESR_32 1. 2609 @3429 WKSPER01 1. 2610 @3430 WKSPER02 1. 2611 @3431 WKSPER03 1. 2612 @3432 WKSPER04 1. 2613 @3433 WKSPER05 1. 2614 @3434 WKSPER06 1. 2615 @3435 WKSPER07 1. 2616 @3436 WKSPER08 1. 2617 @3437 WKSPER09 1. 2618 @3438 WKSPER10 1. 49 The SAS System 13:10 Thursday, March 25, 2010 2619 @3439 WKSPER11 1. 2620 @3440 WKSPER12 1. 2621 @3441 WKSPER13 1. 2622 @3442 WKSPER14 1. 2623 @3443 WKSPER15 1. 2624 @3444 WKSPER16 1. 2625 @3445 WKSPER17 1. 2626 @3446 WKSPER18 1. 2627 @3447 WKSPER19 1. 2628 @3448 WKSPER20 1. 2629 @3449 WKSPER21 1. 2630 @3450 WKSPER22 1. 2631 @3451 WKSPER23 1. 2632 @3452 WKSPER24 1. 2633 @3453 WKSPER25 1. 2634 @3454 WKSPER26 1. 2635 @3455 WKSPER27 1. 2636 @3456 WKSPER28 1. 2637 @3457 WKSPER29 1. 2638 @3458 WKSPER30 1. 2639 @3459 WKSPER31 1. 2640 @3460 WKSPER32 1. 2641 @3461 WKSJB_01 1. 2642 @3462 WKSJB_02 1. 2643 @3463 WKSJB_03 1. 2644 @3464 WKSJB_04 1. 2645 @3465 WKSJB_05 1. 2646 @3466 WKSJB_06 1. 2647 @3467 WKSJB_07 1. 2648 @3468 WKSJB_08 1. 2649 @3469 WKSJB_09 1. 2650 @3470 WKSJB_10 1. 2651 @3471 WKSJB_11 1. 2652 @3472 WKSJB_12 1. 2653 @3473 WKSJB_13 1. 2654 @3474 WKSJB_14 1. 2655 @3475 WKSJB_15 1. 2656 @3476 WKSJB_16 1. 2657 @3477 WKSJB_17 1. 2658 @3478 WKSJB_18 1. 2659 @3479 WKSJB_19 1. 2660 @3480 WKSJB_20 1. 2661 @3481 WKSJB_21 1. 2662 @3482 WKSJB_22 1. 2663 @3483 WKSJB_23 1. 2664 @3484 WKSJB_24 1. 2665 @3485 WKSJB_25 1. 2666 @3486 WKSJB_26 1. 2667 @3487 WKSJB_27 1. 2668 @3488 WKSJB_28 1. 2669 @3489 WKSJB_29 1. 2670 @3490 WKSJB_30 1. 2671 @3491 WKSJB_31 1. 2672 @3492 WKSJB_32 1. 2673 @3493 MTHWOP01 1. 2674 @3494 MTHWOP02 1. 2675 @3495 MTHWOP03 1. 2676 @3496 MTHWOP04 1. 50 The SAS System 13:10 Thursday, March 25, 2010 2677 @3497 MTHWOP05 1. 2678 @3498 MTHWOP06 1. 2679 @3499 MTHWOP07 1. 2680 @3500 MTHWOP08 1. 2681 @3501 MTHWOP09 1. 2682 @3502 MTHWOP10 1. 2683 @3503 MTHWOP11 1. 2684 @3504 MTHWOP12 1. 2685 @3505 MTHWOP13 1. 2686 @3506 MTHWOP14 1. 2687 @3507 MTHWOP15 1. 2688 @3508 MTHWOP16 1. 2689 @3509 MTHWOP17 1. 2690 @3510 MTHWOP18 1. 2691 @3511 MTHWOP19 1. 2692 @3512 MTHWOP20 1. 2693 @3513 MTHWOP21 1. 2694 @3514 MTHWOP22 1. 2695 @3515 MTHWOP23 1. 2696 @3516 MTHWOP24 1. 2697 @3517 MTHWOP25 1. 2698 @3518 MTHWOP26 1. 2699 @3519 MTHWOP27 1. 2700 @3520 MTHWOP28 1. 2701 @3521 MTHWOP29 1. 2702 @3522 MTHWOP30 1. 2703 @3523 MTHWOP31 1. 2704 @3524 MTHWOP32 1. 2705 @3525 WEEKSL01 1. 2706 @3526 WEEKSL02 1. 2707 @3527 WEEKSL03 1. 2708 @3528 WEEKSL04 1. 2709 @3529 WEEKSL05 1. 2710 @3530 WEEKSL06 1. 2711 @3531 WEEKSL07 1. 2712 @3532 WEEKSL08 1. 2713 @3533 WEEKSL09 1. 2714 @3534 WEEKSL10 1. 2715 @3535 WEEKSL11 1. 2716 @3536 WEEKSL12 1. 2717 @3537 WEEKSL13 1. 2718 @3538 WEEKSL14 1. 2719 @3539 WEEKSL15 1. 2720 @3540 WEEKSL16 1. 2721 @3541 WEEKSL17 1. 2722 @3542 WEEKSL18 1. 2723 @3543 WEEKSL19 1. 2724 @3544 WEEKSL20 1. 2725 @3545 WEEKSL21 1. 2726 @3546 WEEKSL22 1. 2727 @3547 WEEKSL23 1. 2728 @3548 WEEKSL24 1. 2729 @3549 WEEKSL25 1. 2730 @3550 WEEKSL26 1. 2731 @3551 WEEKSL27 1. 2732 @3552 WEEKSL28 1. 2733 @3553 WEEKSL29 1. 2734 @3554 WEEKSL30 1. 51 The SAS System 13:10 Thursday, March 25, 2010 2735 @3555 WEEKSL31 1. 2736 @3556 WEEKSL32 1. 2737 @3557 SC12301 2. 2738 @3559 SC12302 2. 2739 @3561 SC12303 2. 2740 @3563 SC12304 2. 2741 @3565 SC12305 2. 2742 @3567 SC12306 2. 2743 @3569 SC12307 2. 2744 @3571 SC12308 2. 2745 @3573 JOBID101 1. 2746 @3574 JOBID102 1. 2747 @3575 JOBID103 1. 2748 @3576 JOBID104 1. 2749 @3577 JOBID105 1. 2750 @3578 JOBID106 1. 2751 @3579 JOBID107 1. 2752 @3580 JOBID108 1. 2753 @3581 JOBID109 1. 2754 @3582 JOBID110 1. 2755 @3583 JOBID111 1. 2756 @3584 JOBID112 1. 2757 @3585 JOBID113 1. 2758 @3586 JOBID114 1. 2759 @3587 JOBID115 1. 2760 @3588 JOBID116 1. 2761 @3589 JOBID117 1. 2762 @3590 JOBID118 1. 2763 @3591 JOBID119 1. 2764 @3592 JOBID120 1. 2765 @3593 JOBID121 1. 2766 @3594 JOBID122 1. 2767 @3595 JOBID123 1. 2768 @3596 JOBID124 1. 2769 @3597 JOBID125 1. 2770 @3598 JOBID126 1. 2771 @3599 JOBID127 1. 2772 @3600 JOBID128 1. 2773 @3601 JOBID129 1. 2774 @3602 JOBID130 1. 2775 @3603 JOBID131 1. 2776 @3604 JOBID132 1. 2777 @3605 JOBID201 1. 2778 @3606 JOBID202 1. 2779 @3607 JOBID203 1. 2780 @3608 JOBID204 1. 2781 @3609 JOBID205 1. 2782 @3610 JOBID206 1. 2783 @3611 JOBID207 1. 2784 @3612 JOBID208 1. 2785 @3613 JOBID209 1. 2786 @3614 JOBID210 1. 2787 @3615 JOBID211 1. 2788 @3616 JOBID212 1. 2789 @3617 JOBID213 1. 2790 @3618 JOBID214 1. 2791 @3619 JOBID215 1. 2792 @3620 JOBID216 1. 52 The SAS System 13:10 Thursday, March 25, 2010 2793 @3621 JOBID217 1. 2794 @3622 JOBID218 1. 2795 @3623 JOBID219 1. 2796 @3624 JOBID220 1. 2797 @3625 JOBID221 1. 2798 @3626 JOBID222 1. 2799 @3627 JOBID223 1. 2800 @3628 JOBID224 1. 2801 @3629 JOBID225 1. 2802 @3630 JOBID226 1. 2803 @3631 JOBID227 1. 2804 @3632 JOBID228 1. 2805 @3633 JOBID229 1. 2806 @3634 JOBID230 1. 2807 @3635 JOBID231 1. 2808 @3636 JOBID232 1. 2809 @3637 CLSWK101 1. 2810 @3638 CLSWK102 1. 2811 @3639 CLSWK103 1. 2812 @3640 CLSWK104 1. 2813 @3641 CLSWK105 1. 2814 @3642 CLSWK106 1. 2815 @3643 CLSWK107 1. 2816 @3644 CLSWK108 1. 2817 @3645 CLSWK109 1. 2818 @3646 CLSWK110 1. 2819 @3647 CLSWK111 1. 2820 @3648 CLSWK112 1. 2821 @3649 CLSWK113 1. 2822 @3650 CLSWK114 1. 2823 @3651 CLSWK115 1. 2824 @3652 CLSWK116 1. 2825 @3653 CLSWK117 1. 2826 @3654 CLSWK118 1. 2827 @3655 CLSWK119 1. 2828 @3656 CLSWK120 1. 2829 @3657 CLSWK121 1. 2830 @3658 CLSWK122 1. 2831 @3659 CLSWK123 1. 2832 @3660 CLSWK124 1. 2833 @3661 CLSWK125 1. 2834 @3662 CLSWK126 1. 2835 @3663 CLSWK127 1. 2836 @3664 CLSWK128 1. 2837 @3665 CLSWK129 1. 2838 @3666 CLSWK130 1. 2839 @3667 CLSWK131 1. 2840 @3668 CLSWK132 1. 2841 @3669 CLSWK201 1. 2842 @3670 CLSWK202 1. 2843 @3671 CLSWK203 1. 2844 @3672 CLSWK204 1. 2845 @3673 CLSWK205 1. 2846 @3674 CLSWK206 1. 2847 @3675 CLSWK207 1. 2848 @3676 CLSWK208 1. 2849 @3677 CLSWK209 1. 2850 @3678 CLSWK210 1. 53 The SAS System 13:10 Thursday, March 25, 2010 2851 @3679 CLSWK211 1. 2852 @3680 CLSWK212 1. 2853 @3681 CLSWK213 1. 2854 @3682 CLSWK214 1. 2855 @3683 CLSWK215 1. 2856 @3684 CLSWK216 1. 2857 @3685 CLSWK217 1. 2858 @3686 CLSWK218 1. 2859 @3687 CLSWK219 1. 2860 @3688 CLSWK220 1. 2861 @3689 CLSWK221 1. 2862 @3690 CLSWK222 1. 2863 @3691 CLSWK223 1. 2864 @3692 CLSWK224 1. 2865 @3693 CLSWK225 1. 2866 @3694 CLSWK226 1. 2867 @3695 CLSWK227 1. 2868 @3696 CLSWK228 1. 2869 @3697 CLSWK229 1. 2870 @3698 CLSWK230 1. 2871 @3699 CLSWK231 1. 2872 @3700 CLSWK232 1. 2873 @3701 WS1_OC01 3. 2874 @3704 WS1_OC02 3. 2875 @3707 WS1_OC03 3. 2876 @3710 WS1_OC04 3. 2877 @3713 WS1_OC05 3. 2878 @3716 WS1_OC06 3. 2879 @3719 WS1_OC07 3. 2880 @3722 WS1_OC08 3. 2881 @3725 WS1_OC09 3. 2882 @3728 WS1_OC10 3. 2883 @3731 WS1_OC11 3. 2884 @3734 WS1_OC12 3. 2885 @3737 WS1_OC13 3. 2886 @3740 WS1_OC14 3. 2887 @3743 WS1_OC15 3. 2888 @3746 WS1_OC16 3. 2889 @3749 WS1_OC17 3. 2890 @3752 WS1_OC18 3. 2891 @3755 WS1_OC19 3. 2892 @3758 WS1_OC20 3. 2893 @3761 WS1_OC21 3. 2894 @3764 WS1_OC22 3. 2895 @3767 WS1_OC23 3. 2896 @3770 WS1_OC24 3. 2897 @3773 WS1_OC25 3. 2898 @3776 WS1_OC26 3. 2899 @3779 WS1_OC27 3. 2900 @3782 WS1_OC28 3. 2901 @3785 WS1_OC29 3. 2902 @3788 WS1_OC30 3. 2903 @3791 WS1_OC31 3. 2904 @3794 WS1_OC32 3. 2905 @3797 WS2_OC01 3. 2906 @3800 WS2_OC02 3. 2907 @3803 WS2_OC03 3. 2908 @3806 WS2_OC04 3. 54 The SAS System 13:10 Thursday, March 25, 2010 2909 @3809 WS2_OC05 3. 2910 @3812 WS2_OC06 3. 2911 @3815 WS2_OC07 3. 2912 @3818 WS2_OC08 3. 2913 @3821 WS2_OC09 3. 2914 @3824 WS2_OC10 3. 2915 @3827 WS2_OC11 3. 2916 @3830 WS2_OC12 3. 2917 @3833 WS2_OC13 3. 2918 @3836 WS2_OC14 3. 2919 @3839 WS2_OC15 3. 2920 @3842 WS2_OC16 3. 2921 @3845 WS2_OC17 3. 2922 @3848 WS2_OC18 3. 2923 @3851 WS2_OC19 3. 2924 @3854 WS2_OC20 3. 2925 @3857 WS2_OC21 3. 2926 @3860 WS2_OC22 3. 2927 @3863 WS2_OC23 3. 2928 @3866 WS2_OC24 3. 2929 @3869 WS2_OC25 3. 2930 @3872 WS2_OC26 3. 2931 @3875 WS2_OC27 3. 2932 @3878 WS2_OC28 3. 2933 @3881 WS2_OC29 3. 2934 @3884 WS2_OC30 3. 2935 @3887 WS2_OC31 3. 2936 @3890 WS2_OC32 3. 2937 @3893 WS1_IN01 3. 2938 @3896 WS1_IN02 3. 2939 @3899 WS1_IN03 3. 2940 @3902 WS1_IN04 3. 2941 @3905 WS1_IN05 3. 2942 @3908 WS1_IN06 3. 2943 @3911 WS1_IN07 3. 2944 @3914 WS1_IN08 3. 2945 @3917 WS1_IN09 3. 2946 @3920 WS1_IN10 3. 2947 @3923 WS1_IN11 3. 2948 @3926 WS1_IN12 3. 2949 @3929 WS1_IN13 3. 2950 @3932 WS1_IN14 3. 2951 @3935 WS1_IN15 3. 2952 @3938 WS1_IN16 3. 2953 @3941 WS1_IN17 3. 2954 @3944 WS1_IN18 3. 2955 @3947 WS1_IN19 3. 2956 @3950 WS1_IN20 3. 2957 @3953 WS1_IN21 3. 2958 @3956 WS1_IN22 3. 2959 @3959 WS1_IN23 3. 2960 @3962 WS1_IN24 3. 2961 @3965 WS1_IN25 3. 2962 @3968 WS1_IN26 3. 2963 @3971 WS1_IN27 3. 2964 @3974 WS1_IN28 3. 2965 @3977 WS1_IN29 3. 2966 @3980 WS1_IN30 3. 55 The SAS System 13:10 Thursday, March 25, 2010 2967 @3983 WS1_IN31 3. 2968 @3986 WS1_IN32 3. 2969 @3989 WS2_IN01 3. 2970 @3992 WS2_IN02 3. 2971 @3995 WS2_IN03 3. 2972 @3998 WS2_IN04 3. 2973 @4001 WS2_IN05 3. 2974 @4004 WS2_IN06 3. 2975 @4007 WS2_IN07 3. 2976 @4010 WS2_IN08 3. 2977 @4013 WS2_IN09 3. 2978 @4016 WS2_IN10 3. 2979 @4019 WS2_IN11 3. 2980 @4022 WS2_IN12 3. 2981 @4025 WS2_IN13 3. 2982 @4028 WS2_IN14 3. 2983 @4031 WS2_IN15 3. 2984 @4034 WS2_IN16 3. 2985 @4037 WS2_IN17 3. 2986 @4040 WS2_IN18 3. 2987 @4043 WS2_IN19 3. 2988 @4046 WS2_IN20 3. 2989 @4049 WS2_IN21 3. 2990 @4052 WS2_IN22 3. 2991 @4055 WS2_IN23 3. 2992 @4058 WS2_IN24 3. 2993 @4061 WS2_IN25 3. 2994 @4064 WS2_IN26 3. 2995 @4067 WS2_IN27 3. 2996 @4070 WS2_IN28 3. 2997 @4073 WS2_IN29 3. 2998 @4076 WS2_IN30 3. 2999 @4079 WS2_IN31 3. 3000 @4082 WS2_IN32 3. 3001 @4085 WS1_WK01 1. 3002 @4086 WS1_WK02 1. 3003 @4087 WS1_WK03 1. 3004 @4088 WS1_WK04 1. 3005 @4089 WS1_WK05 1. 3006 @4090 WS1_WK06 1. 3007 @4091 WS1_WK07 1. 3008 @4092 WS1_WK08 1. 3009 @4093 WS1_WK09 1. 3010 @4094 WS1_WK10 1. 3011 @4095 WS1_WK11 1. 3012 @4096 WS1_WK12 1. 3013 @4097 WS1_WK13 1. 3014 @4098 WS1_WK14 1. 3015 @4099 WS1_WK15 1. 3016 @4100 WS1_WK16 1. 3017 @4101 WS1_WK17 1. 3018 @4102 WS1_WK18 1. 3019 @4103 WS1_WK19 1. 3020 @4104 WS1_WK20 1. 3021 @4105 WS1_WK21 1. 3022 @4106 WS1_WK22 1. 3023 @4107 WS1_WK23 1. 3024 @4108 WS1_WK24 1. 56 The SAS System 13:10 Thursday, March 25, 2010 3025 @4109 WS1_WK25 1. 3026 @4110 WS1_WK26 1. 3027 @4111 WS1_WK27 1. 3028 @4112 WS1_WK28 1. 3029 @4113 WS1_WK29 1. 3030 @4114 WS1_WK30 1. 3031 @4115 WS1_WK31 1. 3032 @4116 WS1_WK32 1. 3033 @4117 WS2_WK01 1. 3034 @4118 WS2_WK02 1. 3035 @4119 WS2_WK03 1. 3036 @4120 WS2_WK04 1. 3037 @4121 WS2_WK05 1. 3038 @4122 WS2_WK06 1. 3039 @4123 WS2_WK07 1. 3040 @4124 WS2_WK08 1. 3041 @4125 WS2_WK09 1. 3042 @4126 WS2_WK10 1. 3043 @4127 WS2_WK11 1. 3044 @4128 WS2_WK12 1. 3045 @4129 WS2_WK13 1. 3046 @4130 WS2_WK14 1. 3047 @4131 WS2_WK15 1. 3048 @4132 WS2_WK16 1. 3049 @4133 WS2_WK17 1. 3050 @4134 WS2_WK18 1. 3051 @4135 WS2_WK19 1. 3052 @4136 WS2_WK20 1. 3053 @4137 WS2_WK21 1. 3054 @4138 WS2_WK22 1. 3055 @4139 WS2_WK23 1. 3056 @4140 WS2_WK24 1. 3057 @4141 WS2_WK25 1. 3058 @4142 WS2_WK26 1. 3059 @4143 WS2_WK27 1. 3060 @4144 WS2_WK28 1. 3061 @4145 WS2_WK29 1. 3062 @4146 WS2_WK30 1. 3063 @4147 WS2_WK31 1. 3064 @4148 WS2_WK32 1. 3065 @4149 WS1_AM01 6. 3066 @4155 WS1_AM02 6. 3067 @4161 WS1_AM03 6. 3068 @4167 WS1_AM04 6. 3069 @4173 WS1_AM05 6. 3070 @4179 WS1_AM06 6. 3071 @4185 WS1_AM07 6. 3072 @4191 WS1_AM08 6. 3073 @4197 WS1_AM09 6. 3074 @4203 WS1_AM10 6. 3075 @4209 WS1_AM11 6. 3076 @4215 WS1_AM12 6. 3077 @4221 WS1_AM13 6. 3078 @4227 WS1_AM14 6. 3079 @4233 WS1_AM15 6. 3080 @4239 WS1_AM16 6. 3081 @4245 WS1_AM17 6. 3082 @4251 WS1_AM18 6. 57 The SAS System 13:10 Thursday, March 25, 2010 3083 @4257 WS1_AM19 6. 3084 @4263 WS1_AM20 6. 3085 @4269 WS1_AM21 6. 3086 @4275 WS1_AM22 6. 3087 @4281 WS1_AM23 6. 3088 @4287 WS1_AM24 6. 3089 @4293 WS1_AM25 6. 3090 @4299 WS1_AM26 6. 3091 @4305 WS1_AM27 6. 3092 @4311 WS1_AM28 6. 3093 @4317 WS1_AM29 6. 3094 @4323 WS1_AM30 6. 3095 @4329 WS1_AM31 6. 3096 @4335 WS1_AM32 6. 3097 @4341 WS2_AM01 6. 3098 @4347 WS2_AM02 6. 3099 @4353 WS2_AM03 6. 3100 @4359 WS2_AM04 6. 3101 @4365 WS2_AM05 6. 3102 @4371 WS2_AM06 6. 3103 @4377 WS2_AM07 6. 3104 @4383 WS2_AM08 6. 3105 @4389 WS2_AM09 6. 3106 @4395 WS2_AM10 6. 3107 @4401 WS2_AM11 6. 3108 @4407 WS2_AM12 6. 3109 @4413 WS2_AM13 6. 3110 @4419 WS2_AM14 6. 3111 @4425 WS2_AM15 6. 3112 @4431 WS2_AM16 6. 3113 @4437 WS2_AM17 6. 3114 @4443 WS2_AM18 6. 3115 @4449 WS2_AM19 6. 3116 @4455 WS2_AM20 6. 3117 @4461 WS2_AM21 6. 3118 @4467 WS2_AM22 6. 3119 @4473 WS2_AM23 6. 3120 @4479 WS2_AM24 6. 3121 @4485 WS2_AM25 6. 3122 @4491 WS2_AM26 6. 3123 @4497 WS2_AM27 6. 3124 @4503 WS2_AM28 6. 3125 @4509 WS2_AM29 6. 3126 @4515 WS2_AM30 6. 3127 @4521 WS2_AM31 6. 3128 @4527 WS2_AM32 6. 3129 @4533 W2024_01 2. 3130 @4535 W2024_02 2. 3131 @4537 W2024_03 2. 3132 @4539 W2024_04 2. 3133 @4541 W2024_05 2. 3134 @4543 W2024_06 2. 3135 @4545 W2024_07 2. 3136 @4547 W2024_08 2. 3137 @4549 W2024_09 2. 3138 @4551 W2024_10 2. 3139 @4553 W2024_11 2. 3140 @4555 W2024_12 2. 58 The SAS System 13:10 Thursday, March 25, 2010 3141 @4557 W2024_13 2. 3142 @4559 W2024_14 2. 3143 @4561 W2024_15 2. 3144 @4563 W2024_16 2. 3145 @4565 W2024_17 2. 3146 @4567 W2024_18 2. 3147 @4569 W2024_19 2. 3148 @4571 W2024_20 2. 3149 @4573 W2024_21 2. 3150 @4575 W2024_22 2. 3151 @4577 W2024_23 2. 3152 @4579 W2024_24 2. 3153 @4581 W2024_25 2. 3154 @4583 W2024_26 2. 3155 @4585 W2024_27 2. 3156 @4587 W2024_28 2. 3157 @4589 W2024_29 2. 3158 @4591 W2024_30 2. 3159 @4593 W2024_31 2. 3160 @4595 W2024_32 2. 3161 @4597 W2124_01 2. 3162 @4599 W2124_02 2. 3163 @4601 W2124_03 2. 3164 @4603 W2124_04 2. 3165 @4605 W2124_05 2. 3166 @4607 W2124_06 2. 3167 @4609 W2124_07 2. 3168 @4611 W2124_08 2. 3169 @4613 W2124_09 2. 3170 @4615 W2124_10 2. 3171 @4617 W2124_11 2. 3172 @4619 W2124_12 2. 3173 @4621 W2124_13 2. 3174 @4623 W2124_14 2. 3175 @4625 W2124_15 2. 3176 @4627 W2124_16 2. 3177 @4629 W2124_17 2. 3178 @4631 W2124_18 2. 3179 @4633 W2124_19 2. 3180 @4635 W2124_20 2. 3181 @4637 W2124_21 2. 3182 @4639 W2124_22 2. 3183 @4641 W2124_23 2. 3184 @4643 W2124_24 2. 3185 @4645 W2124_25 2. 3186 @4647 W2124_26 2. 3187 @4649 W2124_27 2. 3188 @4651 W2124_28 2. 3189 @4653 W2124_29 2. 3190 @4655 W2124_30 2. 3191 @4657 W2124_31 2. 3192 @4659 W2124_32 2. 3193 @4661 W2028_01 4.2 3194 @4665 W2028_02 4.2 3195 @4669 W2028_03 4.2 3196 @4673 W2028_04 4.2 3197 @4677 W2028_05 4.2 3198 @4681 W2028_06 4.2 59 The SAS System 13:10 Thursday, March 25, 2010 3199 @4685 W2028_07 4.2 3200 @4689 W2028_08 4.2 3201 @4693 W2028_09 4.2 3202 @4697 W2028_10 4.2 3203 @4701 W2028_11 4.2 3204 @4705 W2028_12 4.2 3205 @4709 W2028_13 4.2 3206 @4713 W2028_14 4.2 3207 @4717 W2028_15 4.2 3208 @4721 W2028_16 4.2 3209 @4725 W2028_17 4.2 3210 @4729 W2028_18 4.2 3211 @4733 W2028_19 4.2 3212 @4737 W2028_20 4.2 3213 @4741 W2028_21 4.2 3214 @4745 W2028_22 4.2 3215 @4749 W2028_23 4.2 3216 @4753 W2028_24 4.2 3217 @4757 W2028_25 4.2 3218 @4761 W2028_26 4.2 3219 @4765 W2028_27 4.2 3220 @4769 W2028_28 4.2 3221 @4773 W2028_29 4.2 3222 @4777 W2028_30 4.2 3223 @4781 W2028_31 4.2 3224 @4785 W2028_32 4.2 3225 @4789 W2128_01 4.2 3226 @4793 W2128_02 4.2 3227 @4797 W2128_03 4.2 3228 @4801 W2128_04 4.2 3229 @4805 W2128_05 4.2 3230 @4809 W2128_06 4.2 3231 @4813 W2128_07 4.2 3232 @4817 W2128_08 4.2 3233 @4821 W2128_09 4.2 3234 @4825 W2128_10 4.2 3235 @4829 W2128_11 4.2 3236 @4833 W2128_12 4.2 3237 @4837 W2128_13 4.2 3238 @4841 W2128_14 4.2 3239 @4845 W2128_15 4.2 3240 @4849 W2128_16 4.2 3241 @4853 W2128_17 4.2 3242 @4857 W2128_18 4.2 3243 @4861 W2128_19 4.2 3244 @4865 W2128_20 4.2 3245 @4869 W2128_21 4.2 3246 @4873 W2128_22 4.2 3247 @4877 W2128_23 4.2 3248 @4881 W2128_24 4.2 3249 @4885 W2128_25 4.2 3250 @4889 W2128_26 4.2 3251 @4893 W2128_27 4.2 3252 @4897 W2128_28 4.2 3253 @4901 W2128_29 4.2 3254 @4905 W2128_30 4.2 3255 @4909 W2128_31 4.2 3256 @4913 W2128_32 4.2 60 The SAS System 13:10 Thursday, March 25, 2010 3257 @4917 S2202_01 1. 3258 @4918 S2202_02 1. 3259 @4919 S2202_03 1. 3260 @4920 S2202_04 1. 3261 @4921 S2202_05 1. 3262 @4922 S2202_06 1. 3263 @4923 S2202_07 1. 3264 @4924 S2202_08 1. 3265 @4925 S2202_09 1. 3266 @4926 S2202_10 1. 3267 @4927 S2202_11 1. 3268 @4928 S2202_12 1. 3269 @4929 S2202_13 1. 3270 @4930 S2202_14 1. 3271 @4931 S2202_15 1. 3272 @4932 S2202_16 1. 3273 @4933 S2202_17 1. 3274 @4934 S2202_18 1. 3275 @4935 S2202_19 1. 3276 @4936 S2202_20 1. 3277 @4937 S2202_21 1. 3278 @4938 S2202_22 1. 3279 @4939 S2202_23 1. 3280 @4940 S2202_24 1. 3281 @4941 S2202_25 1. 3282 @4942 S2202_26 1. 3283 @4943 S2202_27 1. 3284 @4944 S2202_28 1. 3285 @4945 S2202_29 1. 3286 @4946 S2202_30 1. 3287 @4947 S2202_31 1. 3288 @4948 S2202_32 1. 3289 @4949 S2302_01 1. 3290 @4950 S2302_02 1. 3291 @4951 S2302_03 1. 3292 @4952 S2302_04 1. 3293 @4953 S2302_05 1. 3294 @4954 S2302_06 1. 3295 @4955 S2302_07 1. 3296 @4956 S2302_08 1. 3297 @4957 S2302_09 1. 3298 @4958 S2302_10 1. 3299 @4959 S2302_11 1. 3300 @4960 S2302_12 1. 3301 @4961 S2302_13 1. 3302 @4962 S2302_14 1. 3303 @4963 S2302_15 1. 3304 @4964 S2302_16 1. 3305 @4965 S2302_17 1. 3306 @4966 S2302_18 1. 3307 @4967 S2302_19 1. 3308 @4968 S2302_20 1. 3309 @4969 S2302_21 1. 3310 @4970 S2302_22 1. 3311 @4971 S2302_23 1. 3312 @4972 S2302_24 1. 3313 @4973 S2302_25 1. 3314 @4974 S2302_26 1. 61 The SAS System 13:10 Thursday, March 25, 2010 3315 @4975 S2302_27 1. 3316 @4976 S2302_28 1. 3317 @4977 S2302_29 1. 3318 @4978 S2302_30 1. 3319 @4979 S2302_31 1. 3320 @4980 S2302_32 1. 3321 @4981 TYPBS101 1. 3322 @4982 TYPBS102 1. 3323 @4983 TYPBS103 1. 3324 @4984 TYPBS104 1. 3325 @4985 TYPBS105 1. 3326 @4986 TYPBS106 1. 3327 @4987 TYPBS107 1. 3328 @4988 TYPBS108 1. 3329 @4989 TYPBS109 1. 3330 @4990 TYPBS110 1. 3331 @4991 TYPBS111 1. 3332 @4992 TYPBS112 1. 3333 @4993 TYPBS113 1. 3334 @4994 TYPBS114 1. 3335 @4995 TYPBS115 1. 3336 @4996 TYPBS116 1. 3337 @4997 TYPBS117 1. 3338 @4998 TYPBS118 1. 3339 @4999 TYPBS119 1. 3340 @5000 TYPBS120 1. 3341 @5001 TYPBS121 1. 3342 @5002 TYPBS122 1. 3343 @5003 TYPBS123 1. 3344 @5004 TYPBS124 1. 3345 @5005 TYPBS125 1. 3346 @5006 TYPBS126 1. 3347 @5007 TYPBS127 1. 3348 @5008 TYPBS128 1. 3349 @5009 TYPBS129 1. 3350 @5010 TYPBS130 1. 3351 @5011 TYPBS131 1. 3352 @5012 TYPBS132 1. 3353 @5013 TYPBS201 1. 3354 @5014 TYPBS202 1. 3355 @5015 TYPBS203 1. 3356 @5016 TYPBS204 1. 3357 @5017 TYPBS205 1. 3358 @5018 TYPBS206 1. 3359 @5019 TYPBS207 1. 3360 @5020 TYPBS208 1. 3361 @5021 TYPBS209 1. 3362 @5022 TYPBS210 1. 3363 @5023 TYPBS211 1. 3364 @5024 TYPBS212 1. 3365 @5025 TYPBS213 1. 3366 @5026 TYPBS214 1. 3367 @5027 TYPBS215 1. 3368 @5028 TYPBS216 1. 3369 @5029 TYPBS217 1. 3370 @5030 TYPBS218 1. 3371 @5031 TYPBS219 1. 3372 @5032 TYPBS220 1. 62 The SAS System 13:10 Thursday, March 25, 2010 3373 @5033 TYPBS221 1. 3374 @5034 TYPBS222 1. 3375 @5035 TYPBS223 1. 3376 @5036 TYPBS224 1. 3377 @5037 TYPBS225 1. 3378 @5038 TYPBS226 1. 3379 @5039 TYPBS227 1. 3380 @5040 TYPBS228 1. 3381 @5041 TYPBS229 1. 3382 @5042 TYPBS230 1. 3383 @5043 TYPBS231 1. 3384 @5044 TYPBS232 1. 3385 @5045 SEWS1O01 3. 3386 @5048 SEWS1O02 3. 3387 @5051 SEWS1O03 3. 3388 @5054 SEWS1O04 3. 3389 @5057 SEWS1O05 3. 3390 @5060 SEWS1O06 3. 3391 @5063 SEWS1O07 3. 3392 @5066 SEWS1O08 3. 3393 @5069 SEWS1O09 3. 3394 @5072 SEWS1O10 3. 3395 @5075 SEWS1O11 3. 3396 @5078 SEWS1O12 3. 3397 @5081 SEWS1O13 3. 3398 @5084 SEWS1O14 3. 3399 @5087 SEWS1O15 3. 3400 @5090 SEWS1O16 3. 3401 @5093 SEWS1O17 3. 3402 @5096 SEWS1O18 3. 3403 @5099 SEWS1O19 3. 3404 @5102 SEWS1O20 3. 3405 @5105 SEWS1O21 3. 3406 @5108 SEWS1O22 3. 3407 @5111 SEWS1O23 3. 3408 @5114 SEWS1O24 3. 3409 @5117 SEWS1O25 3. 3410 @5120 SEWS1O26 3. 3411 @5123 SEWS1O27 3. 3412 @5126 SEWS1O28 3. 3413 @5129 SEWS1O29 3. 3414 @5132 SEWS1O30 3. 3415 @5135 SEWS1O31 3. 3416 @5138 SEWS1O32 3. 3417 @5141 SEWS2O01 3. 3418 @5144 SEWS2O02 3. 3419 @5147 SEWS2O03 3. 3420 @5150 SEWS2O04 3. 3421 @5153 SEWS2O05 3. 3422 @5156 SEWS2O06 3. 3423 @5159 SEWS2O07 3. 3424 @5162 SEWS2O08 3. 3425 @5165 SEWS2O09 3. 3426 @5168 SEWS2O10 3. 3427 @5171 SEWS2O11 3. 3428 @5174 SEWS2O12 3. 3429 @5177 SEWS2O13 3. 3430 @5180 SEWS2O14 3. 63 The SAS System 13:10 Thursday, March 25, 2010 3431 @5183 SEWS2O15 3. 3432 @5186 SEWS2O16 3. 3433 @5189 SEWS2O17 3. 3434 @5192 SEWS2O18 3. 3435 @5195 SEWS2O19 3. 3436 @5198 SEWS2O20 3. 3437 @5201 SEWS2O21 3. 3438 @5204 SEWS2O22 3. 3439 @5207 SEWS2O23 3. 3440 @5210 SEWS2O24 3. 3441 @5213 SEWS2O25 3. 3442 @5216 SEWS2O26 3. 3443 @5219 SEWS2O27 3. 3444 @5222 SEWS2O28 3. 3445 @5225 SEWS2O29 3. 3446 @5228 SEWS2O30 3. 3447 @5231 SEWS2O31 3. 3448 @5234 SEWS2O32 3. 3449 @5237 SEWS1I01 3. 3450 @5240 SEWS1I02 3. 3451 @5243 SEWS1I03 3. 3452 @5246 SEWS1I04 3. 3453 @5249 SEWS1I05 3. 3454 @5252 SEWS1I06 3. 3455 @5255 SEWS1I07 3. 3456 @5258 SEWS1I08 3. 3457 @5261 SEWS1I09 3. 3458 @5264 SEWS1I10 3. 3459 @5267 SEWS1I11 3. 3460 @5270 SEWS1I12 3. 3461 @5273 SEWS1I13 3. 3462 @5276 SEWS1I14 3. 3463 @5279 SEWS1I15 3. 3464 @5282 SEWS1I16 3. 3465 @5285 SEWS1I17 3. 3466 @5288 SEWS1I18 3. 3467 @5291 SEWS1I19 3. 3468 @5294 SEWS1I20 3. 3469 @5297 SEWS1I21 3. 3470 @5300 SEWS1I22 3. 3471 @5303 SEWS1I23 3. 3472 @5306 SEWS1I24 3. 3473 @5309 SEWS1I25 3. 3474 @5312 SEWS1I26 3. 3475 @5315 SEWS1I27 3. 3476 @5318 SEWS1I28 3. 3477 @5321 SEWS1I29 3. 3478 @5324 SEWS1I30 3. 3479 @5327 SEWS1I31 3. 3480 @5330 SEWS1I32 3. 3481 @5333 SEWS2I01 3. 3482 @5336 SEWS2I02 3. 3483 @5339 SEWS2I03 3. 3484 @5342 SEWS2I04 3. 3485 @5345 SEWS2I05 3. 3486 @5348 SEWS2I06 3. 3487 @5351 SEWS2I07 3. 3488 @5354 SEWS2I08 3. 64 The SAS System 13:10 Thursday, March 25, 2010 3489 @5357 SEWS2I09 3. 3490 @5360 SEWS2I10 3. 3491 @5363 SEWS2I11 3. 3492 @5366 SEWS2I12 3. 3493 @5369 SEWS2I13 3. 3494 @5372 SEWS2I14 3. 3495 @5375 SEWS2I15 3. 3496 @5378 SEWS2I16 3. 3497 @5381 SEWS2I17 3. 3498 @5384 SEWS2I18 3. 3499 @5387 SEWS2I19 3. 3500 @5390 SEWS2I20 3. 3501 @5393 SEWS2I21 3. 3502 @5396 SEWS2I22 3. 3503 @5399 SEWS2I23 3. 3504 @5402 SEWS2I24 3. 3505 @5405 SEWS2I25 3. 3506 @5408 SEWS2I26 3. 3507 @5411 SEWS2I27 3. 3508 @5414 SEWS2I28 3. 3509 @5417 SEWS2I29 3. 3510 @5420 SEWS2I30 3. 3511 @5423 SEWS2I31 3. 3512 @5426 SEWS2I32 3. 3513 @5429 SE1_WK01 1. 3514 @5430 SE1_WK02 1. 3515 @5431 SE1_WK03 1. 3516 @5432 SE1_WK04 1. 3517 @5433 SE1_WK05 1. 3518 @5434 SE1_WK06 1. 3519 @5435 SE1_WK07 1. 3520 @5436 SE1_WK08 1. 3521 @5437 SE1_WK09 1. 3522 @5438 SE1_WK10 1. 3523 @5439 SE1_WK11 1. 3524 @5440 SE1_WK12 1. 3525 @5441 SE1_WK13 1. 3526 @5442 SE1_WK14 1. 3527 @5443 SE1_WK15 1. 3528 @5444 SE1_WK16 1. 3529 @5445 SE1_WK17 1. 3530 @5446 SE1_WK18 1. 3531 @5447 SE1_WK19 1. 3532 @5448 SE1_WK20 1. 3533 @5449 SE1_WK21 1. 3534 @5450 SE1_WK22 1. 3535 @5451 SE1_WK23 1. 3536 @5452 SE1_WK24 1. 3537 @5453 SE1_WK25 1. 3538 @5454 SE1_WK26 1. 3539 @5455 SE1_WK27 1. 3540 @5456 SE1_WK28 1. 3541 @5457 SE1_WK29 1. 3542 @5458 SE1_WK30 1. 3543 @5459 SE1_WK31 1. 3544 @5460 SE1_WK32 1. 3545 @5461 SE2_WK01 1. 3546 @5462 SE2_WK02 1. 65 The SAS System 13:10 Thursday, March 25, 2010 3547 @5463 SE2_WK03 1. 3548 @5464 SE2_WK04 1. 3549 @5465 SE2_WK05 1. 3550 @5466 SE2_WK06 1. 3551 @5467 SE2_WK07 1. 3552 @5468 SE2_WK08 1. 3553 @5469 SE2_WK09 1. 3554 @5470 SE2_WK10 1. 3555 @5471 SE2_WK11 1. 3556 @5472 SE2_WK12 1. 3557 @5473 SE2_WK13 1. 3558 @5474 SE2_WK14 1. 3559 @5475 SE2_WK15 1. 3560 @5476 SE2_WK16 1. 3561 @5477 SE2_WK17 1. 3562 @5478 SE2_WK18 1. 3563 @5479 SE2_WK19 1. 3564 @5480 SE2_WK20 1. 3565 @5481 SE2_WK21 1. 3566 @5482 SE2_WK22 1. 3567 @5483 SE2_WK23 1. 3568 @5484 SE2_WK24 1. 3569 @5485 SE2_WK25 1. 3570 @5486 SE2_WK26 1. 3571 @5487 SE2_WK27 1. 3572 @5488 SE2_WK28 1. 3573 @5489 SE2_WK29 1. 3574 @5490 SE2_WK30 1. 3575 @5491 SE2_WK31 1. 3576 @5492 SE2_WK32 1. 3577 @5493 SE1_AM01 6. 3578 @5499 SE1_AM02 6. 3579 @5505 SE1_AM03 6. 3580 @5511 SE1_AM04 6. 3581 @5517 SE1_AM05 6. 3582 @5523 SE1_AM06 6. 3583 @5529 SE1_AM07 6. 3584 @5535 SE1_AM08 6. 3585 @5541 SE1_AM09 6. 3586 @5547 SE1_AM10 6. 3587 @5553 SE1_AM11 6. 3588 @5559 SE1_AM12 6. 3589 @5565 SE1_AM13 6. 3590 @5571 SE1_AM14 6. 3591 @5577 SE1_AM15 6. 3592 @5583 SE1_AM16 6. 3593 @5589 SE1_AM17 6. 3594 @5595 SE1_AM18 6. 3595 @5601 SE1_AM19 6. 3596 @5607 SE1_AM20 6. 3597 @5613 SE1_AM21 6. 3598 @5619 SE1_AM22 6. 3599 @5625 SE1_AM23 6. 3600 @5631 SE1_AM24 6. 3601 @5637 SE1_AM25 6. 3602 @5643 SE1_AM26 6. 3603 @5649 SE1_AM27 6. 3604 @5655 SE1_AM28 6. 66 The SAS System 13:10 Thursday, March 25, 2010 3605 @5661 SE1_AM29 6. 3606 @5667 SE1_AM30 6. 3607 @5673 SE1_AM31 6. 3608 @5679 SE1_AM32 6. 3609 @5685 SE2_AM01 6. 3610 @5691 SE2_AM02 6. 3611 @5697 SE2_AM03 6. 3612 @5703 SE2_AM04 6. 3613 @5709 SE2_AM05 6. 3614 @5715 SE2_AM06 6. 3615 @5721 SE2_AM07 6. 3616 @5727 SE2_AM08 6. 3617 @5733 SE2_AM09 6. 3618 @5739 SE2_AM10 6. 3619 @5745 SE2_AM11 6. 3620 @5751 SE2_AM12 6. 3621 @5757 SE2_AM13 6. 3622 @5763 SE2_AM14 6. 3623 @5769 SE2_AM15 6. 3624 @5775 SE2_AM16 6. 3625 @5781 SE2_AM17 6. 3626 @5787 SE2_AM18 6. 3627 @5793 SE2_AM19 6. 3628 @5799 SE2_AM20 6. 3629 @5805 SE2_AM21 6. 3630 @5811 SE2_AM22 6. 3631 @5817 SE2_AM23 6. 3632 @5823 SE2_AM24 6. 3633 @5829 SE2_AM25 6. 3634 @5835 SE2_AM26 6. 3635 @5841 SE2_AM27 6. 3636 @5847 SE2_AM28 6. 3637 @5853 SE2_AM29 6. 3638 @5859 SE2_AM30 6. 3639 @5865 SE2_AM31 6. 3640 @5871 SE2_AM32 6. 3641 @5877 S2212_01 2. 3642 @5879 S2212_02 2. 3643 @5881 S2212_03 2. 3644 @5883 S2212_04 2. 3645 @5885 S2212_05 2. 3646 @5887 S2212_06 2. 3647 @5889 S2212_07 2. 3648 @5891 S2212_08 2. 3649 @5893 S2212_09 2. 3650 @5895 S2212_10 2. 3651 @5897 S2212_11 2. 3652 @5899 S2212_12 2. 3653 @5901 S2212_13 2. 3654 @5903 S2212_14 2. 3655 @5905 S2212_15 2. 3656 @5907 S2212_16 2. 3657 @5909 S2212_17 2. 3658 @5911 S2212_18 2. 3659 @5913 S2212_19 2. 3660 @5915 S2212_20 2. 3661 @5917 S2212_21 2. 3662 @5919 S2212_22 2. 67 The SAS System 13:10 Thursday, March 25, 2010 3663 @5921 S2212_23 2. 3664 @5923 S2212_24 2. 3665 @5925 S2212_25 2. 3666 @5927 S2212_26 2. 3667 @5929 S2212_27 2. 3668 @5931 S2212_28 2. 3669 @5933 S2212_29 2. 3670 @5935 S2212_30 2. 3671 @5937 S2212_31 2. 3672 @5939 S2212_32 2. 3673 @5941 S2312_01 2. 3674 @5943 S2312_02 2. 3675 @5945 S2312_03 2. 3676 @5947 S2312_04 2. 3677 @5949 S2312_05 2. 3678 @5951 S2312_06 2. 3679 @5953 S2312_07 2. 3680 @5955 S2312_08 2. 3681 @5957 S2312_09 2. 3682 @5959 S2312_10 2. 3683 @5961 S2312_11 2. 3684 @5963 S2312_12 2. 3685 @5965 S2312_13 2. 3686 @5967 S2312_14 2. 3687 @5969 S2312_15 2. 3688 @5971 S2312_16 2. 3689 @5973 S2312_17 2. 3690 @5975 S2312_18 2. 3691 @5977 S2312_19 2. 3692 @5979 S2312_20 2. 3693 @5981 S2312_21 2. 3694 @5983 S2312_22 2. 3695 @5985 S2312_23 2. 3696 @5987 S2312_24 2. 3697 @5989 S2312_25 2. 3698 @5991 S2312_26 2. 3699 @5993 S2312_27 2. 3700 @5995 S2312_28 2. 3701 @5997 S2312_29 2. 3702 @5999 S2312_30 2. 3703 @6001 S2312_31 2. 3704 @6003 S2312_32 2. 3705 @6005 G1SRC_01 2. 3706 @6007 G1SRC_02 2. 3707 @6009 G1SRC_03 2. 3708 @6011 G1SRC_04 2. 3709 @6013 G1SRC_05 2. 3710 @6015 G1SRC_06 2. 3711 @6017 G1SRC_07 2. 3712 @6019 G1SRC_08 2. 3713 @6021 G1SRC_09 2. 3714 @6023 G1SRC_10 2. 3715 @6025 G1_A_01 15. 3716 @6075 G1_A_02 15. 3717 @6125 G1_A_03 15. 3718 @6175 G1_A_04 15. 3719 @6225 G1_A_05 15. 3720 @6275 G1_A_06 15. 68 The SAS System 13:10 Thursday, March 25, 2010 3721 @6325 G1_A_07 15. 3722 @6375 G1_A_08 15. 3723 @6425 G1_A_09 15. 3724 @6475 G1_A_10 15. 3725 @6525 G1_A_11 15. 3726 @6575 G1_A_12 15. 3727 @6625 G1_A_13 15. 3728 @6675 G1_A_14 15. 3729 @6725 G1_A_15 15. 3730 @6775 G1_A_16 15. 3731 @6825 G1_A_17 15. 3732 @6875 G1_A_18 15. 3733 @6925 G1_A_19 15. 3734 @6975 G1_A_20 15. 3735 @7025 G1_A_21 15. 3736 @7075 G1_A_22 15. 3737 @7125 G1_A_23 15. 3738 @7175 G1_A_24 15. 3739 @7225 G1_A_25 15. 3740 @7275 G1_A_26 15. 3741 @7325 G1_A_27 15. 3742 @7375 G1_A_28 15. 3743 @7425 G1_A_29 15. 3744 @7475 G1_A_30 15. 3745 @7525 G1_A_31 15. 3746 @7575 G1_A_32 15. 3747 @7625 SSRECIN1 1. 3748 @7626 SSRECIN2 1. 3749 @7627 SSRECIN3 1. 3750 @7628 SSRECIN4 1. 3751 @7629 SSRECIN5 1. 3752 @7630 SSRECIN6 1. 3753 @7631 SSRECIN7 1. 3754 @7632 SSRECIN8 1. 3755 @7633 RRRECIN1 1. 3756 @7634 RRRECIN2 1. 3757 @7635 RRRECIN3 1. 3758 @7636 RRRECIN4 1. 3759 @7637 RRRECIN5 1. 3760 @7638 RRRECIN6 1. 3761 @7639 RRRECIN7 1. 3762 @7640 RRRECIN8 1. 3763 @7641 VET3060 2. 3764 @7643 AST1001 1. 3765 @7644 AST1002 1. 3766 @7645 AST1003 1. 3767 @7646 AST1004 1. 3768 @7647 AST1005 1. 3769 @7648 AST1006 1. 3770 @7649 AST1007 1. 3771 @7650 AST1008 1. 3772 @7651 AST1011 1. 3773 @7652 AST1012 1. 3774 @7653 AST1013 1. 3775 @7654 AST1014 1. 3776 @7655 AST1015 1. 3777 @7656 AST1016 1. 3778 @7657 AST1017 1. 69 The SAS System 13:10 Thursday, March 25, 2010 3779 @7658 AST1018 1. 3780 @7659 AST1021 1. 3781 @7660 AST1022 1. 3782 @7661 AST1023 1. 3783 @7662 AST1024 1. 3784 @7663 AST1025 1. 3785 @7664 AST1026 1. 3786 @7665 AST1027 1. 3787 @7666 AST1028 1. 3788 @7667 AST1031 1. 3789 @7668 AST1032 1. 3790 @7669 AST1033 1. 3791 @7670 AST1034 1. 3792 @7671 AST1035 1. 3793 @7672 AST1036 1. 3794 @7673 AST1037 1. 3795 @7674 AST1038 1. 3796 @7675 AST1041 1. 3797 @7676 AST1042 1. 3798 @7677 AST1043 1. 3799 @7678 AST1044 1. 3800 @7679 AST1045 1. 3801 @7680 AST1046 1. 3802 @7681 AST1047 1. 3803 @7682 AST1048 1. 3804 @7683 AST1051 1. 3805 @7684 AST1052 1. 3806 @7685 AST1053 1. 3807 @7686 AST1054 1. 3808 @7687 AST1055 1. 3809 @7688 AST1056 1. 3810 @7689 AST1057 1. 3811 @7690 AST1058 1. 3812 @7691 AST1061 1. 3813 @7692 AST1062 1. 3814 @7693 AST1063 1. 3815 @7694 AST1064 1. 3816 @7695 AST1065 1. 3817 @7696 AST1066 1. 3818 @7697 AST1067 1. 3819 @7698 AST1068 1. 3820 @7699 AST1071 1. 3821 @7700 AST1072 1. 3822 @7701 AST1073 1. 3823 @7702 AST1074 1. 3824 @7703 AST1075 1. 3825 @7704 AST1076 1. 3826 @7705 AST1077 1. 3827 @7706 AST1078 1. 3828 @7707 AST1101 1. 3829 @7708 AST1102 1. 3830 @7709 AST1103 1. 3831 @7710 AST1104 1. 3832 @7711 AST1105 1. 3833 @7712 AST1106 1. 3834 @7713 AST1107 1. 3835 @7714 AST1108 1. 3836 @7715 AST1201 1. 70 The SAS System 13:10 Thursday, March 25, 2010 3837 @7716 AST1202 1. 3838 @7717 AST1203 1. 3839 @7718 AST1204 1. 3840 @7719 AST1205 1. 3841 @7720 AST1206 1. 3842 @7721 AST1207 1. 3843 @7722 AST1208 1. 3844 @7723 AST1301 1. 3845 @7724 AST1302 1. 3846 @7725 AST1303 1. 3847 @7726 AST1304 1. 3848 @7727 AST1305 1. 3849 @7728 AST1306 1. 3850 @7729 AST1307 1. 3851 @7730 AST1308 1. 3852 @7731 AST1401 1. 3853 @7732 AST1402 1. 3854 @7733 AST1403 1. 3855 @7734 AST1404 1. 3856 @7735 AST1405 1. 3857 @7736 AST1406 1. 3858 @7737 AST1407 1. 3859 @7738 AST1408 1. 3860 @7739 AST1501 1. 3861 @7740 AST1502 1. 3862 @7741 AST1503 1. 3863 @7742 AST1504 1. 3864 @7743 AST1505 1. 3865 @7744 AST1506 1. 3866 @7745 AST1507 1. 3867 @7746 AST1508 1. 3868 @7747 G2SRC100 1. 3869 @7748 G2SRC104 1. 3870 @7749 G2SRC110 1. 3871 @7750 G2SRC120 1. 3872 @7751 G2SRC130 1. 3873 @7752 G2SRC140 1. 3874 @7753 G2A10001 7. 3875 @7760 G2A10002 7. 3876 @7767 G2A10003 7. 3877 @7774 G2A10004 7. 3878 @7781 G2A10005 7. 3879 @7788 G2A10006 7. 3880 @7795 G2A10007 7. 3881 @7802 G2A10008 7. 3882 @7809 G2A10009 7. 3883 @7816 G2A10010 7. 3884 @7823 G2A10011 7. 3885 @7830 G2A10012 7. 3886 @7837 G2A10013 7. 3887 @7844 G2A10014 7. 3888 @7851 G2A10015 7. 3889 @7858 G2A10016 7. 3890 @7865 G2A10017 7. 3891 @7872 G2A10018 7. 3892 @7879 G2A10019 7. 3893 @7886 G2A10020 7. 3894 @7893 G2A10021 7. 71 The SAS System 13:10 Thursday, March 25, 2010 3895 @7900 G2A10022 7. 3896 @7907 G2A10023 7. 3897 @7914 G2A10024 7. 3898 @7921 G2A10025 7. 3899 @7928 G2A10026 7. 3900 @7935 G2A10027 7. 3901 @7942 G2A10028 7. 3902 @7949 G2A10029 7. 3903 @7956 G2A10030 7. 3904 @7963 G2A10031 7. 3905 @7970 G2A10032 7. 3906 @7977 G2A10401 7. 3907 @7984 G2A10402 7. 3908 @7991 G2A10403 7. 3909 @7998 G2A10404 7. 3910 @8005 G2A10405 7. 3911 @8012 G2A10406 7. 3912 @8019 G2A10407 7. 3913 @8026 G2A10408 7. 3914 @8033 G2A10409 7. 3915 @8040 G2A10410 7. 3916 @8047 G2A10411 7. 3917 @8054 G2A10412 7. 3918 @8061 G2A10413 7. 3919 @8068 G2A10414 7. 3920 @8075 G2A10415 7. 3921 @8082 G2A10416 7. 3922 @8089 G2A10417 7. 3923 @8096 G2A10418 7. 3924 @8103 G2A10419 7. 3925 @8110 G2A10420 7. 3926 @8117 G2A10421 7. 3927 @8124 G2A10422 7. 3928 @8131 G2A10423 7. 3929 @8138 G2A10424 7. 3930 @8145 G2A10425 7. 3931 @8152 G2A10426 7. 3932 @8159 G2A10427 7. 3933 @8166 G2A10428 7. 3934 @8173 G2A10429 7. 3935 @8180 G2A10430 7. 3936 @8187 G2A10431 7. 3937 @8194 G2A10432 7. 3938 @8201 G2A11001 7. 3939 @8208 G2A11002 7. 3940 @8215 G2A11003 7. 3941 @8222 G2A11004 7. 3942 @8229 G2A11005 7. 3943 @8236 G2A11006 7. 3944 @8243 G2A11007 7. 3945 @8250 G2A11008 7. 3946 @8257 G2A11009 7. 3947 @8264 G2A11010 7. 3948 @8271 G2A11011 7. 3949 @8278 G2A11012 7. 3950 @8285 G2A11013 7. 3951 @8292 G2A11014 7. 3952 @8299 G2A11015 7. 72 The SAS System 13:10 Thursday, March 25, 2010 3953 @8306 G2A11016 7. 3954 @8313 G2A11017 7. 3955 @8320 G2A11018 7. 3956 @8327 G2A11019 7. 3957 @8334 G2A11020 7. 3958 @8341 G2A11021 7. 3959 @8348 G2A11022 7. 3960 @8355 G2A11023 7. 3961 @8362 G2A11024 7. 3962 @8369 G2A11025 7. 3963 @8376 G2A11026 7. 3964 @8383 G2A11027 7. 3965 @8390 G2A11028 7. 3966 @8397 G2A11029 7. 3967 @8404 G2A11030 7. 3968 @8411 G2A11031 7. 3969 @8418 G2A11032 7. 3970 @8425 G2A12001 7. 3971 @8432 G2A12002 7. 3972 @8439 G2A12003 7. 3973 @8446 G2A12004 7. 3974 @8453 G2A12005 7. 3975 @8460 G2A12006 7. 3976 @8467 G2A12007 7. 3977 @8474 G2A12008 7. 3978 @8481 G2A12009 7. 3979 @8488 G2A12010 7. 3980 @8495 G2A12011 7. 3981 @8502 G2A12012 7. 3982 @8509 G2A12013 7. 3983 @8516 G2A12014 7. 3984 @8523 G2A12015 7. 3985 @8530 G2A12016 7. 3986 @8537 G2A12017 7. 3987 @8544 G2A12018 7. 3988 @8551 G2A12019 7. 3989 @8558 G2A12020 7. 3990 @8565 G2A12021 7. 3991 @8572 G2A12022 7. 3992 @8579 G2A12023 7. 3993 @8586 G2A12024 7. 3994 @8593 G2A12025 7. 3995 @8600 G2A12026 7. 3996 @8607 G2A12027 7. 3997 @8614 G2A12028 7. 3998 @8621 G2A12029 7. 3999 @8628 G2A12030 7. 4000 @8635 G2A12031 7. 4001 @8642 G2A12032 7. 4002 @8649 G2A13001 7. 4003 @8656 G2A13002 7. 4004 @8663 G2A13003 7. 4005 @8670 G2A13004 7. 4006 @8677 G2A13005 7. 4007 @8684 G2A13006 7. 4008 @8691 G2A13007 7. 4009 @8698 G2A13008 7. 4010 @8705 G2A13009 7. 73 The SAS System 13:10 Thursday, March 25, 2010 4011 @8712 G2A13010 7. 4012 @8719 G2A13011 7. 4013 @8726 G2A13012 7. 4014 @8733 G2A13013 7. 4015 @8740 G2A13014 7. 4016 @8747 G2A13015 7. 4017 @8754 G2A13016 7. 4018 @8761 G2A13017 7. 4019 @8768 G2A13018 7. 4020 @8775 G2A13019 7. 4021 @8782 G2A13020 7. 4022 @8789 G2A13021 7. 4023 @8796 G2A13022 7. 4024 @8803 G2A13023 7. 4025 @8810 G2A13024 7. 4026 @8817 G2A13025 7. 4027 @8824 G2A13026 7. 4028 @8831 G2A13027 7. 4029 @8838 G2A13028 7. 4030 @8845 G2A13029 7. 4031 @8852 G2A13030 7. 4032 @8859 G2A13031 7. 4033 @8866 G2A13032 7. 4034 @8873 G2A14001 7. 4035 @8880 G2A14002 7. 4036 @8887 G2A14003 7. 4037 @8894 G2A14004 7. 4038 @8901 G2A14005 7. 4039 @8908 G2A14006 7. 4040 @8915 G2A14007 7. 4041 @8922 G2A14008 7. 4042 @8929 G2A14009 7. 4043 @8936 G2A14010 7. 4044 @8943 G2A14011 7. 4045 @8950 G2A14012 7. 4046 @8957 G2A14013 7. 4047 @8964 G2A14014 7. 4048 @8971 G2A14015 7. 4049 @8978 G2A14016 7. 4050 @8985 G2A14017 7. 4051 @8992 G2A14018 7. 4052 @8999 G2A14019 7. 4053 @9006 G2A14020 7. 4054 @9013 G2A14021 7. 4055 @9020 G2A14022 7. 4056 @9027 G2A14023 7. 4057 @9034 G2A14024 7. 4058 @9041 G2A14025 7. 4059 @9048 G2A14026 7. 4060 @9055 G2A14027 7. 4061 @9062 G2A14028 7. 4062 @9069 G2A14029 7. 4063 @9076 G2A14030 7. 4064 @9083 G2A14031 7. 4065 @9090 G2A14032 7. 4066 @9097 CARECO01 1. 4067 @9098 CARECO02 1. 4068 @9099 CARECO03 1. 74 The SAS System 13:10 Thursday, March 25, 2010 4069 @9100 CARECO04 1. 4070 @9101 CARECO05 1. 4071 @9102 CARECO06 1. 4072 @9103 CARECO07 1. 4073 @9104 CARECO08 1. 4074 @9105 CARECO09 1. 4075 @9106 CARECO10 1. 4076 @9107 CARECO11 1. 4077 @9108 CARECO12 1. 4078 @9109 CARECO13 1. 4079 @9110 CARECO14 1. 4080 @9111 CARECO15 1. 4081 @9112 CARECO16 1. 4082 @9113 CARECO17 1. 4083 @9114 CARECO18 1. 4084 @9115 CARECO19 1. 4085 @9116 CARECO20 1. 4086 @9117 CARECO21 1. 4087 @9118 CARECO22 1. 4088 @9119 CARECO23 1. 4089 @9120 CARECO24 1. 4090 @9121 CARECO25 1. 4091 @9122 CARECO26 1. 4092 @9123 CARECO27 1. 4093 @9124 CARECO28 1. 4094 @9125 CARECO29 1. 4095 @9126 CARECO30 1. 4096 @9127 CARECO31 1. 4097 @9128 CARECO32 1. 4098 @9129 CAIDCO01 1. 4099 @9130 CAIDCO02 1. 4100 @9131 CAIDCO03 1. 4101 @9132 CAIDCO04 1. 4102 @9133 CAIDCO05 1. 4103 @9134 CAIDCO06 1. 4104 @9135 CAIDCO07 1. 4105 @9136 CAIDCO08 1. 4106 @9137 CAIDCO09 1. 4107 @9138 CAIDCO10 1. 4108 @9139 CAIDCO11 1. 4109 @9140 CAIDCO12 1. 4110 @9141 CAIDCO13 1. 4111 @9142 CAIDCO14 1. 4112 @9143 CAIDCO15 1. 4113 @9144 CAIDCO16 1. 4114 @9145 CAIDCO17 1. 4115 @9146 CAIDCO18 1. 4116 @9147 CAIDCO19 1. 4117 @9148 CAIDCO20 1. 4118 @9149 CAIDCO21 1. 4119 @9150 CAIDCO22 1. 4120 @9151 CAIDCO23 1. 4121 @9152 CAIDCO24 1. 4122 @9153 CAIDCO25 1. 4123 @9154 CAIDCO26 1. 4124 @9155 CAIDCO27 1. 4125 @9156 CAIDCO28 1. 4126 @9157 CAIDCO29 1. 75 The SAS System 13:10 Thursday, March 25, 2010 4127 @9158 CAIDCO30 1. 4128 @9159 CAIDCO31 1. 4129 @9160 CAIDCO32 1. 4130 @9161 WICCOV01 1. 4131 @9162 WICCOV02 1. 4132 @9163 WICCOV03 1. 4133 @9164 WICCOV04 1. 4134 @9165 WICCOV05 1. 4135 @9166 WICCOV06 1. 4136 @9167 WICCOV07 1. 4137 @9168 WICCOV08 1. 4138 @9169 WICCOV09 1. 4139 @9170 WICCOV10 1. 4140 @9171 WICCOV11 1. 4141 @9172 WICCOV12 1. 4142 @9173 WICCOV13 1. 4143 @9174 WICCOV14 1. 4144 @9175 WICCOV15 1. 4145 @9176 WICCOV16 1. 4146 @9177 WICCOV17 1. 4147 @9178 WICCOV18 1. 4148 @9179 WICCOV19 1. 4149 @9180 WICCOV20 1. 4150 @9181 WICCOV21 1. 4151 @9182 WICCOV22 1. 4152 @9183 WICCOV23 1. 4153 @9184 WICCOV24 1. 4154 @9185 WICCOV25 1. 4155 @9186 WICCOV26 1. 4156 @9187 WICCOV27 1. 4157 @9188 WICCOV28 1. 4158 @9189 WICCOV29 1. 4159 @9190 WICCOV30 1. 4160 @9191 WICCOV31 1. 4161 @9192 WICCOV32 1. 4162 @9193 AFDC_01 1. 4163 @9194 AFDC_02 1. 4164 @9195 AFDC_03 1. 4165 @9196 AFDC_04 1. 4166 @9197 AFDC_05 1. 4167 @9198 AFDC_06 1. 4168 @9199 AFDC_07 1. 4169 @9200 AFDC_08 1. 4170 @9201 AFDC_09 1. 4171 @9202 AFDC_10 1. 4172 @9203 AFDC_11 1. 4173 @9204 AFDC_12 1. 4174 @9205 AFDC_13 1. 4175 @9206 AFDC_14 1. 4176 @9207 AFDC_15 1. 4177 @9208 AFDC_16 1. 4178 @9209 AFDC_17 1. 4179 @9210 AFDC_18 1. 4180 @9211 AFDC_19 1. 4181 @9212 AFDC_20 1. 4182 @9213 AFDC_21 1. 4183 @9214 AFDC_22 1. 4184 @9215 AFDC_23 1. 76 The SAS System 13:10 Thursday, March 25, 2010 4185 @9216 AFDC_24 1. 4186 @9217 AFDC_25 1. 4187 @9218 AFDC_26 1. 4188 @9219 AFDC_27 1. 4189 @9220 AFDC_28 1. 4190 @9221 AFDC_29 1. 4191 @9222 AFDC_30 1. 4192 @9223 AFDC_31 1. 4193 @9224 AFDC_32 1. 4194 @9225 FOODST01 1. 4195 @9226 FOODST02 1. 4196 @9227 FOODST03 1. 4197 @9228 FOODST04 1. 4198 @9229 FOODST05 1. 4199 @9230 FOODST06 1. 4200 @9231 FOODST07 1. 4201 @9232 FOODST08 1. 4202 @9233 FOODST09 1. 4203 @9234 FOODST10 1. 4204 @9235 FOODST11 1. 4205 @9236 FOODST12 1. 4206 @9237 FOODST13 1. 4207 @9238 FOODST14 1. 4208 @9239 FOODST15 1. 4209 @9240 FOODST16 1. 4210 @9241 FOODST17 1. 4211 @9242 FOODST18 1. 4212 @9243 FOODST19 1. 4213 @9244 FOODST20 1. 4214 @9245 FOODST21 1. 4215 @9246 FOODST22 1. 4216 @9247 FOODST23 1. 4217 @9248 FOODST24 1. 4218 @9249 FOODST25 1. 4219 @9250 FOODST26 1. 4220 @9251 FOODST27 1. 4221 @9252 FOODST28 1. 4222 @9253 FOODST29 1. 4223 @9254 FOODST30 1. 4224 @9255 FOODST31 1. 4225 @9256 FOODST32 1. 4226 @9257 GEN_AS01 1. 4227 @9258 GEN_AS02 1. 4228 @9259 GEN_AS03 1. 4229 @9260 GEN_AS04 1. 4230 @9261 GEN_AS05 1. 4231 @9262 GEN_AS06 1. 4232 @9263 GEN_AS07 1. 4233 @9264 GEN_AS08 1. 4234 @9265 GEN_AS09 1. 4235 @9266 GEN_AS10 1. 4236 @9267 GEN_AS11 1. 4237 @9268 GEN_AS12 1. 4238 @9269 GEN_AS13 1. 4239 @9270 GEN_AS14 1. 4240 @9271 GEN_AS15 1. 4241 @9272 GEN_AS16 1. 4242 @9273 GEN_AS17 1. 77 The SAS System 13:10 Thursday, March 25, 2010 4243 @9274 GEN_AS18 1. 4244 @9275 GEN_AS19 1. 4245 @9276 GEN_AS20 1. 4246 @9277 GEN_AS21 1. 4247 @9278 GEN_AS22 1. 4248 @9279 GEN_AS23 1. 4249 @9280 GEN_AS24 1. 4250 @9281 GEN_AS25 1. 4251 @9282 GEN_AS26 1. 4252 @9283 GEN_AS27 1. 4253 @9284 GEN_AS28 1. 4254 @9285 GEN_AS29 1. 4255 @9286 GEN_AS30 1. 4256 @9287 GEN_AS31 1. 4257 @9288 GEN_AS32 1. 4258 @9289 FOST_K01 1. 4259 @9290 FOST_K02 1. 4260 @9291 FOST_K03 1. 4261 @9292 FOST_K04 1. 4262 @9293 FOST_K05 1. 4263 @9294 FOST_K06 1. 4264 @9295 FOST_K07 1. 4265 @9296 FOST_K08 1. 4266 @9297 FOST_K09 1. 4267 @9298 FOST_K10 1. 4268 @9299 FOST_K11 1. 4269 @9300 FOST_K12 1. 4270 @9301 FOST_K13 1. 4271 @9302 FOST_K14 1. 4272 @9303 FOST_K15 1. 4273 @9304 FOST_K16 1. 4274 @9305 FOST_K17 1. 4275 @9306 FOST_K18 1. 4276 @9307 FOST_K19 1. 4277 @9308 FOST_K20 1. 4278 @9309 FOST_K21 1. 4279 @9310 FOST_K22 1. 4280 @9311 FOST_K23 1. 4281 @9312 FOST_K24 1. 4282 @9313 FOST_K25 1. 4283 @9314 FOST_K26 1. 4284 @9315 FOST_K27 1. 4285 @9316 FOST_K28 1. 4286 @9317 FOST_K29 1. 4287 @9318 FOST_K30 1. 4288 @9319 FOST_K31 1. 4289 @9320 FOST_K32 1. 4290 @9321 OTH_WE01 1. 4291 @9322 OTH_WE02 1. 4292 @9323 OTH_WE03 1. 4293 @9324 OTH_WE04 1. 4294 @9325 OTH_WE05 1. 4295 @9326 OTH_WE06 1. 4296 @9327 OTH_WE07 1. 4297 @9328 OTH_WE08 1. 4298 @9329 OTH_WE09 1. 4299 @9330 OTH_WE10 1. 4300 @9331 OTH_WE11 1. 78 The SAS System 13:10 Thursday, March 25, 2010 4301 @9332 OTH_WE12 1. 4302 @9333 OTH_WE13 1. 4303 @9334 OTH_WE14 1. 4304 @9335 OTH_WE15 1. 4305 @9336 OTH_WE16 1. 4306 @9337 OTH_WE17 1. 4307 @9338 OTH_WE18 1. 4308 @9339 OTH_WE19 1. 4309 @9340 OTH_WE20 1. 4310 @9341 OTH_WE21 1. 4311 @9342 OTH_WE22 1. 4312 @9343 OTH_WE23 1. 4313 @9344 OTH_WE24 1. 4314 @9345 OTH_WE25 1. 4315 @9346 OTH_WE26 1. 4316 @9347 OTH_WE27 1. 4317 @9348 OTH_WE28 1. 4318 @9349 OTH_WE29 1. 4319 @9350 OTH_WE30 1. 4320 @9351 OTH_WE31 1. 4321 @9352 OTH_WE32 1. 4322 @9353 SOC_SE01 1. 4323 @9354 SOC_SE02 1. 4324 @9355 SOC_SE03 1. 4325 @9356 SOC_SE04 1. 4326 @9357 SOC_SE05 1. 4327 @9358 SOC_SE06 1. 4328 @9359 SOC_SE07 1. 4329 @9360 SOC_SE08 1. 4330 @9361 SOC_SE09 1. 4331 @9362 SOC_SE10 1. 4332 @9363 SOC_SE11 1. 4333 @9364 SOC_SE12 1. 4334 @9365 SOC_SE13 1. 4335 @9366 SOC_SE14 1. 4336 @9367 SOC_SE15 1. 4337 @9368 SOC_SE16 1. 4338 @9369 SOC_SE17 1. 4339 @9370 SOC_SE18 1. 4340 @9371 SOC_SE19 1. 4341 @9372 SOC_SE20 1. 4342 @9373 SOC_SE21 1. 4343 @9374 SOC_SE22 1. 4344 @9375 SOC_SE23 1. 4345 @9376 SOC_SE24 1. 4346 @9377 SOC_SE25 1. 4347 @9378 SOC_SE26 1. 4348 @9379 SOC_SE27 1. 4349 @9380 SOC_SE28 1. 4350 @9381 SOC_SE29 1. 4351 @9382 SOC_SE30 1. 4352 @9383 SOC_SE31 1. 4353 @9384 SOC_SE32 1. 4354 @9385 RAILRD01 1. 4355 @9386 RAILRD02 1. 4356 @9387 RAILRD03 1. 4357 @9388 RAILRD04 1. 4358 @9389 RAILRD05 1. 79 The SAS System 13:10 Thursday, March 25, 2010 4359 @9390 RAILRD06 1. 4360 @9391 RAILRD07 1. 4361 @9392 RAILRD08 1. 4362 @9393 RAILRD09 1. 4363 @9394 RAILRD10 1. 4364 @9395 RAILRD11 1. 4365 @9396 RAILRD12 1. 4366 @9397 RAILRD13 1. 4367 @9398 RAILRD14 1. 4368 @9399 RAILRD15 1. 4369 @9400 RAILRD16 1. 4370 @9401 RAILRD17 1. 4371 @9402 RAILRD18 1. 4372 @9403 RAILRD19 1. 4373 @9404 RAILRD20 1. 4374 @9405 RAILRD21 1. 4375 @9406 RAILRD22 1. 4376 @9407 RAILRD23 1. 4377 @9408 RAILRD24 1. 4378 @9409 RAILRD25 1. 4379 @9410 RAILRD26 1. 4380 @9411 RAILRD27 1. 4381 @9412 RAILRD28 1. 4382 @9413 RAILRD29 1. 4383 @9414 RAILRD30 1. 4384 @9415 RAILRD31 1. 4385 @9416 RAILRD32 1. 4386 @9417 VETS_01 1. 4387 @9418 VETS_02 1. 4388 @9419 VETS_03 1. 4389 @9420 VETS_04 1. 4390 @9421 VETS_05 1. 4391 @9422 VETS_06 1. 4392 @9423 VETS_07 1. 4393 @9424 VETS_08 1. 4394 @9425 VETS_09 1. 4395 @9426 VETS_10 1. 4396 @9427 VETS_11 1. 4397 @9428 VETS_12 1. 4398 @9429 VETS_13 1. 4399 @9430 VETS_14 1. 4400 @9431 VETS_15 1. 4401 @9432 VETS_16 1. 4402 @9433 VETS_17 1. 4403 @9434 VETS_18 1. 4404 @9435 VETS_19 1. 4405 @9436 VETS_20 1. 4406 @9437 VETS_21 1. 4407 @9438 VETS_22 1. 4408 @9439 VETS_23 1. 4409 @9440 VETS_24 1. 4410 @9441 VETS_25 1. 4411 @9442 VETS_26 1. 4412 @9443 VETS_27 1. 4413 @9444 VETS_28 1. 4414 @9445 VETS_29 1. 4415 @9446 VETS_30 1. 4416 @9447 VETS_31 1. 80 The SAS System 13:10 Thursday, March 25, 2010 4417 @9448 VETS_32 1. 4418 @9449 HIOWNC01 1. 4419 @9450 HIOWNC02 1. 4420 @9451 HIOWNC03 1. 4421 @9452 HIOWNC04 1. 4422 @9453 HIOWNC05 1. 4423 @9454 HIOWNC06 1. 4424 @9455 HIOWNC07 1. 4425 @9456 HIOWNC08 1. 4426 @9457 HIOWNC09 1. 4427 @9458 HIOWNC10 1. 4428 @9459 HIOWNC11 1. 4429 @9460 HIOWNC12 1. 4430 @9461 HIOWNC13 1. 4431 @9462 HIOWNC14 1. 4432 @9463 HIOWNC15 1. 4433 @9464 HIOWNC16 1. 4434 @9465 HIOWNC17 1. 4435 @9466 HIOWNC18 1. 4436 @9467 HIOWNC19 1. 4437 @9468 HIOWNC20 1. 4438 @9469 HIOWNC21 1. 4439 @9470 HIOWNC22 1. 4440 @9471 HIOWNC23 1. 4441 @9472 HIOWNC24 1. 4442 @9473 HIOWNC25 1. 4443 @9474 HIOWNC26 1. 4444 @9475 HIOWNC27 1. 4445 @9476 HIOWNC28 1. 4446 @9477 HIOWNC29 1. 4447 @9478 HIOWNC30 1. 4448 @9479 HIOWNC31 1. 4449 @9480 HIOWNC32 1. 4450 @9481 HI_OTC01 1. 4451 @9482 HI_OTC02 1. 4452 @9483 HI_OTC03 1. 4453 @9484 HI_OTC04 1. 4454 @9485 HI_OTC05 1. 4455 @9486 HI_OTC06 1. 4456 @9487 HI_OTC07 1. 4457 @9488 HI_OTC08 1. 4458 @9489 HI_OTC09 1. 4459 @9490 HI_OTC10 1. 4460 @9491 HI_OTC11 1. 4461 @9492 HI_OTC12 1. 4462 @9493 HI_OTC13 1. 4463 @9494 HI_OTC14 1. 4464 @9495 HI_OTC15 1. 4465 @9496 HI_OTC16 1. 4466 @9497 HI_OTC17 1. 4467 @9498 HI_OTC18 1. 4468 @9499 HI_OTC19 1. 4469 @9500 HI_OTC20 1. 4470 @9501 HI_OTC21 1. 4471 @9502 HI_OTC22 1. 4472 @9503 HI_OTC23 1. 4473 @9504 HI_OTC24 1. 4474 @9505 HI_OTC25 1. 81 The SAS System 13:10 Thursday, March 25, 2010 4475 @9506 HI_OTC26 1. 4476 @9507 HI_OTC27 1. 4477 @9508 HI_OTC28 1. 4478 @9509 HI_OTC29 1. 4479 @9510 HI_OTC30 1. 4480 @9511 HI_OTC31 1. 4481 @9512 HI_OTC32 1. 4482 @9513 HIEMPL01 1. 4483 @9514 HIEMPL02 1. 4484 @9515 HIEMPL03 1. 4485 @9516 HIEMPL04 1. 4486 @9517 HIEMPL05 1. 4487 @9518 HIEMPL06 1. 4488 @9519 HIEMPL07 1. 4489 @9520 HIEMPL08 1. 4490 @9521 HIEMPL09 1. 4491 @9522 HIEMPL10 1. 4492 @9523 HIEMPL11 1. 4493 @9524 HIEMPL12 1. 4494 @9525 HIEMPL13 1. 4495 @9526 HIEMPL14 1. 4496 @9527 HIEMPL15 1. 4497 @9528 HIEMPL16 1. 4498 @9529 HIEMPL17 1. 4499 @9530 HIEMPL18 1. 4500 @9531 HIEMPL19 1. 4501 @9532 HIEMPL20 1. 4502 @9533 HIEMPL21 1. 4503 @9534 HIEMPL22 1. 4504 @9535 HIEMPL23 1. 4505 @9536 HIEMPL24 1. 4506 @9537 HIEMPL25 1. 4507 @9538 HIEMPL26 1. 4508 @9539 HIEMPL27 1. 4509 @9540 HIEMPL28 1. 4510 @9541 HIEMPL29 1. 4511 @9542 HIEMPL30 1. 4512 @9543 HIEMPL31 1. 4513 @9544 HIEMPL32 1. 4514 @9545 SS_PID01 2. 4515 @9547 SS_PID02 2. 4516 @9549 SS_PID03 2. 4517 @9551 SS_PID04 2. 4518 @9553 SS_PID05 2. 4519 @9555 SS_PID06 2. 4520 @9557 SS_PID07 2. 4521 @9559 SS_PID08 2. 4522 @9561 SS_PID09 2. 4523 @9563 SS_PID10 2. 4524 @9565 SS_PID11 2. 4525 @9567 SS_PID12 2. 4526 @9569 SS_PID13 2. 4527 @9571 SS_PID14 2. 4528 @9573 SS_PID15 2. 4529 @9575 SS_PID16 2. 4530 @9577 SS_PID17 2. 4531 @9579 SS_PID18 2. 4532 @9581 SS_PID19 2. 82 The SAS System 13:10 Thursday, March 25, 2010 4533 @9583 SS_PID20 2. 4534 @9585 SS_PID21 2. 4535 @9587 SS_PID22 2. 4536 @9589 SS_PID23 2. 4537 @9591 SS_PID24 2. 4538 @9593 SS_PID25 2. 4539 @9595 SS_PID26 2. 4540 @9597 SS_PID27 2. 4541 @9599 SS_PID28 2. 4542 @9601 SS_PID29 2. 4543 @9603 SS_PID30 2. 4544 @9605 SS_PID31 2. 4545 @9607 SS_PID32 2. 4546 @9609 RR_PID01 2. 4547 @9611 RR_PID02 2. 4548 @9613 RR_PID03 2. 4549 @9615 RR_PID04 2. 4550 @9617 RR_PID05 2. 4551 @9619 RR_PID06 2. 4552 @9621 RR_PID07 2. 4553 @9623 RR_PID08 2. 4554 @9625 RR_PID09 2. 4555 @9627 RR_PID10 2. 4556 @9629 RR_PID11 2. 4557 @9631 RR_PID12 2. 4558 @9633 RR_PID13 2. 4559 @9635 RR_PID14 2. 4560 @9637 RR_PID15 2. 4561 @9639 RR_PID16 2. 4562 @9641 RR_PID17 2. 4563 @9643 RR_PID18 2. 4564 @9645 RR_PID19 2. 4565 @9647 RR_PID20 2. 4566 @9649 RR_PID21 2. 4567 @9651 RR_PID22 2. 4568 @9653 RR_PID23 2. 4569 @9655 RR_PID24 2. 4570 @9657 RR_PID25 2. 4571 @9659 RR_PID26 2. 4572 @9661 RR_PID27 2. 4573 @9663 RR_PID28 2. 4574 @9665 RR_PID29 2. 4575 @9667 RR_PID30 2. 4576 @9669 RR_PID31 2. 4577 @9671 RR_PID32 2. 4578 @9673 VA_PID01 2. 4579 @9675 VA_PID02 2. 4580 @9677 VA_PID03 2. 4581 @9679 VA_PID04 2. 4582 @9681 VA_PID05 2. 4583 @9683 VA_PID06 2. 4584 @9685 VA_PID07 2. 4585 @9687 VA_PID08 2. 4586 @9689 VA_PID09 2. 4587 @9691 VA_PID10 2. 4588 @9693 VA_PID11 2. 4589 @9695 VA_PID12 2. 4590 @9697 VA_PID13 2. 83 The SAS System 13:10 Thursday, March 25, 2010 4591 @9699 VA_PID14 2. 4592 @9701 VA_PID15 2. 4593 @9703 VA_PID16 2. 4594 @9705 VA_PID17 2. 4595 @9707 VA_PID18 2. 4596 @9709 VA_PID19 2. 4597 @9711 VA_PID20 2. 4598 @9713 VA_PID21 2. 4599 @9715 VA_PID22 2. 4600 @9717 VA_PID23 2. 4601 @9719 VA_PID24 2. 4602 @9721 VA_PID25 2. 4603 @9723 VA_PID26 2. 4604 @9725 VA_PID27 2. 4605 @9727 VA_PID28 2. 4606 @9729 VA_PID29 2. 4607 @9731 VA_PID30 2. 4608 @9733 VA_PID31 2. 4609 @9735 VA_PID32 2. 4610 @9737 AFDCPI01 2. 4611 @9739 AFDCPI02 2. 4612 @9741 AFDCPI03 2. 4613 @9743 AFDCPI04 2. 4614 @9745 AFDCPI05 2. 4615 @9747 AFDCPI06 2. 4616 @9749 AFDCPI07 2. 4617 @9751 AFDCPI08 2. 4618 @9753 AFDCPI09 2. 4619 @9755 AFDCPI10 2. 4620 @9757 AFDCPI11 2. 4621 @9759 AFDCPI12 2. 4622 @9761 AFDCPI13 2. 4623 @9763 AFDCPI14 2. 4624 @9765 AFDCPI15 2. 4625 @9767 AFDCPI16 2. 4626 @9769 AFDCPI17 2. 4627 @9771 AFDCPI18 2. 4628 @9773 AFDCPI19 2. 4629 @9775 AFDCPI20 2. 4630 @9777 AFDCPI21 2. 4631 @9779 AFDCPI22 2. 4632 @9781 AFDCPI23 2. 4633 @9783 AFDCPI24 2. 4634 @9785 AFDCPI25 2. 4635 @9787 AFDCPI26 2. 4636 @9789 AFDCPI27 2. 4637 @9791 AFDCPI28 2. 4638 @9793 AFDCPI29 2. 4639 @9795 AFDCPI30 2. 4640 @9797 AFDCPI31 2. 4641 @9799 AFDCPI32 2. 4642 @9801 GA_PID01 2. 4643 @9803 GA_PID02 2. 4644 @9805 GA_PID03 2. 4645 @9807 GA_PID04 2. 4646 @9809 GA_PID05 2. 4647 @9811 GA_PID06 2. 4648 @9813 GA_PID07 2. 84 The SAS System 13:10 Thursday, March 25, 2010 4649 @9815 GA_PID08 2. 4650 @9817 GA_PID09 2. 4651 @9819 GA_PID10 2. 4652 @9821 GA_PID11 2. 4653 @9823 GA_PID12 2. 4654 @9825 GA_PID13 2. 4655 @9827 GA_PID14 2. 4656 @9829 GA_PID15 2. 4657 @9831 GA_PID16 2. 4658 @9833 GA_PID17 2. 4659 @9835 GA_PID18 2. 4660 @9837 GA_PID19 2. 4661 @9839 GA_PID20 2. 4662 @9841 GA_PID21 2. 4663 @9843 GA_PID22 2. 4664 @9845 GA_PID23 2. 4665 @9847 GA_PID24 2. 4666 @9849 GA_PID25 2. 4667 @9851 GA_PID26 2. 4668 @9853 GA_PID27 2. 4669 @9855 GA_PID28 2. 4670 @9857 GA_PID29 2. 4671 @9859 GA_PID30 2. 4672 @9861 GA_PID31 2. 4673 @9863 GA_PID32 2. 4674 @9865 FOSTPI01 2. 4675 @9867 FOSTPI02 2. 4676 @9869 FOSTPI03 2. 4677 @9871 FOSTPI04 2. 4678 @9873 FOSTPI05 2. 4679 @9875 FOSTPI06 2. 4680 @9877 FOSTPI07 2. 4681 @9879 FOSTPI08 2. 4682 @9881 FOSTPI09 2. 4683 @9883 FOSTPI10 2. 4684 @9885 FOSTPI11 2. 4685 @9887 FOSTPI12 2. 4686 @9889 FOSTPI13 2. 4687 @9891 FOSTPI14 2. 4688 @9893 FOSTPI15 2. 4689 @9895 FOSTPI16 2. 4690 @9897 FOSTPI17 2. 4691 @9899 FOSTPI18 2. 4692 @9901 FOSTPI19 2. 4693 @9903 FOSTPI20 2. 4694 @9905 FOSTPI21 2. 4695 @9907 FOSTPI22 2. 4696 @9909 FOSTPI23 2. 4697 @9911 FOSTPI24 2. 4698 @9913 FOSTPI25 2. 4699 @9915 FOSTPI26 2. 4700 @9917 FOSTPI27 2. 4701 @9919 FOSTPI28 2. 4702 @9921 FOSTPI29 2. 4703 @9923 FOSTPI30 2. 4704 @9925 FOSTPI31 2. 4705 @9927 FOSTPI32 2. 4706 @9929 OTH_PI01 2. 85 The SAS System 13:10 Thursday, March 25, 2010 4707 @9931 OTH_PI02 2. 4708 @9933 OTH_PI03 2. 4709 @9935 OTH_PI04 2. 4710 @9937 OTH_PI05 2. 4711 @9939 OTH_PI06 2. 4712 @9941 OTH_PI07 2. 4713 @9943 OTH_PI08 2. 4714 @9945 OTH_PI09 2. 4715 @9947 OTH_PI10 2. 4716 @9949 OTH_PI11 2. 4717 @9951 OTH_PI12 2. 4718 @9953 OTH_PI13 2. 4719 @9955 OTH_PI14 2. 4720 @9957 OTH_PI15 2. 4721 @9959 OTH_PI16 2. 4722 @9961 OTH_PI17 2. 4723 @9963 OTH_PI18 2. 4724 @9965 OTH_PI19 2. 4725 @9967 OTH_PI20 2. 4726 @9969 OTH_PI21 2. 4727 @9971 OTH_PI22 2. 4728 @9973 OTH_PI23 2. 4729 @9975 OTH_PI24 2. 4730 @9977 OTH_PI25 2. 4731 @9979 OTH_PI26 2. 4732 @9981 OTH_PI27 2. 4733 @9983 OTH_PI28 2. 4734 @9985 OTH_PI29 2. 4735 @9987 OTH_PI30 2. 4736 @9989 OTH_PI31 2. 4737 @9991 OTH_PI32 2. 4738 @9993 WIC_PI01 2. 4739 @9995 WIC_PI02 2. 4740 @9997 WIC_PI03 2. 4741 @9999 WIC_PI04 2. 4742 @10001 WIC_PI05 2. 4743 @10003 WIC_PI06 2. 4744 @10005 WIC_PI07 2. 4745 @10007 WIC_PI08 2. 4746 @10009 WIC_PI09 2. 4747 @10011 WIC_PI10 2. 4748 @10013 WIC_PI11 2. 4749 @10015 WIC_PI12 2. 4750 @10017 WIC_PI13 2. 4751 @10019 WIC_PI14 2. 4752 @10021 WIC_PI15 2. 4753 @10023 WIC_PI16 2. 4754 @10025 WIC_PI17 2. 4755 @10027 WIC_PI18 2. 4756 @10029 WIC_PI19 2. 4757 @10031 WIC_PI20 2. 4758 @10033 WIC_PI21 2. 4759 @10035 WIC_PI22 2. 4760 @10037 WIC_PI23 2. 4761 @10039 WIC_PI24 2. 4762 @10041 WIC_PI25 2. 4763 @10043 WIC_PI26 2. 4764 @10045 WIC_PI27 2. 86 The SAS System 13:10 Thursday, March 25, 2010 4765 @10047 WIC_PI28 2. 4766 @10049 WIC_PI29 2. 4767 @10051 WIC_PI30 2. 4768 @10053 WIC_PI31 2. 4769 @10055 WIC_PI32 2. 4770 @10057 FS_PID01 2. 4771 @10059 FS_PID02 2. 4772 @10061 FS_PID03 2. 4773 @10063 FS_PID04 2. 4774 @10065 FS_PID05 2. 4775 @10067 FS_PID06 2. 4776 @10069 FS_PID07 2. 4777 @10071 FS_PID08 2. 4778 @10073 FS_PID09 2. 4779 @10075 FS_PID10 2. 4780 @10077 FS_PID11 2. 4781 @10079 FS_PID12 2. 4782 @10081 FS_PID13 2. 4783 @10083 FS_PID14 2. 4784 @10085 FS_PID15 2. 4785 @10087 FS_PID16 2. 4786 @10089 FS_PID17 2. 4787 @10091 FS_PID18 2. 4788 @10093 FS_PID19 2. 4789 @10095 FS_PID20 2. 4790 @10097 FS_PID21 2. 4791 @10099 FS_PID22 2. 4792 @10101 FS_PID23 2. 4793 @10103 FS_PID24 2. 4794 @10105 FS_PID25 2. 4795 @10107 FS_PID26 2. 4796 @10109 FS_PID27 2. 4797 @10111 FS_PID28 2. 4798 @10113 FS_PID29 2. 4799 @10115 FS_PID30 2. 4800 @10117 FS_PID31 2. 4801 @10119 FS_PID32 2. 4802 @10121 WS_I1_01 1. 4803 @10122 WS_I1_02 1. 4804 @10123 WS_I1_03 1. 4805 @10124 WS_I1_04 1. 4806 @10125 WS_I1_05 1. 4807 @10126 WS_I1_06 1. 4808 @10127 WS_I1_07 1. 4809 @10128 WS_I1_08 1. 4810 @10129 WS_I1_09 1. 4811 @10130 WS_I1_10 1. 4812 @10131 WS_I1_11 1. 4813 @10132 WS_I1_12 1. 4814 @10133 WS_I1_13 1. 4815 @10134 WS_I1_14 1. 4816 @10135 WS_I1_15 1. 4817 @10136 WS_I1_16 1. 4818 @10137 WS_I1_17 1. 4819 @10138 WS_I1_18 1. 4820 @10139 WS_I1_19 1. 4821 @10140 WS_I1_20 1. 4822 @10141 WS_I1_21 1. 87 The SAS System 13:10 Thursday, March 25, 2010 4823 @10142 WS_I1_22 1. 4824 @10143 WS_I1_23 1. 4825 @10144 WS_I1_24 1. 4826 @10145 WS_I1_25 1. 4827 @10146 WS_I1_26 1. 4828 @10147 WS_I1_27 1. 4829 @10148 WS_I1_28 1. 4830 @10149 WS_I1_29 1. 4831 @10150 WS_I1_30 1. 4832 @10151 WS_I1_31 1. 4833 @10152 WS_I1_32 1. 4834 @10153 WS_I2_01 1. 4835 @10154 WS_I2_02 1. 4836 @10155 WS_I2_03 1. 4837 @10156 WS_I2_04 1. 4838 @10157 WS_I2_05 1. 4839 @10158 WS_I2_06 1. 4840 @10159 WS_I2_07 1. 4841 @10160 WS_I2_08 1. 4842 @10161 WS_I2_09 1. 4843 @10162 WS_I2_10 1. 4844 @10163 WS_I2_11 1. 4845 @10164 WS_I2_12 1. 4846 @10165 WS_I2_13 1. 4847 @10166 WS_I2_14 1. 4848 @10167 WS_I2_15 1. 4849 @10168 WS_I2_16 1. 4850 @10169 WS_I2_17 1. 4851 @10170 WS_I2_18 1. 4852 @10171 WS_I2_19 1. 4853 @10172 WS_I2_20 1. 4854 @10173 WS_I2_21 1. 4855 @10174 WS_I2_22 1. 4856 @10175 WS_I2_23 1. 4857 @10176 WS_I2_24 1. 4858 @10177 WS_I2_25 1. 4859 @10178 WS_I2_26 1. 4860 @10179 WS_I2_27 1. 4861 @10180 WS_I2_28 1. 4862 @10181 WS_I2_29 1. 4863 @10182 WS_I2_30 1. 4864 @10183 WS_I2_31 1. 4865 @10184 WS_I2_32 1. 4866 @10185 SE_I1_01 1. 4867 @10186 SE_I1_02 1. 4868 @10187 SE_I1_03 1. 4869 @10188 SE_I1_04 1. 4870 @10189 SE_I1_05 1. 4871 @10190 SE_I1_06 1. 4872 @10191 SE_I1_07 1. 4873 @10192 SE_I1_08 1. 4874 @10193 SE_I1_09 1. 4875 @10194 SE_I1_10 1. 4876 @10195 SE_I1_11 1. 4877 @10196 SE_I1_12 1. 4878 @10197 SE_I1_13 1. 4879 @10198 SE_I1_14 1. 4880 @10199 SE_I1_15 1. 88 The SAS System 13:10 Thursday, March 25, 2010 4881 @10200 SE_I1_16 1. 4882 @10201 SE_I1_17 1. 4883 @10202 SE_I1_18 1. 4884 @10203 SE_I1_19 1. 4885 @10204 SE_I1_20 1. 4886 @10205 SE_I1_21 1. 4887 @10206 SE_I1_22 1. 4888 @10207 SE_I1_23 1. 4889 @10208 SE_I1_24 1. 4890 @10209 SE_I1_25 1. 4891 @10210 SE_I1_26 1. 4892 @10211 SE_I1_27 1. 4893 @10212 SE_I1_28 1. 4894 @10213 SE_I1_29 1. 4895 @10214 SE_I1_30 1. 4896 @10215 SE_I1_31 1. 4897 @10216 SE_I1_32 1. 4898 @10217 SE_I2_01 1. 4899 @10218 SE_I2_02 1. 4900 @10219 SE_I2_03 1. 4901 @10220 SE_I2_04 1. 4902 @10221 SE_I2_05 1. 4903 @10222 SE_I2_06 1. 4904 @10223 SE_I2_07 1. 4905 @10224 SE_I2_08 1. 4906 @10225 SE_I2_09 1. 4907 @10226 SE_I2_10 1. 4908 @10227 SE_I2_11 1. 4909 @10228 SE_I2_12 1. 4910 @10229 SE_I2_13 1. 4911 @10230 SE_I2_14 1. 4912 @10231 SE_I2_15 1. 4913 @10232 SE_I2_16 1. 4914 @10233 SE_I2_17 1. 4915 @10234 SE_I2_18 1. 4916 @10235 SE_I2_19 1. 4917 @10236 SE_I2_20 1. 4918 @10237 SE_I2_21 1. 4919 @10238 SE_I2_22 1. 4920 @10239 SE_I2_23 1. 4921 @10240 SE_I2_24 1. 4922 @10241 SE_I2_25 1. 4923 @10242 SE_I2_26 1. 4924 @10243 SE_I2_27 1. 4925 @10244 SE_I2_28 1. 4926 @10245 SE_I2_29 1. 4927 @10246 SE_I2_30 1. 4928 @10247 SE_I2_31 1. 4929 @10248 SE_I2_32 1. 4930 @10249 G1_I1_01 1. 4931 @10250 G1_I1_02 1. 4932 @10251 G1_I1_03 1. 4933 @10252 G1_I1_04 1. 4934 @10253 G1_I1_05 1. 4935 @10254 G1_I1_06 1. 4936 @10255 G1_I1_07 1. 4937 @10256 G1_I1_08 1. 4938 @10257 G1_I1_09 1. 89 The SAS System 13:10 Thursday, March 25, 2010 4939 @10258 G1_I1_10 1. 4940 @10259 G1_I1_11 1. 4941 @10260 G1_I1_12 1. 4942 @10261 G1_I1_13 1. 4943 @10262 G1_I1_14 1. 4944 @10263 G1_I1_15 1. 4945 @10264 G1_I1_16 1. 4946 @10265 G1_I1_17 1. 4947 @10266 G1_I1_18 1. 4948 @10267 G1_I1_19 1. 4949 @10268 G1_I1_20 1. 4950 @10269 G1_I1_21 1. 4951 @10270 G1_I1_22 1. 4952 @10271 G1_I1_23 1. 4953 @10272 G1_I1_24 1. 4954 @10273 G1_I1_25 1. 4955 @10274 G1_I1_26 1. 4956 @10275 G1_I1_27 1. 4957 @10276 G1_I1_28 1. 4958 @10277 G1_I1_29 1. 4959 @10278 G1_I1_30 1. 4960 @10279 G1_I1_31 1. 4961 @10280 G1_I1_32 1. 4962 @10281 G1_I2_01 1. 4963 @10282 G1_I2_02 1. 4964 @10283 G1_I2_03 1. 4965 @10284 G1_I2_04 1. 4966 @10285 G1_I2_05 1. 4967 @10286 G1_I2_06 1. 4968 @10287 G1_I2_07 1. 4969 @10288 G1_I2_08 1. 4970 @10289 G1_I2_09 1. 4971 @10290 G1_I2_10 1. 4972 @10291 G1_I2_11 1. 4973 @10292 G1_I2_12 1. 4974 @10293 G1_I2_13 1. 4975 @10294 G1_I2_14 1. 4976 @10295 G1_I2_15 1. 4977 @10296 G1_I2_16 1. 4978 @10297 G1_I2_17 1. 4979 @10298 G1_I2_18 1. 4980 @10299 G1_I2_19 1. 4981 @10300 G1_I2_20 1. 4982 @10301 G1_I2_21 1. 4983 @10302 G1_I2_22 1. 4984 @10303 G1_I2_23 1. 4985 @10304 G1_I2_24 1. 4986 @10305 G1_I2_25 1. 4987 @10306 G1_I2_26 1. 4988 @10307 G1_I2_27 1. 4989 @10308 G1_I2_28 1. 4990 @10309 G1_I2_29 1. 4991 @10310 G1_I2_30 1. 4992 @10311 G1_I2_31 1. 4993 @10312 G1_I2_32 1. 4994 @10313 G1_I3_01 1. 4995 @10314 G1_I3_02 1. 4996 @10315 G1_I3_03 1. 90 The SAS System 13:10 Thursday, March 25, 2010 4997 @10316 G1_I3_04 1. 4998 @10317 G1_I3_05 1. 4999 @10318 G1_I3_06 1. 5000 @10319 G1_I3_07 1. 5001 @10320 G1_I3_08 1. 5002 @10321 G1_I3_09 1. 5003 @10322 G1_I3_10 1. 5004 @10323 G1_I3_11 1. 5005 @10324 G1_I3_12 1. 5006 @10325 G1_I3_13 1. 5007 @10326 G1_I3_14 1. 5008 @10327 G1_I3_15 1. 5009 @10328 G1_I3_16 1. 5010 @10329 G1_I3_17 1. 5011 @10330 G1_I3_18 1. 5012 @10331 G1_I3_19 1. 5013 @10332 G1_I3_20 1. 5014 @10333 G1_I3_21 1. 5015 @10334 G1_I3_22 1. 5016 @10335 G1_I3_23 1. 5017 @10336 G1_I3_24 1. 5018 @10337 G1_I3_25 1. 5019 @10338 G1_I3_26 1. 5020 @10339 G1_I3_27 1. 5021 @10340 G1_I3_28 1. 5022 @10341 G1_I3_29 1. 5023 @10342 G1_I3_30 1. 5024 @10343 G1_I3_31 1. 5025 @10344 G1_I3_32 1. 5026 @10345 G1_I4_01 1. 5027 @10346 G1_I4_02 1. 5028 @10347 G1_I4_03 1. 5029 @10348 G1_I4_04 1. 5030 @10349 G1_I4_05 1. 5031 @10350 G1_I4_06 1. 5032 @10351 G1_I4_07 1. 5033 @10352 G1_I4_08 1. 5034 @10353 G1_I4_09 1. 5035 @10354 G1_I4_10 1. 5036 @10355 G1_I4_11 1. 5037 @10356 G1_I4_12 1. 5038 @10357 G1_I4_13 1. 5039 @10358 G1_I4_14 1. 5040 @10359 G1_I4_15 1. 5041 @10360 G1_I4_16 1. 5042 @10361 G1_I4_17 1. 5043 @10362 G1_I4_18 1. 5044 @10363 G1_I4_19 1. 5045 @10364 G1_I4_20 1. 5046 @10365 G1_I4_21 1. 5047 @10366 G1_I4_22 1. 5048 @10367 G1_I4_23 1. 5049 @10368 G1_I4_24 1. 5050 @10369 G1_I4_25 1. 5051 @10370 G1_I4_26 1. 5052 @10371 G1_I4_27 1. 5053 @10372 G1_I4_28 1. 5054 @10373 G1_I4_29 1. 91 The SAS System 13:10 Thursday, March 25, 2010 5055 @10374 G1_I4_30 1. 5056 @10375 G1_I4_31 1. 5057 @10376 G1_I4_32 1. 5058 @10377 G1_I5_01 1. 5059 @10378 G1_I5_02 1. 5060 @10379 G1_I5_03 1. 5061 @10380 G1_I5_04 1. 5062 @10381 G1_I5_05 1. 5063 @10382 G1_I5_06 1. 5064 @10383 G1_I5_07 1. 5065 @10384 G1_I5_08 1. 5066 @10385 G1_I5_09 1. 5067 @10386 G1_I5_10 1. 5068 @10387 G1_I5_11 1. 5069 @10388 G1_I5_12 1. 5070 @10389 G1_I5_13 1. 5071 @10390 G1_I5_14 1. 5072 @10391 G1_I5_15 1. 5073 @10392 G1_I5_16 1. 5074 @10393 G1_I5_17 1. 5075 @10394 G1_I5_18 1. 5076 @10395 G1_I5_19 1. 5077 @10396 G1_I5_20 1. 5078 @10397 G1_I5_21 1. 5079 @10398 G1_I5_22 1. 5080 @10399 G1_I5_23 1. 5081 @10400 G1_I5_24 1. 5082 @10401 G1_I5_25 1. 5083 @10402 G1_I5_26 1. 5084 @10403 G1_I5_27 1. 5085 @10404 G1_I5_28 1. 5086 @10405 G1_I5_29 1. 5087 @10406 G1_I5_30 1. 5088 @10407 G1_I5_31 1. 5089 @10408 G1_I5_32 1. 5090 @10409 G1_I6_01 1. 5091 @10410 G1_I6_02 1. 5092 @10411 G1_I6_03 1. 5093 @10412 G1_I6_04 1. 5094 @10413 G1_I6_05 1. 5095 @10414 G1_I6_06 1. 5096 @10415 G1_I6_07 1. 5097 @10416 G1_I6_08 1. 5098 @10417 G1_I6_09 1. 5099 @10418 G1_I6_10 1. 5100 @10419 G1_I6_11 1. 5101 @10420 G1_I6_12 1. 5102 @10421 G1_I6_13 1. 5103 @10422 G1_I6_14 1. 5104 @10423 G1_I6_15 1. 5105 @10424 G1_I6_16 1. 5106 @10425 G1_I6_17 1. 5107 @10426 G1_I6_18 1. 5108 @10427 G1_I6_19 1. 5109 @10428 G1_I6_20 1. 5110 @10429 G1_I6_21 1. 5111 @10430 G1_I6_22 1. 5112 @10431 G1_I6_23 1. 92 The SAS System 13:10 Thursday, March 25, 2010 5113 @10432 G1_I6_24 1. 5114 @10433 G1_I6_25 1. 5115 @10434 G1_I6_26 1. 5116 @10435 G1_I6_27 1. 5117 @10436 G1_I6_28 1. 5118 @10437 G1_I6_29 1. 5119 @10438 G1_I6_30 1. 5120 @10439 G1_I6_31 1. 5121 @10440 G1_I6_32 1. 5122 @10441 G1_I7_01 1. 5123 @10442 G1_I7_02 1. 5124 @10443 G1_I7_03 1. 5125 @10444 G1_I7_04 1. 5126 @10445 G1_I7_05 1. 5127 @10446 G1_I7_06 1. 5128 @10447 G1_I7_07 1. 5129 @10448 G1_I7_08 1. 5130 @10449 G1_I7_09 1. 5131 @10450 G1_I7_10 1. 5132 @10451 G1_I7_11 1. 5133 @10452 G1_I7_12 1. 5134 @10453 G1_I7_13 1. 5135 @10454 G1_I7_14 1. 5136 @10455 G1_I7_15 1. 5137 @10456 G1_I7_16 1. 5138 @10457 G1_I7_17 1. 5139 @10458 G1_I7_18 1. 5140 @10459 G1_I7_19 1. 5141 @10460 G1_I7_20 1. 5142 @10461 G1_I7_21 1. 5143 @10462 G1_I7_22 1. 5144 @10463 G1_I7_23 1. 5145 @10464 G1_I7_24 1. 5146 @10465 G1_I7_25 1. 5147 @10466 G1_I7_26 1. 5148 @10467 G1_I7_27 1. 5149 @10468 G1_I7_28 1. 5150 @10469 G1_I7_29 1. 5151 @10470 G1_I7_30 1. 5152 @10471 G1_I7_31 1. 5153 @10472 G1_I7_32 1. 5154 @10473 G1_I8_01 1. 5155 @10474 G1_I8_02 1. 5156 @10475 G1_I8_03 1. 5157 @10476 G1_I8_04 1. 5158 @10477 G1_I8_05 1. 5159 @10478 G1_I8_06 1. 5160 @10479 G1_I8_07 1. 5161 @10480 G1_I8_08 1. 5162 @10481 G1_I8_09 1. 5163 @10482 G1_I8_10 1. 5164 @10483 G1_I8_11 1. 5165 @10484 G1_I8_12 1. 5166 @10485 G1_I8_13 1. 5167 @10486 G1_I8_14 1. 5168 @10487 G1_I8_15 1. 5169 @10488 G1_I8_16 1. 5170 @10489 G1_I8_17 1. 93 The SAS System 13:10 Thursday, March 25, 2010 5171 @10490 G1_I8_18 1. 5172 @10491 G1_I8_19 1. 5173 @10492 G1_I8_20 1. 5174 @10493 G1_I8_21 1. 5175 @10494 G1_I8_22 1. 5176 @10495 G1_I8_23 1. 5177 @10496 G1_I8_24 1. 5178 @10497 G1_I8_25 1. 5179 @10498 G1_I8_26 1. 5180 @10499 G1_I8_27 1. 5181 @10500 G1_I8_28 1. 5182 @10501 G1_I8_29 1. 5183 @10502 G1_I8_30 1. 5184 @10503 G1_I8_31 1. 5185 @10504 G1_I8_32 1. 5186 @10505 G1_I9_01 1. 5187 @10506 G1_I9_02 1. 5188 @10507 G1_I9_03 1. 5189 @10508 G1_I9_04 1. 5190 @10509 G1_I9_05 1. 5191 @10510 G1_I9_06 1. 5192 @10511 G1_I9_07 1. 5193 @10512 G1_I9_08 1. 5194 @10513 G1_I9_09 1. 5195 @10514 G1_I9_10 1. 5196 @10515 G1_I9_11 1. 5197 @10516 G1_I9_12 1. 5198 @10517 G1_I9_13 1. 5199 @10518 G1_I9_14 1. 5200 @10519 G1_I9_15 1. 5201 @10520 G1_I9_16 1. 5202 @10521 G1_I9_17 1. 5203 @10522 G1_I9_18 1. 5204 @10523 G1_I9_19 1. 5205 @10524 G1_I9_20 1. 5206 @10525 G1_I9_21 1. 5207 @10526 G1_I9_22 1. 5208 @10527 G1_I9_23 1. 5209 @10528 G1_I9_24 1. 5210 @10529 G1_I9_25 1. 5211 @10530 G1_I9_26 1. 5212 @10531 G1_I9_27 1. 5213 @10532 G1_I9_28 1. 5214 @10533 G1_I9_29 1. 5215 @10534 G1_I9_30 1. 5216 @10535 G1_I9_31 1. 5217 @10536 G1_I9_32 1. 5218 @10537 G1_I1001 1. 5219 @10538 G1_I1002 1. 5220 @10539 G1_I1003 1. 5221 @10540 G1_I1004 1. 5222 @10541 G1_I1005 1. 5223 @10542 G1_I1006 1. 5224 @10543 G1_I1007 1. 5225 @10544 G1_I1008 1. 5226 @10545 G1_I1009 1. 5227 @10546 G1_I1010 1. 5228 @10547 G1_I1011 1. 94 The SAS System 13:10 Thursday, March 25, 2010 5229 @10548 G1_I1012 1. 5230 @10549 G1_I1013 1. 5231 @10550 G1_I1014 1. 5232 @10551 G1_I1015 1. 5233 @10552 G1_I1016 1. 5234 @10553 G1_I1017 1. 5235 @10554 G1_I1018 1. 5236 @10555 G1_I1019 1. 5237 @10556 G1_I1020 1. 5238 @10557 G1_I1021 1. 5239 @10558 G1_I1022 1. 5240 @10559 G1_I1023 1. 5241 @10560 G1_I1024 1. 5242 @10561 G1_I1025 1. 5243 @10562 G1_I1026 1. 5244 @10563 G1_I1027 1. 5245 @10564 G1_I1028 1. 5246 @10565 G1_I1029 1. 5247 @10566 G1_I1030 1. 5248 @10567 G1_I1031 1. 5249 @10568 G1_I1032 1. 5250 @10569 G2I10001 1. 5251 @10570 G2I10002 1. 5252 @10571 G2I10003 1. 5253 @10572 G2I10004 1. 5254 @10573 G2I10005 1. 5255 @10574 G2I10006 1. 5256 @10575 G2I10007 1. 5257 @10576 G2I10008 1. 5258 @10577 G2I10009 1. 5259 @10578 G2I10010 1. 5260 @10579 G2I10011 1. 5261 @10580 G2I10012 1. 5262 @10581 G2I10013 1. 5263 @10582 G2I10014 1. 5264 @10583 G2I10015 1. 5265 @10584 G2I10016 1. 5266 @10585 G2I10017 1. 5267 @10586 G2I10018 1. 5268 @10587 G2I10019 1. 5269 @10588 G2I10020 1. 5270 @10589 G2I10021 1. 5271 @10590 G2I10022 1. 5272 @10591 G2I10023 1. 5273 @10592 G2I10024 1. 5274 @10593 G2I10025 1. 5275 @10594 G2I10026 1. 5276 @10595 G2I10027 1. 5277 @10596 G2I10028 1. 5278 @10597 G2I10029 1. 5279 @10598 G2I10030 1. 5280 @10599 G2I10031 1. 5281 @10600 G2I10032 1. 5282 @10601 G2I10401 1. 5283 @10602 G2I10402 1. 5284 @10603 G2I10403 1. 5285 @10604 G2I10404 1. 5286 @10605 G2I10405 1. 95 The SAS System 13:10 Thursday, March 25, 2010 5287 @10606 G2I10406 1. 5288 @10607 G2I10407 1. 5289 @10608 G2I10408 1. 5290 @10609 G2I10409 1. 5291 @10610 G2I10410 1. 5292 @10611 G2I10411 1. 5293 @10612 G2I10412 1. 5294 @10613 G2I10413 1. 5295 @10614 G2I10414 1. 5296 @10615 G2I10415 1. 5297 @10616 G2I10416 1. 5298 @10617 G2I10417 1. 5299 @10618 G2I10418 1. 5300 @10619 G2I10419 1. 5301 @10620 G2I10420 1. 5302 @10621 G2I10421 1. 5303 @10622 G2I10422 1. 5304 @10623 G2I10423 1. 5305 @10624 G2I10424 1. 5306 @10625 G2I10425 1. 5307 @10626 G2I10426 1. 5308 @10627 G2I10427 1. 5309 @10628 G2I10428 1. 5310 @10629 G2I10429 1. 5311 @10630 G2I10430 1. 5312 @10631 G2I10431 1. 5313 @10632 G2I10432 1. 5314 @10633 G2I11001 1. 5315 @10634 G2I11002 1. 5316 @10635 G2I11003 1. 5317 @10636 G2I11004 1. 5318 @10637 G2I11005 1. 5319 @10638 G2I11006 1. 5320 @10639 G2I11007 1. 5321 @10640 G2I11008 1. 5322 @10641 G2I11009 1. 5323 @10642 G2I11010 1. 5324 @10643 G2I11011 1. 5325 @10644 G2I11012 1. 5326 @10645 G2I11013 1. 5327 @10646 G2I11014 1. 5328 @10647 G2I11015 1. 5329 @10648 G2I11016 1. 5330 @10649 G2I11017 1. 5331 @10650 G2I11018 1. 5332 @10651 G2I11019 1. 5333 @10652 G2I11020 1. 5334 @10653 G2I11021 1. 5335 @10654 G2I11022 1. 5336 @10655 G2I11023 1. 5337 @10656 G2I11024 1. 5338 @10657 G2I11025 1. 5339 @10658 G2I11026 1. 5340 @10659 G2I11027 1. 5341 @10660 G2I11028 1. 5342 @10661 G2I11029 1. 5343 @10662 G2I11030 1. 5344 @10663 G2I11031 1. 96 The SAS System 13:10 Thursday, March 25, 2010 5345 @10664 G2I11032 1. 5346 @10665 G2I12001 1. 5347 @10666 G2I12002 1. 5348 @10667 G2I12003 1. 5349 @10668 G2I12004 1. 5350 @10669 G2I12005 1. 5351 @10670 G2I12006 1. 5352 @10671 G2I12007 1. 5353 @10672 G2I12008 1. 5354 @10673 G2I12009 1. 5355 @10674 G2I12010 1. 5356 @10675 G2I12011 1. 5357 @10676 G2I12012 1. 5358 @10677 G2I12013 1. 5359 @10678 G2I12014 1. 5360 @10679 G2I12015 1. 5361 @10680 G2I12016 1. 5362 @10681 G2I12017 1. 5363 @10682 G2I12018 1. 5364 @10683 G2I12019 1. 5365 @10684 G2I12020 1. 5366 @10685 G2I12021 1. 5367 @10686 G2I12022 1. 5368 @10687 G2I12023 1. 5369 @10688 G2I12024 1. 5370 @10689 G2I12025 1. 5371 @10690 G2I12026 1. 5372 @10691 G2I12027 1. 5373 @10692 G2I12028 1. 5374 @10693 G2I12029 1. 5375 @10694 G2I12030 1. 5376 @10695 G2I12031 1. 5377 @10696 G2I12032 1. 5378 @10697 G2I13001 1. 5379 @10698 G2I13002 1. 5380 @10699 G2I13003 1. 5381 @10700 G2I13004 1. 5382 @10701 G2I13005 1. 5383 @10702 G2I13006 1. 5384 @10703 G2I13007 1. 5385 @10704 G2I13008 1. 5386 @10705 G2I13009 1. 5387 @10706 G2I13010 1. 5388 @10707 G2I13011 1. 5389 @10708 G2I13012 1. 5390 @10709 G2I13013 1. 5391 @10710 G2I13014 1. 5392 @10711 G2I13015 1. 5393 @10712 G2I13016 1. 5394 @10713 G2I13017 1. 5395 @10714 G2I13018 1. 5396 @10715 G2I13019 1. 5397 @10716 G2I13020 1. 5398 @10717 G2I13021 1. 5399 @10718 G2I13022 1. 5400 @10719 G2I13023 1. 5401 @10720 G2I13024 1. 5402 @10721 G2I13025 1. 97 The SAS System 13:10 Thursday, March 25, 2010 5403 @10722 G2I13026 1. 5404 @10723 G2I13027 1. 5405 @10724 G2I13028 1. 5406 @10725 G2I13029 1. 5407 @10726 G2I13030 1. 5408 @10727 G2I13031 1. 5409 @10728 G2I13032 1. 5410 @10729 G2I14001 1. 5411 @10730 G2I14002 1. 5412 @10731 G2I14003 1. 5413 @10732 G2I14004 1. 5414 @10733 G2I14005 1. 5415 @10734 G2I14006 1. 5416 @10735 G2I14007 1. 5417 @10736 G2I14008 1. 5418 @10737 G2I14009 1. 5419 @10738 G2I14010 1. 5420 @10739 G2I14011 1. 5421 @10740 G2I14012 1. 5422 @10741 G2I14013 1. 5423 @10742 G2I14014 1. 5424 @10743 G2I14015 1. 5425 @10744 G2I14016 1. 5426 @10745 G2I14017 1. 5427 @10746 G2I14018 1. 5428 @10747 G2I14019 1. 5429 @10748 G2I14020 1. 5430 @10749 G2I14021 1. 5431 @10750 G2I14022 1. 5432 @10751 G2I14023 1. 5433 @10752 G2I14024 1. 5434 @10753 G2I14025 1. 5435 @10754 G2I14026 1. 5436 @10755 G2I14027 1. 5437 @10756 G2I14028 1. 5438 @10757 G2I14029 1. 5439 @10758 G2I14030 1. 5440 @10759 G2I14031 1. 5441 @10760 G2I14032 1. 5442 ; 5443 5444 LABEL 5445 SUSEQNUM = "Sequence number of person" 5446 ROT = "Rotation group number" 5447 SU_ID = "Scrambled identifier equivalent to the" 5448 PP_ENTRY = "Edited entry address ID" 5449 PP_PNUM = "Edited person number" 5450 SU_TOTPP = "Total number of person records" 5451 HH_ADD01 = "Address ID - This field" 5452 HH_ADD02 = "Address ID - This field" 5453 HH_ADD03 = "Address ID - This field" 5454 HH_ADD04 = "Address ID - This field" 5455 HH_ADD05 = "Address ID - This field" 5456 HH_ADD06 = "Address ID - This field" 5457 HH_ADD07 = "Address ID - This field" 5458 HH_ADD08 = "Address ID - This field" 5459 HH_ADD09 = "Address ID - This field" 5460 HH_ADD10 = "Address ID - This field" 98 The SAS System 13:10 Thursday, March 25, 2010 5461 HH_ADD11 = "Address ID - This field" 5462 HH_ADD12 = "Address ID - This field" 5463 HH_ADD13 = "Address ID - This field" 5464 HH_ADD14 = "Address ID - This field" 5465 HH_ADD15 = "Address ID - This field" 5466 HH_ADD16 = "Address ID - This field" 5467 HH_ADD17 = "Address ID - This field" 5468 HH_ADD18 = "Address ID - This field" 5469 HH_ADD19 = "Address ID - This field" 5470 HH_ADD20 = "Address ID - This field" 5471 HH_ADD21 = "Address ID - This field" 5472 HH_ADD22 = "Address ID - This field" 5473 HH_ADD23 = "Address ID - This field" 5474 HH_ADD24 = "Address ID - This field" 5475 HH_ADD25 = "Address ID - This field" 5476 HH_ADD26 = "Address ID - This field" 5477 HH_ADD27 = "Address ID - This field" 5478 HH_ADD28 = "Address ID - This field" 5479 HH_ADD29 = "Address ID - This field" 5480 HH_ADD30 = "Address ID - This field" 5481 HH_ADD31 = "Address ID - This field" 5482 HH_ADD32 = "Address ID - This field" 5483 PP_INTV1 = "Person's interview status for the" 5484 PP_INTV2 = "Person's interview status for the" 5485 PP_INTV3 = "Person's interview status for the" 5486 PP_INTV4 = "Person's interview status for the" 5487 PP_INTV5 = "Person's interview status for the" 5488 PP_INTV6 = "Person's interview status for the" 5489 PP_INTV7 = "Person's interview status for the" 5490 PP_INTV8 = "Person's interview status for the" 5491 PP_MIS01 = "Person's interview status for this mon" 5492 PP_MIS02 = "Person's interview status for this mon" 5493 PP_MIS03 = "Person's interview status for this mon" 5494 PP_MIS04 = "Person's interview status for this mon" 5495 PP_MIS05 = "Person's interview status for this mon" 5496 PP_MIS06 = "Person's interview status for this mon" 5497 PP_MIS07 = "Person's interview status for this mon" 5498 PP_MIS08 = "Person's interview status for this mon" 5499 PP_MIS09 = "Person's interview status for this mon" 5500 PP_MIS10 = "Person's interview status for this mon" 5501 PP_MIS11 = "Person's interview status for this mon" 5502 PP_MIS12 = "Person's interview status for this mon" 5503 PP_MIS13 = "Person's interview status for this mon" 5504 PP_MIS14 = "Person's interview status for this mon" 5505 PP_MIS15 = "Person's interview status for this mon" 5506 PP_MIS16 = "Person's interview status for this mon" 5507 PP_MIS17 = "Person's interview status for this mon" 5508 PP_MIS18 = "Person's interview status for this mon" 5509 PP_MIS19 = "Person's interview status for this mon" 5510 PP_MIS20 = "Person's interview status for this mon" 5511 PP_MIS21 = "Person's interview status for this mon" 5512 PP_MIS22 = "Person's interview status for this mon" 5513 PP_MIS23 = "Person's interview status for this mon" 5514 PP_MIS24 = "Person's interview status for this mon" 5515 PP_MIS25 = "Person's interview status for this mon" 5516 PP_MIS26 = "Person's interview status for this mon" 5517 PP_MIS27 = "Person's interview status for this mon" 5518 PP_MIS28 = "Person's interview status for this mon" 99 The SAS System 13:10 Thursday, March 25, 2010 5519 PP_MIS29 = "Person's interview status for this mon" 5520 PP_MIS30 = "Person's interview status for this mon" 5521 PP_MIS31 = "Person's interview status for this mon" 5522 PP_MIS32 = "Person's interview status for this mon" 5523 REASLEF1 = "Preedited reason for leaving the" 5524 REASLEF2 = "Preedited reason for leaving the" 5525 REASLEF3 = "Preedited reason for leaving the" 5526 REASLEF4 = "Preedited reason for leaving the" 5527 REASLEF5 = "Preedited reason for leaving the" 5528 REASLEF6 = "Preedited reason for leaving the" 5529 REASLEF7 = "Preedited reason for leaving the" 5530 REASLEF8 = "Preedited reason for leaving the" 5531 PNLWGT = "Panel person's weight assigned" 5532 FNLWGT84 = "Person's weight assigned for calendar" 5533 FNLWGT85 = "Person's weight assigned for calendar" 5534 SU_RGC = "Reduction group code established to" 5535 Hs_HSC = "Half sample code for variance estimati" 5536 LGTHHT01 = "Longitudinal Household Type" 5537 LGTHHT02 = "Longitudinal Household Type" 5538 LGTHHT03 = "Longitudinal Household Type" 5539 LGTHHT04 = "Longitudinal Household Type" 5540 LGTHHT05 = "Longitudinal Household Type" 5541 LGTHHT06 = "Longitudinal Household Type" 5542 LGTHHT07 = "Longitudinal Household Type" 5543 LGTHHT08 = "Longitudinal Household Type" 5544 LGTHHT09 = "Longitudinal Household Type" 5545 LGTHHT10 = "Longitudinal Household Type" 5546 LGTHHT11 = "Longitudinal Household Type" 5547 LGTHHT12 = "Longitudinal Household Type" 5548 LGTHHT13 = "Longitudinal Household Type" 5549 LGTHHT14 = "Longitudinal Household Type" 5550 LGTHHT15 = "Longitudinal Household Type" 5551 LGTHHT16 = "Longitudinal Household Type" 5552 LGTHHT17 = "Longitudinal Household Type" 5553 LGTHHT18 = "Longitudinal Household Type" 5554 LGTHHT19 = "Longitudinal Household Type" 5555 LGTHHT20 = "Longitudinal Household Type" 5556 LGTHHT21 = "Longitudinal Household Type" 5557 LGTHHT22 = "Longitudinal Household Type" 5558 LGTHHT23 = "Longitudinal Household Type" 5559 LGTHHT24 = "Longitudinal Household Type" 5560 LGTHHT25 = "Longitudinal Household Type" 5561 LGTHHT26 = "Longitudinal Household Type" 5562 LGTHHT27 = "Longitudinal Household Type" 5563 LGTHHT28 = "Longitudinal Household Type" 5564 LGTHHT29 = "Longitudinal Household Type" 5565 LGTHHT30 = "Longitudinal Household Type" 5566 LGTHHT31 = "Longitudinal Household Type" 5567 LGTHHT32 = "Longitudinal Household Type" 5568 LGTKEY01 = "Longitudinal key person indicator" 5569 LGTKEY02 = "Longitudinal key person indicator" 5570 LGTKEY03 = "Longitudinal key person indicator" 5571 LGTKEY04 = "Longitudinal key person indicator" 5572 LGTKEY05 = "Longitudinal key person indicator" 5573 LGTKEY06 = "Longitudinal key person indicator" 5574 LGTKEY07 = "Longitudinal key person indicator" 5575 LGTKEY08 = "Longitudinal key person indicator" 5576 LGTKEY09 = "Longitudinal key person indicator" 100 The SAS System 13:10 Thursday, March 25, 2010 5577 LGTKEY10 = "Longitudinal key person indicator" 5578 LGTKEY11 = "Longitudinal key person indicator" 5579 LGTKEY12 = "Longitudinal key person indicator" 5580 LGTKEY13 = "Longitudinal key person indicator" 5581 LGTKEY14 = "Longitudinal key person indicator" 5582 LGTKEY15 = "Longitudinal key person indicator" 5583 LGTKEY16 = "Longitudinal key person indicator" 5584 LGTKEY17 = "Longitudinal key person indicator" 5585 LGTKEY18 = "Longitudinal key person indicator" 5586 LGTKEY19 = "Longitudinal key person indicator" 5587 LGTKEY20 = "Longitudinal key person indicator" 5588 LGTKEY21 = "Longitudinal key person indicator" 5589 LGTKEY22 = "Longitudinal key person indicator" 5590 LGTKEY23 = "Longitudinal key person indicator" 5591 LGTKEY24 = "Longitudinal key person indicator" 5592 LGTKEY25 = "Longitudinal key person indicator" 5593 LGTKEY26 = "Longitudinal key person indicator" 5594 LGTKEY27 = "Longitudinal key person indicator" 5595 LGTKEY28 = "Longitudinal key person indicator" 5596 LGTKEY29 = "Longitudinal key person indicator" 5597 LGTKEY30 = "Longitudinal key person indicator" 5598 LGTKEY31 = "Longitudinal key person indicator" 5599 LGTKEY32 = "Longitudinal key person indicator" 5600 LGTOTH01 = "Longitudinal 'other' person indicator" 5601 LGTOTH02 = "Longitudinal 'other' person indicator" 5602 LGTOTH03 = "Longitudinal 'other' person indicator" 5603 LGTOTH04 = "Longitudinal 'other' person indicator" 5604 LGTOTH05 = "Longitudinal 'other' person indicator" 5605 LGTOTH06 = "Longitudinal 'other' person indicator" 5606 LGTOTH07 = "Longitudinal 'other' person indicator" 5607 LGTOTH08 = "Longitudinal 'other' person indicator" 5608 LGTOTH09 = "Longitudinal 'other' person indicator" 5609 LGTOTH10 = "Longitudinal 'other' person indicator" 5610 LGTOTH11 = "Longitudinal 'other' person indicator" 5611 LGTOTH12 = "Longitudinal 'other' person indicator" 5612 LGTOTH13 = "Longitudinal 'other' person indicator" 5613 LGTOTH14 = "Longitudinal 'other' person indicator" 5614 LGTOTH15 = "Longitudinal 'other' person indicator" 5615 LGTOTH16 = "Longitudinal 'other' person indicator" 5616 LGTOTH17 = "Longitudinal 'other' person indicator" 5617 LGTOTH18 = "Longitudinal 'other' person indicator" 5618 LGTOTH19 = "Longitudinal 'other' person indicator" 5619 LGTOTH20 = "Longitudinal 'other' person indicator" 5620 LGTOTH21 = "Longitudinal 'other' person indicator" 5621 LGTOTH22 = "Longitudinal 'other' person indicator" 5622 LGTOTH23 = "Longitudinal 'other' person indicator" 5623 LGTOTH24 = "Longitudinal 'other' person indicator" 5624 LGTOTH25 = "Longitudinal 'other' person indicator" 5625 LGTOTH26 = "Longitudinal 'other' person indicator" 5626 LGTOTH27 = "Longitudinal 'other' person indicator" 5627 LGTOTH28 = "Longitudinal 'other' person indicator" 5628 LGTOTH29 = "Longitudinal 'other' person indicator" 5629 LGTOTH30 = "Longitudinal 'other' person indicator" 5630 LGTOTH31 = "Longitudinal 'other' person indicator" 5631 LGTOTH32 = "Longitudinal 'other' person indicator" 5632 LGTFA101 = "Longitudinal adjustment factor #1" 5633 LGTFA102 = "Longitudinal adjustment factor #1" 5634 LGTFA103 = "Longitudinal adjustment factor #1" 101 The SAS System 13:10 Thursday, March 25, 2010 5635 LGTFA104 = "Longitudinal adjustment factor #1" 5636 LGTFA105 = "Longitudinal adjustment factor #1" 5637 LGTFA106 = "Longitudinal adjustment factor #1" 5638 LGTFA107 = "Longitudinal adjustment factor #1" 5639 LGTFA108 = "Longitudinal adjustment factor #1" 5640 LGTFA109 = "Longitudinal adjustment factor #1" 5641 LGTFA110 = "Longitudinal adjustment factor #1" 5642 LGTFA111 = "Longitudinal adjustment factor #1" 5643 LGTFA112 = "Longitudinal adjustment factor #1" 5644 LGTFA113 = "Longitudinal adjustment factor #1" 5645 LGTFA114 = "Longitudinal adjustment factor #1" 5646 LGTFA115 = "Longitudinal adjustment factor #1" 5647 LGTFA116 = "Longitudinal adjustment factor #1" 5648 LGTFA117 = "Longitudinal adjustment factor #1" 5649 LGTFA118 = "Longitudinal adjustment factor #1" 5650 LGTFA119 = "Longitudinal adjustment factor #1" 5651 LGTFA120 = "Longitudinal adjustment factor #1" 5652 LGTFA121 = "Longitudinal adjustment factor #1" 5653 LGTFA122 = "Longitudinal adjustment factor #1" 5654 LGTFA123 = "Longitudinal adjustment factor #1" 5655 LGTFA124 = "Longitudinal adjustment factor #1" 5656 LGTFA125 = "Longitudinal adjustment factor #1" 5657 LGTFA126 = "Longitudinal adjustment factor #1" 5658 LGTFA127 = "Longitudinal adjustment factor #1" 5659 LGTFA128 = "Longitudinal adjustment factor #1" 5660 LGTFA129 = "Longitudinal adjustment factor #1" 5661 LGTFA130 = "Longitudinal adjustment factor #1" 5662 LGTFA131 = "Longitudinal adjustment factor #1" 5663 LGTFA132 = "Longitudinal adjustment factor #1" 5664 LGTFA201 = "Longitudinal adjustment factor #2" 5665 LGTFA202 = "Longitudinal adjustment factor #2" 5666 LGTFA203 = "Longitudinal adjustment factor #2" 5667 LGTFA204 = "Longitudinal adjustment factor #2" 5668 LGTFA205 = "Longitudinal adjustment factor #2" 5669 LGTFA206 = "Longitudinal adjustment factor #2" 5670 LGTFA207 = "Longitudinal adjustment factor #2" 5671 LGTFA208 = "Longitudinal adjustment factor #2" 5672 LGTFA209 = "Longitudinal adjustment factor #2" 5673 LGTFA210 = "Longitudinal adjustment factor #2" 5674 LGTFA211 = "Longitudinal adjustment factor #2" 5675 LGTFA212 = "Longitudinal adjustment factor #2" 5676 LGTFA213 = "Longitudinal adjustment factor #2" 5677 LGTFA214 = "Longitudinal adjustment factor #2" 5678 LGTFA215 = "Longitudinal adjustment factor #2" 5679 LGTFA216 = "Longitudinal adjustment factor #2" 5680 LGTFA217 = "Longitudinal adjustment factor #2" 5681 LGTFA218 = "Longitudinal adjustment factor #2" 5682 LGTFA219 = "Longitudinal adjustment factor #2" 5683 LGTFA220 = "Longitudinal adjustment factor #2" 5684 LGTFA221 = "Longitudinal adjustment factor #2" 5685 LGTFA222 = "Longitudinal adjustment factor #2" 5686 LGTFA223 = "Longitudinal adjustment factor #2" 5687 LGTFA224 = "Longitudinal adjustment factor #2" 5688 LGTFA225 = "Longitudinal adjustment factor #2" 5689 LGTFA226 = "Longitudinal adjustment factor #2" 5690 LGTFA227 = "Longitudinal adjustment factor #2" 5691 LGTFA228 = "Longitudinal adjustment factor #2" 5692 LGTFA229 = "Longitudinal adjustment factor #2" 102 The SAS System 13:10 Thursday, March 25, 2010 5693 LGTFA230 = "Longitudinal adjustment factor #2" 5694 LGTFA231 = "Longitudinal adjustment factor #2" 5695 LGTFA232 = "Longitudinal adjustment factor #2" 5696 SEX = "Sex of this person" 5697 RACE = "Race of this person" 5698 ETHNICTY = "Ethnic origin" 5699 RRP_01 = "Edited relationship to reference perso" 5700 RRP_02 = "Edited relationship to reference perso" 5701 RRP_03 = "Edited relationship to reference perso" 5702 RRP_04 = "Edited relationship to reference perso" 5703 RRP_05 = "Edited relationship to reference perso" 5704 RRP_06 = "Edited relationship to reference perso" 5705 RRP_07 = "Edited relationship to reference perso" 5706 RRP_08 = "Edited relationship to reference perso" 5707 RRP_09 = "Edited relationship to reference perso" 5708 RRP_10 = "Edited relationship to reference perso" 5709 RRP_11 = "Edited relationship to reference perso" 5710 RRP_12 = "Edited relationship to reference perso" 5711 RRP_13 = "Edited relationship to reference perso" 5712 RRP_14 = "Edited relationship to reference perso" 5713 RRP_15 = "Edited relationship to reference perso" 5714 RRP_16 = "Edited relationship to reference perso" 5715 RRP_17 = "Edited relationship to reference perso" 5716 RRP_18 = "Edited relationship to reference perso" 5717 RRP_19 = "Edited relationship to reference perso" 5718 RRP_20 = "Edited relationship to reference perso" 5719 RRP_21 = "Edited relationship to reference perso" 5720 RRP_22 = "Edited relationship to reference perso" 5721 RRP_23 = "Edited relationship to reference perso" 5722 RRP_24 = "Edited relationship to reference perso" 5723 RRP_25 = "Edited relationship to reference perso" 5724 RRP_26 = "Edited relationship to reference perso" 5725 RRP_27 = "Edited relationship to reference perso" 5726 RRP_28 = "Edited relationship to reference perso" 5727 RRP_29 = "Edited relationship to reference perso" 5728 RRP_30 = "Edited relationship to reference perso" 5729 RRP_31 = "Edited relationship to reference perso" 5730 RRP_32 = "Edited relationship to reference perso" 5731 AGE_01 = "Age as of last birthday" 5732 AGE_02 = "Age as of last birthday" 5733 AGE_03 = "Age as of last birthday" 5734 AGE_04 = "Age as of last birthday" 5735 AGE_05 = "Age as of last birthday" 5736 AGE_06 = "Age as of last birthday" 5737 AGE_07 = "Age as of last birthday" 5738 AGE_08 = "Age as of last birthday" 5739 AGE_09 = "Age as of last birthday" 5740 AGE_10 = "Age as of last birthday" 5741 AGE_11 = "Age as of last birthday" 5742 AGE_12 = "Age as of last birthday" 5743 AGE_13 = "Age as of last birthday" 5744 AGE_14 = "Age as of last birthday" 5745 AGE_15 = "Age as of last birthday" 5746 AGE_16 = "Age as of last birthday" 5747 AGE_17 = "Age as of last birthday" 5748 AGE_18 = "Age as of last birthday" 5749 AGE_19 = "Age as of last birthday" 5750 AGE_20 = "Age as of last birthday" 103 The SAS System 13:10 Thursday, March 25, 2010 5751 AGE_21 = "Age as of last birthday" 5752 AGE_22 = "Age as of last birthday" 5753 AGE_23 = "Age as of last birthday" 5754 AGE_24 = "Age as of last birthday" 5755 AGE_25 = "Age as of last birthday" 5756 AGE_26 = "Age as of last birthday" 5757 AGE_27 = "Age as of last birthday" 5758 AGE_28 = "Age as of last birthday" 5759 AGE_29 = "Age as of last birthday" 5760 AGE_30 = "Age as of last birthday" 5761 AGE_31 = "Age as of last birthday" 5762 AGE_32 = "Age as of last birthday" 5763 MS_01 = "Marital status" 5764 MS_02 = "Marital status" 5765 MS_03 = "Marital status" 5766 MS_04 = "Marital status" 5767 MS_05 = "Marital status" 5768 MS_06 = "Marital status" 5769 MS_07 = "Marital status" 5770 MS_08 = "Marital status" 5771 MS_09 = "Marital status" 5772 MS_10 = "Marital status" 5773 MS_11 = "Marital status" 5774 MS_12 = "Marital status" 5775 MS_13 = "Marital status" 5776 MS_14 = "Marital status" 5777 MS_15 = "Marital status" 5778 MS_16 = "Marital status" 5779 MS_17 = "Marital status" 5780 MS_18 = "Marital status" 5781 MS_19 = "Marital status" 5782 MS_20 = "Marital status" 5783 MS_21 = "Marital status" 5784 MS_22 = "Marital status" 5785 MS_23 = "Marital status" 5786 MS_24 = "Marital status" 5787 MS_25 = "Marital status" 5788 MS_26 = "Marital status" 5789 MS_27 = "Marital status" 5790 MS_28 = "Marital status" 5791 MS_29 = "Marital status" 5792 MS_30 = "Marital status" 5793 MS_31 = "Marital status" 5794 MS_32 = "Marital status" 5795 FAMTYP01 = "Family type. Type of family to which" 5796 FAMTYP02 = "Family type. Type of family to which" 5797 FAMTYP03 = "Family type. Type of family to which" 5798 FAMTYP04 = "Family type. Type of family to which" 5799 FAMTYP05 = "Family type. Type of family to which" 5800 FAMTYP06 = "Family type. Type of family to which" 5801 FAMTYP07 = "Family type. Type of family to which" 5802 FAMTYP08 = "Family type. Type of family to which" 5803 FAMTYP09 = "Family type. Type of family to which" 5804 FAMTYP10 = "Family type. Type of family to which" 5805 FAMTYP11 = "Family type. Type of family to which" 5806 FAMTYP12 = "Family type. Type of family to which" 5807 FAMTYP13 = "Family type. Type of family to which" 5808 FAMTYP14 = "Family type. Type of family to which" 104 The SAS System 13:10 Thursday, March 25, 2010 5809 FAMTYP15 = "Family type. Type of family to which" 5810 FAMTYP16 = "Family type. Type of family to which" 5811 FAMTYP17 = "Family type. Type of family to which" 5812 FAMTYP18 = "Family type. Type of family to which" 5813 FAMTYP19 = "Family type. Type of family to which" 5814 FAMTYP20 = "Family type. Type of family to which" 5815 FAMTYP21 = "Family type. Type of family to which" 5816 FAMTYP22 = "Family type. Type of family to which" 5817 FAMTYP23 = "Family type. Type of family to which" 5818 FAMTYP24 = "Family type. Type of family to which" 5819 FAMTYP25 = "Family type. Type of family to which" 5820 FAMTYP26 = "Family type. Type of family to which" 5821 FAMTYP27 = "Family type. Type of family to which" 5822 FAMTYP28 = "Family type. Type of family to which" 5823 FAMTYP29 = "Family type. Type of family to which" 5824 FAMTYP30 = "Family type. Type of family to which" 5825 FAMTYP31 = "Family type. Type of family to which" 5826 FAMTYP32 = "Family type. Type of family to which" 5827 FAMREL01 = "Family relationship code. - This field" 5828 FAMREL02 = "Family relationship code. - This field" 5829 FAMREL03 = "Family relationship code. - This field" 5830 FAMREL04 = "Family relationship code. - This field" 5831 FAMREL05 = "Family relationship code. - This field" 5832 FAMREL06 = "Family relationship code. - This field" 5833 FAMREL07 = "Family relationship code. - This field" 5834 FAMREL08 = "Family relationship code. - This field" 5835 FAMREL09 = "Family relationship code. - This field" 5836 FAMREL10 = "Family relationship code. - This field" 5837 FAMREL11 = "Family relationship code. - This field" 5838 FAMREL12 = "Family relationship code. - This field" 5839 FAMREL13 = "Family relationship code. - This field" 5840 FAMREL14 = "Family relationship code. - This field" 5841 FAMREL15 = "Family relationship code. - This field" 5842 FAMREL16 = "Family relationship code. - This field" 5843 FAMREL17 = "Family relationship code. - This field" 5844 FAMREL18 = "Family relationship code. - This field" 5845 FAMREL19 = "Family relationship code. - This field" 5846 FAMREL20 = "Family relationship code. - This field" 5847 FAMREL21 = "Family relationship code. - This field" 5848 FAMREL22 = "Family relationship code. - This field" 5849 FAMREL23 = "Family relationship code. - This field" 5850 FAMREL24 = "Family relationship code. - This field" 5851 FAMREL25 = "Family relationship code. - This field" 5852 FAMREL26 = "Family relationship code. - This field" 5853 FAMREL27 = "Family relationship code. - This field" 5854 FAMREL28 = "Family relationship code. - This field" 5855 FAMREL29 = "Family relationship code. - This field" 5856 FAMREL30 = "Family relationship code. - This field" 5857 FAMREL31 = "Family relationship code. - This field" 5858 FAMREL32 = "Family relationship code. - This field" 5859 FAMNUM01 = "Family number. - This field only appli" 5860 FAMNUM02 = "Family number. - This field only appli" 5861 FAMNUM03 = "Family number. - This field only appli" 5862 FAMNUM04 = "Family number. - This field only appli" 5863 FAMNUM05 = "Family number. - This field only appli" 5864 FAMNUM06 = "Family number. - This field only appli" 5865 FAMNUM07 = "Family number. - This field only appli" 5866 FAMNUM08 = "Family number. - This field only appli" 105 The SAS System 13:10 Thursday, March 25, 2010 5867 FAMNUM09 = "Family number. - This field only appli" 5868 FAMNUM10 = "Family number. - This field only appli" 5869 FAMNUM11 = "Family number. - This field only appli" 5870 FAMNUM12 = "Family number. - This field only appli" 5871 FAMNUM13 = "Family number. - This field only appli" 5872 FAMNUM14 = "Family number. - This field only appli" 5873 FAMNUM15 = "Family number. - This field only appli" 5874 FAMNUM16 = "Family number. - This field only appli" 5875 FAMNUM17 = "Family number. - This field only appli" 5876 FAMNUM18 = "Family number. - This field only appli" 5877 FAMNUM19 = "Family number. - This field only appli" 5878 FAMNUM20 = "Family number. - This field only appli" 5879 FAMNUM21 = "Family number. - This field only appli" 5880 FAMNUM22 = "Family number. - This field only appli" 5881 FAMNUM23 = "Family number. - This field only appli" 5882 FAMNUM24 = "Family number. - This field only appli" 5883 FAMNUM25 = "Family number. - This field only appli" 5884 FAMNUM26 = "Family number. - This field only appli" 5885 FAMNUM27 = "Family number. - This field only appli" 5886 FAMNUM28 = "Family number. - This field only appli" 5887 FAMNUM29 = "Family number. - This field only appli" 5888 FAMNUM30 = "Family number. - This field only appli" 5889 FAMNUM31 = "Family number. - This field only appli" 5890 FAMNUM32 = "Family number. - This field only appli" 5891 PNSP_01 = "Person number of spouse in this month" 5892 PNSP_02 = "Person number of spouse in this month" 5893 PNSP_03 = "Person number of spouse in this month" 5894 PNSP_04 = "Person number of spouse in this month" 5895 PNSP_05 = "Person number of spouse in this month" 5896 PNSP_06 = "Person number of spouse in this month" 5897 PNSP_07 = "Person number of spouse in this month" 5898 PNSP_08 = "Person number of spouse in this month" 5899 PNSP_09 = "Person number of spouse in this month" 5900 PNSP_10 = "Person number of spouse in this month" 5901 PNSP_11 = "Person number of spouse in this month" 5902 PNSP_12 = "Person number of spouse in this month" 5903 PNSP_13 = "Person number of spouse in this month" 5904 PNSP_14 = "Person number of spouse in this month" 5905 PNSP_15 = "Person number of spouse in this month" 5906 PNSP_16 = "Person number of spouse in this month" 5907 PNSP_17 = "Person number of spouse in this month" 5908 PNSP_18 = "Person number of spouse in this month" 5909 PNSP_19 = "Person number of spouse in this month" 5910 PNSP_20 = "Person number of spouse in this month" 5911 PNSP_21 = "Person number of spouse in this month" 5912 PNSP_22 = "Person number of spouse in this month" 5913 PNSP_23 = "Person number of spouse in this month" 5914 PNSP_24 = "Person number of spouse in this month" 5915 PNSP_25 = "Person number of spouse in this month" 5916 PNSP_26 = "Person number of spouse in this month" 5917 PNSP_27 = "Person number of spouse in this month" 5918 PNSP_28 = "Person number of spouse in this month" 5919 PNSP_29 = "Person number of spouse in this month" 5920 PNSP_30 = "Person number of spouse in this month" 5921 PNSP_31 = "Person number of spouse in this month" 5922 PNSP_32 = "Person number of spouse in this month" 5923 ENT_SP01 = "This field is entry address ID of spou" 5924 ENT_SP02 = "This field is entry address ID of spou" 106 The SAS System 13:10 Thursday, March 25, 2010 5925 ENT_SP03 = "This field is entry address ID of spou" 5926 ENT_SP04 = "This field is entry address ID of spou" 5927 ENT_SP05 = "This field is entry address ID of spou" 5928 ENT_SP06 = "This field is entry address ID of spou" 5929 ENT_SP07 = "This field is entry address ID of spou" 5930 ENT_SP08 = "This field is entry address ID of spou" 5931 ENT_SP09 = "This field is entry address ID of spou" 5932 ENT_SP10 = "This field is entry address ID of spou" 5933 ENT_SP11 = "This field is entry address ID of spou" 5934 ENT_SP12 = "This field is entry address ID of spou" 5935 ENT_SP13 = "This field is entry address ID of spou" 5936 ENT_SP14 = "This field is entry address ID of spou" 5937 ENT_SP15 = "This field is entry address ID of spou" 5938 ENT_SP16 = "This field is entry address ID of spou" 5939 ENT_SP17 = "This field is entry address ID of spou" 5940 ENT_SP18 = "This field is entry address ID of spou" 5941 ENT_SP19 = "This field is entry address ID of spou" 5942 ENT_SP20 = "This field is entry address ID of spou" 5943 ENT_SP21 = "This field is entry address ID of spou" 5944 ENT_SP22 = "This field is entry address ID of spou" 5945 ENT_SP23 = "This field is entry address ID of spou" 5946 ENT_SP24 = "This field is entry address ID of spou" 5947 ENT_SP25 = "This field is entry address ID of spou" 5948 ENT_SP26 = "This field is entry address ID of spou" 5949 ENT_SP27 = "This field is entry address ID of spou" 5950 ENT_SP28 = "This field is entry address ID of spou" 5951 ENT_SP29 = "This field is entry address ID of spou" 5952 ENT_SP30 = "This field is entry address ID of spou" 5953 ENT_SP31 = "This field is entry address ID of spou" 5954 ENT_SP32 = "This field is entry address ID of spou" 5955 PNPT_01 = "Person number of parent in this month" 5956 PNPT_02 = "Person number of parent in this month" 5957 PNPT_03 = "Person number of parent in this month" 5958 PNPT_04 = "Person number of parent in this month" 5959 PNPT_05 = "Person number of parent in this month" 5960 PNPT_06 = "Person number of parent in this month" 5961 PNPT_07 = "Person number of parent in this month" 5962 PNPT_08 = "Person number of parent in this month" 5963 PNPT_09 = "Person number of parent in this month" 5964 PNPT_10 = "Person number of parent in this month" 5965 PNPT_11 = "Person number of parent in this month" 5966 PNPT_12 = "Person number of parent in this month" 5967 PNPT_13 = "Person number of parent in this month" 5968 PNPT_14 = "Person number of parent in this month" 5969 PNPT_15 = "Person number of parent in this month" 5970 PNPT_16 = "Person number of parent in this month" 5971 PNPT_17 = "Person number of parent in this month" 5972 PNPT_18 = "Person number of parent in this month" 5973 PNPT_19 = "Person number of parent in this month" 5974 PNPT_20 = "Person number of parent in this month" 5975 PNPT_21 = "Person number of parent in this month" 5976 PNPT_22 = "Person number of parent in this month" 5977 PNPT_23 = "Person number of parent in this month" 5978 PNPT_24 = "Person number of parent in this month" 5979 PNPT_25 = "Person number of parent in this month" 5980 PNPT_26 = "Person number of parent in this month" 5981 PNPT_27 = "Person number of parent in this month" 5982 PNPT_28 = "Person number of parent in this month" 107 The SAS System 13:10 Thursday, March 25, 2010 5983 PNPT_29 = "Person number of parent in this month" 5984 PNPT_30 = "Person number of parent in this month" 5985 PNPT_31 = "Person number of parent in this month" 5986 PNPT_32 = "Person number of parent in this month" 5987 ENT_PT01 = "This field is entry address ID of pare" 5988 ENT_PT02 = "This field is entry address ID of pare" 5989 ENT_PT03 = "This field is entry address ID of pare" 5990 ENT_PT04 = "This field is entry address ID of pare" 5991 ENT_PT05 = "This field is entry address ID of pare" 5992 ENT_PT06 = "This field is entry address ID of pare" 5993 ENT_PT07 = "This field is entry address ID of pare" 5994 ENT_PT08 = "This field is entry address ID of pare" 5995 ENT_PT09 = "This field is entry address ID of pare" 5996 ENT_PT10 = "This field is entry address ID of pare" 5997 ENT_PT11 = "This field is entry address ID of pare" 5998 ENT_PT12 = "This field is entry address ID of pare" 5999 ENT_PT13 = "This field is entry address ID of pare" 6000 ENT_PT14 = "This field is entry address ID of pare" 6001 ENT_PT15 = "This field is entry address ID of pare" 6002 ENT_PT16 = "This field is entry address ID of pare" 6003 ENT_PT17 = "This field is entry address ID of pare" 6004 ENT_PT18 = "This field is entry address ID of pare" 6005 ENT_PT19 = "This field is entry address ID of pare" 6006 ENT_PT20 = "This field is entry address ID of pare" 6007 ENT_PT21 = "This field is entry address ID of pare" 6008 ENT_PT22 = "This field is entry address ID of pare" 6009 ENT_PT23 = "This field is entry address ID of pare" 6010 ENT_PT24 = "This field is entry address ID of pare" 6011 ENT_PT25 = "This field is entry address ID of pare" 6012 ENT_PT26 = "This field is entry address ID of pare" 6013 ENT_PT27 = "This field is entry address ID of pare" 6014 ENT_PT28 = "This field is entry address ID of pare" 6015 ENT_PT29 = "This field is entry address ID of pare" 6016 ENT_PT30 = "This field is entry address ID of pare" 6017 ENT_PT31 = "This field is entry address ID of pare" 6018 ENT_PT32 = "This field is entry address ID of pare" 6019 HIGRADE1 = "What is the highest grade or year of" 6020 HIGRADE2 = "What is the highest grade or year of" 6021 HIGRADE3 = "What is the highest grade or year of" 6022 HIGRADE4 = "What is the highest grade or year of" 6023 HIGRADE5 = "What is the highest grade or year of" 6024 HIGRADE6 = "What is the highest grade or year of" 6025 HIGRADE7 = "What is the highest grade or year of" 6026 HIGRADE8 = "What is the highest grade or year of" 6027 GRD_CMP1 = "Did he/she complete that grade?" 6028 GRD_CMP2 = "Did he/she complete that grade?" 6029 GRD_CMP3 = "Did he/she complete that grade?" 6030 GRD_CMP4 = "Did he/she complete that grade?" 6031 GRD_CMP5 = "Did he/she complete that grade?" 6032 GRD_CMP6 = "Did he/she complete that grade?" 6033 GRD_CMP7 = "Did he/she complete that grade?" 6034 GRD_CMP8 = "Did he/she complete that grade?" 6035 IN_AF_1 = "Is this person currently in the" 6036 IN_AF_2 = "Is this person currently in the" 6037 IN_AF_3 = "Is this person currently in the" 6038 IN_AF_4 = "Is this person currently in the" 6039 IN_AF_5 = "Is this person currently in the" 6040 IN_AF_6 = "Is this person currently in the" 108 The SAS System 13:10 Thursday, March 25, 2010 6041 IN_AF_7 = "Is this person currently in the" 6042 IN_AF_8 = "Is this person currently in the" 6043 USRVE_1 = "Unedited period of service" 6044 USRVE_2 = "Unedited period of service" 6045 USRVE_3 = "Unedited period of service" 6046 USRVE_4 = "Unedited period of service" 6047 USRVE_5 = "Unedited period of service" 6048 USRVE_6 = "Unedited period of service" 6049 USRVE_7 = "Unedited period of service" 6050 USRVE_8 = "Unedited period of service" 6051 U_BRTHMN = "Preedited month of birth" 6052 U_BRTHYR = "Preedited year of birth" 6053 U_PNGD1 = "Preedited person number of designated" 6054 U_PNGD2 = "Preedited person number of designated" 6055 U_PNGD3 = "Preedited person number of designated" 6056 U_PNGD4 = "Preedited person number of designated" 6057 U_PNGD5 = "Preedited person number of designated" 6058 U_PNGD6 = "Preedited person number of designated" 6059 U_PNGD7 = "Preedited person number of designated" 6060 U_PNGD8 = "Preedited person number of designated" 6061 ENTID_G1 = "Entry address ID of" 6062 ENTID_G2 = "Entry address ID of" 6063 ENTID_G3 = "Entry address ID of" 6064 ENTID_G4 = "Entry address ID of" 6065 ENTID_G5 = "Entry address ID of" 6066 ENTID_G6 = "Entry address ID of" 6067 ENTID_G7 = "Entry address ID of" 6068 ENTID_G8 = "Entry address ID of" 6069 LVQTR_01 = "Housing/other unit in each month" 6070 LVQTR_02 = "Housing/other unit in each month" 6071 LVQTR_03 = "Housing/other unit in each month" 6072 LVQTR_04 = "Housing/other unit in each month" 6073 LVQTR_05 = "Housing/other unit in each month" 6074 LVQTR_06 = "Housing/other unit in each month" 6075 LVQTR_07 = "Housing/other unit in each month" 6076 LVQTR_08 = "Housing/other unit in each month" 6077 LVQTR_09 = "Housing/other unit in each month" 6078 LVQTR_10 = "Housing/other unit in each month" 6079 LVQTR_11 = "Housing/other unit in each month" 6080 LVQTR_12 = "Housing/other unit in each month" 6081 LVQTR_13 = "Housing/other unit in each month" 6082 LVQTR_14 = "Housing/other unit in each month" 6083 LVQTR_15 = "Housing/other unit in each month" 6084 LVQTR_16 = "Housing/other unit in each month" 6085 LVQTR_17 = "Housing/other unit in each month" 6086 LVQTR_18 = "Housing/other unit in each month" 6087 LVQTR_19 = "Housing/other unit in each month" 6088 LVQTR_20 = "Housing/other unit in each month" 6089 LVQTR_21 = "Housing/other unit in each month" 6090 LVQTR_22 = "Housing/other unit in each month" 6091 LVQTR_23 = "Housing/other unit in each month" 6092 LVQTR_24 = "Housing/other unit in each month" 6093 LVQTR_25 = "Housing/other unit in each month" 6094 LVQTR_26 = "Housing/other unit in each month" 6095 LVQTR_27 = "Housing/other unit in each month" 6096 LVQTR_28 = "Housing/other unit in each month" 6097 LVQTR_29 = "Housing/other unit in each month" 6098 LVQTR_30 = "Housing/other unit in each month" 109 The SAS System 13:10 Thursday, March 25, 2010 6099 LVQTR_31 = "Housing/other unit in each month" 6100 LVQTR_32 = "Housing/other unit in each month" 6101 TENUR_01 = "Are the living quarters" 6102 TENUR_02 = "Are the living quarters" 6103 TENUR_03 = "Are the living quarters" 6104 TENUR_04 = "Are the living quarters" 6105 TENUR_05 = "Are the living quarters" 6106 TENUR_06 = "Are the living quarters" 6107 TENUR_07 = "Are the living quarters" 6108 TENUR_08 = "Are the living quarters" 6109 TENUR_09 = "Are the living quarters" 6110 TENUR_10 = "Are the living quarters" 6111 TENUR_11 = "Are the living quarters" 6112 TENUR_12 = "Are the living quarters" 6113 TENUR_13 = "Are the living quarters" 6114 TENUR_14 = "Are the living quarters" 6115 TENUR_15 = "Are the living quarters" 6116 TENUR_16 = "Are the living quarters" 6117 TENUR_17 = "Are the living quarters" 6118 TENUR_18 = "Are the living quarters" 6119 TENUR_19 = "Are the living quarters" 6120 TENUR_20 = "Are the living quarters" 6121 TENUR_21 = "Are the living quarters" 6122 TENUR_22 = "Are the living quarters" 6123 TENUR_23 = "Are the living quarters" 6124 TENUR_24 = "Are the living quarters" 6125 TENUR_25 = "Are the living quarters" 6126 TENUR_26 = "Are the living quarters" 6127 TENUR_27 = "Are the living quarters" 6128 TENUR_28 = "Are the living quarters" 6129 TENUR_29 = "Are the living quarters" 6130 TENUR_30 = "Are the living quarters" 6131 TENUR_31 = "Are the living quarters" 6132 TENUR_32 = "Are the living quarters" 6133 PUBHS_01 = "Is the residence in a public housing" 6134 PUBHS_02 = "Is the residence in a public housing" 6135 PUBHS_03 = "Is the residence in a public housing" 6136 PUBHS_04 = "Is the residence in a public housing" 6137 PUBHS_05 = "Is the residence in a public housing" 6138 PUBHS_06 = "Is the residence in a public housing" 6139 PUBHS_07 = "Is the residence in a public housing" 6140 PUBHS_08 = "Is the residence in a public housing" 6141 PUBHS_09 = "Is the residence in a public housing" 6142 PUBHS_10 = "Is the residence in a public housing" 6143 PUBHS_11 = "Is the residence in a public housing" 6144 PUBHS_12 = "Is the residence in a public housing" 6145 PUBHS_13 = "Is the residence in a public housing" 6146 PUBHS_14 = "Is the residence in a public housing" 6147 PUBHS_15 = "Is the residence in a public housing" 6148 PUBHS_16 = "Is the residence in a public housing" 6149 PUBHS_17 = "Is the residence in a public housing" 6150 PUBHS_18 = "Is the residence in a public housing" 6151 PUBHS_19 = "Is the residence in a public housing" 6152 PUBHS_20 = "Is the residence in a public housing" 6153 PUBHS_21 = "Is the residence in a public housing" 6154 PUBHS_22 = "Is the residence in a public housing" 6155 PUBHS_23 = "Is the residence in a public housing" 6156 PUBHS_24 = "Is the residence in a public housing" 110 The SAS System 13:10 Thursday, March 25, 2010 6157 PUBHS_25 = "Is the residence in a public housing" 6158 PUBHS_26 = "Is the residence in a public housing" 6159 PUBHS_27 = "Is the residence in a public housing" 6160 PUBHS_28 = "Is the residence in a public housing" 6161 PUBHS_29 = "Is the residence in a public housing" 6162 PUBHS_30 = "Is the residence in a public housing" 6163 PUBHS_31 = "Is the residence in a public housing" 6164 PUBHS_32 = "Is the residence in a public housing" 6165 LORNT_01 = "Are you paying lower rent because the" 6166 LORNT_02 = "Are you paying lower rent because the" 6167 LORNT_03 = "Are you paying lower rent because the" 6168 LORNT_04 = "Are you paying lower rent because the" 6169 LORNT_05 = "Are you paying lower rent because the" 6170 LORNT_06 = "Are you paying lower rent because the" 6171 LORNT_07 = "Are you paying lower rent because the" 6172 LORNT_08 = "Are you paying lower rent because the" 6173 LORNT_09 = "Are you paying lower rent because the" 6174 LORNT_10 = "Are you paying lower rent because the" 6175 LORNT_11 = "Are you paying lower rent because the" 6176 LORNT_12 = "Are you paying lower rent because the" 6177 LORNT_13 = "Are you paying lower rent because the" 6178 LORNT_14 = "Are you paying lower rent because the" 6179 LORNT_15 = "Are you paying lower rent because the" 6180 LORNT_16 = "Are you paying lower rent because the" 6181 LORNT_17 = "Are you paying lower rent because the" 6182 LORNT_18 = "Are you paying lower rent because the" 6183 LORNT_19 = "Are you paying lower rent because the" 6184 LORNT_20 = "Are you paying lower rent because the" 6185 LORNT_21 = "Are you paying lower rent because the" 6186 LORNT_22 = "Are you paying lower rent because the" 6187 LORNT_23 = "Are you paying lower rent because the" 6188 LORNT_24 = "Are you paying lower rent because the" 6189 LORNT_25 = "Are you paying lower rent because the" 6190 LORNT_26 = "Are you paying lower rent because the" 6191 LORNT_27 = "Are you paying lower rent because the" 6192 LORNT_28 = "Are you paying lower rent because the" 6193 LORNT_29 = "Are you paying lower rent because the" 6194 LORNT_30 = "Are you paying lower rent because the" 6195 LORNT_31 = "Are you paying lower rent because the" 6196 LORNT_32 = "Are you paying lower rent because the" 6197 ADDID51 = "Address ID. - This field identifies" 6198 ADDID52 = "Address ID. - This field identifies" 6199 ADDID53 = "Address ID. - This field identifies" 6200 ADDID54 = "Address ID. - This field identifies" 6201 ADDID55 = "Address ID. - This field identifies" 6202 ADDID56 = "Address ID. - This field identifies" 6203 ADDID57 = "Address ID. - This field identifies" 6204 ADDID58 = "Address ID. - This field identifies" 6205 ENRGY_Y1 = "Has this household received energy" 6206 ENRGY_Y2 = "Has this household received energy" 6207 ENRGY_Y3 = "Has this household received energy" 6208 ENRGY_Y4 = "Has this household received energy" 6209 ENRGY_Y5 = "Has this household received energy" 6210 ENRGY_Y6 = "Has this household received energy" 6211 ENRGY_Y7 = "Has this household received energy" 6212 ENRGY_Y8 = "Has this household received energy" 6213 Hs_ENRG1 = "What type of energy assistance was" 6214 Hs_ENRG2 = "What type of energy assistance was" 111 The SAS System 13:10 Thursday, March 25, 2010 6215 Hs_ENRG3 = "What type of energy assistance was" 6216 Hs_ENRG4 = "What type of energy assistance was" 6217 Hs_ENRG5 = "What type of energy assistance was" 6218 Hs_ENRG6 = "What type of energy assistance was" 6219 Hs_ENRG7 = "What type of energy assistance was" 6220 Hs_ENRG8 = "What type of energy assistance was" 6221 ENRGY_1 = "What was the total amount of the" 6222 ENRGY_2 = "What was the total amount of the" 6223 ENRGY_3 = "What was the total amount of the" 6224 ENRGY_4 = "What was the total amount of the" 6225 ENRGY_5 = "What was the total amount of the" 6226 ENRGY_6 = "What was the total amount of the" 6227 ENRGY_7 = "What was the total amount of the" 6228 ENRGY_8 = "What was the total amount of the" 6229 Hs_LUNC1 = "Are the lunches free or reduced-price?" 6230 Hs_LUNC2 = "Are the lunches free or reduced-price?" 6231 Hs_LUNC3 = "Are the lunches free or reduced-price?" 6232 Hs_LUNC4 = "Are the lunches free or reduced-price?" 6233 Hs_LUNC5 = "Are the lunches free or reduced-price?" 6234 Hs_LUNC6 = "Are the lunches free or reduced-price?" 6235 Hs_LUNC7 = "Are the lunches free or reduced-price?" 6236 Hs_LUNC8 = "Are the lunches free or reduced-price?" 6237 LUNCH_1 = "How many children?" 6238 LUNCH_2 = "How many children?" 6239 LUNCH_3 = "How many children?" 6240 LUNCH_4 = "How many children?" 6241 LUNCH_5 = "How many children?" 6242 LUNCH_6 = "How many children?" 6243 LUNCH_7 = "How many children?" 6244 LUNCH_8 = "How many children?" 6245 BREAK_1 = "Are the breakfasts free or reduced-pri" 6246 BREAK_2 = "Are the breakfasts free or reduced-pri" 6247 BREAK_3 = "Are the breakfasts free or reduced-pri" 6248 BREAK_4 = "Are the breakfasts free or reduced-pri" 6249 BREAK_5 = "Are the breakfasts free or reduced-pri" 6250 BREAK_6 = "Are the breakfasts free or reduced-pri" 6251 BREAK_7 = "Are the breakfasts free or reduced-pri" 6252 BREAK_8 = "Are the breakfasts free or reduced-pri" 6253 H8_48301 = "How many children?" 6254 H8_48302 = "How many children?" 6255 H8_48303 = "How many children?" 6256 H8_48304 = "How many children?" 6257 H8_48305 = "How many children?" 6258 H8_48306 = "How many children?" 6259 H8_48307 = "How many children?" 6260 H8_48308 = "How many children?" 6261 Hs_PUBHS = "Is this a public housing unit for whic" 6262 PUBRNAMT = "What is the monthly rent for this publ" 6263 UTLPAYYN = "Is there a utility payment for this un" 6264 FULLRENT = "What would the monthly rent be on this" 6265 STATE_1 = "FIPS State code from the GRIN file" 6266 STATE_2 = "FIPS State code from the GRIN file" 6267 STATE_3 = "FIPS State code from the GRIN file" 6268 STATE_4 = "FIPS State code from the GRIN file" 6269 STATE_5 = "FIPS State code from the GRIN file" 6270 STATE_6 = "FIPS State code from the GRIN file" 6271 STATE_7 = "FIPS State code from the GRIN file" 6272 STATE_8 = "FIPS State code from the GRIN file" 112 The SAS System 13:10 Thursday, March 25, 2010 6273 METRO_1 = "MSA status" 6274 METRO_2 = "MSA status" 6275 METRO_3 = "MSA status" 6276 METRO_4 = "MSA status" 6277 METRO_5 = "MSA status" 6278 METRO_6 = "MSA status" 6279 METRO_7 = "MSA status" 6280 METRO_8 = "MSA status" 6281 SC1332 = "How long did ... serve on active" 6282 SC1334 = "Does ... have a service connected" 6283 SC1336 = "What is ... 's VA percent disability" 6284 SC1346 = "What is the reason ... is getting" 6285 SC1348 = "Is there another reason ... receives" 6286 SC1360 = "Has ... ever retired from a job or" 6287 SC1418 = "Has ... ever been widowed or divorced?" 6288 SC1456 = "Did ... 's late husband die while in" 6289 SC1466_2 = "Last two characters of claim number fr" 6290 SC1468 = "Type of Medicare coverage" 6291 SC1472 = "Does ... 's Medicare help pay for doct" 6292 DISAB = "Does ... have a physical, mental, or" 6293 ATT_SCH1 = "During the past 4 months did ... atten" 6294 ATT_SCH2 = "During the past 4 months did ... atten" 6295 ATT_SCH3 = "During the past 4 months did ... atten" 6296 ATT_SCH4 = "During the past 4 months did ... atten" 6297 ATT_SCH5 = "During the past 4 months did ... atten" 6298 ATT_SCH6 = "During the past 4 months did ... atten" 6299 ATT_SCH7 = "During the past 4 months did ... atten" 6300 ATT_SCH8 = "During the past 4 months did ... atten" 6301 SC168201 = "How much was ... 's total tuition and" 6302 SC168202 = "How much was ... 's total tuition and" 6303 SC168203 = "How much was ... 's total tuition and" 6304 SC168204 = "How much was ... 's total tuition and" 6305 SC168205 = "How much was ... 's total tuition and" 6306 SC168206 = "How much was ... 's total tuition and" 6307 SC168207 = "How much was ... 's total tuition and" 6308 SC168208 = "How much was ... 's total tuition and" 6309 SC168209 = "How much was ... 's total tuition and" 6310 SC168210 = "How much was ... 's total tuition and" 6311 SC168211 = "How much was ... 's total tuition and" 6312 SC168212 = "How much was ... 's total tuition and" 6313 SC168213 = "How much was ... 's total tuition and" 6314 SC168214 = "How much was ... 's total tuition and" 6315 SC168215 = "How much was ... 's total tuition and" 6316 SC168216 = "How much was ... 's total tuition and" 6317 SC168217 = "How much was ... 's total tuition and" 6318 SC168218 = "How much was ... 's total tuition and" 6319 SC168219 = "How much was ... 's total tuition and" 6320 SC168220 = "How much was ... 's total tuition and" 6321 SC168221 = "How much was ... 's total tuition and" 6322 SC168222 = "How much was ... 's total tuition and" 6323 SC168223 = "How much was ... 's total tuition and" 6324 SC168224 = "How much was ... 's total tuition and" 6325 SC168225 = "How much was ... 's total tuition and" 6326 SC168226 = "How much was ... 's total tuition and" 6327 SC168227 = "How much was ... 's total tuition and" 6328 SC168228 = "How much was ... 's total tuition and" 6329 SC168229 = "How much was ... 's total tuition and" 6330 SC168230 = "How much was ... 's total tuition and" 113 The SAS System 13:10 Thursday, March 25, 2010 6331 SC168231 = "How much was ... 's total tuition and" 6332 SC168232 = "How much was ... 's total tuition and" 6333 SC169001 = "What was the total amount of... 's" 6334 SC169002 = "What was the total amount of... 's" 6335 SC169003 = "What was the total amount of... 's" 6336 SC169004 = "What was the total amount of... 's" 6337 SC169005 = "What was the total amount of... 's" 6338 SC169006 = "What was the total amount of... 's" 6339 SC169007 = "What was the total amount of... 's" 6340 SC169008 = "What was the total amount of... 's" 6341 SC169009 = "What was the total amount of... 's" 6342 SC169010 = "What was the total amount of... 's" 6343 SC169011 = "What was the total amount of... 's" 6344 SC169012 = "What was the total amount of... 's" 6345 SC169013 = "What was the total amount of... 's" 6346 SC169014 = "What was the total amount of... 's" 6347 SC169015 = "What was the total amount of... 's" 6348 SC169016 = "What was the total amount of... 's" 6349 SC169017 = "What was the total amount of... 's" 6350 SC169018 = "What was the total amount of... 's" 6351 SC169019 = "What was the total amount of... 's" 6352 SC169020 = "What was the total amount of... 's" 6353 SC169021 = "What was the total amount of... 's" 6354 SC169022 = "What was the total amount of... 's" 6355 SC169023 = "What was the total amount of... 's" 6356 SC169024 = "What was the total amount of... 's" 6357 SC169025 = "What was the total amount of... 's" 6358 SC169026 = "What was the total amount of... 's" 6359 SC169027 = "What was the total amount of... 's" 6360 SC169028 = "What was the total amount of... 's" 6361 SC169029 = "What was the total amount of... 's" 6362 SC169030 = "What was the total amount of... 's" 6363 SC169031 = "What was the total amount of... 's" 6364 SC169032 = "What was the total amount of... 's" 6365 PP_INC01 = "Total persons income" 6366 PP_INC02 = "Total persons income" 6367 PP_INC03 = "Total persons income" 6368 PP_INC04 = "Total persons income" 6369 PP_INC05 = "Total persons income" 6370 PP_INC06 = "Total persons income" 6371 PP_INC07 = "Total persons income" 6372 PP_INC08 = "Total persons income" 6373 PP_INC09 = "Total persons income" 6374 PP_INC10 = "Total persons income" 6375 PP_INC11 = "Total persons income" 6376 PP_INC12 = "Total persons income" 6377 PP_INC13 = "Total persons income" 6378 PP_INC14 = "Total persons income" 6379 PP_INC15 = "Total persons income" 6380 PP_INC16 = "Total persons income" 6381 PP_INC17 = "Total persons income" 6382 PP_INC18 = "Total persons income" 6383 PP_INC19 = "Total persons income" 6384 PP_INC20 = "Total persons income" 6385 PP_INC21 = "Total persons income" 6386 PP_INC22 = "Total persons income" 6387 PP_INC23 = "Total persons income" 6388 PP_INC24 = "Total persons income" 114 The SAS System 13:10 Thursday, March 25, 2010 6389 PP_INC25 = "Total persons income" 6390 PP_INC26 = "Total persons income" 6391 PP_INC27 = "Total persons income" 6392 PP_INC28 = "Total persons income" 6393 PP_INC29 = "Total persons income" 6394 PP_INC30 = "Total persons income" 6395 PP_INC31 = "Total persons income" 6396 PP_INC32 = "Total persons income" 6397 PP_EAR01 = "Total persons earnings" 6398 PP_EAR02 = "Total persons earnings" 6399 PP_EAR03 = "Total persons earnings" 6400 PP_EAR04 = "Total persons earnings" 6401 PP_EAR05 = "Total persons earnings" 6402 PP_EAR06 = "Total persons earnings" 6403 PP_EAR07 = "Total persons earnings" 6404 PP_EAR08 = "Total persons earnings" 6405 PP_EAR09 = "Total persons earnings" 6406 PP_EAR10 = "Total persons earnings" 6407 PP_EAR11 = "Total persons earnings" 6408 PP_EAR12 = "Total persons earnings" 6409 PP_EAR13 = "Total persons earnings" 6410 PP_EAR14 = "Total persons earnings" 6411 PP_EAR15 = "Total persons earnings" 6412 PP_EAR16 = "Total persons earnings" 6413 PP_EAR17 = "Total persons earnings" 6414 PP_EAR18 = "Total persons earnings" 6415 PP_EAR19 = "Total persons earnings" 6416 PP_EAR20 = "Total persons earnings" 6417 PP_EAR21 = "Total persons earnings" 6418 PP_EAR22 = "Total persons earnings" 6419 PP_EAR23 = "Total persons earnings" 6420 PP_EAR24 = "Total persons earnings" 6421 PP_EAR25 = "Total persons earnings" 6422 PP_EAR26 = "Total persons earnings" 6423 PP_EAR27 = "Total persons earnings" 6424 PP_EAR28 = "Total persons earnings" 6425 PP_EAR29 = "Total persons earnings" 6426 PP_EAR30 = "Total persons earnings" 6427 PP_EAR31 = "Total persons earnings" 6428 PP_EAR32 = "Total persons earnings" 6429 FF_INC01 = "Total family income" 6430 FF_INC02 = "Total family income" 6431 FF_INC03 = "Total family income" 6432 FF_INC04 = "Total family income" 6433 FF_INC05 = "Total family income" 6434 FF_INC06 = "Total family income" 6435 FF_INC07 = "Total family income" 6436 FF_INC08 = "Total family income" 6437 FF_INC09 = "Total family income" 6438 FF_INC10 = "Total family income" 6439 FF_INC11 = "Total family income" 6440 FF_INC12 = "Total family income" 6441 FF_INC13 = "Total family income" 6442 FF_INC14 = "Total family income" 6443 FF_INC15 = "Total family income" 6444 FF_INC16 = "Total family income" 6445 FF_INC17 = "Total family income" 6446 FF_INC18 = "Total family income" 115 The SAS System 13:10 Thursday, March 25, 2010 6447 FF_INC19 = "Total family income" 6448 FF_INC20 = "Total family income" 6449 FF_INC21 = "Total family income" 6450 FF_INC22 = "Total family income" 6451 FF_INC23 = "Total family income" 6452 FF_INC24 = "Total family income" 6453 FF_INC25 = "Total family income" 6454 FF_INC26 = "Total family income" 6455 FF_INC27 = "Total family income" 6456 FF_INC28 = "Total family income" 6457 FF_INC29 = "Total family income" 6458 FF_INC30 = "Total family income" 6459 FF_INC31 = "Total family income" 6460 FF_INC32 = "Total family income" 6461 HH_INC01 = "Total household income" 6462 HH_INC02 = "Total household income" 6463 HH_INC03 = "Total household income" 6464 HH_INC04 = "Total household income" 6465 HH_INC05 = "Total household income" 6466 HH_INC06 = "Total household income" 6467 HH_INC07 = "Total household income" 6468 HH_INC08 = "Total household income" 6469 HH_INC09 = "Total household income" 6470 HH_INC10 = "Total household income" 6471 HH_INC11 = "Total household income" 6472 HH_INC12 = "Total household income" 6473 HH_INC13 = "Total household income" 6474 HH_INC14 = "Total household income" 6475 HH_INC15 = "Total household income" 6476 HH_INC16 = "Total household income" 6477 HH_INC17 = "Total household income" 6478 HH_INC18 = "Total household income" 6479 HH_INC19 = "Total household income" 6480 HH_INC20 = "Total household income" 6481 HH_INC21 = "Total household income" 6482 HH_INC22 = "Total household income" 6483 HH_INC23 = "Total household income" 6484 HH_INC24 = "Total household income" 6485 HH_INC25 = "Total household income" 6486 HH_INC26 = "Total household income" 6487 HH_INC27 = "Total household income" 6488 HH_INC28 = "Total household income" 6489 HH_INC29 = "Total household income" 6490 HH_INC30 = "Total household income" 6491 HH_INC31 = "Total household income" 6492 HH_INC32 = "Total household income" 6493 FF_POV01 = "Low income cutoff for this person's" 6494 FF_POV02 = "Low income cutoff for this person's" 6495 FF_POV03 = "Low income cutoff for this person's" 6496 FF_POV04 = "Low income cutoff for this person's" 6497 FF_POV05 = "Low income cutoff for this person's" 6498 FF_POV06 = "Low income cutoff for this person's" 6499 FF_POV07 = "Low income cutoff for this person's" 6500 FF_POV08 = "Low income cutoff for this person's" 6501 FF_POV09 = "Low income cutoff for this person's" 6502 FF_POV10 = "Low income cutoff for this person's" 6503 FF_POV11 = "Low income cutoff for this person's" 6504 FF_POV12 = "Low income cutoff for this person's" 116 The SAS System 13:10 Thursday, March 25, 2010 6505 FF_POV13 = "Low income cutoff for this person's" 6506 FF_POV14 = "Low income cutoff for this person's" 6507 FF_POV15 = "Low income cutoff for this person's" 6508 FF_POV16 = "Low income cutoff for this person's" 6509 FF_POV17 = "Low income cutoff for this person's" 6510 FF_POV18 = "Low income cutoff for this person's" 6511 FF_POV19 = "Low income cutoff for this person's" 6512 FF_POV20 = "Low income cutoff for this person's" 6513 FF_POV21 = "Low income cutoff for this person's" 6514 FF_POV22 = "Low income cutoff for this person's" 6515 FF_POV23 = "Low income cutoff for this person's" 6516 FF_POV24 = "Low income cutoff for this person's" 6517 FF_POV25 = "Low income cutoff for this person's" 6518 FF_POV26 = "Low income cutoff for this person's" 6519 FF_POV27 = "Low income cutoff for this person's" 6520 FF_POV28 = "Low income cutoff for this person's" 6521 FF_POV29 = "Low income cutoff for this person's" 6522 FF_POV30 = "Low income cutoff for this person's" 6523 FF_POV31 = "Low income cutoff for this person's" 6524 FF_POV32 = "Low income cutoff for this person's" 6525 ESR_01 = "Employment status recode for each mont" 6526 ESR_02 = "Employment status recode for each mont" 6527 ESR_03 = "Employment status recode for each mont" 6528 ESR_04 = "Employment status recode for each mont" 6529 ESR_05 = "Employment status recode for each mont" 6530 ESR_06 = "Employment status recode for each mont" 6531 ESR_07 = "Employment status recode for each mont" 6532 ESR_08 = "Employment status recode for each mont" 6533 ESR_09 = "Employment status recode for each mont" 6534 ESR_10 = "Employment status recode for each mont" 6535 ESR_11 = "Employment status recode for each mont" 6536 ESR_12 = "Employment status recode for each mont" 6537 ESR_13 = "Employment status recode for each mont" 6538 ESR_14 = "Employment status recode for each mont" 6539 ESR_15 = "Employment status recode for each mont" 6540 ESR_16 = "Employment status recode for each mont" 6541 ESR_17 = "Employment status recode for each mont" 6542 ESR_18 = "Employment status recode for each mont" 6543 ESR_19 = "Employment status recode for each mont" 6544 ESR_20 = "Employment status recode for each mont" 6545 ESR_21 = "Employment status recode for each mont" 6546 ESR_22 = "Employment status recode for each mont" 6547 ESR_23 = "Employment status recode for each mont" 6548 ESR_24 = "Employment status recode for each mont" 6549 ESR_25 = "Employment status recode for each mont" 6550 ESR_26 = "Employment status recode for each mont" 6551 ESR_27 = "Employment status recode for each mont" 6552 ESR_28 = "Employment status recode for each mont" 6553 ESR_29 = "Employment status recode for each mont" 6554 ESR_30 = "Employment status recode for each mont" 6555 ESR_31 = "Employment status recode for each mont" 6556 ESR_32 = "Employment status recode for each mont" 6557 WKSPER01 = "Number of weeks in each month of the" 6558 WKSPER02 = "Number of weeks in each month of the" 6559 WKSPER03 = "Number of weeks in each month of the" 6560 WKSPER04 = "Number of weeks in each month of the" 6561 WKSPER05 = "Number of weeks in each month of the" 6562 WKSPER06 = "Number of weeks in each month of the" 117 The SAS System 13:10 Thursday, March 25, 2010 6563 WKSPER07 = "Number of weeks in each month of the" 6564 WKSPER08 = "Number of weeks in each month of the" 6565 WKSPER09 = "Number of weeks in each month of the" 6566 WKSPER10 = "Number of weeks in each month of the" 6567 WKSPER11 = "Number of weeks in each month of the" 6568 WKSPER12 = "Number of weeks in each month of the" 6569 WKSPER13 = "Number of weeks in each month of the" 6570 WKSPER14 = "Number of weeks in each month of the" 6571 WKSPER15 = "Number of weeks in each month of the" 6572 WKSPER16 = "Number of weeks in each month of the" 6573 WKSPER17 = "Number of weeks in each month of the" 6574 WKSPER18 = "Number of weeks in each month of the" 6575 WKSPER19 = "Number of weeks in each month of the" 6576 WKSPER20 = "Number of weeks in each month of the" 6577 WKSPER21 = "Number of weeks in each month of the" 6578 WKSPER22 = "Number of weeks in each month of the" 6579 WKSPER23 = "Number of weeks in each month of the" 6580 WKSPER24 = "Number of weeks in each month of the" 6581 WKSPER25 = "Number of weeks in each month of the" 6582 WKSPER26 = "Number of weeks in each month of the" 6583 WKSPER27 = "Number of weeks in each month of the" 6584 WKSPER28 = "Number of weeks in each month of the" 6585 WKSPER29 = "Number of weeks in each month of the" 6586 WKSPER30 = "Number of weeks in each month of the" 6587 WKSPER31 = "Number of weeks in each month of the" 6588 WKSPER32 = "Number of weeks in each month of the" 6589 WKSJB_01 = "Number of weeks with a job or business" 6590 WKSJB_02 = "Number of weeks with a job or business" 6591 WKSJB_03 = "Number of weeks with a job or business" 6592 WKSJB_04 = "Number of weeks with a job or business" 6593 WKSJB_05 = "Number of weeks with a job or business" 6594 WKSJB_06 = "Number of weeks with a job or business" 6595 WKSJB_07 = "Number of weeks with a job or business" 6596 WKSJB_08 = "Number of weeks with a job or business" 6597 WKSJB_09 = "Number of weeks with a job or business" 6598 WKSJB_10 = "Number of weeks with a job or business" 6599 WKSJB_11 = "Number of weeks with a job or business" 6600 WKSJB_12 = "Number of weeks with a job or business" 6601 WKSJB_13 = "Number of weeks with a job or business" 6602 WKSJB_14 = "Number of weeks with a job or business" 6603 WKSJB_15 = "Number of weeks with a job or business" 6604 WKSJB_16 = "Number of weeks with a job or business" 6605 WKSJB_17 = "Number of weeks with a job or business" 6606 WKSJB_18 = "Number of weeks with a job or business" 6607 WKSJB_19 = "Number of weeks with a job or business" 6608 WKSJB_20 = "Number of weeks with a job or business" 6609 WKSJB_21 = "Number of weeks with a job or business" 6610 WKSJB_22 = "Number of weeks with a job or business" 6611 WKSJB_23 = "Number of weeks with a job or business" 6612 WKSJB_24 = "Number of weeks with a job or business" 6613 WKSJB_25 = "Number of weeks with a job or business" 6614 WKSJB_26 = "Number of weeks with a job or business" 6615 WKSJB_27 = "Number of weeks with a job or business" 6616 WKSJB_28 = "Number of weeks with a job or business" 6617 WKSJB_29 = "Number of weeks with a job or business" 6618 WKSJB_30 = "Number of weeks with a job or business" 6619 WKSJB_31 = "Number of weeks with a job or business" 6620 WKSJB_32 = "Number of weeks with a job or business" 118 The SAS System 13:10 Thursday, March 25, 2010 6621 MTHWOP01 = "Number of weeks without pay, at a job" 6622 MTHWOP02 = "Number of weeks without pay, at a job" 6623 MTHWOP03 = "Number of weeks without pay, at a job" 6624 MTHWOP04 = "Number of weeks without pay, at a job" 6625 MTHWOP05 = "Number of weeks without pay, at a job" 6626 MTHWOP06 = "Number of weeks without pay, at a job" 6627 MTHWOP07 = "Number of weeks without pay, at a job" 6628 MTHWOP08 = "Number of weeks without pay, at a job" 6629 MTHWOP09 = "Number of weeks without pay, at a job" 6630 MTHWOP10 = "Number of weeks without pay, at a job" 6631 MTHWOP11 = "Number of weeks without pay, at a job" 6632 MTHWOP12 = "Number of weeks without pay, at a job" 6633 MTHWOP13 = "Number of weeks without pay, at a job" 6634 MTHWOP14 = "Number of weeks without pay, at a job" 6635 MTHWOP15 = "Number of weeks without pay, at a job" 6636 MTHWOP16 = "Number of weeks without pay, at a job" 6637 MTHWOP17 = "Number of weeks without pay, at a job" 6638 MTHWOP18 = "Number of weeks without pay, at a job" 6639 MTHWOP19 = "Number of weeks without pay, at a job" 6640 MTHWOP20 = "Number of weeks without pay, at a job" 6641 MTHWOP21 = "Number of weeks without pay, at a job" 6642 MTHWOP22 = "Number of weeks without pay, at a job" 6643 MTHWOP23 = "Number of weeks without pay, at a job" 6644 MTHWOP24 = "Number of weeks without pay, at a job" 6645 MTHWOP25 = "Number of weeks without pay, at a job" 6646 MTHWOP26 = "Number of weeks without pay, at a job" 6647 MTHWOP27 = "Number of weeks without pay, at a job" 6648 MTHWOP28 = "Number of weeks without pay, at a job" 6649 MTHWOP29 = "Number of weeks without pay, at a job" 6650 MTHWOP30 = "Number of weeks without pay, at a job" 6651 MTHWOP31 = "Number of weeks without pay, at a job" 6652 MTHWOP32 = "Number of weeks without pay, at a job" 6653 WEEKSL01 = "Number of weeks looking for work or" 6654 WEEKSL02 = "Number of weeks looking for work or" 6655 WEEKSL03 = "Number of weeks looking for work or" 6656 WEEKSL04 = "Number of weeks looking for work or" 6657 WEEKSL05 = "Number of weeks looking for work or" 6658 WEEKSL06 = "Number of weeks looking for work or" 6659 WEEKSL07 = "Number of weeks looking for work or" 6660 WEEKSL08 = "Number of weeks looking for work or" 6661 WEEKSL09 = "Number of weeks looking for work or" 6662 WEEKSL10 = "Number of weeks looking for work or" 6663 WEEKSL11 = "Number of weeks looking for work or" 6664 WEEKSL12 = "Number of weeks looking for work or" 6665 WEEKSL13 = "Number of weeks looking for work or" 6666 WEEKSL14 = "Number of weeks looking for work or" 6667 WEEKSL15 = "Number of weeks looking for work or" 6668 WEEKSL16 = "Number of weeks looking for work or" 6669 WEEKSL17 = "Number of weeks looking for work or" 6670 WEEKSL18 = "Number of weeks looking for work or" 6671 WEEKSL19 = "Number of weeks looking for work or" 6672 WEEKSL20 = "Number of weeks looking for work or" 6673 WEEKSL21 = "Number of weeks looking for work or" 6674 WEEKSL22 = "Number of weeks looking for work or" 6675 WEEKSL23 = "Number of weeks looking for work or" 6676 WEEKSL24 = "Number of weeks looking for work or" 6677 WEEKSL25 = "Number of weeks looking for work or" 6678 WEEKSL26 = "Number of weeks looking for work or" 119 The SAS System 13:10 Thursday, March 25, 2010 6679 WEEKSL27 = "Number of weeks looking for work or" 6680 WEEKSL28 = "Number of weeks looking for work or" 6681 WEEKSL29 = "Number of weeks looking for work or" 6682 WEEKSL30 = "Number of weeks looking for work or" 6683 WEEKSL31 = "Number of weeks looking for work or" 6684 WEEKSL32 = "Number of weeks looking for work or" 6685 SC12301 = "In the weeks that ... worked during th" 6686 SC12302 = "In the weeks that ... worked during th" 6687 SC12303 = "In the weeks that ... worked during th" 6688 SC12304 = "In the weeks that ... worked during th" 6689 SC12305 = "In the weeks that ... worked during th" 6690 SC12306 = "In the weeks that ... worked during th" 6691 SC12307 = "In the weeks that ... worked during th" 6692 SC12308 = "In the weeks that ... worked during th" 6693 JOBID201 = "Check Item E3" 6694 JOBID202 = "Check Item E3" 6695 JOBID203 = "Check Item E3" 6696 JOBID204 = "Check Item E3" 6697 JOBID205 = "Check Item E3" 6698 JOBID206 = "Check Item E3" 6699 JOBID207 = "Check Item E3" 6700 JOBID208 = "Check Item E3" 6701 JOBID209 = "Check Item E3" 6702 JOBID210 = "Check Item E3" 6703 JOBID211 = "Check Item E3" 6704 JOBID212 = "Check Item E3" 6705 JOBID213 = "Check Item E3" 6706 JOBID214 = "Check Item E3" 6707 JOBID215 = "Check Item E3" 6708 JOBID216 = "Check Item E3" 6709 JOBID217 = "Check Item E3" 6710 JOBID218 = "Check Item E3" 6711 JOBID219 = "Check Item E3" 6712 JOBID220 = "Check Item E3" 6713 JOBID221 = "Check Item E3" 6714 JOBID222 = "Check Item E3" 6715 JOBID223 = "Check Item E3" 6716 JOBID224 = "Check Item E3" 6717 JOBID225 = "Check Item E3" 6718 JOBID226 = "Check Item E3" 6719 JOBID227 = "Check Item E3" 6720 JOBID228 = "Check Item E3" 6721 JOBID229 = "Check Item E3" 6722 JOBID230 = "Check Item E3" 6723 JOBID231 = "Check Item E3" 6724 JOBID232 = "Check Item E3" 6725 CLSWK201 = "Was ... an employee of-" 6726 CLSWK202 = "Was ... an employee of-" 6727 CLSWK203 = "Was ... an employee of-" 6728 CLSWK204 = "Was ... an employee of-" 6729 CLSWK205 = "Was ... an employee of-" 6730 CLSWK206 = "Was ... an employee of-" 6731 CLSWK207 = "Was ... an employee of-" 6732 CLSWK208 = "Was ... an employee of-" 6733 CLSWK209 = "Was ... an employee of-" 6734 CLSWK210 = "Was ... an employee of-" 6735 CLSWK211 = "Was ... an employee of-" 6736 CLSWK212 = "Was ... an employee of-" 120 The SAS System 13:10 Thursday, March 25, 2010 6737 CLSWK213 = "Was ... an employee of-" 6738 CLSWK214 = "Was ... an employee of-" 6739 CLSWK215 = "Was ... an employee of-" 6740 CLSWK216 = "Was ... an employee of-" 6741 CLSWK217 = "Was ... an employee of-" 6742 CLSWK218 = "Was ... an employee of-" 6743 CLSWK219 = "Was ... an employee of-" 6744 CLSWK220 = "Was ... an employee of-" 6745 CLSWK221 = "Was ... an employee of-" 6746 CLSWK222 = "Was ... an employee of-" 6747 CLSWK223 = "Was ... an employee of-" 6748 CLSWK224 = "Was ... an employee of-" 6749 CLSWK225 = "Was ... an employee of-" 6750 CLSWK226 = "Was ... an employee of-" 6751 CLSWK227 = "Was ... an employee of-" 6752 CLSWK228 = "Was ... an employee of-" 6753 CLSWK229 = "Was ... an employee of-" 6754 CLSWK230 = "Was ... an employee of-" 6755 CLSWK231 = "Was ... an employee of-" 6756 CLSWK232 = "Was ... an employee of-" 6757 WS2_OC01 = "Edited and imputed 3-digit occupation " 6758 WS2_OC02 = "Edited and imputed 3-digit occupation " 6759 WS2_OC03 = "Edited and imputed 3-digit occupation " 6760 WS2_OC04 = "Edited and imputed 3-digit occupation " 6761 WS2_OC05 = "Edited and imputed 3-digit occupation " 6762 WS2_OC06 = "Edited and imputed 3-digit occupation " 6763 WS2_OC07 = "Edited and imputed 3-digit occupation " 6764 WS2_OC08 = "Edited and imputed 3-digit occupation " 6765 WS2_OC09 = "Edited and imputed 3-digit occupation " 6766 WS2_OC10 = "Edited and imputed 3-digit occupation " 6767 WS2_OC11 = "Edited and imputed 3-digit occupation " 6768 WS2_OC12 = "Edited and imputed 3-digit occupation " 6769 WS2_OC13 = "Edited and imputed 3-digit occupation " 6770 WS2_OC14 = "Edited and imputed 3-digit occupation " 6771 WS2_OC15 = "Edited and imputed 3-digit occupation " 6772 WS2_OC16 = "Edited and imputed 3-digit occupation " 6773 WS2_OC17 = "Edited and imputed 3-digit occupation " 6774 WS2_OC18 = "Edited and imputed 3-digit occupation " 6775 WS2_OC19 = "Edited and imputed 3-digit occupation " 6776 WS2_OC20 = "Edited and imputed 3-digit occupation " 6777 WS2_OC21 = "Edited and imputed 3-digit occupation " 6778 WS2_OC22 = "Edited and imputed 3-digit occupation " 6779 WS2_OC23 = "Edited and imputed 3-digit occupation " 6780 WS2_OC24 = "Edited and imputed 3-digit occupation " 6781 WS2_OC25 = "Edited and imputed 3-digit occupation " 6782 WS2_OC26 = "Edited and imputed 3-digit occupation " 6783 WS2_OC27 = "Edited and imputed 3-digit occupation " 6784 WS2_OC28 = "Edited and imputed 3-digit occupation " 6785 WS2_OC29 = "Edited and imputed 3-digit occupation " 6786 WS2_OC30 = "Edited and imputed 3-digit occupation " 6787 WS2_OC31 = "Edited and imputed 3-digit occupation " 6788 WS2_OC32 = "Edited and imputed 3-digit occupation " 6789 WS2_IN01 = "Edited and imputed 3-digit industry co" 6790 WS2_IN02 = "Edited and imputed 3-digit industry co" 6791 WS2_IN03 = "Edited and imputed 3-digit industry co" 6792 WS2_IN04 = "Edited and imputed 3-digit industry co" 6793 WS2_IN05 = "Edited and imputed 3-digit industry co" 6794 WS2_IN06 = "Edited and imputed 3-digit industry co" 121 The SAS System 13:10 Thursday, March 25, 2010 6795 WS2_IN07 = "Edited and imputed 3-digit industry co" 6796 WS2_IN08 = "Edited and imputed 3-digit industry co" 6797 WS2_IN09 = "Edited and imputed 3-digit industry co" 6798 WS2_IN10 = "Edited and imputed 3-digit industry co" 6799 WS2_IN11 = "Edited and imputed 3-digit industry co" 6800 WS2_IN12 = "Edited and imputed 3-digit industry co" 6801 WS2_IN13 = "Edited and imputed 3-digit industry co" 6802 WS2_IN14 = "Edited and imputed 3-digit industry co" 6803 WS2_IN15 = "Edited and imputed 3-digit industry co" 6804 WS2_IN16 = "Edited and imputed 3-digit industry co" 6805 WS2_IN17 = "Edited and imputed 3-digit industry co" 6806 WS2_IN18 = "Edited and imputed 3-digit industry co" 6807 WS2_IN19 = "Edited and imputed 3-digit industry co" 6808 WS2_IN20 = "Edited and imputed 3-digit industry co" 6809 WS2_IN21 = "Edited and imputed 3-digit industry co" 6810 WS2_IN22 = "Edited and imputed 3-digit industry co" 6811 WS2_IN23 = "Edited and imputed 3-digit industry co" 6812 WS2_IN24 = "Edited and imputed 3-digit industry co" 6813 WS2_IN25 = "Edited and imputed 3-digit industry co" 6814 WS2_IN26 = "Edited and imputed 3-digit industry co" 6815 WS2_IN27 = "Edited and imputed 3-digit industry co" 6816 WS2_IN28 = "Edited and imputed 3-digit industry co" 6817 WS2_IN29 = "Edited and imputed 3-digit industry co" 6818 WS2_IN30 = "Edited and imputed 3-digit industry co" 6819 WS2_IN31 = "Edited and imputed 3-digit industry co" 6820 WS2_IN32 = "Edited and imputed 3-digit industry co" 6821 WS2_WK01 = "Number of weeks employed each month" 6822 WS2_WK02 = "Number of weeks employed each month" 6823 WS2_WK03 = "Number of weeks employed each month" 6824 WS2_WK04 = "Number of weeks employed each month" 6825 WS2_WK05 = "Number of weeks employed each month" 6826 WS2_WK06 = "Number of weeks employed each month" 6827 WS2_WK07 = "Number of weeks employed each month" 6828 WS2_WK08 = "Number of weeks employed each month" 6829 WS2_WK09 = "Number of weeks employed each month" 6830 WS2_WK10 = "Number of weeks employed each month" 6831 WS2_WK11 = "Number of weeks employed each month" 6832 WS2_WK12 = "Number of weeks employed each month" 6833 WS2_WK13 = "Number of weeks employed each month" 6834 WS2_WK14 = "Number of weeks employed each month" 6835 WS2_WK15 = "Number of weeks employed each month" 6836 WS2_WK16 = "Number of weeks employed each month" 6837 WS2_WK17 = "Number of weeks employed each month" 6838 WS2_WK18 = "Number of weeks employed each month" 6839 WS2_WK19 = "Number of weeks employed each month" 6840 WS2_WK20 = "Number of weeks employed each month" 6841 WS2_WK21 = "Number of weeks employed each month" 6842 WS2_WK22 = "Number of weeks employed each month" 6843 WS2_WK23 = "Number of weeks employed each month" 6844 WS2_WK24 = "Number of weeks employed each month" 6845 WS2_WK25 = "Number of weeks employed each month" 6846 WS2_WK26 = "Number of weeks employed each month" 6847 WS2_WK27 = "Number of weeks employed each month" 6848 WS2_WK28 = "Number of weeks employed each month" 6849 WS2_WK29 = "Number of weeks employed each month" 6850 WS2_WK30 = "Number of weeks employed each month" 6851 WS2_WK31 = "Number of weeks employed each month" 6852 WS2_WK32 = "Number of weeks employed each month" 122 The SAS System 13:10 Thursday, March 25, 2010 6853 WS2_AM01 = "What is the amount of the earnings fro" 6854 WS2_AM02 = "What is the amount of the earnings fro" 6855 WS2_AM03 = "What is the amount of the earnings fro" 6856 WS2_AM04 = "What is the amount of the earnings fro" 6857 WS2_AM05 = "What is the amount of the earnings fro" 6858 WS2_AM06 = "What is the amount of the earnings fro" 6859 WS2_AM07 = "What is the amount of the earnings fro" 6860 WS2_AM08 = "What is the amount of the earnings fro" 6861 WS2_AM09 = "What is the amount of the earnings fro" 6862 WS2_AM10 = "What is the amount of the earnings fro" 6863 WS2_AM11 = "What is the amount of the earnings fro" 6864 WS2_AM12 = "What is the amount of the earnings fro" 6865 WS2_AM13 = "What is the amount of the earnings fro" 6866 WS2_AM14 = "What is the amount of the earnings fro" 6867 WS2_AM15 = "What is the amount of the earnings fro" 6868 WS2_AM16 = "What is the amount of the earnings fro" 6869 WS2_AM17 = "What is the amount of the earnings fro" 6870 WS2_AM18 = "What is the amount of the earnings fro" 6871 WS2_AM19 = "What is the amount of the earnings fro" 6872 WS2_AM20 = "What is the amount of the earnings fro" 6873 WS2_AM21 = "What is the amount of the earnings fro" 6874 WS2_AM22 = "What is the amount of the earnings fro" 6875 WS2_AM23 = "What is the amount of the earnings fro" 6876 WS2_AM24 = "What is the amount of the earnings fro" 6877 WS2_AM25 = "What is the amount of the earnings fro" 6878 WS2_AM26 = "What is the amount of the earnings fro" 6879 WS2_AM27 = "What is the amount of the earnings fro" 6880 WS2_AM28 = "What is the amount of the earnings fro" 6881 WS2_AM29 = "What is the amount of the earnings fro" 6882 WS2_AM30 = "What is the amount of the earnings fro" 6883 WS2_AM31 = "What is the amount of the earnings fro" 6884 WS2_AM32 = "What is the amount of the earnings fro" 6885 W2124_01 = "How many hours per week did .." 6886 W2124_02 = "How many hours per week did .." 6887 W2124_03 = "How many hours per week did .." 6888 W2124_04 = "How many hours per week did .." 6889 W2124_05 = "How many hours per week did .." 6890 W2124_06 = "How many hours per week did .." 6891 W2124_07 = "How many hours per week did .." 6892 W2124_08 = "How many hours per week did .." 6893 W2124_09 = "How many hours per week did .." 6894 W2124_10 = "How many hours per week did .." 6895 W2124_11 = "How many hours per week did .." 6896 W2124_12 = "How many hours per week did .." 6897 W2124_13 = "How many hours per week did .." 6898 W2124_14 = "How many hours per week did .." 6899 W2124_15 = "How many hours per week did .." 6900 W2124_16 = "How many hours per week did .." 6901 W2124_17 = "How many hours per week did .." 6902 W2124_18 = "How many hours per week did .." 6903 W2124_19 = "How many hours per week did .." 6904 W2124_20 = "How many hours per week did .." 6905 W2124_21 = "How many hours per week did .." 6906 W2124_22 = "How many hours per week did .." 6907 W2124_23 = "How many hours per week did .." 6908 W2124_24 = "How many hours per week did .." 6909 W2124_25 = "How many hours per week did .." 6910 W2124_26 = "How many hours per week did .." 123 The SAS System 13:10 Thursday, March 25, 2010 6911 W2124_27 = "How many hours per week did .." 6912 W2124_28 = "How many hours per week did .." 6913 W2124_29 = "How many hours per week did .." 6914 W2124_30 = "How many hours per week did .." 6915 W2124_31 = "How many hours per week did .." 6916 W2124_32 = "How many hours per week did .." 6917 W2128_01 = "What was ...'s regular hourly pay" 6918 W2128_02 = "What was ...'s regular hourly pay" 6919 W2128_03 = "What was ...'s regular hourly pay" 6920 W2128_04 = "What was ...'s regular hourly pay" 6921 W2128_05 = "What was ...'s regular hourly pay" 6922 W2128_06 = "What was ...'s regular hourly pay" 6923 W2128_07 = "What was ...'s regular hourly pay" 6924 W2128_08 = "What was ...'s regular hourly pay" 6925 W2128_09 = "What was ...'s regular hourly pay" 6926 W2128_10 = "What was ...'s regular hourly pay" 6927 W2128_11 = "What was ...'s regular hourly pay" 6928 W2128_12 = "What was ...'s regular hourly pay" 6929 W2128_13 = "What was ...'s regular hourly pay" 6930 W2128_14 = "What was ...'s regular hourly pay" 6931 W2128_15 = "What was ...'s regular hourly pay" 6932 W2128_16 = "What was ...'s regular hourly pay" 6933 W2128_17 = "What was ...'s regular hourly pay" 6934 W2128_18 = "What was ...'s regular hourly pay" 6935 W2128_19 = "What was ...'s regular hourly pay" 6936 W2128_20 = "What was ...'s regular hourly pay" 6937 W2128_21 = "What was ...'s regular hourly pay" 6938 W2128_22 = "What was ...'s regular hourly pay" 6939 W2128_23 = "What was ...'s regular hourly pay" 6940 W2128_24 = "What was ...'s regular hourly pay" 6941 W2128_25 = "What was ...'s regular hourly pay" 6942 W2128_26 = "What was ...'s regular hourly pay" 6943 W2128_27 = "What was ...'s regular hourly pay" 6944 W2128_28 = "What was ...'s regular hourly pay" 6945 W2128_29 = "What was ...'s regular hourly pay" 6946 W2128_30 = "What was ...'s regular hourly pay" 6947 W2128_31 = "What was ...'s regular hourly pay" 6948 W2128_32 = "What was ...'s regular hourly pay" 6949 S2302_01 = "Check Item S1" 6950 S2302_02 = "Check Item S1" 6951 S2302_03 = "Check Item S1" 6952 S2302_04 = "Check Item S1" 6953 S2302_05 = "Check Item S1" 6954 S2302_06 = "Check Item S1" 6955 S2302_07 = "Check Item S1" 6956 S2302_08 = "Check Item S1" 6957 S2302_09 = "Check Item S1" 6958 S2302_10 = "Check Item S1" 6959 S2302_11 = "Check Item S1" 6960 S2302_12 = "Check Item S1" 6961 S2302_13 = "Check Item S1" 6962 S2302_14 = "Check Item S1" 6963 S2302_15 = "Check Item S1" 6964 S2302_16 = "Check Item S1" 6965 S2302_17 = "Check Item S1" 6966 S2302_18 = "Check Item S1" 6967 S2302_19 = "Check Item S1" 6968 S2302_20 = "Check Item S1" 124 The SAS System 13:10 Thursday, March 25, 2010 6969 S2302_21 = "Check Item S1" 6970 S2302_22 = "Check Item S1" 6971 S2302_23 = "Check Item S1" 6972 S2302_24 = "Check Item S1" 6973 S2302_25 = "Check Item S1" 6974 S2302_26 = "Check Item S1" 6975 S2302_27 = "Check Item S1" 6976 S2302_28 = "Check Item S1" 6977 S2302_29 = "Check Item S1" 6978 S2302_30 = "Check Item S1" 6979 S2302_31 = "Check Item S1" 6980 S2302_32 = "Check Item S1" 6981 TYPBS201 = "What was the form of this business?" 6982 TYPBS202 = "What was the form of this business?" 6983 TYPBS203 = "What was the form of this business?" 6984 TYPBS204 = "What was the form of this business?" 6985 TYPBS205 = "What was the form of this business?" 6986 TYPBS206 = "What was the form of this business?" 6987 TYPBS207 = "What was the form of this business?" 6988 TYPBS208 = "What was the form of this business?" 6989 TYPBS209 = "What was the form of this business?" 6990 TYPBS210 = "What was the form of this business?" 6991 TYPBS211 = "What was the form of this business?" 6992 TYPBS212 = "What was the form of this business?" 6993 TYPBS213 = "What was the form of this business?" 6994 TYPBS214 = "What was the form of this business?" 6995 TYPBS215 = "What was the form of this business?" 6996 TYPBS216 = "What was the form of this business?" 6997 TYPBS217 = "What was the form of this business?" 6998 TYPBS218 = "What was the form of this business?" 6999 TYPBS219 = "What was the form of this business?" 7000 TYPBS220 = "What was the form of this business?" 7001 TYPBS221 = "What was the form of this business?" 7002 TYPBS222 = "What was the form of this business?" 7003 TYPBS223 = "What was the form of this business?" 7004 TYPBS224 = "What was the form of this business?" 7005 TYPBS225 = "What was the form of this business?" 7006 TYPBS226 = "What was the form of this business?" 7007 TYPBS227 = "What was the form of this business?" 7008 TYPBS228 = "What was the form of this business?" 7009 TYPBS229 = "What was the form of this business?" 7010 TYPBS230 = "What was the form of this business?" 7011 TYPBS231 = "What was the form of this business?" 7012 TYPBS232 = "What was the form of this business?" 7013 SEWS2O01 = "Edited and imputed 3-digit occupation " 7014 SEWS2O02 = "Edited and imputed 3-digit occupation " 7015 SEWS2O03 = "Edited and imputed 3-digit occupation " 7016 SEWS2O04 = "Edited and imputed 3-digit occupation " 7017 SEWS2O05 = "Edited and imputed 3-digit occupation " 7018 SEWS2O06 = "Edited and imputed 3-digit occupation " 7019 SEWS2O07 = "Edited and imputed 3-digit occupation " 7020 SEWS2O08 = "Edited and imputed 3-digit occupation " 7021 SEWS2O09 = "Edited and imputed 3-digit occupation " 7022 SEWS2O10 = "Edited and imputed 3-digit occupation " 7023 SEWS2O11 = "Edited and imputed 3-digit occupation " 7024 SEWS2O12 = "Edited and imputed 3-digit occupation " 7025 SEWS2O13 = "Edited and imputed 3-digit occupation " 7026 SEWS2O14 = "Edited and imputed 3-digit occupation " 125 The SAS System 13:10 Thursday, March 25, 2010 7027 SEWS2O15 = "Edited and imputed 3-digit occupation " 7028 SEWS2O16 = "Edited and imputed 3-digit occupation " 7029 SEWS2O17 = "Edited and imputed 3-digit occupation " 7030 SEWS2O18 = "Edited and imputed 3-digit occupation " 7031 SEWS2O19 = "Edited and imputed 3-digit occupation " 7032 SEWS2O20 = "Edited and imputed 3-digit occupation " 7033 SEWS2O21 = "Edited and imputed 3-digit occupation " 7034 SEWS2O22 = "Edited and imputed 3-digit occupation " 7035 SEWS2O23 = "Edited and imputed 3-digit occupation " 7036 SEWS2O24 = "Edited and imputed 3-digit occupation " 7037 SEWS2O25 = "Edited and imputed 3-digit occupation " 7038 SEWS2O26 = "Edited and imputed 3-digit occupation " 7039 SEWS2O27 = "Edited and imputed 3-digit occupation " 7040 SEWS2O28 = "Edited and imputed 3-digit occupation " 7041 SEWS2O29 = "Edited and imputed 3-digit occupation " 7042 SEWS2O30 = "Edited and imputed 3-digit occupation " 7043 SEWS2O31 = "Edited and imputed 3-digit occupation " 7044 SEWS2O32 = "Edited and imputed 3-digit occupation " 7045 SEWS2I01 = "Edited and imputed 3-digit industry co" 7046 SEWS2I02 = "Edited and imputed 3-digit industry co" 7047 SEWS2I03 = "Edited and imputed 3-digit industry co" 7048 SEWS2I04 = "Edited and imputed 3-digit industry co" 7049 SEWS2I05 = "Edited and imputed 3-digit industry co" 7050 SEWS2I06 = "Edited and imputed 3-digit industry co" 7051 SEWS2I07 = "Edited and imputed 3-digit industry co" 7052 SEWS2I08 = "Edited and imputed 3-digit industry co" 7053 SEWS2I09 = "Edited and imputed 3-digit industry co" 7054 SEWS2I10 = "Edited and imputed 3-digit industry co" 7055 SEWS2I11 = "Edited and imputed 3-digit industry co" 7056 SEWS2I12 = "Edited and imputed 3-digit industry co" 7057 SEWS2I13 = "Edited and imputed 3-digit industry co" 7058 SEWS2I14 = "Edited and imputed 3-digit industry co" 7059 SEWS2I15 = "Edited and imputed 3-digit industry co" 7060 SEWS2I16 = "Edited and imputed 3-digit industry co" 7061 SEWS2I17 = "Edited and imputed 3-digit industry co" 7062 SEWS2I18 = "Edited and imputed 3-digit industry co" 7063 SEWS2I19 = "Edited and imputed 3-digit industry co" 7064 SEWS2I20 = "Edited and imputed 3-digit industry co" 7065 SEWS2I21 = "Edited and imputed 3-digit industry co" 7066 SEWS2I22 = "Edited and imputed 3-digit industry co" 7067 SEWS2I23 = "Edited and imputed 3-digit industry co" 7068 SEWS2I24 = "Edited and imputed 3-digit industry co" 7069 SEWS2I25 = "Edited and imputed 3-digit industry co" 7070 SEWS2I26 = "Edited and imputed 3-digit industry co" 7071 SEWS2I27 = "Edited and imputed 3-digit industry co" 7072 SEWS2I28 = "Edited and imputed 3-digit industry co" 7073 SEWS2I29 = "Edited and imputed 3-digit industry co" 7074 SEWS2I30 = "Edited and imputed 3-digit industry co" 7075 SEWS2I31 = "Edited and imputed 3-digit industry co" 7076 SEWS2I32 = "Edited and imputed 3-digit industry co" 7077 SE2_WK01 = "Number of weeks with business each mon" 7078 SE2_WK02 = "Number of weeks with business each mon" 7079 SE2_WK03 = "Number of weeks with business each mon" 7080 SE2_WK04 = "Number of weeks with business each mon" 7081 SE2_WK05 = "Number of weeks with business each mon" 7082 SE2_WK06 = "Number of weeks with business each mon" 7083 SE2_WK07 = "Number of weeks with business each mon" 7084 SE2_WK08 = "Number of weeks with business each mon" 126 The SAS System 13:10 Thursday, March 25, 2010 7085 SE2_WK09 = "Number of weeks with business each mon" 7086 SE2_WK10 = "Number of weeks with business each mon" 7087 SE2_WK11 = "Number of weeks with business each mon" 7088 SE2_WK12 = "Number of weeks with business each mon" 7089 SE2_WK13 = "Number of weeks with business each mon" 7090 SE2_WK14 = "Number of weeks with business each mon" 7091 SE2_WK15 = "Number of weeks with business each mon" 7092 SE2_WK16 = "Number of weeks with business each mon" 7093 SE2_WK17 = "Number of weeks with business each mon" 7094 SE2_WK18 = "Number of weeks with business each mon" 7095 SE2_WK19 = "Number of weeks with business each mon" 7096 SE2_WK20 = "Number of weeks with business each mon" 7097 SE2_WK21 = "Number of weeks with business each mon" 7098 SE2_WK22 = "Number of weeks with business each mon" 7099 SE2_WK23 = "Number of weeks with business each mon" 7100 SE2_WK24 = "Number of weeks with business each mon" 7101 SE2_WK25 = "Number of weeks with business each mon" 7102 SE2_WK26 = "Number of weeks with business each mon" 7103 SE2_WK27 = "Number of weeks with business each mon" 7104 SE2_WK28 = "Number of weeks with business each mon" 7105 SE2_WK29 = "Number of weeks with business each mon" 7106 SE2_WK30 = "Number of weeks with business each mon" 7107 SE2_WK31 = "Number of weeks with business each mon" 7108 SE2_WK32 = "Number of weeks with business each mon" 7109 SE2_AM01 = "Amount of income received each month" 7110 SE2_AM02 = "Amount of income received each month" 7111 SE2_AM03 = "Amount of income received each month" 7112 SE2_AM04 = "Amount of income received each month" 7113 SE2_AM05 = "Amount of income received each month" 7114 SE2_AM06 = "Amount of income received each month" 7115 SE2_AM07 = "Amount of income received each month" 7116 SE2_AM08 = "Amount of income received each month" 7117 SE2_AM09 = "Amount of income received each month" 7118 SE2_AM10 = "Amount of income received each month" 7119 SE2_AM11 = "Amount of income received each month" 7120 SE2_AM12 = "Amount of income received each month" 7121 SE2_AM13 = "Amount of income received each month" 7122 SE2_AM14 = "Amount of income received each month" 7123 SE2_AM15 = "Amount of income received each month" 7124 SE2_AM16 = "Amount of income received each month" 7125 SE2_AM17 = "Amount of income received each month" 7126 SE2_AM18 = "Amount of income received each month" 7127 SE2_AM19 = "Amount of income received each month" 7128 SE2_AM20 = "Amount of income received each month" 7129 SE2_AM21 = "Amount of income received each month" 7130 SE2_AM22 = "Amount of income received each month" 7131 SE2_AM23 = "Amount of income received each month" 7132 SE2_AM24 = "Amount of income received each month" 7133 SE2_AM25 = "Amount of income received each month" 7134 SE2_AM26 = "Amount of income received each month" 7135 SE2_AM27 = "Amount of income received each month" 7136 SE2_AM28 = "Amount of income received each month" 7137 SE2_AM29 = "Amount of income received each month" 7138 SE2_AM30 = "Amount of income received each month" 7139 SE2_AM31 = "Amount of income received each month" 7140 SE2_AM32 = "Amount of income received each month" 7141 S2312_01 = "How many hours per week did .." 7142 S2312_02 = "How many hours per week did .." 127 The SAS System 13:10 Thursday, March 25, 2010 7143 S2312_03 = "How many hours per week did .." 7144 S2312_04 = "How many hours per week did .." 7145 S2312_05 = "How many hours per week did .." 7146 S2312_06 = "How many hours per week did .." 7147 S2312_07 = "How many hours per week did .." 7148 S2312_08 = "How many hours per week did .." 7149 S2312_09 = "How many hours per week did .." 7150 S2312_10 = "How many hours per week did .." 7151 S2312_11 = "How many hours per week did .." 7152 S2312_12 = "How many hours per week did .." 7153 S2312_13 = "How many hours per week did .." 7154 S2312_14 = "How many hours per week did .." 7155 S2312_15 = "How many hours per week did .." 7156 S2312_16 = "How many hours per week did .." 7157 S2312_17 = "How many hours per week did .." 7158 S2312_18 = "How many hours per week did .." 7159 S2312_19 = "How many hours per week did .." 7160 S2312_20 = "How many hours per week did .." 7161 S2312_21 = "How many hours per week did .." 7162 S2312_22 = "How many hours per week did .." 7163 S2312_23 = "How many hours per week did .." 7164 S2312_24 = "How many hours per week did .." 7165 S2312_25 = "How many hours per week did .." 7166 S2312_26 = "How many hours per week did .." 7167 S2312_27 = "How many hours per week did .." 7168 S2312_28 = "How many hours per week did .." 7169 S2312_29 = "How many hours per week did .." 7170 S2312_30 = "How many hours per week did .." 7171 S2312_31 = "How many hours per week did .." 7172 S2312_32 = "How many hours per week did .." 7173 G1SRC_01 = "INCOME SOURCE" 7174 G1SRC_02 = "INCOME SOURCE" 7175 G1SRC_03 = "INCOME SOURCE" 7176 G1SRC_04 = "INCOME SOURCE" 7177 G1SRC_05 = "INCOME SOURCE" 7178 G1SRC_06 = "INCOME SOURCE" 7179 G1SRC_07 = "INCOME SOURCE" 7180 G1SRC_08 = "INCOME SOURCE" 7181 G1SRC_09 = "INCOME SOURCE" 7182 G1SRC_10 = "INCOME SOURCE" 7183 G1_A_01 = "Amount of this income type received in" 7184 G1_A_02 = "Amount of this income type received in" 7185 G1_A_03 = "Amount of this income type received in" 7186 G1_A_04 = "Amount of this income type received in" 7187 G1_A_05 = "Amount of this income type received in" 7188 G1_A_06 = "Amount of this income type received in" 7189 G1_A_07 = "Amount of this income type received in" 7190 G1_A_08 = "Amount of this income type received in" 7191 G1_A_09 = "Amount of this income type received in" 7192 G1_A_10 = "Amount of this income type received in" 7193 G1_A_11 = "Amount of this income type received in" 7194 G1_A_12 = "Amount of this income type received in" 7195 G1_A_13 = "Amount of this income type received in" 7196 G1_A_14 = "Amount of this income type received in" 7197 G1_A_15 = "Amount of this income type received in" 7198 G1_A_16 = "Amount of this income type received in" 7199 G1_A_17 = "Amount of this income type received in" 7200 G1_A_18 = "Amount of this income type received in" 128 The SAS System 13:10 Thursday, March 25, 2010 7201 G1_A_19 = "Amount of this income type received in" 7202 G1_A_20 = "Amount of this income type received in" 7203 G1_A_21 = "Amount of this income type received in" 7204 G1_A_22 = "Amount of this income type received in" 7205 G1_A_23 = "Amount of this income type received in" 7206 G1_A_24 = "Amount of this income type received in" 7207 G1_A_25 = "Amount of this income type received in" 7208 G1_A_26 = "Amount of this income type received in" 7209 G1_A_27 = "Amount of this income type received in" 7210 G1_A_28 = "Amount of this income type received in" 7211 G1_A_29 = "Amount of this income type received in" 7212 G1_A_30 = "Amount of this income type received in" 7213 G1_A_31 = "Amount of this income type received in" 7214 G1_A_32 = "Amount of this income type received in" 7215 SSRECIN1 = "Social Security recipiency indicator" 7216 SSRECIN2 = "Social Security recipiency indicator" 7217 SSRECIN3 = "Social Security recipiency indicator" 7218 SSRECIN4 = "Social Security recipiency indicator" 7219 SSRECIN5 = "Social Security recipiency indicator" 7220 SSRECIN6 = "Social Security recipiency indicator" 7221 SSRECIN7 = "Social Security recipiency indicator" 7222 SSRECIN8 = "Social Security recipiency indicator" 7223 RRRECIN1 = "Railroad Retirement recipiency indicat" 7224 RRRECIN2 = "Railroad Retirement recipiency indicat" 7225 RRRECIN3 = "Railroad Retirement recipiency indicat" 7226 RRRECIN4 = "Railroad Retirement recipiency indicat" 7227 RRRECIN5 = "Railroad Retirement recipiency indicat" 7228 RRRECIN6 = "Railroad Retirement recipiency indicat" 7229 RRRECIN7 = "Railroad Retirement recipiency indicat" 7230 RRRECIN8 = "Railroad Retirement recipiency indicat" 7231 VET3060 = "Is ... required to fill out an annual" 7232 AST1001 = "ISS Code 100 - Savings accounts" 7233 AST1002 = "ISS Code 100 - Savings accounts" 7234 AST1003 = "ISS Code 100 - Savings accounts" 7235 AST1004 = "ISS Code 100 - Savings accounts" 7236 AST1005 = "ISS Code 100 - Savings accounts" 7237 AST1006 = "ISS Code 100 - Savings accounts" 7238 AST1007 = "ISS Code 100 - Savings accounts" 7239 AST1008 = "ISS Code 100 - Savings accounts" 7240 AST1011 = "ISS Code 101 - Money market accounts" 7241 AST1012 = "ISS Code 101 - Money market accounts" 7242 AST1013 = "ISS Code 101 - Money market accounts" 7243 AST1014 = "ISS Code 101 - Money market accounts" 7244 AST1015 = "ISS Code 101 - Money market accounts" 7245 AST1016 = "ISS Code 101 - Money market accounts" 7246 AST1017 = "ISS Code 101 - Money market accounts" 7247 AST1018 = "ISS Code 101 - Money market accounts" 7248 AST1021 = "ISS Code 102 - Certificates of deposit" 7249 AST1022 = "ISS Code 102 - Certificates of deposit" 7250 AST1023 = "ISS Code 102 - Certificates of deposit" 7251 AST1024 = "ISS Code 102 - Certificates of deposit" 7252 AST1025 = "ISS Code 102 - Certificates of deposit" 7253 AST1026 = "ISS Code 102 - Certificates of deposit" 7254 AST1027 = "ISS Code 102 - Certificates of deposit" 7255 AST1028 = "ISS Code 102 - Certificates of deposit" 7256 AST1031 = "ISS Code 103 - NOW accounts" 7257 AST1032 = "ISS Code 103 - NOW accounts" 7258 AST1033 = "ISS Code 103 - NOW accounts" 129 The SAS System 13:10 Thursday, March 25, 2010 7259 AST1034 = "ISS Code 103 - NOW accounts" 7260 AST1035 = "ISS Code 103 - NOW accounts" 7261 AST1036 = "ISS Code 103 - NOW accounts" 7262 AST1037 = "ISS Code 103 - NOW accounts" 7263 AST1038 = "ISS Code 103 - NOW accounts" 7264 AST1041 = "ISS Code 104 - Money market funds" 7265 AST1042 = "ISS Code 104 - Money market funds" 7266 AST1043 = "ISS Code 104 - Money market funds" 7267 AST1044 = "ISS Code 104 - Money market funds" 7268 AST1045 = "ISS Code 104 - Money market funds" 7269 AST1046 = "ISS Code 104 - Money market funds" 7270 AST1047 = "ISS Code 104 - Money market funds" 7271 AST1048 = "ISS Code 104 - Money market funds" 7272 AST1051 = "ISS Code 105 - U.S. Government securit" 7273 AST1052 = "ISS Code 105 - U.S. Government securit" 7274 AST1053 = "ISS Code 105 - U.S. Government securit" 7275 AST1054 = "ISS Code 105 - U.S. Government securit" 7276 AST1055 = "ISS Code 105 - U.S. Government securit" 7277 AST1056 = "ISS Code 105 - U.S. Government securit" 7278 AST1057 = "ISS Code 105 - U.S. Government securit" 7279 AST1058 = "ISS Code 105 - U.S. Government securit" 7280 AST1061 = "ISS Code 106 - Municipal or corporate" 7281 AST1062 = "ISS Code 106 - Municipal or corporate" 7282 AST1063 = "ISS Code 106 - Municipal or corporate" 7283 AST1064 = "ISS Code 106 - Municipal or corporate" 7284 AST1065 = "ISS Code 106 - Municipal or corporate" 7285 AST1066 = "ISS Code 106 - Municipal or corporate" 7286 AST1067 = "ISS Code 106 - Municipal or corporate" 7287 AST1068 = "ISS Code 106 - Municipal or corporate" 7288 AST1071 = "ISS Code 107 - Other interest earning" 7289 AST1072 = "ISS Code 107 - Other interest earning" 7290 AST1073 = "ISS Code 107 - Other interest earning" 7291 AST1074 = "ISS Code 107 - Other interest earning" 7292 AST1075 = "ISS Code 107 - Other interest earning" 7293 AST1076 = "ISS Code 107 - Other interest earning" 7294 AST1077 = "ISS Code 107 - Other interest earning" 7295 AST1078 = "ISS Code 107 - Other interest earning" 7296 AST1101 = "ISS Code 110 - Stocks or mutual funds" 7297 AST1102 = "ISS Code 110 - Stocks or mutual funds" 7298 AST1103 = "ISS Code 110 - Stocks or mutual funds" 7299 AST1104 = "ISS Code 110 - Stocks or mutual funds" 7300 AST1105 = "ISS Code 110 - Stocks or mutual funds" 7301 AST1106 = "ISS Code 110 - Stocks or mutual funds" 7302 AST1107 = "ISS Code 110 - Stocks or mutual funds" 7303 AST1108 = "ISS Code 110 - Stocks or mutual funds" 7304 AST1201 = "ISS Code 120 - Rental property" 7305 AST1202 = "ISS Code 120 - Rental property" 7306 AST1203 = "ISS Code 120 - Rental property" 7307 AST1204 = "ISS Code 120 - Rental property" 7308 AST1205 = "ISS Code 120 - Rental property" 7309 AST1206 = "ISS Code 120 - Rental property" 7310 AST1207 = "ISS Code 120 - Rental property" 7311 AST1208 = "ISS Code 120 - Rental property" 7312 AST1301 = "ISS Code 130 - Mortgages" 7313 AST1302 = "ISS Code 130 - Mortgages" 7314 AST1303 = "ISS Code 130 - Mortgages" 7315 AST1304 = "ISS Code 130 - Mortgages" 7316 AST1305 = "ISS Code 130 - Mortgages" 130 The SAS System 13:10 Thursday, March 25, 2010 7317 AST1306 = "ISS Code 130 - Mortgages" 7318 AST1307 = "ISS Code 130 - Mortgages" 7319 AST1308 = "ISS Code 130 - Mortgages" 7320 AST1401 = "ISS Code 140 - Royalties" 7321 AST1402 = "ISS Code 140 - Royalties" 7322 AST1403 = "ISS Code 140 - Royalties" 7323 AST1404 = "ISS Code 140 - Royalties" 7324 AST1405 = "ISS Code 140 - Royalties" 7325 AST1406 = "ISS Code 140 - Royalties" 7326 AST1407 = "ISS Code 140 - Royalties" 7327 AST1408 = "ISS Code 140 - Royalties" 7328 AST1501 = "ISS Code 150 - Other financial investm" 7329 AST1502 = "ISS Code 150 - Other financial investm" 7330 AST1503 = "ISS Code 150 - Other financial investm" 7331 AST1504 = "ISS Code 150 - Other financial investm" 7332 AST1505 = "ISS Code 150 - Other financial investm" 7333 AST1506 = "ISS Code 150 - Other financial investm" 7334 AST1507 = "ISS Code 150 - Other financial investm" 7335 AST1508 = "ISS Code 150 - Other financial investm" 7336 G2SRC100 = "Interest from savings accounts, money" 7337 G2SRC104 = "Interest from money market funds," 7338 G2SRC110 = "Dividends from the ownership of stocks" 7339 G2SRC120 = "Net income from the rental of property" 7340 G2SRC130 = "Interest income from mortgages held" 7341 G2SRC140 = "Income from royalties and other financ" 7342 G2A10001 = "Interest from savings accounts, money" 7343 G2A10002 = "Interest from savings accounts, money" 7344 G2A10003 = "Interest from savings accounts, money" 7345 G2A10004 = "Interest from savings accounts, money" 7346 G2A10005 = "Interest from savings accounts, money" 7347 G2A10006 = "Interest from savings accounts, money" 7348 G2A10007 = "Interest from savings accounts, money" 7349 G2A10008 = "Interest from savings accounts, money" 7350 G2A10009 = "Interest from savings accounts, money" 7351 G2A10010 = "Interest from savings accounts, money" 7352 G2A10011 = "Interest from savings accounts, money" 7353 G2A10012 = "Interest from savings accounts, money" 7354 G2A10013 = "Interest from savings accounts, money" 7355 G2A10014 = "Interest from savings accounts, money" 7356 G2A10015 = "Interest from savings accounts, money" 7357 G2A10016 = "Interest from savings accounts, money" 7358 G2A10017 = "Interest from savings accounts, money" 7359 G2A10018 = "Interest from savings accounts, money" 7360 G2A10019 = "Interest from savings accounts, money" 7361 G2A10020 = "Interest from savings accounts, money" 7362 G2A10021 = "Interest from savings accounts, money" 7363 G2A10022 = "Interest from savings accounts, money" 7364 G2A10023 = "Interest from savings accounts, money" 7365 G2A10024 = "Interest from savings accounts, money" 7366 G2A10025 = "Interest from savings accounts, money" 7367 G2A10026 = "Interest from savings accounts, money" 7368 G2A10027 = "Interest from savings accounts, money" 7369 G2A10028 = "Interest from savings accounts, money" 7370 G2A10029 = "Interest from savings accounts, money" 7371 G2A10030 = "Interest from savings accounts, money" 7372 G2A10031 = "Interest from savings accounts, money" 7373 G2A10032 = "Interest from savings accounts, money" 7374 G2A10401 = "Interest from money market funds," 131 The SAS System 13:10 Thursday, March 25, 2010 7375 G2A10402 = "Interest from money market funds," 7376 G2A10403 = "Interest from money market funds," 7377 G2A10404 = "Interest from money market funds," 7378 G2A10405 = "Interest from money market funds," 7379 G2A10406 = "Interest from money market funds," 7380 G2A10407 = "Interest from money market funds," 7381 G2A10408 = "Interest from money market funds," 7382 G2A10409 = "Interest from money market funds," 7383 G2A10410 = "Interest from money market funds," 7384 G2A10411 = "Interest from money market funds," 7385 G2A10412 = "Interest from money market funds," 7386 G2A10413 = "Interest from money market funds," 7387 G2A10414 = "Interest from money market funds," 7388 G2A10415 = "Interest from money market funds," 7389 G2A10416 = "Interest from money market funds," 7390 G2A10417 = "Interest from money market funds," 7391 G2A10418 = "Interest from money market funds," 7392 G2A10419 = "Interest from money market funds," 7393 G2A10420 = "Interest from money market funds," 7394 G2A10421 = "Interest from money market funds," 7395 G2A10422 = "Interest from money market funds," 7396 G2A10423 = "Interest from money market funds," 7397 G2A10424 = "Interest from money market funds," 7398 G2A10425 = "Interest from money market funds," 7399 G2A10426 = "Interest from money market funds," 7400 G2A10427 = "Interest from money market funds," 7401 G2A10428 = "Interest from money market funds," 7402 G2A10429 = "Interest from money market funds," 7403 G2A10430 = "Interest from money market funds," 7404 G2A10431 = "Interest from money market funds," 7405 G2A10432 = "Interest from money market funds," 7406 G2A11001 = "Dividends from the ownership of stocks" 7407 G2A11002 = "Dividends from the ownership of stocks" 7408 G2A11003 = "Dividends from the ownership of stocks" 7409 G2A11004 = "Dividends from the ownership of stocks" 7410 G2A11005 = "Dividends from the ownership of stocks" 7411 G2A11006 = "Dividends from the ownership of stocks" 7412 G2A11007 = "Dividends from the ownership of stocks" 7413 G2A11008 = "Dividends from the ownership of stocks" 7414 G2A11009 = "Dividends from the ownership of stocks" 7415 G2A11010 = "Dividends from the ownership of stocks" 7416 G2A11011 = "Dividends from the ownership of stocks" 7417 G2A11012 = "Dividends from the ownership of stocks" 7418 G2A11013 = "Dividends from the ownership of stocks" 7419 G2A11014 = "Dividends from the ownership of stocks" 7420 G2A11015 = "Dividends from the ownership of stocks" 7421 G2A11016 = "Dividends from the ownership of stocks" 7422 G2A11017 = "Dividends from the ownership of stocks" 7423 G2A11018 = "Dividends from the ownership of stocks" 7424 G2A11019 = "Dividends from the ownership of stocks" 7425 G2A11020 = "Dividends from the ownership of stocks" 7426 G2A11021 = "Dividends from the ownership of stocks" 7427 G2A11022 = "Dividends from the ownership of stocks" 7428 G2A11023 = "Dividends from the ownership of stocks" 7429 G2A11024 = "Dividends from the ownership of stocks" 7430 G2A11025 = "Dividends from the ownership of stocks" 7431 G2A11026 = "Dividends from the ownership of stocks" 7432 G2A11027 = "Dividends from the ownership of stocks" 132 The SAS System 13:10 Thursday, March 25, 2010 7433 G2A11028 = "Dividends from the ownership of stocks" 7434 G2A11029 = "Dividends from the ownership of stocks" 7435 G2A11030 = "Dividends from the ownership of stocks" 7436 G2A11031 = "Dividends from the ownership of stocks" 7437 G2A11032 = "Dividends from the ownership of stocks" 7438 G2A12001 = "Net income from the rental of property" 7439 G2A12002 = "Net income from the rental of property" 7440 G2A12003 = "Net income from the rental of property" 7441 G2A12004 = "Net income from the rental of property" 7442 G2A12005 = "Net income from the rental of property" 7443 G2A12006 = "Net income from the rental of property" 7444 G2A12007 = "Net income from the rental of property" 7445 G2A12008 = "Net income from the rental of property" 7446 G2A12009 = "Net income from the rental of property" 7447 G2A12010 = "Net income from the rental of property" 7448 G2A12011 = "Net income from the rental of property" 7449 G2A12012 = "Net income from the rental of property" 7450 G2A12013 = "Net income from the rental of property" 7451 G2A12014 = "Net income from the rental of property" 7452 G2A12015 = "Net income from the rental of property" 7453 G2A12016 = "Net income from the rental of property" 7454 G2A12017 = "Net income from the rental of property" 7455 G2A12018 = "Net income from the rental of property" 7456 G2A12019 = "Net income from the rental of property" 7457 G2A12020 = "Net income from the rental of property" 7458 G2A12021 = "Net income from the rental of property" 7459 G2A12022 = "Net income from the rental of property" 7460 G2A12023 = "Net income from the rental of property" 7461 G2A12024 = "Net income from the rental of property" 7462 G2A12025 = "Net income from the rental of property" 7463 G2A12026 = "Net income from the rental of property" 7464 G2A12027 = "Net income from the rental of property" 7465 G2A12028 = "Net income from the rental of property" 7466 G2A12029 = "Net income from the rental of property" 7467 G2A12030 = "Net income from the rental of property" 7468 G2A12031 = "Net income from the rental of property" 7469 G2A12032 = "Net income from the rental of property" 7470 G2A13001 = "Interest income from mortgages held" 7471 G2A13002 = "Interest income from mortgages held" 7472 G2A13003 = "Interest income from mortgages held" 7473 G2A13004 = "Interest income from mortgages held" 7474 G2A13005 = "Interest income from mortgages held" 7475 G2A13006 = "Interest income from mortgages held" 7476 G2A13007 = "Interest income from mortgages held" 7477 G2A13008 = "Interest income from mortgages held" 7478 G2A13009 = "Interest income from mortgages held" 7479 G2A13010 = "Interest income from mortgages held" 7480 G2A13011 = "Interest income from mortgages held" 7481 G2A13012 = "Interest income from mortgages held" 7482 G2A13013 = "Interest income from mortgages held" 7483 G2A13014 = "Interest income from mortgages held" 7484 G2A13015 = "Interest income from mortgages held" 7485 G2A13016 = "Interest income from mortgages held" 7486 G2A13017 = "Interest income from mortgages held" 7487 G2A13018 = "Interest income from mortgages held" 7488 G2A13019 = "Interest income from mortgages held" 7489 G2A13020 = "Interest income from mortgages held" 7490 G2A13021 = "Interest income from mortgages held" 133 The SAS System 13:10 Thursday, March 25, 2010 7491 G2A13022 = "Interest income from mortgages held" 7492 G2A13023 = "Interest income from mortgages held" 7493 G2A13024 = "Interest income from mortgages held" 7494 G2A13025 = "Interest income from mortgages held" 7495 G2A13026 = "Interest income from mortgages held" 7496 G2A13027 = "Interest income from mortgages held" 7497 G2A13028 = "Interest income from mortgages held" 7498 G2A13029 = "Interest income from mortgages held" 7499 G2A13030 = "Interest income from mortgages held" 7500 G2A13031 = "Interest income from mortgages held" 7501 G2A13032 = "Interest income from mortgages held" 7502 G2A14001 = "Income from royalties and other financ" 7503 G2A14002 = "Income from royalties and other financ" 7504 G2A14003 = "Income from royalties and other financ" 7505 G2A14004 = "Income from royalties and other financ" 7506 G2A14005 = "Income from royalties and other financ" 7507 G2A14006 = "Income from royalties and other financ" 7508 G2A14007 = "Income from royalties and other financ" 7509 G2A14008 = "Income from royalties and other financ" 7510 G2A14009 = "Income from royalties and other financ" 7511 G2A14010 = "Income from royalties and other financ" 7512 G2A14011 = "Income from royalties and other financ" 7513 G2A14012 = "Income from royalties and other financ" 7514 G2A14013 = "Income from royalties and other financ" 7515 G2A14014 = "Income from royalties and other financ" 7516 G2A14015 = "Income from royalties and other financ" 7517 G2A14016 = "Income from royalties and other financ" 7518 G2A14017 = "Income from royalties and other financ" 7519 G2A14018 = "Income from royalties and other financ" 7520 G2A14019 = "Income from royalties and other financ" 7521 G2A14020 = "Income from royalties and other financ" 7522 G2A14021 = "Income from royalties and other financ" 7523 G2A14022 = "Income from royalties and other financ" 7524 G2A14023 = "Income from royalties and other financ" 7525 G2A14024 = "Income from royalties and other financ" 7526 G2A14025 = "Income from royalties and other financ" 7527 G2A14026 = "Income from royalties and other financ" 7528 G2A14027 = "Income from royalties and other financ" 7529 G2A14028 = "Income from royalties and other financ" 7530 G2A14029 = "Income from royalties and other financ" 7531 G2A14030 = "Income from royalties and other financ" 7532 G2A14031 = "Income from royalties and other financ" 7533 G2A14032 = "Income from royalties and other financ" 7534 CARECO01 = "Is this person covered by Medicare in " 7535 CARECO02 = "Is this person covered by Medicare in " 7536 CARECO03 = "Is this person covered by Medicare in " 7537 CARECO04 = "Is this person covered by Medicare in " 7538 CARECO05 = "Is this person covered by Medicare in " 7539 CARECO06 = "Is this person covered by Medicare in " 7540 CARECO07 = "Is this person covered by Medicare in " 7541 CARECO08 = "Is this person covered by Medicare in " 7542 CARECO09 = "Is this person covered by Medicare in " 7543 CARECO10 = "Is this person covered by Medicare in " 7544 CARECO11 = "Is this person covered by Medicare in " 7545 CARECO12 = "Is this person covered by Medicare in " 7546 CARECO13 = "Is this person covered by Medicare in " 7547 CARECO14 = "Is this person covered by Medicare in " 7548 CARECO15 = "Is this person covered by Medicare in " 134 The SAS System 13:10 Thursday, March 25, 2010 7549 CARECO16 = "Is this person covered by Medicare in " 7550 CARECO17 = "Is this person covered by Medicare in " 7551 CARECO18 = "Is this person covered by Medicare in " 7552 CARECO19 = "Is this person covered by Medicare in " 7553 CARECO20 = "Is this person covered by Medicare in " 7554 CARECO21 = "Is this person covered by Medicare in " 7555 CARECO22 = "Is this person covered by Medicare in " 7556 CARECO23 = "Is this person covered by Medicare in " 7557 CARECO24 = "Is this person covered by Medicare in " 7558 CARECO25 = "Is this person covered by Medicare in " 7559 CARECO26 = "Is this person covered by Medicare in " 7560 CARECO27 = "Is this person covered by Medicare in " 7561 CARECO28 = "Is this person covered by Medicare in " 7562 CARECO29 = "Is this person covered by Medicare in " 7563 CARECO30 = "Is this person covered by Medicare in " 7564 CARECO31 = "Is this person covered by Medicare in " 7565 CARECO32 = "Is this person covered by Medicare in " 7566 CAIDCO01 = "Is this person covered by Medicaid in" 7567 CAIDCO02 = "Is this person covered by Medicaid in" 7568 CAIDCO03 = "Is this person covered by Medicaid in" 7569 CAIDCO04 = "Is this person covered by Medicaid in" 7570 CAIDCO05 = "Is this person covered by Medicaid in" 7571 CAIDCO06 = "Is this person covered by Medicaid in" 7572 CAIDCO07 = "Is this person covered by Medicaid in" 7573 CAIDCO08 = "Is this person covered by Medicaid in" 7574 CAIDCO09 = "Is this person covered by Medicaid in" 7575 CAIDCO10 = "Is this person covered by Medicaid in" 7576 CAIDCO11 = "Is this person covered by Medicaid in" 7577 CAIDCO12 = "Is this person covered by Medicaid in" 7578 CAIDCO13 = "Is this person covered by Medicaid in" 7579 CAIDCO14 = "Is this person covered by Medicaid in" 7580 CAIDCO15 = "Is this person covered by Medicaid in" 7581 CAIDCO16 = "Is this person covered by Medicaid in" 7582 CAIDCO17 = "Is this person covered by Medicaid in" 7583 CAIDCO18 = "Is this person covered by Medicaid in" 7584 CAIDCO19 = "Is this person covered by Medicaid in" 7585 CAIDCO20 = "Is this person covered by Medicaid in" 7586 CAIDCO21 = "Is this person covered by Medicaid in" 7587 CAIDCO22 = "Is this person covered by Medicaid in" 7588 CAIDCO23 = "Is this person covered by Medicaid in" 7589 CAIDCO24 = "Is this person covered by Medicaid in" 7590 CAIDCO25 = "Is this person covered by Medicaid in" 7591 CAIDCO26 = "Is this person covered by Medicaid in" 7592 CAIDCO27 = "Is this person covered by Medicaid in" 7593 CAIDCO28 = "Is this person covered by Medicaid in" 7594 CAIDCO29 = "Is this person covered by Medicaid in" 7595 CAIDCO30 = "Is this person covered by Medicaid in" 7596 CAIDCO31 = "Is this person covered by Medicaid in" 7597 CAIDCO32 = "Is this person covered by Medicaid in" 7598 WICCOV01 = "Was this person covered by WIC for thi" 7599 WICCOV02 = "Was this person covered by WIC for thi" 7600 WICCOV03 = "Was this person covered by WIC for thi" 7601 WICCOV04 = "Was this person covered by WIC for thi" 7602 WICCOV05 = "Was this person covered by WIC for thi" 7603 WICCOV06 = "Was this person covered by WIC for thi" 7604 WICCOV07 = "Was this person covered by WIC for thi" 7605 WICCOV08 = "Was this person covered by WIC for thi" 7606 WICCOV09 = "Was this person covered by WIC for thi" 135 The SAS System 13:10 Thursday, March 25, 2010 7607 WICCOV10 = "Was this person covered by WIC for thi" 7608 WICCOV11 = "Was this person covered by WIC for thi" 7609 WICCOV12 = "Was this person covered by WIC for thi" 7610 WICCOV13 = "Was this person covered by WIC for thi" 7611 WICCOV14 = "Was this person covered by WIC for thi" 7612 WICCOV15 = "Was this person covered by WIC for thi" 7613 WICCOV16 = "Was this person covered by WIC for thi" 7614 WICCOV17 = "Was this person covered by WIC for thi" 7615 WICCOV18 = "Was this person covered by WIC for thi" 7616 WICCOV19 = "Was this person covered by WIC for thi" 7617 WICCOV20 = "Was this person covered by WIC for thi" 7618 WICCOV21 = "Was this person covered by WIC for thi" 7619 WICCOV22 = "Was this person covered by WIC for thi" 7620 WICCOV23 = "Was this person covered by WIC for thi" 7621 WICCOV24 = "Was this person covered by WIC for thi" 7622 WICCOV25 = "Was this person covered by WIC for thi" 7623 WICCOV26 = "Was this person covered by WIC for thi" 7624 WICCOV27 = "Was this person covered by WIC for thi" 7625 WICCOV28 = "Was this person covered by WIC for thi" 7626 WICCOV29 = "Was this person covered by WIC for thi" 7627 WICCOV30 = "Was this person covered by WIC for thi" 7628 WICCOV31 = "Was this person covered by WIC for thi" 7629 WICCOV32 = "Was this person covered by WIC for thi" 7630 AFDC_01 = "Was this person covered by AFDC income" 7631 AFDC_02 = "Was this person covered by AFDC income" 7632 AFDC_03 = "Was this person covered by AFDC income" 7633 AFDC_04 = "Was this person covered by AFDC income" 7634 AFDC_05 = "Was this person covered by AFDC income" 7635 AFDC_06 = "Was this person covered by AFDC income" 7636 AFDC_07 = "Was this person covered by AFDC income" 7637 AFDC_08 = "Was this person covered by AFDC income" 7638 AFDC_09 = "Was this person covered by AFDC income" 7639 AFDC_10 = "Was this person covered by AFDC income" 7640 AFDC_11 = "Was this person covered by AFDC income" 7641 AFDC_12 = "Was this person covered by AFDC income" 7642 AFDC_13 = "Was this person covered by AFDC income" 7643 AFDC_14 = "Was this person covered by AFDC income" 7644 AFDC_15 = "Was this person covered by AFDC income" 7645 AFDC_16 = "Was this person covered by AFDC income" 7646 AFDC_17 = "Was this person covered by AFDC income" 7647 AFDC_18 = "Was this person covered by AFDC income" 7648 AFDC_19 = "Was this person covered by AFDC income" 7649 AFDC_20 = "Was this person covered by AFDC income" 7650 AFDC_21 = "Was this person covered by AFDC income" 7651 AFDC_22 = "Was this person covered by AFDC income" 7652 AFDC_23 = "Was this person covered by AFDC income" 7653 AFDC_24 = "Was this person covered by AFDC income" 7654 AFDC_25 = "Was this person covered by AFDC income" 7655 AFDC_26 = "Was this person covered by AFDC income" 7656 AFDC_27 = "Was this person covered by AFDC income" 7657 AFDC_28 = "Was this person covered by AFDC income" 7658 AFDC_29 = "Was this person covered by AFDC income" 7659 AFDC_30 = "Was this person covered by AFDC income" 7660 AFDC_31 = "Was this person covered by AFDC income" 7661 AFDC_32 = "Was this person covered by AFDC income" 7662 FOODST01 = "Was this person covered by food stamps" 7663 FOODST02 = "Was this person covered by food stamps" 7664 FOODST03 = "Was this person covered by food stamps" 136 The SAS System 13:10 Thursday, March 25, 2010 7665 FOODST04 = "Was this person covered by food stamps" 7666 FOODST05 = "Was this person covered by food stamps" 7667 FOODST06 = "Was this person covered by food stamps" 7668 FOODST07 = "Was this person covered by food stamps" 7669 FOODST08 = "Was this person covered by food stamps" 7670 FOODST09 = "Was this person covered by food stamps" 7671 FOODST10 = "Was this person covered by food stamps" 7672 FOODST11 = "Was this person covered by food stamps" 7673 FOODST12 = "Was this person covered by food stamps" 7674 FOODST13 = "Was this person covered by food stamps" 7675 FOODST14 = "Was this person covered by food stamps" 7676 FOODST15 = "Was this person covered by food stamps" 7677 FOODST16 = "Was this person covered by food stamps" 7678 FOODST17 = "Was this person covered by food stamps" 7679 FOODST18 = "Was this person covered by food stamps" 7680 FOODST19 = "Was this person covered by food stamps" 7681 FOODST20 = "Was this person covered by food stamps" 7682 FOODST21 = "Was this person covered by food stamps" 7683 FOODST22 = "Was this person covered by food stamps" 7684 FOODST23 = "Was this person covered by food stamps" 7685 FOODST24 = "Was this person covered by food stamps" 7686 FOODST25 = "Was this person covered by food stamps" 7687 FOODST26 = "Was this person covered by food stamps" 7688 FOODST27 = "Was this person covered by food stamps" 7689 FOODST28 = "Was this person covered by food stamps" 7690 FOODST29 = "Was this person covered by food stamps" 7691 FOODST30 = "Was this person covered by food stamps" 7692 FOODST31 = "Was this person covered by food stamps" 7693 FOODST32 = "Was this person covered by food stamps" 7694 GEN_AS01 = "Was this person covered by any general" 7695 GEN_AS02 = "Was this person covered by any general" 7696 GEN_AS03 = "Was this person covered by any general" 7697 GEN_AS04 = "Was this person covered by any general" 7698 GEN_AS05 = "Was this person covered by any general" 7699 GEN_AS06 = "Was this person covered by any general" 7700 GEN_AS07 = "Was this person covered by any general" 7701 GEN_AS08 = "Was this person covered by any general" 7702 GEN_AS09 = "Was this person covered by any general" 7703 GEN_AS10 = "Was this person covered by any general" 7704 GEN_AS11 = "Was this person covered by any general" 7705 GEN_AS12 = "Was this person covered by any general" 7706 GEN_AS13 = "Was this person covered by any general" 7707 GEN_AS14 = "Was this person covered by any general" 7708 GEN_AS15 = "Was this person covered by any general" 7709 GEN_AS16 = "Was this person covered by any general" 7710 GEN_AS17 = "Was this person covered by any general" 7711 GEN_AS18 = "Was this person covered by any general" 7712 GEN_AS19 = "Was this person covered by any general" 7713 GEN_AS20 = "Was this person covered by any general" 7714 GEN_AS21 = "Was this person covered by any general" 7715 GEN_AS22 = "Was this person covered by any general" 7716 GEN_AS23 = "Was this person covered by any general" 7717 GEN_AS24 = "Was this person covered by any general" 7718 GEN_AS25 = "Was this person covered by any general" 7719 GEN_AS26 = "Was this person covered by any general" 7720 GEN_AS27 = "Was this person covered by any general" 7721 GEN_AS28 = "Was this person covered by any general" 7722 GEN_AS29 = "Was this person covered by any general" 137 The SAS System 13:10 Thursday, March 25, 2010 7723 GEN_AS30 = "Was this person covered by any general" 7724 GEN_AS31 = "Was this person covered by any general" 7725 GEN_AS32 = "Was this person covered by any general" 7726 FOST_K01 = "Was this person covered by any foster" 7727 FOST_K02 = "Was this person covered by any foster" 7728 FOST_K03 = "Was this person covered by any foster" 7729 FOST_K04 = "Was this person covered by any foster" 7730 FOST_K05 = "Was this person covered by any foster" 7731 FOST_K06 = "Was this person covered by any foster" 7732 FOST_K07 = "Was this person covered by any foster" 7733 FOST_K08 = "Was this person covered by any foster" 7734 FOST_K09 = "Was this person covered by any foster" 7735 FOST_K10 = "Was this person covered by any foster" 7736 FOST_K11 = "Was this person covered by any foster" 7737 FOST_K12 = "Was this person covered by any foster" 7738 FOST_K13 = "Was this person covered by any foster" 7739 FOST_K14 = "Was this person covered by any foster" 7740 FOST_K15 = "Was this person covered by any foster" 7741 FOST_K16 = "Was this person covered by any foster" 7742 FOST_K17 = "Was this person covered by any foster" 7743 FOST_K18 = "Was this person covered by any foster" 7744 FOST_K19 = "Was this person covered by any foster" 7745 FOST_K20 = "Was this person covered by any foster" 7746 FOST_K21 = "Was this person covered by any foster" 7747 FOST_K22 = "Was this person covered by any foster" 7748 FOST_K23 = "Was this person covered by any foster" 7749 FOST_K24 = "Was this person covered by any foster" 7750 FOST_K25 = "Was this person covered by any foster" 7751 FOST_K26 = "Was this person covered by any foster" 7752 FOST_K27 = "Was this person covered by any foster" 7753 FOST_K28 = "Was this person covered by any foster" 7754 FOST_K29 = "Was this person covered by any foster" 7755 FOST_K30 = "Was this person covered by any foster" 7756 FOST_K31 = "Was this person covered by any foster" 7757 FOST_K32 = "Was this person covered by any foster" 7758 OTH_WE01 = "Was this person covered by any other" 7759 OTH_WE02 = "Was this person covered by any other" 7760 OTH_WE03 = "Was this person covered by any other" 7761 OTH_WE04 = "Was this person covered by any other" 7762 OTH_WE05 = "Was this person covered by any other" 7763 OTH_WE06 = "Was this person covered by any other" 7764 OTH_WE07 = "Was this person covered by any other" 7765 OTH_WE08 = "Was this person covered by any other" 7766 OTH_WE09 = "Was this person covered by any other" 7767 OTH_WE10 = "Was this person covered by any other" 7768 OTH_WE11 = "Was this person covered by any other" 7769 OTH_WE12 = "Was this person covered by any other" 7770 OTH_WE13 = "Was this person covered by any other" 7771 OTH_WE14 = "Was this person covered by any other" 7772 OTH_WE15 = "Was this person covered by any other" 7773 OTH_WE16 = "Was this person covered by any other" 7774 OTH_WE17 = "Was this person covered by any other" 7775 OTH_WE18 = "Was this person covered by any other" 7776 OTH_WE19 = "Was this person covered by any other" 7777 OTH_WE20 = "Was this person covered by any other" 7778 OTH_WE21 = "Was this person covered by any other" 7779 OTH_WE22 = "Was this person covered by any other" 7780 OTH_WE23 = "Was this person covered by any other" 138 The SAS System 13:10 Thursday, March 25, 2010 7781 OTH_WE24 = "Was this person covered by any other" 7782 OTH_WE25 = "Was this person covered by any other" 7783 OTH_WE26 = "Was this person covered by any other" 7784 OTH_WE27 = "Was this person covered by any other" 7785 OTH_WE28 = "Was this person covered by any other" 7786 OTH_WE29 = "Was this person covered by any other" 7787 OTH_WE30 = "Was this person covered by any other" 7788 OTH_WE31 = "Was this person covered by any other" 7789 OTH_WE32 = "Was this person covered by any other" 7790 SOC_SE01 = "Was this person covered by Social" 7791 SOC_SE02 = "Was this person covered by Social" 7792 SOC_SE03 = "Was this person covered by Social" 7793 SOC_SE04 = "Was this person covered by Social" 7794 SOC_SE05 = "Was this person covered by Social" 7795 SOC_SE06 = "Was this person covered by Social" 7796 SOC_SE07 = "Was this person covered by Social" 7797 SOC_SE08 = "Was this person covered by Social" 7798 SOC_SE09 = "Was this person covered by Social" 7799 SOC_SE10 = "Was this person covered by Social" 7800 SOC_SE11 = "Was this person covered by Social" 7801 SOC_SE12 = "Was this person covered by Social" 7802 SOC_SE13 = "Was this person covered by Social" 7803 SOC_SE14 = "Was this person covered by Social" 7804 SOC_SE15 = "Was this person covered by Social" 7805 SOC_SE16 = "Was this person covered by Social" 7806 SOC_SE17 = "Was this person covered by Social" 7807 SOC_SE18 = "Was this person covered by Social" 7808 SOC_SE19 = "Was this person covered by Social" 7809 SOC_SE20 = "Was this person covered by Social" 7810 SOC_SE21 = "Was this person covered by Social" 7811 SOC_SE22 = "Was this person covered by Social" 7812 SOC_SE23 = "Was this person covered by Social" 7813 SOC_SE24 = "Was this person covered by Social" 7814 SOC_SE25 = "Was this person covered by Social" 7815 SOC_SE26 = "Was this person covered by Social" 7816 SOC_SE27 = "Was this person covered by Social" 7817 SOC_SE28 = "Was this person covered by Social" 7818 SOC_SE29 = "Was this person covered by Social" 7819 SOC_SE30 = "Was this person covered by Social" 7820 SOC_SE31 = "Was this person covered by Social" 7821 SOC_SE32 = "Was this person covered by Social" 7822 RAILRD01 = "Was this person covered by Railroad" 7823 RAILRD02 = "Was this person covered by Railroad" 7824 RAILRD03 = "Was this person covered by Railroad" 7825 RAILRD04 = "Was this person covered by Railroad" 7826 RAILRD05 = "Was this person covered by Railroad" 7827 RAILRD06 = "Was this person covered by Railroad" 7828 RAILRD07 = "Was this person covered by Railroad" 7829 RAILRD08 = "Was this person covered by Railroad" 7830 RAILRD09 = "Was this person covered by Railroad" 7831 RAILRD10 = "Was this person covered by Railroad" 7832 RAILRD11 = "Was this person covered by Railroad" 7833 RAILRD12 = "Was this person covered by Railroad" 7834 RAILRD13 = "Was this person covered by Railroad" 7835 RAILRD14 = "Was this person covered by Railroad" 7836 RAILRD15 = "Was this person covered by Railroad" 7837 RAILRD16 = "Was this person covered by Railroad" 7838 RAILRD17 = "Was this person covered by Railroad" 139 The SAS System 13:10 Thursday, March 25, 2010 7839 RAILRD18 = "Was this person covered by Railroad" 7840 RAILRD19 = "Was this person covered by Railroad" 7841 RAILRD20 = "Was this person covered by Railroad" 7842 RAILRD21 = "Was this person covered by Railroad" 7843 RAILRD22 = "Was this person covered by Railroad" 7844 RAILRD23 = "Was this person covered by Railroad" 7845 RAILRD24 = "Was this person covered by Railroad" 7846 RAILRD25 = "Was this person covered by Railroad" 7847 RAILRD26 = "Was this person covered by Railroad" 7848 RAILRD27 = "Was this person covered by Railroad" 7849 RAILRD28 = "Was this person covered by Railroad" 7850 RAILRD29 = "Was this person covered by Railroad" 7851 RAILRD30 = "Was this person covered by Railroad" 7852 RAILRD31 = "Was this person covered by Railroad" 7853 RAILRD32 = "Was this person covered by Railroad" 7854 VETS_01 = "Was this person covered by Veteran's" 7855 VETS_02 = "Was this person covered by Veteran's" 7856 VETS_03 = "Was this person covered by Veteran's" 7857 VETS_04 = "Was this person covered by Veteran's" 7858 VETS_05 = "Was this person covered by Veteran's" 7859 VETS_06 = "Was this person covered by Veteran's" 7860 VETS_07 = "Was this person covered by Veteran's" 7861 VETS_08 = "Was this person covered by Veteran's" 7862 VETS_09 = "Was this person covered by Veteran's" 7863 VETS_10 = "Was this person covered by Veteran's" 7864 VETS_11 = "Was this person covered by Veteran's" 7865 VETS_12 = "Was this person covered by Veteran's" 7866 VETS_13 = "Was this person covered by Veteran's" 7867 VETS_14 = "Was this person covered by Veteran's" 7868 VETS_15 = "Was this person covered by Veteran's" 7869 VETS_16 = "Was this person covered by Veteran's" 7870 VETS_17 = "Was this person covered by Veteran's" 7871 VETS_18 = "Was this person covered by Veteran's" 7872 VETS_19 = "Was this person covered by Veteran's" 7873 VETS_20 = "Was this person covered by Veteran's" 7874 VETS_21 = "Was this person covered by Veteran's" 7875 VETS_22 = "Was this person covered by Veteran's" 7876 VETS_23 = "Was this person covered by Veteran's" 7877 VETS_24 = "Was this person covered by Veteran's" 7878 VETS_25 = "Was this person covered by Veteran's" 7879 VETS_26 = "Was this person covered by Veteran's" 7880 VETS_27 = "Was this person covered by Veteran's" 7881 VETS_28 = "Was this person covered by Veteran's" 7882 VETS_29 = "Was this person covered by Veteran's" 7883 VETS_30 = "Was this person covered by Veteran's" 7884 VETS_31 = "Was this person covered by Veteran's" 7885 VETS_32 = "Was this person covered by Veteran's" 7886 WS_I1_01 = "Subscript number = Job occurrence" 7887 WS_I1_02 = "Subscript number = Job occurrence" 7888 WS_I1_03 = "Subscript number = Job occurrence" 7889 WS_I1_04 = "Subscript number = Job occurrence" 7890 WS_I1_05 = "Subscript number = Job occurrence" 7891 WS_I1_06 = "Subscript number = Job occurrence" 7892 WS_I1_07 = "Subscript number = Job occurrence" 7893 WS_I1_08 = "Subscript number = Job occurrence" 7894 WS_I1_09 = "Subscript number = Job occurrence" 7895 WS_I1_10 = "Subscript number = Job occurrence" 7896 WS_I1_11 = "Subscript number = Job occurrence" 140 The SAS System 13:10 Thursday, March 25, 2010 7897 WS_I1_12 = "Subscript number = Job occurrence" 7898 WS_I1_13 = "Subscript number = Job occurrence" 7899 WS_I1_14 = "Subscript number = Job occurrence" 7900 WS_I1_15 = "Subscript number = Job occurrence" 7901 WS_I1_16 = "Subscript number = Job occurrence" 7902 WS_I1_17 = "Subscript number = Job occurrence" 7903 WS_I1_18 = "Subscript number = Job occurrence" 7904 WS_I1_19 = "Subscript number = Job occurrence" 7905 WS_I1_20 = "Subscript number = Job occurrence" 7906 WS_I1_21 = "Subscript number = Job occurrence" 7907 WS_I1_22 = "Subscript number = Job occurrence" 7908 WS_I1_23 = "Subscript number = Job occurrence" 7909 WS_I1_24 = "Subscript number = Job occurrence" 7910 WS_I1_25 = "Subscript number = Job occurrence" 7911 WS_I1_26 = "Subscript number = Job occurrence" 7912 WS_I1_27 = "Subscript number = Job occurrence" 7913 WS_I1_28 = "Subscript number = Job occurrence" 7914 WS_I1_29 = "Subscript number = Job occurrence" 7915 WS_I1_30 = "Subscript number = Job occurrence" 7916 WS_I1_31 = "Subscript number = Job occurrence" 7917 WS_I1_32 = "Subscript number = Job occurrence" 7918 WS_I2_01 = "Subscript number = Job occurrence" 7919 WS_I2_02 = "Subscript number = Job occurrence" 7920 WS_I2_03 = "Subscript number = Job occurrence" 7921 WS_I2_04 = "Subscript number = Job occurrence" 7922 WS_I2_05 = "Subscript number = Job occurrence" 7923 WS_I2_06 = "Subscript number = Job occurrence" 7924 WS_I2_07 = "Subscript number = Job occurrence" 7925 WS_I2_08 = "Subscript number = Job occurrence" 7926 WS_I2_09 = "Subscript number = Job occurrence" 7927 WS_I2_10 = "Subscript number = Job occurrence" 7928 WS_I2_11 = "Subscript number = Job occurrence" 7929 WS_I2_12 = "Subscript number = Job occurrence" 7930 WS_I2_13 = "Subscript number = Job occurrence" 7931 WS_I2_14 = "Subscript number = Job occurrence" 7932 WS_I2_15 = "Subscript number = Job occurrence" 7933 WS_I2_16 = "Subscript number = Job occurrence" 7934 WS_I2_17 = "Subscript number = Job occurrence" 7935 WS_I2_18 = "Subscript number = Job occurrence" 7936 WS_I2_19 = "Subscript number = Job occurrence" 7937 WS_I2_20 = "Subscript number = Job occurrence" 7938 WS_I2_21 = "Subscript number = Job occurrence" 7939 WS_I2_22 = "Subscript number = Job occurrence" 7940 WS_I2_23 = "Subscript number = Job occurrence" 7941 WS_I2_24 = "Subscript number = Job occurrence" 7942 WS_I2_25 = "Subscript number = Job occurrence" 7943 WS_I2_26 = "Subscript number = Job occurrence" 7944 WS_I2_27 = "Subscript number = Job occurrence" 7945 WS_I2_28 = "Subscript number = Job occurrence" 7946 WS_I2_29 = "Subscript number = Job occurrence" 7947 WS_I2_30 = "Subscript number = Job occurrence" 7948 WS_I2_31 = "Subscript number = Job occurrence" 7949 WS_I2_32 = "Subscript number = Job occurrence" 7950 SE_I1_01 = "Subscript number = Business occurrence" 7951 SE_I1_02 = "Subscript number = Business occurrence" 7952 SE_I1_03 = "Subscript number = Business occurrence" 7953 SE_I1_04 = "Subscript number = Business occurrence" 7954 SE_I1_05 = "Subscript number = Business occurrence" 141 The SAS System 13:10 Thursday, March 25, 2010 7955 SE_I1_06 = "Subscript number = Business occurrence" 7956 SE_I1_07 = "Subscript number = Business occurrence" 7957 SE_I1_08 = "Subscript number = Business occurrence" 7958 SE_I1_09 = "Subscript number = Business occurrence" 7959 SE_I1_10 = "Subscript number = Business occurrence" 7960 SE_I1_11 = "Subscript number = Business occurrence" 7961 SE_I1_12 = "Subscript number = Business occurrence" 7962 SE_I1_13 = "Subscript number = Business occurrence" 7963 SE_I1_14 = "Subscript number = Business occurrence" 7964 SE_I1_15 = "Subscript number = Business occurrence" 7965 SE_I1_16 = "Subscript number = Business occurrence" 7966 SE_I1_17 = "Subscript number = Business occurrence" 7967 SE_I1_18 = "Subscript number = Business occurrence" 7968 SE_I1_19 = "Subscript number = Business occurrence" 7969 SE_I1_20 = "Subscript number = Business occurrence" 7970 SE_I1_21 = "Subscript number = Business occurrence" 7971 SE_I1_22 = "Subscript number = Business occurrence" 7972 SE_I1_23 = "Subscript number = Business occurrence" 7973 SE_I1_24 = "Subscript number = Business occurrence" 7974 SE_I1_25 = "Subscript number = Business occurrence" 7975 SE_I1_26 = "Subscript number = Business occurrence" 7976 SE_I1_27 = "Subscript number = Business occurrence" 7977 SE_I1_28 = "Subscript number = Business occurrence" 7978 SE_I1_29 = "Subscript number = Business occurrence" 7979 SE_I1_30 = "Subscript number = Business occurrence" 7980 SE_I1_31 = "Subscript number = Business occurrence" 7981 SE_I1_32 = "Subscript number = Business occurrence" 7982 SE_I2_01 = "Subscript number = Business occurrence" 7983 SE_I2_02 = "Subscript number = Business occurrence" 7984 SE_I2_03 = "Subscript number = Business occurrence" 7985 SE_I2_04 = "Subscript number = Business occurrence" 7986 SE_I2_05 = "Subscript number = Business occurrence" 7987 SE_I2_06 = "Subscript number = Business occurrence" 7988 SE_I2_07 = "Subscript number = Business occurrence" 7989 SE_I2_08 = "Subscript number = Business occurrence" 7990 SE_I2_09 = "Subscript number = Business occurrence" 7991 SE_I2_10 = "Subscript number = Business occurrence" 7992 SE_I2_11 = "Subscript number = Business occurrence" 7993 SE_I2_12 = "Subscript number = Business occurrence" 7994 SE_I2_13 = "Subscript number = Business occurrence" 7995 SE_I2_14 = "Subscript number = Business occurrence" 7996 SE_I2_15 = "Subscript number = Business occurrence" 7997 SE_I2_16 = "Subscript number = Business occurrence" 7998 SE_I2_17 = "Subscript number = Business occurrence" 7999 SE_I2_18 = "Subscript number = Business occurrence" 8000 SE_I2_19 = "Subscript number = Business occurrence" 8001 SE_I2_20 = "Subscript number = Business occurrence" 8002 SE_I2_21 = "Subscript number = Business occurrence" 8003 SE_I2_22 = "Subscript number = Business occurrence" 8004 SE_I2_23 = "Subscript number = Business occurrence" 8005 SE_I2_24 = "Subscript number = Business occurrence" 8006 SE_I2_25 = "Subscript number = Business occurrence" 8007 SE_I2_26 = "Subscript number = Business occurrence" 8008 SE_I2_27 = "Subscript number = Business occurrence" 8009 SE_I2_28 = "Subscript number = Business occurrence" 8010 SE_I2_29 = "Subscript number = Business occurrence" 8011 SE_I2_30 = "Subscript number = Business occurrence" 8012 SE_I2_31 = "Subscript number = Business occurrence" 142 The SAS System 13:10 Thursday, March 25, 2010 8013 SE_I2_32 = "Subscript number = Business occurrence" 8014 ; 8015 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1984/sipp84fp.zip " NOTE: 100 records were read from the infile RAW. The minimum record length was 10760. The maximum record length was 10760. NOTE: The data set LIBRARY.SIP84FP has 100 observations and 3945 variables. NOTE: DATA statement used (Total process time): real time 4.24 seconds cpu time 0.89 seconds 8016 proc print data=library.sip84fp (obs=6); 8017 8018 8019 FORMAT 8020 PP_INTV1 PP_INTV. 8021 PP_INTV2 PP_INTV. 8022 PP_INTV3 PP_INTV. 8023 PP_INTV4 PP_INTV. 8024 PP_INTV5 PP_INTV. 8025 PP_INTV6 PP_INTV. 8026 PP_INTV7 PP_INTV. 8027 PP_INTV8 PP_INTV. 8028 PP_MIS01 PP_MIS. 8029 PP_MIS02 PP_MIS. 8030 PP_MIS03 PP_MIS. 8031 PP_MIS04 PP_MIS. 8032 PP_MIS05 PP_MIS. 8033 PP_MIS06 PP_MIS. 8034 PP_MIS07 PP_MIS. 8035 PP_MIS08 PP_MIS. 8036 PP_MIS09 PP_MIS. 8037 PP_MIS10 PP_MIS. 8038 PP_MIS11 PP_MIS. 8039 PP_MIS12 PP_MIS. 8040 PP_MIS13 PP_MIS. 8041 PP_MIS14 PP_MIS. 8042 PP_MIS15 PP_MIS. 8043 PP_MIS16 PP_MIS. 8044 PP_MIS17 PP_MIS. 8045 PP_MIS18 PP_MIS. 8046 PP_MIS19 PP_MIS. 8047 PP_MIS20 PP_MIS. 8048 PP_MIS21 PP_MIS. 8049 PP_MIS22 PP_MIS. 8050 PP_MIS23 PP_MIS. 8051 PP_MIS24 PP_MIS. 8052 PP_MIS25 PP_MIS. 8053 PP_MIS26 PP_MIS. 8054 PP_MIS27 PP_MIS. 8055 PP_MIS28 PP_MIS. 8056 PP_MIS29 PP_MIS. 8057 PP_MIS30 PP_MIS. 143 The SAS System 13:10 Thursday, March 25, 2010 8058 PP_MIS31 PP_MIS. 8059 PP_MIS32 PP_MIS. 8060 REASLEF1 REASLEF. 8061 REASLEF2 REASLEF. 8062 REASLEF3 REASLEF. 8063 REASLEF4 REASLEF. 8064 REASLEF5 REASLEF. 8065 REASLEF6 REASLEF. 8066 REASLEF7 REASLEF. 8067 REASLEF8 REASLEF. 8068 SU_RGC SU_RGC. 8069 LGTHHT01 LGTHHT. 8070 LGTHHT02 LGTHHT. 8071 LGTHHT03 LGTHHT. 8072 LGTHHT04 LGTHHT. 8073 LGTHHT05 LGTHHT. 8074 LGTHHT06 LGTHHT. 8075 LGTHHT07 LGTHHT. 8076 LGTHHT08 LGTHHT. 8077 LGTHHT09 LGTHHT. 8078 LGTHHT10 LGTHHT. 8079 LGTHHT11 LGTHHT. 8080 LGTHHT12 LGTHHT. 8081 LGTHHT13 LGTHHT. 8082 LGTHHT14 LGTHHT. 8083 LGTHHT15 LGTHHT. 8084 LGTHHT16 LGTHHT. 8085 LGTHHT17 LGTHHT. 8086 LGTHHT18 LGTHHT. 8087 LGTHHT19 LGTHHT. 8088 LGTHHT20 LGTHHT. 8089 LGTHHT21 LGTHHT. 8090 LGTHHT22 LGTHHT. 8091 LGTHHT23 LGTHHT. 8092 LGTHHT24 LGTHHT. 8093 LGTHHT25 LGTHHT. 8094 LGTHHT26 LGTHHT. 8095 LGTHHT27 LGTHHT. 8096 LGTHHT28 LGTHHT. 8097 LGTHHT29 LGTHHT. 8098 LGTHHT30 LGTHHT. 8099 LGTHHT31 LGTHHT. 8100 LGTHHT32 LGTHHT. 8101 LGTKEY01 LGTKEY. 8102 LGTKEY02 LGTKEY. 8103 LGTKEY03 LGTKEY. 8104 LGTKEY04 LGTKEY. 8105 LGTKEY05 LGTKEY. 8106 LGTKEY06 LGTKEY. 8107 LGTKEY07 LGTKEY. 8108 LGTKEY08 LGTKEY. 8109 LGTKEY09 LGTKEY. 8110 LGTKEY10 LGTKEY. 8111 LGTKEY11 LGTKEY. 8112 LGTKEY12 LGTKEY. 8113 LGTKEY13 LGTKEY. 8114 LGTKEY14 LGTKEY. 8115 LGTKEY15 LGTKEY. 144 The SAS System 13:10 Thursday, March 25, 2010 8116 LGTKEY16 LGTKEY. 8117 LGTKEY17 LGTKEY. 8118 LGTKEY18 LGTKEY. 8119 LGTKEY19 LGTKEY. 8120 LGTKEY20 LGTKEY. 8121 LGTKEY21 LGTKEY. 8122 LGTKEY22 LGTKEY. 8123 LGTKEY23 LGTKEY. 8124 LGTKEY24 LGTKEY. 8125 LGTKEY25 LGTKEY. 8126 LGTKEY26 LGTKEY. 8127 LGTKEY27 LGTKEY. 8128 LGTKEY28 LGTKEY. 8129 LGTKEY29 LGTKEY. 8130 LGTKEY30 LGTKEY. 8131 LGTKEY31 LGTKEY. 8132 LGTKEY32 LGTKEY. 8133 LGTOTH01 LGTOTH. 8134 LGTOTH02 LGTOTH. 8135 LGTOTH03 LGTOTH. 8136 LGTOTH04 LGTOTH. 8137 LGTOTH05 LGTOTH. 8138 LGTOTH06 LGTOTH. 8139 LGTOTH07 LGTOTH. 8140 LGTOTH08 LGTOTH. 8141 LGTOTH09 LGTOTH. 8142 LGTOTH10 LGTOTH. 8143 LGTOTH11 LGTOTH. 8144 LGTOTH12 LGTOTH. 8145 LGTOTH13 LGTOTH. 8146 LGTOTH14 LGTOTH. 8147 LGTOTH15 LGTOTH. 8148 LGTOTH16 LGTOTH. 8149 LGTOTH17 LGTOTH. 8150 LGTOTH18 LGTOTH. 8151 LGTOTH19 LGTOTH. 8152 LGTOTH20 LGTOTH. 8153 LGTOTH21 LGTOTH. 8154 LGTOTH22 LGTOTH. 8155 LGTOTH23 LGTOTH. 8156 LGTOTH24 LGTOTH. 8157 LGTOTH25 LGTOTH. 8158 LGTOTH26 LGTOTH. 8159 LGTOTH27 LGTOTH. 8160 LGTOTH28 LGTOTH. 8161 LGTOTH29 LGTOTH. 8162 LGTOTH30 LGTOTH. 8163 LGTOTH31 LGTOTH. 8164 LGTOTH32 LGTOTH. 8165 SEX SEX. 8166 RACE RACE. 8167 ETHNICTY ETHNICTY. 8168 RRP_01 RRP. 8169 RRP_02 RRP. 8170 RRP_03 RRP. 8171 RRP_04 RRP. 8172 RRP_05 RRP. 8173 RRP_06 RRP. 145 The SAS System 13:10 Thursday, March 25, 2010 8174 RRP_07 RRP. 8175 RRP_08 RRP. 8176 RRP_09 RRP. 8177 RRP_10 RRP. 8178 RRP_11 RRP. 8179 RRP_12 RRP. 8180 RRP_13 RRP. 8181 RRP_14 RRP. 8182 RRP_15 RRP. 8183 RRP_16 RRP. 8184 RRP_17 RRP. 8185 RRP_18 RRP. 8186 RRP_19 RRP. 8187 RRP_20 RRP. 8188 RRP_21 RRP. 8189 RRP_22 RRP. 8190 RRP_23 RRP. 8191 RRP_24 RRP. 8192 RRP_25 RRP. 8193 RRP_26 RRP. 8194 RRP_27 RRP. 8195 RRP_28 RRP. 8196 RRP_29 RRP. 8197 RRP_30 RRP. 8198 RRP_31 RRP. 8199 RRP_32 RRP. 8200 AGE_01 AGE. 8201 AGE_02 AGE. 8202 AGE_03 AGE. 8203 AGE_04 AGE. 8204 AGE_05 AGE. 8205 AGE_06 AGE. 8206 AGE_07 AGE. 8207 AGE_08 AGE. 8208 AGE_09 AGE. 8209 AGE_10 AGE. 8210 AGE_11 AGE. 8211 AGE_12 AGE. 8212 AGE_13 AGE. 8213 AGE_14 AGE. 8214 AGE_15 AGE. 8215 AGE_16 AGE. 8216 AGE_17 AGE. 8217 AGE_18 AGE. 8218 AGE_19 AGE. 8219 AGE_20 AGE. 8220 AGE_21 AGE. 8221 AGE_22 AGE. 8222 AGE_23 AGE. 8223 AGE_24 AGE. 8224 AGE_25 AGE. 8225 AGE_26 AGE. 8226 AGE_27 AGE. 8227 AGE_28 AGE. 8228 AGE_29 AGE. 8229 AGE_30 AGE. 8230 AGE_31 AGE. 8231 AGE_32 AGE. 146 The SAS System 13:10 Thursday, March 25, 2010 8232 MS_01 MS. 8233 MS_02 MS. 8234 MS_03 MS. 8235 MS_04 MS. 8236 MS_05 MS. 8237 MS_06 MS. 8238 MS_07 MS. 8239 MS_08 MS. 8240 MS_09 MS. 8241 MS_10 MS. 8242 MS_11 MS. 8243 MS_12 MS. 8244 MS_13 MS. 8245 MS_14 MS. 8246 MS_15 MS. 8247 MS_16 MS. 8248 MS_17 MS. 8249 MS_18 MS. 8250 MS_19 MS. 8251 MS_20 MS. 8252 MS_21 MS. 8253 MS_22 MS. 8254 MS_23 MS. 8255 MS_24 MS. 8256 MS_25 MS. 8257 MS_26 MS. 8258 MS_27 MS. 8259 MS_28 MS. 8260 MS_29 MS. 8261 MS_30 MS. 8262 MS_31 MS. 8263 MS_32 MS. 8264 FAMTYP01 FAMTYP. 8265 FAMTYP02 FAMTYP. 8266 FAMTYP03 FAMTYP. 8267 FAMTYP04 FAMTYP. 8268 FAMTYP05 FAMTYP. 8269 FAMTYP06 FAMTYP. 8270 FAMTYP07 FAMTYP. 8271 FAMTYP08 FAMTYP. 8272 FAMTYP09 FAMTYP. 8273 FAMTYP10 FAMTYP. 8274 FAMTYP11 FAMTYP. 8275 FAMTYP12 FAMTYP. 8276 FAMTYP13 FAMTYP. 8277 FAMTYP14 FAMTYP. 8278 FAMTYP15 FAMTYP. 8279 FAMTYP16 FAMTYP. 8280 FAMTYP17 FAMTYP. 8281 FAMTYP18 FAMTYP. 8282 FAMTYP19 FAMTYP. 8283 FAMTYP20 FAMTYP. 8284 FAMTYP21 FAMTYP. 8285 FAMTYP22 FAMTYP. 8286 FAMTYP23 FAMTYP. 8287 FAMTYP24 FAMTYP. 8288 FAMTYP25 FAMTYP. 8289 FAMTYP26 FAMTYP. 147 The SAS System 13:10 Thursday, March 25, 2010 8290 FAMTYP27 FAMTYP. 8291 FAMTYP28 FAMTYP. 8292 FAMTYP29 FAMTYP. 8293 FAMTYP30 FAMTYP. 8294 FAMTYP31 FAMTYP. 8295 FAMTYP32 FAMTYP. 8296 FAMREL01 FAMREL. 8297 FAMREL02 FAMREL. 8298 FAMREL03 FAMREL. 8299 FAMREL04 FAMREL. 8300 FAMREL05 FAMREL. 8301 FAMREL06 FAMREL. 8302 FAMREL07 FAMREL. 8303 FAMREL08 FAMREL. 8304 FAMREL09 FAMREL. 8305 FAMREL10 FAMREL. 8306 FAMREL11 FAMREL. 8307 FAMREL12 FAMREL. 8308 FAMREL13 FAMREL. 8309 FAMREL14 FAMREL. 8310 FAMREL15 FAMREL. 8311 FAMREL16 FAMREL. 8312 FAMREL17 FAMREL. 8313 FAMREL18 FAMREL. 8314 FAMREL19 FAMREL. 8315 FAMREL20 FAMREL. 8316 FAMREL21 FAMREL. 8317 FAMREL22 FAMREL. 8318 FAMREL23 FAMREL. 8319 FAMREL24 FAMREL. 8320 FAMREL25 FAMREL. 8321 FAMREL26 FAMREL. 8322 FAMREL27 FAMREL. 8323 FAMREL28 FAMREL. 8324 FAMREL29 FAMREL. 8325 FAMREL30 FAMREL. 8326 FAMREL31 FAMREL. 8327 FAMREL32 FAMREL. 8328 FAMNUM01 FAMNUM. 8329 FAMNUM02 FAMNUM. 8330 FAMNUM03 FAMNUM. 8331 FAMNUM04 FAMNUM. 8332 FAMNUM05 FAMNUM. 8333 FAMNUM06 FAMNUM. 8334 FAMNUM07 FAMNUM. 8335 FAMNUM08 FAMNUM. 8336 FAMNUM09 FAMNUM. 8337 FAMNUM10 FAMNUM. 8338 FAMNUM11 FAMNUM. 8339 FAMNUM12 FAMNUM. 8340 FAMNUM13 FAMNUM. 8341 FAMNUM14 FAMNUM. 8342 FAMNUM15 FAMNUM. 8343 FAMNUM16 FAMNUM. 8344 FAMNUM17 FAMNUM. 8345 FAMNUM18 FAMNUM. 8346 FAMNUM19 FAMNUM. 8347 FAMNUM20 FAMNUM. 148 The SAS System 13:10 Thursday, March 25, 2010 8348 FAMNUM21 FAMNUM. 8349 FAMNUM22 FAMNUM. 8350 FAMNUM23 FAMNUM. 8351 FAMNUM24 FAMNUM. 8352 FAMNUM25 FAMNUM. 8353 FAMNUM26 FAMNUM. 8354 FAMNUM27 FAMNUM. 8355 FAMNUM28 FAMNUM. 8356 FAMNUM29 FAMNUM. 8357 FAMNUM30 FAMNUM. 8358 FAMNUM31 FAMNUM. 8359 FAMNUM32 FAMNUM. 8360 PNSP_01 PNSP. 8361 PNSP_02 PNSP. 8362 PNSP_03 PNSP. 8363 PNSP_04 PNSP. 8364 PNSP_05 PNSP. 8365 PNSP_06 PNSP. 8366 PNSP_07 PNSP. 8367 PNSP_08 PNSP. 8368 PNSP_09 PNSP. 8369 PNSP_10 PNSP. 8370 PNSP_11 PNSP. 8371 PNSP_12 PNSP. 8372 PNSP_13 PNSP. 8373 PNSP_14 PNSP. 8374 PNSP_15 PNSP. 8375 PNSP_16 PNSP. 8376 PNSP_17 PNSP. 8377 PNSP_18 PNSP. 8378 PNSP_19 PNSP. 8379 PNSP_20 PNSP. 8380 PNSP_21 PNSP. 8381 PNSP_22 PNSP. 8382 PNSP_23 PNSP. 8383 PNSP_24 PNSP. 8384 PNSP_25 PNSP. 8385 PNSP_26 PNSP. 8386 PNSP_27 PNSP. 8387 PNSP_28 PNSP. 8388 PNSP_29 PNSP. 8389 PNSP_30 PNSP. 8390 PNSP_31 PNSP. 8391 PNSP_32 PNSP. 8392 ENT_SP01 ENT_SP. 8393 ENT_SP02 ENT_SP. 8394 ENT_SP03 ENT_SP. 8395 ENT_SP04 ENT_SP. 8396 ENT_SP05 ENT_SP. 8397 ENT_SP06 ENT_SP. 8398 ENT_SP07 ENT_SP. 8399 ENT_SP08 ENT_SP. 8400 ENT_SP09 ENT_SP. 8401 ENT_SP10 ENT_SP. 8402 ENT_SP11 ENT_SP. 8403 ENT_SP12 ENT_SP. 8404 ENT_SP13 ENT_SP. 8405 ENT_SP14 ENT_SP. 149 The SAS System 13:10 Thursday, March 25, 2010 8406 ENT_SP15 ENT_SP. 8407 ENT_SP16 ENT_SP. 8408 ENT_SP17 ENT_SP. 8409 ENT_SP18 ENT_SP. 8410 ENT_SP19 ENT_SP. 8411 ENT_SP20 ENT_SP. 8412 ENT_SP21 ENT_SP. 8413 ENT_SP22 ENT_SP. 8414 ENT_SP23 ENT_SP. 8415 ENT_SP24 ENT_SP. 8416 ENT_SP25 ENT_SP. 8417 ENT_SP26 ENT_SP. 8418 ENT_SP27 ENT_SP. 8419 ENT_SP28 ENT_SP. 8420 ENT_SP29 ENT_SP. 8421 ENT_SP30 ENT_SP. 8422 ENT_SP31 ENT_SP. 8423 ENT_SP32 ENT_SP. 8424 PNPT_01 PNPT. 8425 PNPT_02 PNPT. 8426 PNPT_03 PNPT. 8427 PNPT_04 PNPT. 8428 PNPT_05 PNPT. 8429 PNPT_06 PNPT. 8430 PNPT_07 PNPT. 8431 PNPT_08 PNPT. 8432 PNPT_09 PNPT. 8433 PNPT_10 PNPT. 8434 PNPT_11 PNPT. 8435 PNPT_12 PNPT. 8436 PNPT_13 PNPT. 8437 PNPT_14 PNPT. 8438 PNPT_15 PNPT. 8439 PNPT_16 PNPT. 8440 PNPT_17 PNPT. 8441 PNPT_18 PNPT. 8442 PNPT_19 PNPT. 8443 PNPT_20 PNPT. 8444 PNPT_21 PNPT. 8445 PNPT_22 PNPT. 8446 PNPT_23 PNPT. 8447 PNPT_24 PNPT. 8448 PNPT_25 PNPT. 8449 PNPT_26 PNPT. 8450 PNPT_27 PNPT. 8451 PNPT_28 PNPT. 8452 PNPT_29 PNPT. 8453 PNPT_30 PNPT. 8454 PNPT_31 PNPT. 8455 PNPT_32 PNPT. 8456 ENT_PT01 ENT_PT. 8457 ENT_PT02 ENT_PT. 8458 ENT_PT03 ENT_PT. 8459 ENT_PT04 ENT_PT. 8460 ENT_PT05 ENT_PT. 8461 ENT_PT06 ENT_PT. 8462 ENT_PT07 ENT_PT. 8463 ENT_PT08 ENT_PT. 150 The SAS System 13:10 Thursday, March 25, 2010 8464 ENT_PT09 ENT_PT. 8465 ENT_PT10 ENT_PT. 8466 ENT_PT11 ENT_PT. 8467 ENT_PT12 ENT_PT. 8468 ENT_PT13 ENT_PT. 8469 ENT_PT14 ENT_PT. 8470 ENT_PT15 ENT_PT. 8471 ENT_PT16 ENT_PT. 8472 ENT_PT17 ENT_PT. 8473 ENT_PT18 ENT_PT. 8474 ENT_PT19 ENT_PT. 8475 ENT_PT20 ENT_PT. 8476 ENT_PT21 ENT_PT. 8477 ENT_PT22 ENT_PT. 8478 ENT_PT23 ENT_PT. 8479 ENT_PT24 ENT_PT. 8480 ENT_PT25 ENT_PT. 8481 ENT_PT26 ENT_PT. 8482 ENT_PT27 ENT_PT. 8483 ENT_PT28 ENT_PT. 8484 ENT_PT29 ENT_PT. 8485 ENT_PT30 ENT_PT. 8486 ENT_PT31 ENT_PT. 8487 ENT_PT32 ENT_PT. 8488 HIGRADE1 HIGRADE. 8489 HIGRADE2 HIGRADE. 8490 HIGRADE3 HIGRADE. 8491 HIGRADE4 HIGRADE. 8492 HIGRADE5 HIGRADE. 8493 HIGRADE6 HIGRADE. 8494 HIGRADE7 HIGRADE. 8495 HIGRADE8 HIGRADE. 8496 GRD_CMP1 GRD_CMP. 8497 GRD_CMP2 GRD_CMP. 8498 GRD_CMP3 GRD_CMP. 8499 GRD_CMP4 GRD_CMP. 8500 GRD_CMP5 GRD_CMP. 8501 GRD_CMP6 GRD_CMP. 8502 GRD_CMP7 GRD_CMP. 8503 GRD_CMP8 GRD_CMP. 8504 IN_AF_1 IN_AF. 8505 IN_AF_2 IN_AF. 8506 IN_AF_3 IN_AF. 8507 IN_AF_4 IN_AF. 8508 IN_AF_5 IN_AF. 8509 IN_AF_6 IN_AF. 8510 IN_AF_7 IN_AF. 8511 IN_AF_8 IN_AF. 8512 USRVE_1 USRVE. 8513 USRVE_2 USRVE. 8514 USRVE_3 USRVE. 8515 USRVE_4 USRVE. 8516 USRVE_5 USRVE. 8517 USRVE_6 USRVE. 8518 USRVE_7 USRVE. 8519 USRVE_8 USRVE. 8520 U_BRTHMN U_BRTHMN. 8521 U_BRTHYR U_BRTHYR. 151 The SAS System 13:10 Thursday, March 25, 2010 8522 U_PNGD1 U_PNGD. 8523 U_PNGD2 U_PNGD. 8524 U_PNGD3 U_PNGD. 8525 U_PNGD4 U_PNGD. 8526 U_PNGD5 U_PNGD. 8527 U_PNGD6 U_PNGD. 8528 U_PNGD7 U_PNGD. 8529 U_PNGD8 U_PNGD. 8530 ENTID_G1 ENTID_G. 8531 ENTID_G2 ENTID_G. 8532 ENTID_G3 ENTID_G. 8533 ENTID_G4 ENTID_G. 8534 ENTID_G5 ENTID_G. 8535 ENTID_G6 ENTID_G. 8536 ENTID_G7 ENTID_G. 8537 ENTID_G8 ENTID_G. 8538 LVQTR_01 LVQTR. 8539 LVQTR_02 LVQTR. 8540 LVQTR_03 LVQTR. 8541 LVQTR_04 LVQTR. 8542 LVQTR_05 LVQTR. 8543 LVQTR_06 LVQTR. 8544 LVQTR_07 LVQTR. 8545 LVQTR_08 LVQTR. 8546 LVQTR_09 LVQTR. 8547 LVQTR_10 LVQTR. 8548 LVQTR_11 LVQTR. 8549 LVQTR_12 LVQTR. 8550 LVQTR_13 LVQTR. 8551 LVQTR_14 LVQTR. 8552 LVQTR_15 LVQTR. 8553 LVQTR_16 LVQTR. 8554 LVQTR_17 LVQTR. 8555 LVQTR_18 LVQTR. 8556 LVQTR_19 LVQTR. 8557 LVQTR_20 LVQTR. 8558 LVQTR_21 LVQTR. 8559 LVQTR_22 LVQTR. 8560 LVQTR_23 LVQTR. 8561 LVQTR_24 LVQTR. 8562 LVQTR_25 LVQTR. 8563 LVQTR_26 LVQTR. 8564 LVQTR_27 LVQTR. 8565 LVQTR_28 LVQTR. 8566 LVQTR_29 LVQTR. 8567 LVQTR_30 LVQTR. 8568 LVQTR_31 LVQTR. 8569 LVQTR_32 LVQTR. 8570 TENUR_01 TENUR. 8571 TENUR_02 TENUR. 8572 TENUR_03 TENUR. 8573 TENUR_04 TENUR. 8574 TENUR_05 TENUR. 8575 TENUR_06 TENUR. 8576 TENUR_07 TENUR. 8577 TENUR_08 TENUR. 8578 TENUR_09 TENUR. 8579 TENUR_10 TENUR. 152 The SAS System 13:10 Thursday, March 25, 2010 8580 TENUR_11 TENUR. 8581 TENUR_12 TENUR. 8582 TENUR_13 TENUR. 8583 TENUR_14 TENUR. 8584 TENUR_15 TENUR. 8585 TENUR_16 TENUR. 8586 TENUR_17 TENUR. 8587 TENUR_18 TENUR. 8588 TENUR_19 TENUR. 8589 TENUR_20 TENUR. 8590 TENUR_21 TENUR. 8591 TENUR_22 TENUR. 8592 TENUR_23 TENUR. 8593 TENUR_24 TENUR. 8594 TENUR_25 TENUR. 8595 TENUR_26 TENUR. 8596 TENUR_27 TENUR. 8597 TENUR_28 TENUR. 8598 TENUR_29 TENUR. 8599 TENUR_30 TENUR. 8600 TENUR_31 TENUR. 8601 TENUR_32 TENUR. 8602 PUBHS_01 PUBHS. 8603 PUBHS_02 PUBHS. 8604 PUBHS_03 PUBHS. 8605 PUBHS_04 PUBHS. 8606 PUBHS_05 PUBHS. 8607 PUBHS_06 PUBHS. 8608 PUBHS_07 PUBHS. 8609 PUBHS_08 PUBHS. 8610 PUBHS_09 PUBHS. 8611 PUBHS_10 PUBHS. 8612 PUBHS_11 PUBHS. 8613 PUBHS_12 PUBHS. 8614 PUBHS_13 PUBHS. 8615 PUBHS_14 PUBHS. 8616 PUBHS_15 PUBHS. 8617 PUBHS_16 PUBHS. 8618 PUBHS_17 PUBHS. 8619 PUBHS_18 PUBHS. 8620 PUBHS_19 PUBHS. 8621 PUBHS_20 PUBHS. 8622 PUBHS_21 PUBHS. 8623 PUBHS_22 PUBHS. 8624 PUBHS_23 PUBHS. 8625 PUBHS_24 PUBHS. 8626 PUBHS_25 PUBHS. 8627 PUBHS_26 PUBHS. 8628 PUBHS_27 PUBHS. 8629 PUBHS_28 PUBHS. 8630 PUBHS_29 PUBHS. 8631 PUBHS_30 PUBHS. 8632 PUBHS_31 PUBHS. 8633 PUBHS_32 PUBHS. 8634 LORNT_01 LORNT. 8635 LORNT_02 LORNT. 8636 LORNT_03 LORNT. 8637 LORNT_04 LORNT. 153 The SAS System 13:10 Thursday, March 25, 2010 8638 LORNT_05 LORNT. 8639 LORNT_06 LORNT. 8640 LORNT_07 LORNT. 8641 LORNT_08 LORNT. 8642 LORNT_09 LORNT. 8643 LORNT_10 LORNT. 8644 LORNT_11 LORNT. 8645 LORNT_12 LORNT. 8646 LORNT_13 LORNT. 8647 LORNT_14 LORNT. 8648 LORNT_15 LORNT. 8649 LORNT_16 LORNT. 8650 LORNT_17 LORNT. 8651 LORNT_18 LORNT. 8652 LORNT_19 LORNT. 8653 LORNT_20 LORNT. 8654 LORNT_21 LORNT. 8655 LORNT_22 LORNT. 8656 LORNT_23 LORNT. 8657 LORNT_24 LORNT. 8658 LORNT_25 LORNT. 8659 LORNT_26 LORNT. 8660 LORNT_27 LORNT. 8661 LORNT_28 LORNT. 8662 LORNT_29 LORNT. 8663 LORNT_30 LORNT. 8664 LORNT_31 LORNT. 8665 LORNT_32 LORNT. 8666 ENRGY_Y1 ENRGY_Y. 8667 ENRGY_Y2 ENRGY_Y. 8668 ENRGY_Y3 ENRGY_Y. 8669 ENRGY_Y4 ENRGY_Y. 8670 ENRGY_Y5 ENRGY_Y. 8671 ENRGY_Y6 ENRGY_Y. 8672 ENRGY_Y7 ENRGY_Y. 8673 ENRGY_Y8 ENRGY_Y. 8674 Hs_ENRG1 Hs_ENRG. 8675 Hs_ENRG2 Hs_ENRG. 8676 Hs_ENRG3 Hs_ENRG. 8677 Hs_ENRG4 Hs_ENRG. 8678 Hs_ENRG5 Hs_ENRG. 8679 Hs_ENRG6 Hs_ENRG. 8680 Hs_ENRG7 Hs_ENRG. 8681 Hs_ENRG8 Hs_ENRG. 8682 ENRGY_1 ENRGY. 8683 ENRGY_2 ENRGY. 8684 ENRGY_3 ENRGY. 8685 ENRGY_4 ENRGY. 8686 ENRGY_5 ENRGY. 8687 ENRGY_6 ENRGY. 8688 ENRGY_7 ENRGY. 8689 ENRGY_8 ENRGY. 8690 Hs_LUNC1 Hs_LUNC. 8691 Hs_LUNC2 Hs_LUNC. 8692 Hs_LUNC3 Hs_LUNC. 8693 Hs_LUNC4 Hs_LUNC. 8694 Hs_LUNC5 Hs_LUNC. 8695 Hs_LUNC6 Hs_LUNC. 154 The SAS System 13:10 Thursday, March 25, 2010 8696 Hs_LUNC7 Hs_LUNC. 8697 Hs_LUNC8 Hs_LUNC. 8698 LUNCH_1 LUNCH. 8699 LUNCH_2 LUNCH. 8700 LUNCH_3 LUNCH. 8701 LUNCH_4 LUNCH. 8702 LUNCH_5 LUNCH. 8703 LUNCH_6 LUNCH. 8704 LUNCH_7 LUNCH. 8705 LUNCH_8 LUNCH. 8706 BREAK_1 BREAK. 8707 BREAK_2 BREAK. 8708 BREAK_3 BREAK. 8709 BREAK_4 BREAK. 8710 BREAK_5 BREAK. 8711 BREAK_6 BREAK. 8712 BREAK_7 BREAK. 8713 BREAK_8 BREAK. 8714 H8_48301 H8_4830L. 8715 H8_48302 H8_4830L. 8716 H8_48303 H8_4830L. 8717 H8_48304 H8_4830L. 8718 H8_48305 H8_4830L. 8719 H8_48306 H8_4830L. 8720 H8_48307 H8_4830L. 8721 H8_48308 H8_4830L. 8722 Hs_PUBHS Hs_PUBHS. 8723 PUBRNAMT PUBRNAMT. 8724 UTLPAYYN UTLPAYYN. 8725 FULLRENT FULLRENT. 8726 STATE_1 STATE. 8727 STATE_2 STATE. 8728 STATE_3 STATE. 8729 STATE_4 STATE. 8730 STATE_5 STATE. 8731 STATE_6 STATE. 8732 STATE_7 STATE. 8733 STATE_8 STATE. 8734 METRO_1 METRO. 8735 METRO_2 METRO. 8736 METRO_3 METRO. 8737 METRO_4 METRO. 8738 METRO_5 METRO. 8739 METRO_6 METRO. 8740 METRO_7 METRO. 8741 METRO_8 METRO. 8742 SC1332 SC1332L. 8743 SC1334 SC1334L. 8744 SC1336 SC1336L. 8745 SC1346 SC1346L. 8746 SC1348 SC1348L. 8747 SC1360 SC1360L. 8748 SC1418 SC1418L. 8749 SC1456 SC1456L. 8750 SC1468 SC1468L. 8751 SC1472 SC1472L. 8752 DISAB DISAB. 8753 ATT_SCH1 ATT_SCH. 155 The SAS System 13:10 Thursday, March 25, 2010 8754 ATT_SCH2 ATT_SCH. 8755 ATT_SCH3 ATT_SCH. 8756 ATT_SCH4 ATT_SCH. 8757 ATT_SCH5 ATT_SCH. 8758 ATT_SCH6 ATT_SCH. 8759 ATT_SCH7 ATT_SCH. 8760 ATT_SCH8 ATT_SCH. 8761 SC168201 SC1682L. 8762 SC168202 SC1682L. 8763 SC168203 SC1682L. 8764 SC168204 SC1682L. 8765 SC168205 SC1682L. 8766 SC168206 SC1682L. 8767 SC168207 SC1682L. 8768 SC168208 SC1682L. 8769 SC168209 SC1682L. 8770 SC168210 SC1682L. 8771 SC168211 SC1682L. 8772 SC168212 SC1682L. 8773 SC168213 SC1682L. 8774 SC168214 SC1682L. 8775 SC168215 SC1682L. 8776 SC168216 SC1682L. 8777 SC168217 SC1682L. 8778 SC168218 SC1682L. 8779 SC168219 SC1682L. 8780 SC168220 SC1682L. 8781 SC168221 SC1682L. 8782 SC168222 SC1682L. 8783 SC168223 SC1682L. 8784 SC168224 SC1682L. 8785 SC168225 SC1682L. 8786 SC168226 SC1682L. 8787 SC168227 SC1682L. 8788 SC168228 SC1682L. 8789 SC168229 SC1682L. 8790 SC168230 SC1682L. 8791 SC168231 SC1682L. 8792 SC168232 SC1682L. 8793 SC169001 SC1690L. 8794 SC169002 SC1690L. 8795 SC169003 SC1690L. 8796 SC169004 SC1690L. 8797 SC169005 SC1690L. 8798 SC169006 SC1690L. 8799 SC169007 SC1690L. 8800 SC169008 SC1690L. 8801 SC169009 SC1690L. 8802 SC169010 SC1690L. 8803 SC169011 SC1690L. 8804 SC169012 SC1690L. 8805 SC169013 SC1690L. 8806 SC169014 SC1690L. 8807 SC169015 SC1690L. 8808 SC169016 SC1690L. 8809 SC169017 SC1690L. 8810 SC169018 SC1690L. 8811 SC169019 SC1690L. 156 The SAS System 13:10 Thursday, March 25, 2010 8812 SC169020 SC1690L. 8813 SC169021 SC1690L. 8814 SC169022 SC1690L. 8815 SC169023 SC1690L. 8816 SC169024 SC1690L. 8817 SC169025 SC1690L. 8818 SC169026 SC1690L. 8819 SC169027 SC1690L. 8820 SC169028 SC1690L. 8821 SC169029 SC1690L. 8822 SC169030 SC1690L. 8823 SC169031 SC1690L. 8824 SC169032 SC1690L. 8825 ESR_01 ESR. 8826 ESR_02 ESR. 8827 ESR_03 ESR. 8828 ESR_04 ESR. 8829 ESR_05 ESR. 8830 ESR_06 ESR. 8831 ESR_07 ESR. 8832 ESR_08 ESR. 8833 ESR_09 ESR. 8834 ESR_10 ESR. 8835 ESR_11 ESR. 8836 ESR_12 ESR. 8837 ESR_13 ESR. 8838 ESR_14 ESR. 8839 ESR_15 ESR. 8840 ESR_16 ESR. 8841 ESR_17 ESR. 8842 ESR_18 ESR. 8843 ESR_19 ESR. 8844 ESR_20 ESR. 8845 ESR_21 ESR. 8846 ESR_22 ESR. 8847 ESR_23 ESR. 8848 ESR_24 ESR. 8849 ESR_25 ESR. 8850 ESR_26 ESR. 8851 ESR_27 ESR. 8852 ESR_28 ESR. 8853 ESR_29 ESR. 8854 ESR_30 ESR. 8855 ESR_31 ESR. 8856 ESR_32 ESR. 8857 WKSPER01 WKSPER. 8858 WKSPER02 WKSPER. 8859 WKSPER03 WKSPER. 8860 WKSPER04 WKSPER. 8861 WKSPER05 WKSPER. 8862 WKSPER06 WKSPER. 8863 WKSPER07 WKSPER. 8864 WKSPER08 WKSPER. 8865 WKSPER09 WKSPER. 8866 WKSPER10 WKSPER. 8867 WKSPER11 WKSPER. 8868 WKSPER12 WKSPER. 8869 WKSPER13 WKSPER. 157 The SAS System 13:10 Thursday, March 25, 2010 8870 WKSPER14 WKSPER. 8871 WKSPER15 WKSPER. 8872 WKSPER16 WKSPER. 8873 WKSPER17 WKSPER. 8874 WKSPER18 WKSPER. 8875 WKSPER19 WKSPER. 8876 WKSPER20 WKSPER. 8877 WKSPER21 WKSPER. 8878 WKSPER22 WKSPER. 8879 WKSPER23 WKSPER. 8880 WKSPER24 WKSPER. 8881 WKSPER25 WKSPER. 8882 WKSPER26 WKSPER. 8883 WKSPER27 WKSPER. 8884 WKSPER28 WKSPER. 8885 WKSPER29 WKSPER. 8886 WKSPER30 WKSPER. 8887 WKSPER31 WKSPER. 8888 WKSPER32 WKSPER. 8889 WKSJB_01 WKSJB. 8890 WKSJB_02 WKSJB. 8891 WKSJB_03 WKSJB. 8892 WKSJB_04 WKSJB. 8893 WKSJB_05 WKSJB. 8894 WKSJB_06 WKSJB. 8895 WKSJB_07 WKSJB. 8896 WKSJB_08 WKSJB. 8897 WKSJB_09 WKSJB. 8898 WKSJB_10 WKSJB. 8899 WKSJB_11 WKSJB. 8900 WKSJB_12 WKSJB. 8901 WKSJB_13 WKSJB. 8902 WKSJB_14 WKSJB. 8903 WKSJB_15 WKSJB. 8904 WKSJB_16 WKSJB. 8905 WKSJB_17 WKSJB. 8906 WKSJB_18 WKSJB. 8907 WKSJB_19 WKSJB. 8908 WKSJB_20 WKSJB. 8909 WKSJB_21 WKSJB. 8910 WKSJB_22 WKSJB. 8911 WKSJB_23 WKSJB. 8912 WKSJB_24 WKSJB. 8913 WKSJB_25 WKSJB. 8914 WKSJB_26 WKSJB. 8915 WKSJB_27 WKSJB. 8916 WKSJB_28 WKSJB. 8917 WKSJB_29 WKSJB. 8918 WKSJB_30 WKSJB. 8919 WKSJB_31 WKSJB. 8920 WKSJB_32 WKSJB. 8921 MTHWOP01 MTHWOP. 8922 MTHWOP02 MTHWOP. 8923 MTHWOP03 MTHWOP. 8924 MTHWOP04 MTHWOP. 8925 MTHWOP05 MTHWOP. 8926 MTHWOP06 MTHWOP. 8927 MTHWOP07 MTHWOP. 158 The SAS System 13:10 Thursday, March 25, 2010 8928 MTHWOP08 MTHWOP. 8929 MTHWOP09 MTHWOP. 8930 MTHWOP10 MTHWOP. 8931 MTHWOP11 MTHWOP. 8932 MTHWOP12 MTHWOP. 8933 MTHWOP13 MTHWOP. 8934 MTHWOP14 MTHWOP. 8935 MTHWOP15 MTHWOP. 8936 MTHWOP16 MTHWOP. 8937 MTHWOP17 MTHWOP. 8938 MTHWOP18 MTHWOP. 8939 MTHWOP19 MTHWOP. 8940 MTHWOP20 MTHWOP. 8941 MTHWOP21 MTHWOP. 8942 MTHWOP22 MTHWOP. 8943 MTHWOP23 MTHWOP. 8944 MTHWOP24 MTHWOP. 8945 MTHWOP25 MTHWOP. 8946 MTHWOP26 MTHWOP. 8947 MTHWOP27 MTHWOP. 8948 MTHWOP28 MTHWOP. 8949 MTHWOP29 MTHWOP. 8950 MTHWOP30 MTHWOP. 8951 MTHWOP31 MTHWOP. 8952 MTHWOP32 MTHWOP. 8953 WEEKSL01 WEEKSL. 8954 WEEKSL02 WEEKSL. 8955 WEEKSL03 WEEKSL. 8956 WEEKSL04 WEEKSL. 8957 WEEKSL05 WEEKSL. 8958 WEEKSL06 WEEKSL. 8959 WEEKSL07 WEEKSL. 8960 WEEKSL08 WEEKSL. 8961 WEEKSL09 WEEKSL. 8962 WEEKSL10 WEEKSL. 8963 WEEKSL11 WEEKSL. 8964 WEEKSL12 WEEKSL. 8965 WEEKSL13 WEEKSL. 8966 WEEKSL14 WEEKSL. 8967 WEEKSL15 WEEKSL. 8968 WEEKSL16 WEEKSL. 8969 WEEKSL17 WEEKSL. 8970 WEEKSL18 WEEKSL. 8971 WEEKSL19 WEEKSL. 8972 WEEKSL20 WEEKSL. 8973 WEEKSL21 WEEKSL. 8974 WEEKSL22 WEEKSL. 8975 WEEKSL23 WEEKSL. 8976 WEEKSL24 WEEKSL. 8977 WEEKSL25 WEEKSL. 8978 WEEKSL26 WEEKSL. 8979 WEEKSL27 WEEKSL. 8980 WEEKSL28 WEEKSL. 8981 WEEKSL29 WEEKSL. 8982 WEEKSL30 WEEKSL. 8983 WEEKSL31 WEEKSL. 8984 WEEKSL32 WEEKSL. 8985 SC12301 SC1230L. 159 The SAS System 13:10 Thursday, March 25, 2010 8986 SC12302 SC1230L. 8987 SC12303 SC1230L. 8988 SC12304 SC1230L. 8989 SC12305 SC1230L. 8990 SC12306 SC1230L. 8991 SC12307 SC1230L. 8992 SC12308 SC1230L. 8993 JOBID201 JOBID2L. 8994 JOBID202 JOBID2L. 8995 JOBID203 JOBID2L. 8996 JOBID204 JOBID2L. 8997 JOBID205 JOBID2L. 8998 JOBID206 JOBID2L. 8999 JOBID207 JOBID2L. 9000 JOBID208 JOBID2L. 9001 JOBID209 JOBID2L. 9002 JOBID210 JOBID2L. 9003 JOBID211 JOBID2L. 9004 JOBID212 JOBID2L. 9005 JOBID213 JOBID2L. 9006 JOBID214 JOBID2L. 9007 JOBID215 JOBID2L. 9008 JOBID216 JOBID2L. 9009 JOBID217 JOBID2L. 9010 JOBID218 JOBID2L. 9011 JOBID219 JOBID2L. 9012 JOBID220 JOBID2L. 9013 JOBID221 JOBID2L. 9014 JOBID222 JOBID2L. 9015 JOBID223 JOBID2L. 9016 JOBID224 JOBID2L. 9017 JOBID225 JOBID2L. 9018 JOBID226 JOBID2L. 9019 JOBID227 JOBID2L. 9020 JOBID228 JOBID2L. 9021 JOBID229 JOBID2L. 9022 JOBID230 JOBID2L. 9023 JOBID231 JOBID2L. 9024 JOBID232 JOBID2L. 9025 CLSWK201 CLSWK2L. 9026 CLSWK202 CLSWK2L. 9027 CLSWK203 CLSWK2L. 9028 CLSWK204 CLSWK2L. 9029 CLSWK205 CLSWK2L. 9030 CLSWK206 CLSWK2L. 9031 CLSWK207 CLSWK2L. 9032 CLSWK208 CLSWK2L. 9033 CLSWK209 CLSWK2L. 9034 CLSWK210 CLSWK2L. 9035 CLSWK211 CLSWK2L. 9036 CLSWK212 CLSWK2L. 9037 CLSWK213 CLSWK2L. 9038 CLSWK214 CLSWK2L. 9039 CLSWK215 CLSWK2L. 9040 CLSWK216 CLSWK2L. 9041 CLSWK217 CLSWK2L. 9042 CLSWK218 CLSWK2L. 9043 CLSWK219 CLSWK2L. 160 The SAS System 13:10 Thursday, March 25, 2010 9044 CLSWK220 CLSWK2L. 9045 CLSWK221 CLSWK2L. 9046 CLSWK222 CLSWK2L. 9047 CLSWK223 CLSWK2L. 9048 CLSWK224 CLSWK2L. 9049 CLSWK225 CLSWK2L. 9050 CLSWK226 CLSWK2L. 9051 CLSWK227 CLSWK2L. 9052 CLSWK228 CLSWK2L. 9053 CLSWK229 CLSWK2L. 9054 CLSWK230 CLSWK2L. 9055 CLSWK231 CLSWK2L. 9056 CLSWK232 CLSWK2L. 9057 WS2_WK01 WS2_WK. 9058 WS2_WK02 WS2_WK. 9059 WS2_WK03 WS2_WK. 9060 WS2_WK04 WS2_WK. 9061 WS2_WK05 WS2_WK. 9062 WS2_WK06 WS2_WK. 9063 WS2_WK07 WS2_WK. 9064 WS2_WK08 WS2_WK. 9065 WS2_WK09 WS2_WK. 9066 WS2_WK10 WS2_WK. 9067 WS2_WK11 WS2_WK. 9068 WS2_WK12 WS2_WK. 9069 WS2_WK13 WS2_WK. 9070 WS2_WK14 WS2_WK. 9071 WS2_WK15 WS2_WK. 9072 WS2_WK16 WS2_WK. 9073 WS2_WK17 WS2_WK. 9074 WS2_WK18 WS2_WK. 9075 WS2_WK19 WS2_WK. 9076 WS2_WK20 WS2_WK. 9077 WS2_WK21 WS2_WK. 9078 WS2_WK22 WS2_WK. 9079 WS2_WK23 WS2_WK. 9080 WS2_WK24 WS2_WK. 9081 WS2_WK25 WS2_WK. 9082 WS2_WK26 WS2_WK. 9083 WS2_WK27 WS2_WK. 9084 WS2_WK28 WS2_WK. 9085 WS2_WK29 WS2_WK. 9086 WS2_WK30 WS2_WK. 9087 WS2_WK31 WS2_WK. 9088 WS2_WK32 WS2_WK. 9089 W2124_01 W2124L. 9090 W2124_02 W2124L. 9091 W2124_03 W2124L. 9092 W2124_04 W2124L. 9093 W2124_05 W2124L. 9094 W2124_06 W2124L. 9095 W2124_07 W2124L. 9096 W2124_08 W2124L. 9097 W2124_09 W2124L. 9098 W2124_10 W2124L. 9099 W2124_11 W2124L. 9100 W2124_12 W2124L. 9101 W2124_13 W2124L. 161 The SAS System 13:10 Thursday, March 25, 2010 9102 W2124_14 W2124L. 9103 W2124_15 W2124L. 9104 W2124_16 W2124L. 9105 W2124_17 W2124L. 9106 W2124_18 W2124L. 9107 W2124_19 W2124L. 9108 W2124_20 W2124L. 9109 W2124_21 W2124L. 9110 W2124_22 W2124L. 9111 W2124_23 W2124L. 9112 W2124_24 W2124L. 9113 W2124_25 W2124L. 9114 W2124_26 W2124L. 9115 W2124_27 W2124L. 9116 W2124_28 W2124L. 9117 W2124_29 W2124L. 9118 W2124_30 W2124L. 9119 W2124_31 W2124L. 9120 W2124_32 W2124L. 9121 W2128_01 W2128L. 9122 W2128_02 W2128L. 9123 W2128_03 W2128L. 9124 W2128_04 W2128L. 9125 W2128_05 W2128L. 9126 W2128_06 W2128L. 9127 W2128_07 W2128L. 9128 W2128_08 W2128L. 9129 W2128_09 W2128L. 9130 W2128_10 W2128L. 9131 W2128_11 W2128L. 9132 W2128_12 W2128L. 9133 W2128_13 W2128L. 9134 W2128_14 W2128L. 9135 W2128_15 W2128L. 9136 W2128_16 W2128L. 9137 W2128_17 W2128L. 9138 W2128_18 W2128L. 9139 W2128_19 W2128L. 9140 W2128_20 W2128L. 9141 W2128_21 W2128L. 9142 W2128_22 W2128L. 9143 W2128_23 W2128L. 9144 W2128_24 W2128L. 9145 W2128_25 W2128L. 9146 W2128_26 W2128L. 9147 W2128_27 W2128L. 9148 W2128_28 W2128L. 9149 W2128_29 W2128L. 9150 W2128_30 W2128L. 9151 W2128_31 W2128L. 9152 W2128_32 W2128L. 9153 S2302_01 S2302L. 9154 S2302_02 S2302L. 9155 S2302_03 S2302L. 9156 S2302_04 S2302L. 9157 S2302_05 S2302L. 9158 S2302_06 S2302L. 9159 S2302_07 S2302L. 162 The SAS System 13:10 Thursday, March 25, 2010 9160 S2302_08 S2302L. 9161 S2302_09 S2302L. 9162 S2302_10 S2302L. 9163 S2302_11 S2302L. 9164 S2302_12 S2302L. 9165 S2302_13 S2302L. 9166 S2302_14 S2302L. 9167 S2302_15 S2302L. 9168 S2302_16 S2302L. 9169 S2302_17 S2302L. 9170 S2302_18 S2302L. 9171 S2302_19 S2302L. 9172 S2302_20 S2302L. 9173 S2302_21 S2302L. 9174 S2302_22 S2302L. 9175 S2302_23 S2302L. 9176 S2302_24 S2302L. 9177 S2302_25 S2302L. 9178 S2302_26 S2302L. 9179 S2302_27 S2302L. 9180 S2302_28 S2302L. 9181 S2302_29 S2302L. 9182 S2302_30 S2302L. 9183 S2302_31 S2302L. 9184 S2302_32 S2302L. 9185 TYPBS201 TYPBS2L. 9186 TYPBS202 TYPBS2L. 9187 TYPBS203 TYPBS2L. 9188 TYPBS204 TYPBS2L. 9189 TYPBS205 TYPBS2L. 9190 TYPBS206 TYPBS2L. 9191 TYPBS207 TYPBS2L. 9192 TYPBS208 TYPBS2L. 9193 TYPBS209 TYPBS2L. 9194 TYPBS210 TYPBS2L. 9195 TYPBS211 TYPBS2L. 9196 TYPBS212 TYPBS2L. 9197 TYPBS213 TYPBS2L. 9198 TYPBS214 TYPBS2L. 9199 TYPBS215 TYPBS2L. 9200 TYPBS216 TYPBS2L. 9201 TYPBS217 TYPBS2L. 9202 TYPBS218 TYPBS2L. 9203 TYPBS219 TYPBS2L. 9204 TYPBS220 TYPBS2L. 9205 TYPBS221 TYPBS2L. 9206 TYPBS222 TYPBS2L. 9207 TYPBS223 TYPBS2L. 9208 TYPBS224 TYPBS2L. 9209 TYPBS225 TYPBS2L. 9210 TYPBS226 TYPBS2L. 9211 TYPBS227 TYPBS2L. 9212 TYPBS228 TYPBS2L. 9213 TYPBS229 TYPBS2L. 9214 TYPBS230 TYPBS2L. 9215 TYPBS231 TYPBS2L. 9216 TYPBS232 TYPBS2L. 9217 SE2_WK01 SE2_WK. 163 The SAS System 13:10 Thursday, March 25, 2010 9218 SE2_WK02 SE2_WK. 9219 SE2_WK03 SE2_WK. 9220 SE2_WK04 SE2_WK. 9221 SE2_WK05 SE2_WK. 9222 SE2_WK06 SE2_WK. 9223 SE2_WK07 SE2_WK. 9224 SE2_WK08 SE2_WK. 9225 SE2_WK09 SE2_WK. 9226 SE2_WK10 SE2_WK. 9227 SE2_WK11 SE2_WK. 9228 SE2_WK12 SE2_WK. 9229 SE2_WK13 SE2_WK. 9230 SE2_WK14 SE2_WK. 9231 SE2_WK15 SE2_WK. 9232 SE2_WK16 SE2_WK. 9233 SE2_WK17 SE2_WK. 9234 SE2_WK18 SE2_WK. 9235 SE2_WK19 SE2_WK. 9236 SE2_WK20 SE2_WK. 9237 SE2_WK21 SE2_WK. 9238 SE2_WK22 SE2_WK. 9239 SE2_WK23 SE2_WK. 9240 SE2_WK24 SE2_WK. 9241 SE2_WK25 SE2_WK. 9242 SE2_WK26 SE2_WK. 9243 SE2_WK27 SE2_WK. 9244 SE2_WK28 SE2_WK. 9245 SE2_WK29 SE2_WK. 9246 SE2_WK30 SE2_WK. 9247 SE2_WK31 SE2_WK. 9248 SE2_WK32 SE2_WK. 9249 S2312_01 S2312L. 9250 S2312_02 S2312L. 9251 S2312_03 S2312L. 9252 S2312_04 S2312L. 9253 S2312_05 S2312L. 9254 S2312_06 S2312L. 9255 S2312_07 S2312L. 9256 S2312_08 S2312L. 9257 S2312_09 S2312L. 9258 S2312_10 S2312L. 9259 S2312_11 S2312L. 9260 S2312_12 S2312L. 9261 S2312_13 S2312L. 9262 S2312_14 S2312L. 9263 S2312_15 S2312L. 9264 S2312_16 S2312L. 9265 S2312_17 S2312L. 9266 S2312_18 S2312L. 9267 S2312_19 S2312L. 9268 S2312_20 S2312L. 9269 S2312_21 S2312L. 9270 S2312_22 S2312L. 9271 S2312_23 S2312L. 9272 S2312_24 S2312L. 9273 S2312_25 S2312L. 9274 S2312_26 S2312L. 9275 S2312_27 S2312L. 164 The SAS System 13:10 Thursday, March 25, 2010 9276 S2312_28 S2312L. 9277 S2312_29 S2312L. 9278 S2312_30 S2312L. 9279 S2312_31 S2312L. 9280 S2312_32 S2312L. 9281 G1SRC_01 G1SRC. 9282 G1SRC_02 G1SRC. 9283 G1SRC_03 G1SRC. 9284 G1SRC_04 G1SRC. 9285 G1SRC_05 G1SRC. 9286 G1SRC_06 G1SRC. 9287 G1SRC_07 G1SRC. 9288 G1SRC_08 G1SRC. 9289 G1SRC_09 G1SRC. 9290 G1SRC_10 G1SRC. 9291 SSRECIN1 SSRECIN. 9292 SSRECIN2 SSRECIN. 9293 SSRECIN3 SSRECIN. 9294 SSRECIN4 SSRECIN. 9295 SSRECIN5 SSRECIN. 9296 SSRECIN6 SSRECIN. 9297 SSRECIN7 SSRECIN. 9298 SSRECIN8 SSRECIN. 9299 RRRECIN1 RRRECIN. 9300 RRRECIN2 RRRECIN. 9301 RRRECIN3 RRRECIN. 9302 RRRECIN4 RRRECIN. 9303 RRRECIN5 RRRECIN. 9304 RRRECIN6 RRRECIN. 9305 RRRECIN7 RRRECIN. 9306 RRRECIN8 RRRECIN. 9307 VET3060 VET3060L. 9308 CARECO01 CARECO. 9309 CARECO02 CARECO. 9310 CARECO03 CARECO. 9311 CARECO04 CARECO. 9312 CARECO05 CARECO. 9313 CARECO06 CARECO. 9314 CARECO07 CARECO. 9315 CARECO08 CARECO. 9316 CARECO09 CARECO. 9317 CARECO10 CARECO. 9318 CARECO11 CARECO. 9319 CARECO12 CARECO. 9320 CARECO13 CARECO. 9321 CARECO14 CARECO. 9322 CARECO15 CARECO. 9323 CARECO16 CARECO. 9324 CARECO17 CARECO. 9325 CARECO18 CARECO. 9326 CARECO19 CARECO. 9327 CARECO20 CARECO. 9328 CARECO21 CARECO. 9329 CARECO22 CARECO. 9330 CARECO23 CARECO. 9331 CARECO24 CARECO. 9332 CARECO25 CARECO. 9333 CARECO26 CARECO. 165 The SAS System 13:10 Thursday, March 25, 2010 9334 CARECO27 CARECO. 9335 CARECO28 CARECO. 9336 CARECO29 CARECO. 9337 CARECO30 CARECO. 9338 CARECO31 CARECO. 9339 CARECO32 CARECO. 9340 CAIDCO01 CAIDCO. 9341 CAIDCO02 CAIDCO. 9342 CAIDCO03 CAIDCO. 9343 CAIDCO04 CAIDCO. 9344 CAIDCO05 CAIDCO. 9345 CAIDCO06 CAIDCO. 9346 CAIDCO07 CAIDCO. 9347 CAIDCO08 CAIDCO. 9348 CAIDCO09 CAIDCO. 9349 CAIDCO10 CAIDCO. 9350 CAIDCO11 CAIDCO. 9351 CAIDCO12 CAIDCO. 9352 CAIDCO13 CAIDCO. 9353 CAIDCO14 CAIDCO. 9354 CAIDCO15 CAIDCO. 9355 CAIDCO16 CAIDCO. 9356 CAIDCO17 CAIDCO. 9357 CAIDCO18 CAIDCO. 9358 CAIDCO19 CAIDCO. 9359 CAIDCO20 CAIDCO. 9360 CAIDCO21 CAIDCO. 9361 CAIDCO22 CAIDCO. 9362 CAIDCO23 CAIDCO. 9363 CAIDCO24 CAIDCO. 9364 CAIDCO25 CAIDCO. 9365 CAIDCO26 CAIDCO. 9366 CAIDCO27 CAIDCO. 9367 CAIDCO28 CAIDCO. 9368 CAIDCO29 CAIDCO. 9369 CAIDCO30 CAIDCO. 9370 CAIDCO31 CAIDCO. 9371 CAIDCO32 CAIDCO. 9372 WICCOV01 WICCOV. 9373 WICCOV02 WICCOV. 9374 WICCOV03 WICCOV. 9375 WICCOV04 WICCOV. 9376 WICCOV05 WICCOV. 9377 WICCOV06 WICCOV. 9378 WICCOV07 WICCOV. 9379 WICCOV08 WICCOV. 9380 WICCOV09 WICCOV. 9381 WICCOV10 WICCOV. 9382 WICCOV11 WICCOV. 9383 WICCOV12 WICCOV. 9384 WICCOV13 WICCOV. 9385 WICCOV14 WICCOV. 9386 WICCOV15 WICCOV. 9387 WICCOV16 WICCOV. 9388 WICCOV17 WICCOV. 9389 WICCOV18 WICCOV. 9390 WICCOV19 WICCOV. 9391 WICCOV20 WICCOV. 166 The SAS System 13:10 Thursday, March 25, 2010 9392 WICCOV21 WICCOV. 9393 WICCOV22 WICCOV. 9394 WICCOV23 WICCOV. 9395 WICCOV24 WICCOV. 9396 WICCOV25 WICCOV. 9397 WICCOV26 WICCOV. 9398 WICCOV27 WICCOV. 9399 WICCOV28 WICCOV. 9400 WICCOV29 WICCOV. 9401 WICCOV30 WICCOV. 9402 WICCOV31 WICCOV. 9403 WICCOV32 WICCOV. 9404 AFDC_01 AFDC. 9405 AFDC_02 AFDC. 9406 AFDC_03 AFDC. 9407 AFDC_04 AFDC. 9408 AFDC_05 AFDC. 9409 AFDC_06 AFDC. 9410 AFDC_07 AFDC. 9411 AFDC_08 AFDC. 9412 AFDC_09 AFDC. 9413 AFDC_10 AFDC. 9414 AFDC_11 AFDC. 9415 AFDC_12 AFDC. 9416 AFDC_13 AFDC. 9417 AFDC_14 AFDC. 9418 AFDC_15 AFDC. 9419 AFDC_16 AFDC. 9420 AFDC_17 AFDC. 9421 AFDC_18 AFDC. 9422 AFDC_19 AFDC. 9423 AFDC_20 AFDC. 9424 AFDC_21 AFDC. 9425 AFDC_22 AFDC. 9426 AFDC_23 AFDC. 9427 AFDC_24 AFDC. 9428 AFDC_25 AFDC. 9429 AFDC_26 AFDC. 9430 AFDC_27 AFDC. 9431 AFDC_28 AFDC. 9432 AFDC_29 AFDC. 9433 AFDC_30 AFDC. 9434 AFDC_31 AFDC. 9435 AFDC_32 AFDC. 9436 FOODST01 FOODST. 9437 FOODST02 FOODST. 9438 FOODST03 FOODST. 9439 FOODST04 FOODST. 9440 FOODST05 FOODST. 9441 FOODST06 FOODST. 9442 FOODST07 FOODST. 9443 FOODST08 FOODST. 9444 FOODST09 FOODST. 9445 FOODST10 FOODST. 9446 FOODST11 FOODST. 9447 FOODST12 FOODST. 9448 FOODST13 FOODST. 9449 FOODST14 FOODST. 167 The SAS System 13:10 Thursday, March 25, 2010 9450 FOODST15 FOODST. 9451 FOODST16 FOODST. 9452 FOODST17 FOODST. 9453 FOODST18 FOODST. 9454 FOODST19 FOODST. 9455 FOODST20 FOODST. 9456 FOODST21 FOODST. 9457 FOODST22 FOODST. 9458 FOODST23 FOODST. 9459 FOODST24 FOODST. 9460 FOODST25 FOODST. 9461 FOODST26 FOODST. 9462 FOODST27 FOODST. 9463 FOODST28 FOODST. 9464 FOODST29 FOODST. 9465 FOODST30 FOODST. 9466 FOODST31 FOODST. 9467 FOODST32 FOODST. 9468 GEN_AS01 GEN_AS. 9469 GEN_AS02 GEN_AS. 9470 GEN_AS03 GEN_AS. 9471 GEN_AS04 GEN_AS. 9472 GEN_AS05 GEN_AS. 9473 GEN_AS06 GEN_AS. 9474 GEN_AS07 GEN_AS. 9475 GEN_AS08 GEN_AS. 9476 GEN_AS09 GEN_AS. 9477 GEN_AS10 GEN_AS. 9478 GEN_AS11 GEN_AS. 9479 GEN_AS12 GEN_AS. 9480 GEN_AS13 GEN_AS. 9481 GEN_AS14 GEN_AS. 9482 GEN_AS15 GEN_AS. 9483 GEN_AS16 GEN_AS. 9484 GEN_AS17 GEN_AS. 9485 GEN_AS18 GEN_AS. 9486 GEN_AS19 GEN_AS. 9487 GEN_AS20 GEN_AS. 9488 GEN_AS21 GEN_AS. 9489 GEN_AS22 GEN_AS. 9490 GEN_AS23 GEN_AS. 9491 GEN_AS24 GEN_AS. 9492 GEN_AS25 GEN_AS. 9493 GEN_AS26 GEN_AS. 9494 GEN_AS27 GEN_AS. 9495 GEN_AS28 GEN_AS. 9496 GEN_AS29 GEN_AS. 9497 GEN_AS30 GEN_AS. 9498 GEN_AS31 GEN_AS. 9499 GEN_AS32 GEN_AS. 9500 FOST_K01 FOST_K. 9501 FOST_K02 FOST_K. 9502 FOST_K03 FOST_K. 9503 FOST_K04 FOST_K. 9504 FOST_K05 FOST_K. 9505 FOST_K06 FOST_K. 9506 FOST_K07 FOST_K. 9507 FOST_K08 FOST_K. 168 The SAS System 13:10 Thursday, March 25, 2010 9508 FOST_K09 FOST_K. 9509 FOST_K10 FOST_K. 9510 FOST_K11 FOST_K. 9511 FOST_K12 FOST_K. 9512 FOST_K13 FOST_K. 9513 FOST_K14 FOST_K. 9514 FOST_K15 FOST_K. 9515 FOST_K16 FOST_K. 9516 FOST_K17 FOST_K. 9517 FOST_K18 FOST_K. 9518 FOST_K19 FOST_K. 9519 FOST_K20 FOST_K. 9520 FOST_K21 FOST_K. 9521 FOST_K22 FOST_K. 9522 FOST_K23 FOST_K. 9523 FOST_K24 FOST_K. 9524 FOST_K25 FOST_K. 9525 FOST_K26 FOST_K. 9526 FOST_K27 FOST_K. 9527 FOST_K28 FOST_K. 9528 FOST_K29 FOST_K. 9529 FOST_K30 FOST_K. 9530 FOST_K31 FOST_K. 9531 FOST_K32 FOST_K. 9532 OTH_WE01 OTH_WE. 9533 OTH_WE02 OTH_WE. 9534 OTH_WE03 OTH_WE. 9535 OTH_WE04 OTH_WE. 9536 OTH_WE05 OTH_WE. 9537 OTH_WE06 OTH_WE. 9538 OTH_WE07 OTH_WE. 9539 OTH_WE08 OTH_WE. 9540 OTH_WE09 OTH_WE. 9541 OTH_WE10 OTH_WE. 9542 OTH_WE11 OTH_WE. 9543 OTH_WE12 OTH_WE. 9544 OTH_WE13 OTH_WE. 9545 OTH_WE14 OTH_WE. 9546 OTH_WE15 OTH_WE. 9547 OTH_WE16 OTH_WE. 9548 OTH_WE17 OTH_WE. 9549 OTH_WE18 OTH_WE. 9550 OTH_WE19 OTH_WE. 9551 OTH_WE20 OTH_WE. 9552 OTH_WE21 OTH_WE. 9553 OTH_WE22 OTH_WE. 9554 OTH_WE23 OTH_WE. 9555 OTH_WE24 OTH_WE. 9556 OTH_WE25 OTH_WE. 9557 OTH_WE26 OTH_WE. 9558 OTH_WE27 OTH_WE. 9559 OTH_WE28 OTH_WE. 9560 OTH_WE29 OTH_WE. 9561 OTH_WE30 OTH_WE. 9562 OTH_WE31 OTH_WE. 9563 OTH_WE32 OTH_WE. 9564 SOC_SE01 SOC_SE. 9565 SOC_SE02 SOC_SE. 169 The SAS System 13:10 Thursday, March 25, 2010 9566 SOC_SE03 SOC_SE. 9567 SOC_SE04 SOC_SE. 9568 SOC_SE05 SOC_SE. 9569 SOC_SE06 SOC_SE. 9570 SOC_SE07 SOC_SE. 9571 SOC_SE08 SOC_SE. 9572 SOC_SE09 SOC_SE. 9573 SOC_SE10 SOC_SE. 9574 SOC_SE11 SOC_SE. 9575 SOC_SE12 SOC_SE. 9576 SOC_SE13 SOC_SE. 9577 SOC_SE14 SOC_SE. 9578 SOC_SE15 SOC_SE. 9579 SOC_SE16 SOC_SE. 9580 SOC_SE17 SOC_SE. 9581 SOC_SE18 SOC_SE. 9582 SOC_SE19 SOC_SE. 9583 SOC_SE20 SOC_SE. 9584 SOC_SE21 SOC_SE. 9585 SOC_SE22 SOC_SE. 9586 SOC_SE23 SOC_SE. 9587 SOC_SE24 SOC_SE. 9588 SOC_SE25 SOC_SE. 9589 SOC_SE26 SOC_SE. 9590 SOC_SE27 SOC_SE. 9591 SOC_SE28 SOC_SE. 9592 SOC_SE29 SOC_SE. 9593 SOC_SE30 SOC_SE. 9594 SOC_SE31 SOC_SE. 9595 SOC_SE32 SOC_SE. 9596 RAILRD01 RAILRD. 9597 RAILRD02 RAILRD. 9598 RAILRD03 RAILRD. 9599 RAILRD04 RAILRD. 9600 RAILRD05 RAILRD. 9601 RAILRD06 RAILRD. 9602 RAILRD07 RAILRD. 9603 RAILRD08 RAILRD. 9604 RAILRD09 RAILRD. 9605 RAILRD10 RAILRD. 9606 RAILRD11 RAILRD. 9607 RAILRD12 RAILRD. 9608 RAILRD13 RAILRD. 9609 RAILRD14 RAILRD. 9610 RAILRD15 RAILRD. 9611 RAILRD16 RAILRD. 9612 RAILRD17 RAILRD. 9613 RAILRD18 RAILRD. 9614 RAILRD19 RAILRD. 9615 RAILRD20 RAILRD. 9616 RAILRD21 RAILRD. 9617 RAILRD22 RAILRD. 9618 RAILRD23 RAILRD. 9619 RAILRD24 RAILRD. 9620 RAILRD25 RAILRD. 9621 RAILRD26 RAILRD. 9622 RAILRD27 RAILRD. 9623 RAILRD28 RAILRD. 170 The SAS System 13:10 Thursday, March 25, 2010 9624 RAILRD29 RAILRD. 9625 RAILRD30 RAILRD. 9626 RAILRD31 RAILRD. 9627 RAILRD32 RAILRD. 9628 VETS_01 VETS. 9629 VETS_02 VETS. 9630 VETS_03 VETS. 9631 VETS_04 VETS. 9632 VETS_05 VETS. 9633 VETS_06 VETS. 9634 VETS_07 VETS. 9635 VETS_08 VETS. 9636 VETS_09 VETS. 9637 VETS_10 VETS. 9638 VETS_11 VETS. 9639 VETS_12 VETS. 9640 VETS_13 VETS. 9641 VETS_14 VETS. 9642 VETS_15 VETS. 9643 VETS_16 VETS. 9644 VETS_17 VETS. 9645 VETS_18 VETS. 9646 VETS_19 VETS. 9647 VETS_20 VETS. 9648 VETS_21 VETS. 9649 VETS_22 VETS. 9650 VETS_23 VETS. 9651 VETS_24 VETS. 9652 VETS_25 VETS. 9653 VETS_26 VETS. 9654 VETS_27 VETS. 9655 VETS_28 VETS. 9656 VETS_29 VETS. 9657 VETS_30 VETS. 9658 VETS_31 VETS. 9659 VETS_32 VETS. 9660 HIOWNC01 HIOWNC. 9661 HIOWNC02 HIOWNC. 9662 HIOWNC03 HIOWNC. 9663 HIOWNC04 HIOWNC. 9664 HIOWNC05 HIOWNC. 9665 HIOWNC06 HIOWNC. 9666 HIOWNC07 HIOWNC. 9667 HIOWNC08 HIOWNC. 9668 HIOWNC09 HIOWNC. 9669 HIOWNC10 HIOWNC. 9670 HIOWNC11 HIOWNC. 9671 HIOWNC12 HIOWNC. 9672 HIOWNC13 HIOWNC. 9673 HIOWNC14 HIOWNC. 9674 HIOWNC15 HIOWNC. 9675 HIOWNC16 HIOWNC. 9676 HIOWNC17 HIOWNC. 9677 HIOWNC18 HIOWNC. 9678 HIOWNC19 HIOWNC. 9679 HIOWNC20 HIOWNC. 9680 HIOWNC21 HIOWNC. 9681 HIOWNC22 HIOWNC. 171 The SAS System 13:10 Thursday, March 25, 2010 9682 HIOWNC23 HIOWNC. 9683 HIOWNC24 HIOWNC. 9684 HIOWNC25 HIOWNC. 9685 HIOWNC26 HIOWNC. 9686 HIOWNC27 HIOWNC. 9687 HIOWNC28 HIOWNC. 9688 HIOWNC29 HIOWNC. 9689 HIOWNC30 HIOWNC. 9690 HIOWNC31 HIOWNC. 9691 HIOWNC32 HIOWNC. 9692 HI_OTC01 HI_OTC. 9693 HI_OTC02 HI_OTC. 9694 HI_OTC03 HI_OTC. 9695 HI_OTC04 HI_OTC. 9696 HI_OTC05 HI_OTC. 9697 HI_OTC06 HI_OTC. 9698 HI_OTC07 HI_OTC. 9699 HI_OTC08 HI_OTC. 9700 HI_OTC09 HI_OTC. 9701 HI_OTC10 HI_OTC. 9702 HI_OTC11 HI_OTC. 9703 HI_OTC12 HI_OTC. 9704 HI_OTC13 HI_OTC. 9705 HI_OTC14 HI_OTC. 9706 HI_OTC15 HI_OTC. 9707 HI_OTC16 HI_OTC. 9708 HI_OTC17 HI_OTC. 9709 HI_OTC18 HI_OTC. 9710 HI_OTC19 HI_OTC. 9711 HI_OTC20 HI_OTC. 9712 HI_OTC21 HI_OTC. 9713 HI_OTC22 HI_OTC. 9714 HI_OTC23 HI_OTC. 9715 HI_OTC24 HI_OTC. 9716 HI_OTC25 HI_OTC. 9717 HI_OTC26 HI_OTC. 9718 HI_OTC27 HI_OTC. 9719 HI_OTC28 HI_OTC. 9720 HI_OTC29 HI_OTC. 9721 HI_OTC30 HI_OTC. 9722 HI_OTC31 HI_OTC. 9723 HI_OTC32 HI_OTC. 9724 HIEMPL01 HIEMPL. 9725 HIEMPL02 HIEMPL. 9726 HIEMPL03 HIEMPL. 9727 HIEMPL04 HIEMPL. 9728 HIEMPL05 HIEMPL. 9729 HIEMPL06 HIEMPL. 9730 HIEMPL07 HIEMPL. 9731 HIEMPL08 HIEMPL. 9732 HIEMPL09 HIEMPL. 9733 HIEMPL10 HIEMPL. 9734 HIEMPL11 HIEMPL. 9735 HIEMPL12 HIEMPL. 9736 HIEMPL13 HIEMPL. 9737 HIEMPL14 HIEMPL. 9738 HIEMPL15 HIEMPL. 9739 HIEMPL16 HIEMPL. 172 The SAS System 13:10 Thursday, March 25, 2010 9740 HIEMPL17 HIEMPL. 9741 HIEMPL18 HIEMPL. 9742 HIEMPL19 HIEMPL. 9743 HIEMPL20 HIEMPL. 9744 HIEMPL21 HIEMPL. 9745 HIEMPL22 HIEMPL. 9746 HIEMPL23 HIEMPL. 9747 HIEMPL24 HIEMPL. 9748 HIEMPL25 HIEMPL. 9749 HIEMPL26 HIEMPL. 9750 HIEMPL27 HIEMPL. 9751 HIEMPL28 HIEMPL. 9752 HIEMPL29 HIEMPL. 9753 HIEMPL30 HIEMPL. 9754 HIEMPL31 HIEMPL. 9755 HIEMPL32 HIEMPL. 9756 SS_PID01 SS_PID. 9757 SS_PID02 SS_PID. 9758 SS_PID03 SS_PID. 9759 SS_PID04 SS_PID. 9760 SS_PID05 SS_PID. 9761 SS_PID06 SS_PID. 9762 SS_PID07 SS_PID. 9763 SS_PID08 SS_PID. 9764 SS_PID09 SS_PID. 9765 SS_PID10 SS_PID. 9766 SS_PID11 SS_PID. 9767 SS_PID12 SS_PID. 9768 SS_PID13 SS_PID. 9769 SS_PID14 SS_PID. 9770 SS_PID15 SS_PID. 9771 SS_PID16 SS_PID. 9772 SS_PID17 SS_PID. 9773 SS_PID18 SS_PID. 9774 SS_PID19 SS_PID. 9775 SS_PID20 SS_PID. 9776 SS_PID21 SS_PID. 9777 SS_PID22 SS_PID. 9778 SS_PID23 SS_PID. 9779 SS_PID24 SS_PID. 9780 SS_PID25 SS_PID. 9781 SS_PID26 SS_PID. 9782 SS_PID27 SS_PID. 9783 SS_PID28 SS_PID. 9784 SS_PID29 SS_PID. 9785 SS_PID30 SS_PID. 9786 SS_PID31 SS_PID. 9787 SS_PID32 SS_PID. 9788 RR_PID01 RR_PID. 9789 RR_PID02 RR_PID. 9790 RR_PID03 RR_PID. 9791 RR_PID04 RR_PID. 9792 RR_PID05 RR_PID. 9793 RR_PID06 RR_PID. 9794 RR_PID07 RR_PID. 9795 RR_PID08 RR_PID. 9796 RR_PID09 RR_PID. 9797 RR_PID10 RR_PID. 173 The SAS System 13:10 Thursday, March 25, 2010 9798 RR_PID11 RR_PID. 9799 RR_PID12 RR_PID. 9800 RR_PID13 RR_PID. 9801 RR_PID14 RR_PID. 9802 RR_PID15 RR_PID. 9803 RR_PID16 RR_PID. 9804 RR_PID17 RR_PID. 9805 RR_PID18 RR_PID. 9806 RR_PID19 RR_PID. 9807 RR_PID20 RR_PID. 9808 RR_PID21 RR_PID. 9809 RR_PID22 RR_PID. 9810 RR_PID23 RR_PID. 9811 RR_PID24 RR_PID. 9812 RR_PID25 RR_PID. 9813 RR_PID26 RR_PID. 9814 RR_PID27 RR_PID. 9815 RR_PID28 RR_PID. 9816 RR_PID29 RR_PID. 9817 RR_PID30 RR_PID. 9818 RR_PID31 RR_PID. 9819 RR_PID32 RR_PID. 9820 VA_PID01 VA_PID. 9821 VA_PID02 VA_PID. 9822 VA_PID03 VA_PID. 9823 VA_PID04 VA_PID. 9824 VA_PID05 VA_PID. 9825 VA_PID06 VA_PID. 9826 VA_PID07 VA_PID. 9827 VA_PID08 VA_PID. 9828 VA_PID09 VA_PID. 9829 VA_PID10 VA_PID. 9830 VA_PID11 VA_PID. 9831 VA_PID12 VA_PID. 9832 VA_PID13 VA_PID. 9833 VA_PID14 VA_PID. 9834 VA_PID15 VA_PID. 9835 VA_PID16 VA_PID. 9836 VA_PID17 VA_PID. 9837 VA_PID18 VA_PID. 9838 VA_PID19 VA_PID. 9839 VA_PID20 VA_PID. 9840 VA_PID21 VA_PID. 9841 VA_PID22 VA_PID. 9842 VA_PID23 VA_PID. 9843 VA_PID24 VA_PID. 9844 VA_PID25 VA_PID. 9845 VA_PID26 VA_PID. 9846 VA_PID27 VA_PID. 9847 VA_PID28 VA_PID. 9848 VA_PID29 VA_PID. 9849 VA_PID30 VA_PID. 9850 VA_PID31 VA_PID. 9851 VA_PID32 VA_PID. 9852 AFDCPI01 AFDCPI. 9853 AFDCPI02 AFDCPI. 9854 AFDCPI03 AFDCPI. 9855 AFDCPI04 AFDCPI. 174 The SAS System 13:10 Thursday, March 25, 2010 9856 AFDCPI05 AFDCPI. 9857 AFDCPI06 AFDCPI. 9858 AFDCPI07 AFDCPI. 9859 AFDCPI08 AFDCPI. 9860 AFDCPI09 AFDCPI. 9861 AFDCPI10 AFDCPI. 9862 AFDCPI11 AFDCPI. 9863 AFDCPI12 AFDCPI. 9864 AFDCPI13 AFDCPI. 9865 AFDCPI14 AFDCPI. 9866 AFDCPI15 AFDCPI. 9867 AFDCPI16 AFDCPI. 9868 AFDCPI17 AFDCPI. 9869 AFDCPI18 AFDCPI. 9870 AFDCPI19 AFDCPI. 9871 AFDCPI20 AFDCPI. 9872 AFDCPI21 AFDCPI. 9873 AFDCPI22 AFDCPI. 9874 AFDCPI23 AFDCPI. 9875 AFDCPI24 AFDCPI. 9876 AFDCPI25 AFDCPI. 9877 AFDCPI26 AFDCPI. 9878 AFDCPI27 AFDCPI. 9879 AFDCPI28 AFDCPI. 9880 AFDCPI29 AFDCPI. 9881 AFDCPI30 AFDCPI. 9882 AFDCPI31 AFDCPI. 9883 AFDCPI32 AFDCPI. 9884 GA_PID01 GA_PID. 9885 GA_PID02 GA_PID. 9886 GA_PID03 GA_PID. 9887 GA_PID04 GA_PID. 9888 GA_PID05 GA_PID. 9889 GA_PID06 GA_PID. 9890 GA_PID07 GA_PID. 9891 GA_PID08 GA_PID. 9892 GA_PID09 GA_PID. 9893 GA_PID10 GA_PID. 9894 GA_PID11 GA_PID. 9895 GA_PID12 GA_PID. 9896 GA_PID13 GA_PID. 9897 GA_PID14 GA_PID. 9898 GA_PID15 GA_PID. 9899 GA_PID16 GA_PID. 9900 GA_PID17 GA_PID. 9901 GA_PID18 GA_PID. 9902 GA_PID19 GA_PID. 9903 GA_PID20 GA_PID. 9904 GA_PID21 GA_PID. 9905 GA_PID22 GA_PID. 9906 GA_PID23 GA_PID. 9907 GA_PID24 GA_PID. 9908 GA_PID25 GA_PID. 9909 GA_PID26 GA_PID. 9910 GA_PID27 GA_PID. 9911 GA_PID28 GA_PID. 9912 GA_PID29 GA_PID. 9913 GA_PID30 GA_PID. 175 The SAS System 13:10 Thursday, March 25, 2010 9914 GA_PID31 GA_PID. 9915 GA_PID32 GA_PID. 9916 FOSTPI01 FOSTPI. 9917 FOSTPI02 FOSTPI. 9918 FOSTPI03 FOSTPI. 9919 FOSTPI04 FOSTPI. 9920 FOSTPI05 FOSTPI. 9921 FOSTPI06 FOSTPI. 9922 FOSTPI07 FOSTPI. 9923 FOSTPI08 FOSTPI. 9924 FOSTPI09 FOSTPI. 9925 FOSTPI10 FOSTPI. 9926 FOSTPI11 FOSTPI. 9927 FOSTPI12 FOSTPI. 9928 FOSTPI13 FOSTPI. 9929 FOSTPI14 FOSTPI. 9930 FOSTPI15 FOSTPI. 9931 FOSTPI16 FOSTPI. 9932 FOSTPI17 FOSTPI. 9933 FOSTPI18 FOSTPI. 9934 FOSTPI19 FOSTPI. 9935 FOSTPI20 FOSTPI. 9936 FOSTPI21 FOSTPI. 9937 FOSTPI22 FOSTPI. 9938 FOSTPI23 FOSTPI. 9939 FOSTPI24 FOSTPI. 9940 FOSTPI25 FOSTPI. 9941 FOSTPI26 FOSTPI. 9942 FOSTPI27 FOSTPI. 9943 FOSTPI28 FOSTPI. 9944 FOSTPI29 FOSTPI. 9945 FOSTPI30 FOSTPI. 9946 FOSTPI31 FOSTPI. 9947 FOSTPI32 FOSTPI. 9948 OTH_PI01 OTH_PI. 9949 OTH_PI02 OTH_PI. 9950 OTH_PI03 OTH_PI. 9951 OTH_PI04 OTH_PI. 9952 OTH_PI05 OTH_PI. 9953 OTH_PI06 OTH_PI. 9954 OTH_PI07 OTH_PI. 9955 OTH_PI08 OTH_PI. 9956 OTH_PI09 OTH_PI. 9957 OTH_PI10 OTH_PI. 9958 OTH_PI11 OTH_PI. 9959 OTH_PI12 OTH_PI. 9960 OTH_PI13 OTH_PI. 9961 OTH_PI14 OTH_PI. 9962 OTH_PI15 OTH_PI. 9963 OTH_PI16 OTH_PI. 9964 OTH_PI17 OTH_PI. 9965 OTH_PI18 OTH_PI. 9966 OTH_PI19 OTH_PI. 9967 OTH_PI20 OTH_PI. 9968 OTH_PI21 OTH_PI. 9969 OTH_PI22 OTH_PI. 9970 OTH_PI23 OTH_PI. 9971 OTH_PI24 OTH_PI. 176 The SAS System 13:10 Thursday, March 25, 2010 9972 OTH_PI25 OTH_PI. 9973 OTH_PI26 OTH_PI. 9974 OTH_PI27 OTH_PI. 9975 OTH_PI28 OTH_PI. 9976 OTH_PI29 OTH_PI. 9977 OTH_PI30 OTH_PI. 9978 OTH_PI31 OTH_PI. 9979 OTH_PI32 OTH_PI. 9980 WIC_PI01 WIC_PI. 9981 WIC_PI02 WIC_PI. 9982 WIC_PI03 WIC_PI. 9983 WIC_PI04 WIC_PI. 9984 WIC_PI05 WIC_PI. 9985 WIC_PI06 WIC_PI. 9986 WIC_PI07 WIC_PI. 9987 WIC_PI08 WIC_PI. 9988 WIC_PI09 WIC_PI. 9989 WIC_PI10 WIC_PI. 9990 WIC_PI11 WIC_PI. 9991 WIC_PI12 WIC_PI. 9992 WIC_PI13 WIC_PI. 9993 WIC_PI14 WIC_PI. 9994 WIC_PI15 WIC_PI. 9995 WIC_PI16 WIC_PI. 9996 WIC_PI17 WIC_PI. 9997 WIC_PI18 WIC_PI. 9998 WIC_PI19 WIC_PI. 9999 WIC_PI20 WIC_PI. 10000 WIC_PI21 WIC_PI. 10001 WIC_PI22 WIC_PI. 10002 WIC_PI23 WIC_PI. 10003 WIC_PI24 WIC_PI. 10004 WIC_PI25 WIC_PI. 10005 WIC_PI26 WIC_PI. 10006 WIC_PI27 WIC_PI. 10007 WIC_PI28 WIC_PI. 10008 WIC_PI29 WIC_PI. 10009 WIC_PI30 WIC_PI. 10010 WIC_PI31 WIC_PI. 10011 WIC_PI32 WIC_PI. 10012 FS_PID01 FS_PID. 10013 FS_PID02 FS_PID. 10014 FS_PID03 FS_PID. 10015 FS_PID04 FS_PID. 10016 FS_PID05 FS_PID. 10017 FS_PID06 FS_PID. 10018 FS_PID07 FS_PID. 10019 FS_PID08 FS_PID. 10020 FS_PID09 FS_PID. 10021 FS_PID10 FS_PID. 10022 FS_PID11 FS_PID. 10023 FS_PID12 FS_PID. 10024 FS_PID13 FS_PID. 10025 FS_PID14 FS_PID. 10026 FS_PID15 FS_PID. 10027 FS_PID16 FS_PID. 10028 FS_PID17 FS_PID. 10029 FS_PID18 FS_PID. 177 The SAS System 13:10 Thursday, March 25, 2010 10030 FS_PID19 FS_PID. 10031 FS_PID20 FS_PID. 10032 FS_PID21 FS_PID. 10033 FS_PID22 FS_PID. 10034 FS_PID23 FS_PID. 10035 FS_PID24 FS_PID. 10036 FS_PID25 FS_PID. 10037 FS_PID26 FS_PID. 10038 FS_PID27 FS_PID. 10039 FS_PID28 FS_PID. 10040 FS_PID29 FS_PID. 10041 FS_PID30 FS_PID. 10042 FS_PID31 FS_PID. 10043 FS_PID32 FS_PID. 10044 WS_I1_01 WS_I1L. 10045 WS_I1_02 WS_I1L. 10046 WS_I1_03 WS_I1L. 10047 WS_I1_04 WS_I1L. 10048 WS_I1_05 WS_I1L. 10049 WS_I1_06 WS_I1L. 10050 WS_I1_07 WS_I1L. 10051 WS_I1_08 WS_I1L. 10052 WS_I1_09 WS_I1L. 10053 WS_I1_10 WS_I1L. 10054 WS_I1_11 WS_I1L. 10055 WS_I1_12 WS_I1L. 10056 WS_I1_13 WS_I1L. 10057 WS_I1_14 WS_I1L. 10058 WS_I1_15 WS_I1L. 10059 WS_I1_16 WS_I1L. 10060 WS_I1_17 WS_I1L. 10061 WS_I1_18 WS_I1L. 10062 WS_I1_19 WS_I1L. 10063 WS_I1_20 WS_I1L. 10064 WS_I1_21 WS_I1L. 10065 WS_I1_22 WS_I1L. 10066 WS_I1_23 WS_I1L. 10067 WS_I1_24 WS_I1L. 10068 WS_I1_25 WS_I1L. 10069 WS_I1_26 WS_I1L. 10070 WS_I1_27 WS_I1L. 10071 WS_I1_28 WS_I1L. 10072 WS_I1_29 WS_I1L. 10073 WS_I1_30 WS_I1L. 10074 WS_I1_31 WS_I1L. 10075 WS_I1_32 WS_I1L. 10076 WS_I2_01 WS_I2L. 10077 WS_I2_02 WS_I2L. 10078 WS_I2_03 WS_I2L. 10079 WS_I2_04 WS_I2L. 10080 WS_I2_05 WS_I2L. 10081 WS_I2_06 WS_I2L. 10082 WS_I2_07 WS_I2L. 10083 WS_I2_08 WS_I2L. 10084 WS_I2_09 WS_I2L. 10085 WS_I2_10 WS_I2L. 10086 WS_I2_11 WS_I2L. 10087 WS_I2_12 WS_I2L. 178 The SAS System 13:10 Thursday, March 25, 2010 10088 WS_I2_13 WS_I2L. 10089 WS_I2_14 WS_I2L. 10090 WS_I2_15 WS_I2L. 10091 WS_I2_16 WS_I2L. 10092 WS_I2_17 WS_I2L. 10093 WS_I2_18 WS_I2L. 10094 WS_I2_19 WS_I2L. 10095 WS_I2_20 WS_I2L. 10096 WS_I2_21 WS_I2L. 10097 WS_I2_22 WS_I2L. 10098 WS_I2_23 WS_I2L. 10099 WS_I2_24 WS_I2L. 10100 WS_I2_25 WS_I2L. 10101 WS_I2_26 WS_I2L. 10102 WS_I2_27 WS_I2L. 10103 WS_I2_28 WS_I2L. 10104 WS_I2_29 WS_I2L. 10105 WS_I2_30 WS_I2L. 10106 WS_I2_31 WS_I2L. 10107 WS_I2_32 WS_I2L. 10108 SE_I1_01 SE_I1L. 10109 SE_I1_02 SE_I1L. 10110 SE_I1_03 SE_I1L. 10111 SE_I1_04 SE_I1L. 10112 SE_I1_05 SE_I1L. 10113 SE_I1_06 SE_I1L. 10114 SE_I1_07 SE_I1L. 10115 SE_I1_08 SE_I1L. 10116 SE_I1_09 SE_I1L. 10117 SE_I1_10 SE_I1L. 10118 SE_I1_11 SE_I1L. 10119 SE_I1_12 SE_I1L. 10120 SE_I1_13 SE_I1L. 10121 SE_I1_14 SE_I1L. 10122 SE_I1_15 SE_I1L. 10123 SE_I1_16 SE_I1L. 10124 SE_I1_17 SE_I1L. 10125 SE_I1_18 SE_I1L. 10126 SE_I1_19 SE_I1L. 10127 SE_I1_20 SE_I1L. 10128 SE_I1_21 SE_I1L. 10129 SE_I1_22 SE_I1L. 10130 SE_I1_23 SE_I1L. 10131 SE_I1_24 SE_I1L. 10132 SE_I1_25 SE_I1L. 10133 SE_I1_26 SE_I1L. 10134 SE_I1_27 SE_I1L. 10135 SE_I1_28 SE_I1L. 10136 SE_I1_29 SE_I1L. 10137 SE_I1_30 SE_I1L. 10138 SE_I1_31 SE_I1L. 10139 SE_I1_32 SE_I1L. 10140 SE_I2_01 SE_I2L. 10141 SE_I2_02 SE_I2L. 10142 SE_I2_03 SE_I2L. 10143 SE_I2_04 SE_I2L. 10144 SE_I2_05 SE_I2L. 10145 SE_I2_06 SE_I2L. 179 The SAS System 13:10 Thursday, March 25, 2010 10146 SE_I2_07 SE_I2L. 10147 SE_I2_08 SE_I2L. 10148 SE_I2_09 SE_I2L. 10149 SE_I2_10 SE_I2L. 10150 SE_I2_11 SE_I2L. 10151 SE_I2_12 SE_I2L. 10152 SE_I2_13 SE_I2L. 10153 SE_I2_14 SE_I2L. 10154 SE_I2_15 SE_I2L. 10155 SE_I2_16 SE_I2L. 10156 SE_I2_17 SE_I2L. 10157 SE_I2_18 SE_I2L. 10158 SE_I2_19 SE_I2L. 10159 SE_I2_20 SE_I2L. 10160 SE_I2_21 SE_I2L. 10161 SE_I2_22 SE_I2L. 10162 SE_I2_23 SE_I2L. 10163 SE_I2_24 SE_I2L. 10164 SE_I2_25 SE_I2L. 10165 SE_I2_26 SE_I2L. 10166 SE_I2_27 SE_I2L. 10167 SE_I2_28 SE_I2L. 10168 SE_I2_29 SE_I2L. 10169 SE_I2_30 SE_I2L. 10170 SE_I2_31 SE_I2L. 10171 SE_I2_32 SE_I2L. 10172 G1_I1_01 G1_I1L. 10173 G1_I1_02 G1_I1L. 10174 G1_I1_03 G1_I1L. 10175 G1_I1_04 G1_I1L. 10176 G1_I1_05 G1_I1L. 10177 G1_I1_06 G1_I1L. 10178 G1_I1_07 G1_I1L. 10179 G1_I1_08 G1_I1L. 10180 G1_I1_09 G1_I1L. 10181 G1_I1_10 G1_I1L. 10182 G1_I1_11 G1_I1L. 10183 G1_I1_12 G1_I1L. 10184 G1_I1_13 G1_I1L. 10185 G1_I1_14 G1_I1L. 10186 G1_I1_15 G1_I1L. 10187 G1_I1_16 G1_I1L. 10188 G1_I1_17 G1_I1L. 10189 G1_I1_18 G1_I1L. 10190 G1_I1_19 G1_I1L. 10191 G1_I1_20 G1_I1L. 10192 G1_I1_21 G1_I1L. 10193 G1_I1_22 G1_I1L. 10194 G1_I1_23 G1_I1L. 10195 G1_I1_24 G1_I1L. 10196 G1_I1_25 G1_I1L. 10197 G1_I1_26 G1_I1L. 10198 G1_I1_27 G1_I1L. 10199 G1_I1_28 G1_I1L. 10200 G1_I1_29 G1_I1L. 10201 G1_I1_30 G1_I1L. 10202 G1_I1_31 G1_I1L. 10203 G1_I1_32 G1_I1L. 180 The SAS System 13:10 Thursday, March 25, 2010 10204 G1_I2_01 G1_I2L. 10205 G1_I2_02 G1_I2L. 10206 G1_I2_03 G1_I2L. 10207 G1_I2_04 G1_I2L. 10208 G1_I2_05 G1_I2L. 10209 G1_I2_06 G1_I2L. 10210 G1_I2_07 G1_I2L. 10211 G1_I2_08 G1_I2L. 10212 G1_I2_09 G1_I2L. 10213 G1_I2_10 G1_I2L. 10214 G1_I2_11 G1_I2L. 10215 G1_I2_12 G1_I2L. 10216 G1_I2_13 G1_I2L. 10217 G1_I2_14 G1_I2L. 10218 G1_I2_15 G1_I2L. 10219 G1_I2_16 G1_I2L. 10220 G1_I2_17 G1_I2L. 10221 G1_I2_18 G1_I2L. 10222 G1_I2_19 G1_I2L. 10223 G1_I2_20 G1_I2L. 10224 G1_I2_21 G1_I2L. 10225 G1_I2_22 G1_I2L. 10226 G1_I2_23 G1_I2L. 10227 G1_I2_24 G1_I2L. 10228 G1_I2_25 G1_I2L. 10229 G1_I2_26 G1_I2L. 10230 G1_I2_27 G1_I2L. 10231 G1_I2_28 G1_I2L. 10232 G1_I2_29 G1_I2L. 10233 G1_I2_30 G1_I2L. 10234 G1_I2_31 G1_I2L. 10235 G1_I2_32 G1_I2L. 10236 G1_I3_01 G1_I3L. 10237 G1_I3_02 G1_I3L. 10238 G1_I3_03 G1_I3L. 10239 G1_I3_04 G1_I3L. 10240 G1_I3_05 G1_I3L. 10241 G1_I3_06 G1_I3L. 10242 G1_I3_07 G1_I3L. 10243 G1_I3_08 G1_I3L. 10244 G1_I3_09 G1_I3L. 10245 G1_I3_10 G1_I3L. 10246 G1_I3_11 G1_I3L. 10247 G1_I3_12 G1_I3L. 10248 G1_I3_13 G1_I3L. 10249 G1_I3_14 G1_I3L. 10250 G1_I3_15 G1_I3L. 10251 G1_I3_16 G1_I3L. 10252 G1_I3_17 G1_I3L. 10253 G1_I3_18 G1_I3L. 10254 G1_I3_19 G1_I3L. 10255 G1_I3_20 G1_I3L. 10256 G1_I3_21 G1_I3L. 10257 G1_I3_22 G1_I3L. 10258 G1_I3_23 G1_I3L. 10259 G1_I3_24 G1_I3L. 10260 G1_I3_25 G1_I3L. 10261 G1_I3_26 G1_I3L. 181 The SAS System 13:10 Thursday, March 25, 2010 10262 G1_I3_27 G1_I3L. 10263 G1_I3_28 G1_I3L. 10264 G1_I3_29 G1_I3L. 10265 G1_I3_30 G1_I3L. 10266 G1_I3_31 G1_I3L. 10267 G1_I3_32 G1_I3L. 10268 G1_I4_01 G1_I4L. 10269 G1_I4_02 G1_I4L. 10270 G1_I4_03 G1_I4L. 10271 G1_I4_04 G1_I4L. 10272 G1_I4_05 G1_I4L. 10273 G1_I4_06 G1_I4L. 10274 G1_I4_07 G1_I4L. 10275 G1_I4_08 G1_I4L. 10276 G1_I4_09 G1_I4L. 10277 G1_I4_10 G1_I4L. 10278 G1_I4_11 G1_I4L. 10279 G1_I4_12 G1_I4L. 10280 G1_I4_13 G1_I4L. 10281 G1_I4_14 G1_I4L. 10282 G1_I4_15 G1_I4L. 10283 G1_I4_16 G1_I4L. 10284 G1_I4_17 G1_I4L. 10285 G1_I4_18 G1_I4L. 10286 G1_I4_19 G1_I4L. 10287 G1_I4_20 G1_I4L. 10288 G1_I4_21 G1_I4L. 10289 G1_I4_22 G1_I4L. 10290 G1_I4_23 G1_I4L. 10291 G1_I4_24 G1_I4L. 10292 G1_I4_25 G1_I4L. 10293 G1_I4_26 G1_I4L. 10294 G1_I4_27 G1_I4L. 10295 G1_I4_28 G1_I4L. 10296 G1_I4_29 G1_I4L. 10297 G1_I4_30 G1_I4L. 10298 G1_I4_31 G1_I4L. 10299 G1_I4_32 G1_I4L. 10300 G1_I5_01 G1_I5L. 10301 G1_I5_02 G1_I5L. 10302 G1_I5_03 G1_I5L. 10303 G1_I5_04 G1_I5L. 10304 G1_I5_05 G1_I5L. 10305 G1_I5_06 G1_I5L. 10306 G1_I5_07 G1_I5L. 10307 G1_I5_08 G1_I5L. 10308 G1_I5_09 G1_I5L. 10309 G1_I5_10 G1_I5L. 10310 G1_I5_11 G1_I5L. 10311 G1_I5_12 G1_I5L. 10312 G1_I5_13 G1_I5L. 10313 G1_I5_14 G1_I5L. 10314 G1_I5_15 G1_I5L. 10315 G1_I5_16 G1_I5L. 10316 G1_I5_17 G1_I5L. 10317 G1_I5_18 G1_I5L. 10318 G1_I5_19 G1_I5L. 10319 G1_I5_20 G1_I5L. 182 The SAS System 13:10 Thursday, March 25, 2010 10320 G1_I5_21 G1_I5L. 10321 G1_I5_22 G1_I5L. 10322 G1_I5_23 G1_I5L. 10323 G1_I5_24 G1_I5L. 10324 G1_I5_25 G1_I5L. 10325 G1_I5_26 G1_I5L. 10326 G1_I5_27 G1_I5L. 10327 G1_I5_28 G1_I5L. 10328 G1_I5_29 G1_I5L. 10329 G1_I5_30 G1_I5L. 10330 G1_I5_31 G1_I5L. 10331 G1_I5_32 G1_I5L. 10332 G1_I6_01 G1_I6L. 10333 G1_I6_02 G1_I6L. 10334 G1_I6_03 G1_I6L. 10335 G1_I6_04 G1_I6L. 10336 G1_I6_05 G1_I6L. 10337 G1_I6_06 G1_I6L. 10338 G1_I6_07 G1_I6L. 10339 G1_I6_08 G1_I6L. 10340 G1_I6_09 G1_I6L. 10341 G1_I6_10 G1_I6L. 10342 G1_I6_11 G1_I6L. 10343 G1_I6_12 G1_I6L. 10344 G1_I6_13 G1_I6L. 10345 G1_I6_14 G1_I6L. 10346 G1_I6_15 G1_I6L. 10347 G1_I6_16 G1_I6L. 10348 G1_I6_17 G1_I6L. 10349 G1_I6_18 G1_I6L. 10350 G1_I6_19 G1_I6L. 10351 G1_I6_20 G1_I6L. 10352 G1_I6_21 G1_I6L. 10353 G1_I6_22 G1_I6L. 10354 G1_I6_23 G1_I6L. 10355 G1_I6_24 G1_I6L. 10356 G1_I6_25 G1_I6L. 10357 G1_I6_26 G1_I6L. 10358 G1_I6_27 G1_I6L. 10359 G1_I6_28 G1_I6L. 10360 G1_I6_29 G1_I6L. 10361 G1_I6_30 G1_I6L. 10362 G1_I6_31 G1_I6L. 10363 G1_I6_32 G1_I6L. 10364 G1_I7_01 G1_I7L. 10365 G1_I7_02 G1_I7L. 10366 G1_I7_03 G1_I7L. 10367 G1_I7_04 G1_I7L. 10368 G1_I7_05 G1_I7L. 10369 G1_I7_06 G1_I7L. 10370 G1_I7_07 G1_I7L. 10371 G1_I7_08 G1_I7L. 10372 G1_I7_09 G1_I7L. 10373 G1_I7_10 G1_I7L. 10374 G1_I7_11 G1_I7L. 10375 G1_I7_12 G1_I7L. 10376 G1_I7_13 G1_I7L. 10377 G1_I7_14 G1_I7L. 183 The SAS System 13:10 Thursday, March 25, 2010 10378 G1_I7_15 G1_I7L. 10379 G1_I7_16 G1_I7L. 10380 G1_I7_17 G1_I7L. 10381 G1_I7_18 G1_I7L. 10382 G1_I7_19 G1_I7L. 10383 G1_I7_20 G1_I7L. 10384 G1_I7_21 G1_I7L. 10385 G1_I7_22 G1_I7L. 10386 G1_I7_23 G1_I7L. 10387 G1_I7_24 G1_I7L. 10388 G1_I7_25 G1_I7L. 10389 G1_I7_26 G1_I7L. 10390 G1_I7_27 G1_I7L. 10391 G1_I7_28 G1_I7L. 10392 G1_I7_29 G1_I7L. 10393 G1_I7_30 G1_I7L. 10394 G1_I7_31 G1_I7L. 10395 G1_I7_32 G1_I7L. 10396 G1_I8_01 G1_I8L. 10397 G1_I8_02 G1_I8L. 10398 G1_I8_03 G1_I8L. 10399 G1_I8_04 G1_I8L. 10400 G1_I8_05 G1_I8L. 10401 G1_I8_06 G1_I8L. 10402 G1_I8_07 G1_I8L. 10403 G1_I8_08 G1_I8L. 10404 G1_I8_09 G1_I8L. 10405 G1_I8_10 G1_I8L. 10406 G1_I8_11 G1_I8L. 10407 G1_I8_12 G1_I8L. 10408 G1_I8_13 G1_I8L. 10409 G1_I8_14 G1_I8L. 10410 G1_I8_15 G1_I8L. 10411 G1_I8_16 G1_I8L. 10412 G1_I8_17 G1_I8L. 10413 G1_I8_18 G1_I8L. 10414 G1_I8_19 G1_I8L. 10415 G1_I8_20 G1_I8L. 10416 G1_I8_21 G1_I8L. 10417 G1_I8_22 G1_I8L. 10418 G1_I8_23 G1_I8L. 10419 G1_I8_24 G1_I8L. 10420 G1_I8_25 G1_I8L. 10421 G1_I8_26 G1_I8L. 10422 G1_I8_27 G1_I8L. 10423 G1_I8_28 G1_I8L. 10424 G1_I8_29 G1_I8L. 10425 G1_I8_30 G1_I8L. 10426 G1_I8_31 G1_I8L. 10427 G1_I8_32 G1_I8L. 10428 G1_I9_01 G1_I9L. 10429 G1_I9_02 G1_I9L. 10430 G1_I9_03 G1_I9L. 10431 G1_I9_04 G1_I9L. 10432 G1_I9_05 G1_I9L. 10433 G1_I9_06 G1_I9L. 10434 G1_I9_07 G1_I9L. 10435 G1_I9_08 G1_I9L. 184 The SAS System 13:10 Thursday, March 25, 2010 10436 G1_I9_09 G1_I9L. 10437 G1_I9_10 G1_I9L. 10438 G1_I9_11 G1_I9L. 10439 G1_I9_12 G1_I9L. 10440 G1_I9_13 G1_I9L. 10441 G1_I9_14 G1_I9L. 10442 G1_I9_15 G1_I9L. 10443 G1_I9_16 G1_I9L. 10444 G1_I9_17 G1_I9L. 10445 G1_I9_18 G1_I9L. 10446 G1_I9_19 G1_I9L. 10447 G1_I9_20 G1_I9L. 10448 G1_I9_21 G1_I9L. 10449 G1_I9_22 G1_I9L. 10450 G1_I9_23 G1_I9L. 10451 G1_I9_24 G1_I9L. 10452 G1_I9_25 G1_I9L. 10453 G1_I9_26 G1_I9L. 10454 G1_I9_27 G1_I9L. 10455 G1_I9_28 G1_I9L. 10456 G1_I9_29 G1_I9L. 10457 G1_I9_30 G1_I9L. 10458 G1_I9_31 G1_I9L. 10459 G1_I9_32 G1_I9L. 10460 G1_I1001 G1_I10L. 10461 G1_I1002 G1_I10L. 10462 G1_I1003 G1_I10L. 10463 G1_I1004 G1_I10L. 10464 G1_I1005 G1_I10L. 10465 G1_I1006 G1_I10L. 10466 G1_I1007 G1_I10L. 10467 G1_I1008 G1_I10L. 10468 G1_I1009 G1_I10L. 10469 G1_I1010 G1_I10L. 10470 G1_I1011 G1_I10L. 10471 G1_I1012 G1_I10L. 10472 G1_I1013 G1_I10L. 10473 G1_I1014 G1_I10L. 10474 G1_I1015 G1_I10L. 10475 G1_I1016 G1_I10L. 10476 G1_I1017 G1_I10L. 10477 G1_I1018 G1_I10L. 10478 G1_I1019 G1_I10L. 10479 G1_I1020 G1_I10L. 10480 G1_I1021 G1_I10L. 10481 G1_I1022 G1_I10L. 10482 G1_I1023 G1_I10L. 10483 G1_I1024 G1_I10L. 10484 G1_I1025 G1_I10L. 10485 G1_I1026 G1_I10L. 10486 G1_I1027 G1_I10L. 10487 G1_I1028 G1_I10L. 10488 G1_I1029 G1_I10L. 10489 G1_I1030 G1_I10L. 10490 G1_I1031 G1_I10L. 10491 G1_I1032 G1_I10L. 10492 G2I10001 G2I100L. 10493 G2I10002 G2I100L. 185 The SAS System 13:10 Thursday, March 25, 2010 10494 G2I10003 G2I100L. 10495 G2I10004 G2I100L. 10496 G2I10005 G2I100L. 10497 G2I10006 G2I100L. 10498 G2I10007 G2I100L. 10499 G2I10008 G2I100L. 10500 G2I10009 G2I100L. 10501 G2I10010 G2I100L. 10502 G2I10011 G2I100L. 10503 G2I10012 G2I100L. 10504 G2I10013 G2I100L. 10505 G2I10014 G2I100L. 10506 G2I10015 G2I100L. 10507 G2I10016 G2I100L. 10508 G2I10017 G2I100L. 10509 G2I10018 G2I100L. 10510 G2I10019 G2I100L. 10511 G2I10020 G2I100L. 10512 G2I10021 G2I100L. 10513 G2I10022 G2I100L. 10514 G2I10023 G2I100L. 10515 G2I10024 G2I100L. 10516 G2I10025 G2I100L. 10517 G2I10026 G2I100L. 10518 G2I10027 G2I100L. 10519 G2I10028 G2I100L. 10520 G2I10029 G2I100L. 10521 G2I10030 G2I100L. 10522 G2I10031 G2I100L. 10523 G2I10032 G2I100L. 10524 G2I10401 G2I104L. 10525 G2I10402 G2I104L. 10526 G2I10403 G2I104L. 10527 G2I10404 G2I104L. 10528 G2I10405 G2I104L. 10529 G2I10406 G2I104L. 10530 G2I10407 G2I104L. 10531 G2I10408 G2I104L. 10532 G2I10409 G2I104L. 10533 G2I10410 G2I104L. 10534 G2I10411 G2I104L. 10535 G2I10412 G2I104L. 10536 G2I10413 G2I104L. 10537 G2I10414 G2I104L. 10538 G2I10415 G2I104L. 10539 G2I10416 G2I104L. 10540 G2I10417 G2I104L. 10541 G2I10418 G2I104L. 10542 G2I10419 G2I104L. 10543 G2I10420 G2I104L. 10544 G2I10421 G2I104L. 10545 G2I10422 G2I104L. 10546 G2I10423 G2I104L. 10547 G2I10424 G2I104L. 10548 G2I10425 G2I104L. 10549 G2I10426 G2I104L. 10550 G2I10427 G2I104L. 10551 G2I10428 G2I104L. 186 The SAS System 13:10 Thursday, March 25, 2010 10552 G2I10429 G2I104L. 10553 G2I10430 G2I104L. 10554 G2I10431 G2I104L. 10555 G2I10432 G2I104L. 10556 G2I11001 G2I110L. 10557 G2I11002 G2I110L. 10558 G2I11003 G2I110L. 10559 G2I11004 G2I110L. 10560 G2I11005 G2I110L. 10561 G2I11006 G2I110L. 10562 G2I11007 G2I110L. 10563 G2I11008 G2I110L. 10564 G2I11009 G2I110L. 10565 G2I11010 G2I110L. 10566 G2I11011 G2I110L. 10567 G2I11012 G2I110L. 10568 G2I11013 G2I110L. 10569 G2I11014 G2I110L. 10570 G2I11015 G2I110L. 10571 G2I11016 G2I110L. 10572 G2I11017 G2I110L. 10573 G2I11018 G2I110L. 10574 G2I11019 G2I110L. 10575 G2I11020 G2I110L. 10576 G2I11021 G2I110L. 10577 G2I11022 G2I110L. 10578 G2I11023 G2I110L. 10579 G2I11024 G2I110L. 10580 G2I11025 G2I110L. 10581 G2I11026 G2I110L. 10582 G2I11027 G2I110L. 10583 G2I11028 G2I110L. 10584 G2I11029 G2I110L. 10585 G2I11030 G2I110L. 10586 G2I11031 G2I110L. 10587 G2I11032 G2I110L. 10588 G2I12001 G2I120L. 10589 G2I12002 G2I120L. 10590 G2I12003 G2I120L. 10591 G2I12004 G2I120L. 10592 G2I12005 G2I120L. 10593 G2I12006 G2I120L. 10594 G2I12007 G2I120L. 10595 G2I12008 G2I120L. 10596 G2I12009 G2I120L. 10597 G2I12010 G2I120L. 10598 G2I12011 G2I120L. 10599 G2I12012 G2I120L. 10600 G2I12013 G2I120L. 10601 G2I12014 G2I120L. 10602 G2I12015 G2I120L. 10603 G2I12016 G2I120L. 10604 G2I12017 G2I120L. 10605 G2I12018 G2I120L. 10606 G2I12019 G2I120L. 10607 G2I12020 G2I120L. 10608 G2I12021 G2I120L. 10609 G2I12022 G2I120L. 187 The SAS System 13:10 Thursday, March 25, 2010 10610 G2I12023 G2I120L. 10611 G2I12024 G2I120L. 10612 G2I12025 G2I120L. 10613 G2I12026 G2I120L. 10614 G2I12027 G2I120L. 10615 G2I12028 G2I120L. 10616 G2I12029 G2I120L. 10617 G2I12030 G2I120L. 10618 G2I12031 G2I120L. 10619 G2I12032 G2I120L. 10620 G2I13001 G2I130L. 10621 G2I13002 G2I130L. 10622 G2I13003 G2I130L. 10623 G2I13004 G2I130L. 10624 G2I13005 G2I130L. 10625 G2I13006 G2I130L. 10626 G2I13007 G2I130L. 10627 G2I13008 G2I130L. 10628 G2I13009 G2I130L. 10629 G2I13010 G2I130L. 10630 G2I13011 G2I130L. 10631 G2I13012 G2I130L. 10632 G2I13013 G2I130L. 10633 G2I13014 G2I130L. 10634 G2I13015 G2I130L. 10635 G2I13016 G2I130L. 10636 G2I13017 G2I130L. 10637 G2I13018 G2I130L. 10638 G2I13019 G2I130L. 10639 G2I13020 G2I130L. 10640 G2I13021 G2I130L. 10641 G2I13022 G2I130L. 10642 G2I13023 G2I130L. 10643 G2I13024 G2I130L. 10644 G2I13025 G2I130L. 10645 G2I13026 G2I130L. 10646 G2I13027 G2I130L. 10647 G2I13028 G2I130L. 10648 G2I13029 G2I130L. 10649 G2I13030 G2I130L. 10650 G2I13031 G2I130L. 10651 G2I13032 G2I130L. 10652 G2I14001 G2I140L. 10653 G2I14002 G2I140L. 10654 G2I14003 G2I140L. 10655 G2I14004 G2I140L. 10656 G2I14005 G2I140L. 10657 G2I14006 G2I140L. 10658 G2I14007 G2I140L. 10659 G2I14008 G2I140L. 10660 G2I14009 G2I140L. 10661 G2I14010 G2I140L. 10662 G2I14011 G2I140L. 10663 G2I14012 G2I140L. 10664 G2I14013 G2I140L. 10665 G2I14014 G2I140L. 10666 G2I14015 G2I140L. 10667 G2I14016 G2I140L. 188 The SAS System 13:10 Thursday, March 25, 2010 10668 G2I14017 G2I140L. 10669 G2I14018 G2I140L. 10670 G2I14019 G2I140L. 10671 G2I14020 G2I140L. 10672 G2I14021 G2I140L. 10673 G2I14022 G2I140L. 10674 G2I14023 G2I140L. 10675 G2I14024 G2I140L. 10676 G2I14025 G2I140L. 10677 G2I14026 G2I140L. 10678 G2I14027 G2I140L. 10679 G2I14028 G2I140L. 10680 G2I14029 G2I140L. 10681 G2I14030 G2I140L. 10682 G2I14031 G2I140L. 10683 G2I14032 G2I140L. 10684 ; NOTE: There were 6 observations read from the data set LIBRARY.SIP84FP. NOTE: The PROCEDURE PRINT printed pages 1-158. NOTE: PROCEDURE PRINT used (Total process time): real time 2.17 seconds cpu time 0.89 seconds 10685 proc contents data=library.sip84fp; 10686 /* 10687 Copyright 2004 shared by the National Bureau of Economic Research and Jean Roth 10688 10689 National Bureau of Economic Research. 10690 1050 Massachusetts Avenue 10691 Cambridge, MA 02138 10692 jroth@nber.org 10693 10694 This program and all programs referenced in it are free software. You 10695 can redistribute the program or modify it under the terms of the GNU 10696 General Public License as published by the Free Software Foundation; 10697 either version 2 of the License, or (at your option) any later version. 10698 10699 This program is distributed in the hope that it will be useful, 10700 but WITHOUT ANY WARRANTY; without even the implied warranty of 10701 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10702 GNU General Public License for more details. 10703 10704 You should have received a copy of the GNU General Public License 10705 along with this program; if not, write to the Free Software 10706 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 10707 USA. 10708 */ NOTE: The PROCEDURE CONTENTS printed pages 159-235. NOTE: PROCEDURE CONTENTS used (Total process time): real time 2.18 seconds cpu time 0.27 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 16.34 seconds 189 The SAS System 13:10 Thursday, March 25, 2010 cpu time 2.42 seconds