SAS User File for PROJYR07 Data

This file contains information and sample SAS programs to create a permanent
SAS dataset for users who want to use SAS in processing the MEPS data
provided in this PUF release.

There are two ways to create a permanent SAS dataset, using either the SAS
transport data file (PROJYR07.SSP) or the ASCII data file (PROJYR07.DAT)
supplied in this PUF release.  Section A provides a sample SAS program for the
first alternative, which is to convert the SAS transport data file to a
regular SAS dataset using the SAS PROCedure: XCOPY.  Section B provides a
sample SAS program for the second alternative, which is to read data from the
ASCII data file using a SAS DATA step with INFILE, INPUT, and LABEL
statements.  Section C explains format-related SAS statements that a user may
optionally use when working with the SAS dataset.  Examples of SAS programs
(DATA step or PROC) are provided in all three sections, primarily for the
benefit of inexperienced users.  Section D contains complete SAS statements
that must be used in the programs described in Sections B and C.

INCLUDED BELOW ARE NOTES APPLICABLE TO USERS OF SAS VERSION 8 OR HIGHER.

******************************************************************************

The sample SAS programs provided in Sections A and B show how to create a
permanent SAS dataset from the data files provided in this PUF release.

A.     A Sample SAS Program for Converting the SAS Transport File to a
Permanent SAS Dataset 

The SAS PROCedure XCOPY will read a SAS transport file and convert the
data to regular SAS format, storing the output in a permanent SAS dataset. 
This permanent SAS dataset can then be used for all future processing and
analyses.

Below is a sample SAS program that can be used to convert the SAS transport
file to a permanent SAS dataset (in a Windows environment, with SAS V8 or
higher). 
 
     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     FILENAME IN1 'C:\MEPS\DOWNLOAD\PROJYR07.SSP';

     PROC XCOPY IN=IN1 OUT=PUFLIB IMPORT;
     RUN;

SAS transport files, SAS data files, and SAS program files each should be
stored in separate locations (directory names). Storing different types of 
SAS files in one location can cause errors with converting
or retrieving data.  

Below are SAS statements to print a list of variables and a few sample records 
from the permanent SAS dataset:

     PROC CONTENTS DATA=PUFLIB.PROJYR07;
     TITLE "List of Variables in MEPS PROJYR07 SAS Dataset";
     RUN;

     PROC PRINT DATA=PUFLIB.PROJYR07 (OBS=20);
     TITLE "First 20 Observations in MEPS PROJYR07 SAS Dataset";
     RUN;

The LIBNAME statement tells SAS the location (directory name) to store the
permanent SAS dataset which is output by PROC XCOPY.  The FILENAME statement
tells SAS the location (complete directory and file name) of the input SAS
transport data file. 

NOTES:
     1) If you have an error reading a SAS data file you created, the problem 
        may be a result of where you are storing and/or how you are retrieving  
        the data.  First check the data library for multiple releases of SAS
        files (e.g., V8 with file extensions of '.SAS7BDAT' and V6 with file 
        extensions of '.SD2') stored in the same location.  
        
           a) You can avoid errors when reading these files by including 
              the SAS release within the LIBNAME statement  - e.g., 
                     LIBNAME PUFLIB V8 'C:\MEPS\SASDATA'; 
           or
           
           b) Store SAS data files with different file extensions such as .SD2
              and .SAS7BDAT, in separate folders (do not co-mingle V8 and V6
              files in the same folder); 
           or
           
           c) When importing transport files, output the SAS dataset to 
              a different library than the one which contains the downloaded 
              SAS transport file - e.g.,
                     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
                     FILENAME IN1 'C:\MEPS\DOWNLOAD\Hxx.SSP';
                     PROC XCOPY IN=IN1 OUT=PUBLIB IMPORT;
                     RUN;

     2)  The names used in the LIBNAME and FILENAME statements shown
     above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary
     aliases.

     3)  The directory and file names used in the LIBNAME and FILENAME
     statements shown above are Windows syntax and may need to be
     modified for other operating systems such as UNIX, MAC/OS, VMS, or
     OS/2.

     4)  PROJYR07 is the internal SAS dataset name (also the PC file name,
     without the extension) prior to the creation of the SAS transport data
     file.  After running PROC XCOPY, the output SAS dataset assumes the same
     dataset name (or file name).  Hence, in the example above, a file named
     PROJYR07.SAS7BDAT will be created under the C:\MEPS\SASDATA directory when 
     PROC XCOPY runs successfully.

     5)  The SAS transport file PROJYR07.SSP was created from a SAS V9
     data file, using PROC COPY.  This file has been tested for use with
     SAS V8 or higher.  This file may work with earlier versions of
     SAS, although it has not been tested with those versions. Users who are
     unable to use this SAS transport file should instead convert the ASCII
     data file PROJYR07.DAT to a SAS dataset as described in Section B.


B.     A Sample SAS Program for Converting the ASCII Data File to a Permanent
SAS Dataset

The complete SAS statements (INPUT and LABEL) included in Section D are
intended to save time for those users wishing to create a permanent SAS
dataset from the PROJYR07.DAT ASCII data file.  These statements must be used
in combination with other SAS statements to create the appropriate SAS
program, as shown below.  To use the statements provided in Section D to
create a SAS program, you will need an ASCII text editor.  If you are using an
interactive form of SAS (Windows, UNIX, OS2, etc.), use the editor provided as
part of the SAS software.  

Following is a sample SAS program that will convert the ASCII data file to SAS
format:

     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     FILENAME IN1 'C:\MEPS\DOWNLOAD\PROJYR07.DAT';

     DATA PUFLIB.PROJYR07;
     INFILE IN1 LRECL=656;  
     INPUT .....; * to user: insert the complete INPUT statement that is
provided in Section D;
     LABEL .....; * to user: insert the complete LABEL statement that is
provided in Section D;
     RUN;

Here is an explanation of the SAS statements used in the program above.

LIBNAME statement: This tells SAS the location (directory name) of the
permanent SAS dataset.

FILENAME statement: This tells SAS the location of the input ASCII data file.

DATA statement: This signifies the beginning of a SAS DATA step and specifies
the output SAS dataset, referencing the LIBNAME entry (PUFLIB) and assigning
an internal SAS dataset name (PROJYR07).  In the example, after the successful
completion of the DATA step, a PC file named PROJYR07.SAS7BDAT would have
been created in the C:\MEPS\SASDATA directory.

INFILE statement: This tells SAS the location (directory and file name) of the
input ASCII data file.  Also provided is the logical record length (656  
bytes), with the default of RECFM=V implied when this parameter is omitted. 
LRECL and RECFM are optional parameters in the INFILE statement.  With regard
to these options, please note the following: the ASCII data file PROJYR07.DAT
contains a 2-byte carriage return/line feed at the end of each record.  When
converting to a PC-SAS file, the LRECL option should be used to specify the
record length to avoid use of a default record length by PC-SAS.  If the
RECFM=V option is used, the LRECL option must be specified as the logical
record length (e.g., 656 for PROJYR07.DAT).  If RECFM=F is used, then the  
LRECL value must  be specified as the logical record length plus 2 (658 for  
PROJYR07.DAT).  Note that if the RECFM option is omitted, then the default
option of RECFM=V is automatically used, and LRECL should be specified as the
logical record (656 for PROJYR07.DAT).  

INPUT statement: This specifies the input record layout, giving names and the
beginning and ending column positions for data items (which become SAS
variables) in the ASCII data file (PROJYR07.DAT).  Variable type (numeric or
character) is also defined via the INPUT statement.

LABEL statement: This associates descriptive names with the SAS variables.

RUN statement: This tells SAS to execute all commands up to this point.

See Section A.1 above for tips on retrieving and storing the permanent SAS 
data files.                                                  


C.     Optional Format-related SAS Statements

If a user wants to use formats for the SAS variables, a SAS format library
must first be created.  Below is a SAS program that will accomplish this:

     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     
     PROC FORMAT LIBRARY=PUFLIB;
     VALUE .....; * to user: insert the complete set of VALUE statements found
in Section D;
     VALUE .....;
     .......... ;
     RUN;


Below is an example of how to use the SAS formats defined by the PROC FORMAT
procedure:

     LIBNAME PUFLIB 'C:\MEPS\SASDATA';
     OPTIONS FMTSEARCH=(PUFLIB); 
   
     PROC FREQ DATA=PUFLIB.PROJYR07;
     TABLES .... / LIST MISSING;
     FORMAT varnam1 fmtnam1.  Varnam2 fmtnam2.  .... ;
     * to user: substitute varnam1 and fmtnam1 with actual variable names and
format names;
     *     Insert the FORMAT statement provided in Section D, if you are using
all the variables in the TABLES statement;
     TITLE "Frequency Distributions ....";
     RUN; 

Here is an explanation of the SAS statements used above.

LIBNAME statement: This tells SAS the location (directory name) of the SAS
format library.  Please note that SAS datasets (file name extension is 
'SAS7BDAT' for SAS V8 or higher and 'SD2' for SAS V6) and format libraries 
(file name extension is 'SAS7BCAT' for SAS V8 or higher and 'SC2' for SAS  
V6) can be stored under the same directory.

OPTIONS FMTSEARCH=...: This specifies the SAS format library.

PROC FORMAT statement: This identifies the SAS procedure that will make SAS
formats according to VALUE statements.  Formats will be stored in a file named
FORMATS.SAS7BCAT.  Please note that the option 'LIBRARY=...' can be omitted 
if the user does not want to create a permanent SAS format library. When simply
'PROC FORMAT;' is used, the formats are defined only for the duration of the
batch SAS program or an interactive SAS session.

VALUE statement: This gives a) names to formats; and b) descriptive labels for
individual values, or range of values.  The format names can then be invoked
using a FORMAT statement if desired.

PROC FREQ statement: This identifies the SAS procedure that generates
frequency distributions of variables specified in the TABLES statement,
formatted if a FORMAT statement is used.  The input SAS dataset is specified
in the 'DATA=' option.

FORMAT statement: This associates existing formats with variables.  When using
this statement, the formats must have already been created with a PROC FORMAT
procedure. 

RUN statement: This tells SAS to execute all commands up to this point.


NOTES:

     1)  Use of formats is entirely optional, and depends on the types
     of analyses that you are doing.  It is recommended that you create
     and use them as appropriate.

     2)  The names used in the LIBNAME and FILENAME statements shown
     above (i.e., PUFLIB, IN1) are arbitrary; they are only temporary
     aliases.

     3)  You only create the permanent SAS dataset once.  Additional
     analyses can be run using this permanent dataset.

     4)  The file and directory specifications in the LIBNAME and
     FILENAME statements are Windows syntax and may need to be modified
     for other operating systems such as UNIX, MAC/OS, VMS, or OS/2.


D.  SAS Statements

This section contains SAS INPUT, LABEL, FORMAT, and VALUE statements for use in
converting the ASCII PROJYR07.DAT file into a SAS dataset, and for creating
SAS formats.

* INPUT STATEMENTS;
INFILE IN LRECL=656;

INPUT @1      DUPERIDX $8.0
      @9      AGESTUB   2.0
      @11     SEX       1.0
      @12     RACE7P    1.0
      @13     INSCOV_A  1.0
      @14     INSCOV_B  2.0
      @16     MCDHMO    1.0
      @17     PRVHMO    1.0
      @18     POVCAT    1.0
      @19     TOTEXP07  9.2
      @28     TOTSLF07  9.2
      @37     TOTPHI07  9.2
      @46     TOTMCR07  9.2
      @55     TOTMCD07  9.2
      @64     TOTTRI07  9.2
      @73     TOTVA07   9.2
      @82     TOTWC07   9.2
      @91     TOTOTP07  8.2
      @99     TOTOSR07  8.2
      @107    HOSEXP07  9.2
      @116    HOSSLF07  8.2
      @124    HOSPHI07  9.2
      @133    HOSMCR07  9.2
      @142    HOSMCD07  9.2
      @151    HOSTRI07  9.2
      @160    HOSVA07   9.2
      @169    HOSWC07   9.2
      @178    HOSOTP07  8.2
      @186    HOSOSR07  8.2
      @194    PHYEXP07  9.2
      @203    PHYSLF07  8.2
      @211    PHYPHI07  8.2
      @219    PHYMCR07  8.2
      @227    PHYMCD07  8.2
      @235    PHYTRI07  9.2
      @244    PHYVA07   7.2
      @251    PHYWC07   8.2
      @259    PHYOTP07  8.2
      @267    PHYOSR07  8.2
      @275    DVTEXP07  8.2
      @283    DVTSLF07  8.2
      @291    DVTPHI07  8.2
      @299    DVTMCR07  7.2
      @306    DVTMCD07  8.2
      @314    DVTTRI07  4.2
      @318    DVTVA07   6.2
      @324    DVTWC07   4.2
      @328    DVTOTP07  7.2
      @335    DVTOSR07  8.2
      @343    OBOEXP07  8.2
      @351    OBOSLF07  8.2
      @359    OBOPHI07  8.2
      @367    OBOMCR07  8.2
      @375    OBOMCD07  8.2
      @383    OBOTRI07  4.2
      @387    OBOVA07   6.2
      @393    OBOWC07   8.2
      @401    OBOOTP07  7.2
      @408    OBOOSR07  8.2
      @416    HHCEXP07  9.2
      @425    HHCSLF07  8.2
      @433    HHCPHI07  9.2
      @442    HHCMCR07  8.2
      @450    HHCMCD07  9.2
      @459    HHCTRI07  7.2
      @466    HHCVA07   8.2
      @474    HHCWC07   8.2
      @482    HHCOTP07  8.2
      @490    HHCOSR07  7.2
      @497    RXEXP07   9.2
      @506    RXSLF07   8.2
      @514    RXPHI07   8.2
      @522    RXMCR07   9.2
      @531    RXMCD07   9.2
      @540    RXTRI07   8.2
      @548    RXVA07    8.2
      @556    RXWC07    8.2
      @564    RXOTP07   8.2
      @572    RXOSR07   7.2
      @579    OTHEXP07  8.2
      @587    OTHSLF07  8.2
      @595    OTHPHI07  8.2
      @603    OTHMCR07  8.2
      @611    OTHMCD07  4.2
      @615    OTHTRI07  4.2
      @619    OTHVA07   4.2
      @623    OTHWC07   8.2
      @631    OTHOTP07  7.2
      @638    OTHOSR07  7.2
      @645    WTADJ07   12.6
;


* FORMAT STATEMENTS;
FORMAT DUPERIDX $ID.
       AGESTUB  AGESTUB.
       SEX      SEX.
       RACE7P   RACE7P.
       INSCOV_A INSCOV_A.
       INSCOV_B INSCOV_B.
       MCDHMO   YESNO.
       PRVHMO   YESNO.
       POVCAT   POVCAT.
       TOTEXP07 TOTEXP.
       TOTSLF07 TOTSLF.
       TOTPHI07 TOTPHI.
       TOTMCR07 TOTMCR.
       TOTMCD07 TOTMCD.
       TOTTRI07 TOTTRI.
       TOTVA07  TOTVA.
       TOTWC07  TOTWC.
       TOTOTP07 TOTOTP.
       TOTOSR07 TOTOSR.
       HOSEXP07 HOSEXP.
       HOSSLF07 HOSSLF.
       HOSPHI07 HOSPHI.
       HOSMCR07 HOSMCR.
       HOSMCD07 HOSMCD.
       HOSTRI07 HOSTRI.
       HOSVA07  HOSVA.
       HOSWC07  HOSWC.
       HOSOTP07 HOSOTP.
       HOSOSR07 HOSOSR.
       PHYEXP07 PHYEXP.
       PHYSLF07 PHYSLF.
       PHYPHI07 PHYPHI.
       PHYMCR07 PHYMCR.
       PHYMCD07 PHYMCD.
       PHYTRI07 PHYTRI.
       PHYVA07  PHYVA.
       PHYWC07  PHYWC.
       PHYOTP07 PHYOTP.
       PHYOSR07 PHYOSR.
       DVTEXP07 DVTEXP.
       DVTSLF07 DVTSLF.
       DVTPHI07 DVTPHI.
       DVTMCR07 DVTMCR.
       DVTMCD07 DVTMCD.
       DVTTRI07 DVTTRI.
       DVTVA07  DVTVA.
       DVTWC07  DVTWC.
       DVTOTP07 DVTOTP.
       DVTOSR07 DVTOSR.
       OBOEXP07 OBOEXP.
       OBOSLF07 OBOSLF.
       OBOPHI07 OBOPHI.
       OBOMCR07 OBOMCR.
       OBOMCD07 OBOMCD.
       OBOTRI07 OBOTRI.
       OBOVA07  OBOVA.
       OBOWC07  OBOWC.
       OBOOTP07 OBOOTP.
       OBOOSR07 OBOOSR.
       HHCEXP07 HHCEXP.
       HHCSLF07 HHCSLF.
       HHCPHI07 HHCPHI.
       HHCMCR07 HHCMCR.
       HHCMCD07 HHCMCD.
       HHCTRI07 HHCTRI.
       HHCVA07  HHCVA.
       HHCWC07  HHCWC.
       HHCOTP07 HHCOTP.
       HHCOSR07 HHCOSR.
       RXEXP07  RXEXP.
       RXSLF07  RXSLF.
       RXPHI07  RXPHI.
       RXMCR07  RXMCR.
       RXMCD07  RXMCD.
       RXTRI07  RXTRI.
       RXVA07   RXVA.
       RXWC07   RXWC.
       RXOTP07  RXOTP.
       RXOSR07  RXOSR.
       OTHEXP07 OTHEXP.
       OTHSLF07 OTHSLF.
       OTHPHI07 OTHPHI.
       OTHMCR07 OTHMCR.
       OTHMCD07 OTHMCD.
       OTHTRI07 OTHTRI.
       OTHVA07  OTHVA.
       OTHWC07  OTHWC.
       OTHOTP07 OTHOTP.
       OTHOSR07 OTHOSR.
       WTADJ07  GTZERO.
;


* LABEL STATEMENTS;
LABEL DUPERIDX='PERSON ID'
      AGESTUB ='AGE'
      SEX     ='SEX'
      RACE7P  ='RACE/ETHNICITY'
      INSCOV_A='INSURANCE STATUS DURING YEAR - UNDER 65'
      INSCOV_B='INSURANCE STATUS DURING YEAR - 65 & OVER'
      MCDHMO  ='MEDICAID/SCHIP HMO DURING YEAR'
      PRVHMO  ='PRIVATE HMO COVERAGE DURING YEAR'
      POVCAT  ='FAMILY INCOME AS PERCENT OF POVERTY LINE'
      TOTEXP07='TOTAL, PAID BY TOTAL, 2007'
      TOTSLF07='TOTAL, PAID BY OUT OF POCKET, 2007'
      TOTPHI07='TOTAL, PAID BY PRIV INSU, 2007'
      TOTMCR07='TOTAL, PAID BY MEDICARE, 2007'
      TOTMCD07='TOTAL, PAID BY MEDICAID, 2007'
      TOTTRI07='TOTAL, PAID BY TRICARE, 2007'
      TOTVA07 ='TOTAL, PAID BY VA, 2007'
      TOTWC07 ='TOTAL, PAID BY WORKERS COMP, 2007'
      TOTOTP07='TOTAL, PAID BY OTHER PUBLIC, 2007'
      TOTOSR07='TOTAL, PAID BY OTHER, 2007'
      HOSEXP07='HOSPITAL, PAID BY TOTAL, 2007'
      HOSSLF07='HOSPITAL, PAID BY OUT OF POCKET, 2007'
      HOSPHI07='HOSPITAL, PAID BY PRIV INSU, 2007'
      HOSMCR07='HOSPITAL, PAID BY MEDICARE, 2007'
      HOSMCD07='HOSPITAL, PAID BY MEDICAID, 2007'
      HOSTRI07='HOSPITAL, PAID BY TRICARE, 2007'
      HOSVA07 ='HOSPITAL, PAID BY VA, 2007'
      HOSWC07 ='HOSPITAL, PAID BY WORKERS COMP, 2007'
      HOSOTP07='HOSPITAL, PAID BY OTHER PUBLIC, 2007'
      HOSOSR07='HOSPITAL, PAID BY OTHER, 2007'
      PHYEXP07='PHYSICIAN, PAID BY TOTAL, 2007'
      PHYSLF07='PHYSICIAN, PAID BY OUT OF POCKET, 2007'
      PHYPHI07='PHYSICIAN, PAID BY PRIV INSU, 2007'
      PHYMCR07='PHYSICIAN, PAID BY MEDICARE, 2007'
      PHYMCD07='PHYSICIAN, PAID BY MEDICAID, 2007'
      PHYTRI07='PHYSICIAN, PAID BY TRICARE, 2007'
      PHYVA07 ='PHYSICIAN, PAID BY VA, 2007'
      PHYWC07 ='PHYSICIAN, PAID BY WORKERS COMP, 2007'
      PHYOTP07='PHYSICIAN, PAID BY OTHER PUBLIC, 2007'
      PHYOSR07='PHYSICIAN, PAID BY OTHER, 2007'
      DVTEXP07='DENTAL, PAID BY TOTAL, 2007'
      DVTSLF07='DENTAL, PAID BY OUT OF POCKET, 2007'
      DVTPHI07='DENTAL, PAID BY PRIV INSU, 2007'
      DVTMCR07='DENTAL, PAID BY MEDICARE, 2007'
      DVTMCD07='DENTAL, PAID BY MEDICAID, 2007'
      DVTTRI07='DENTAL, PAID BY TRICARE, 2007'
      DVTVA07 ='DENTAL, PAID BY VA, 2007'
      DVTWC07 ='DENTAL, PAID BY WORKERS COMP, 2007'
      DVTOTP07='DENTAL, PAID BY OTHER PUBLIC, 2007'
      DVTOSR07='DENTAL, PAID BY OTHER, 2007'
      OBOEXP07='OTHER PROVIDER, PAID BY TOTAL, 2007'
      OBOSLF07='OTHER PROVIDER, BY OUT OF POCKET, 2007'
      OBOPHI07='OTHER PROVIDER, PAID BY PRIV INSU, 2007'
      OBOMCR07='OTHER PROVIDER, PAID BY MEDICARE, 2007'
      OBOMCD07='OTHER PROVIDER, PAID BY MEDICAID, 2007'
      OBOTRI07='OTHER PROVIDER, PAID BY TRICARE, 2007'
      OBOVA07 ='OTHER PROVIDER, PAID BY VA, 2007'
      OBOWC07 ='OTHER PROVIDER, BY WORKERS COMP, 2007'
      OBOOTP07='OTHER PROVIDER, BY OTHER PUBLIC, 2007'
      OBOOSR07='OTHER PROVIDER, PAID BY OTHER, 2007'
      HHCEXP07='HOME HEALTH, PAID BY TOTAL, 2007'
      HHCSLF07='HOME HEALTH, PAID BY OUT OF POCKET, 2007'
      HHCPHI07='HOME HEALTH, PAID BY PRIV INSU, 2007'
      HHCMCR07='HOME HEALTH, PAID BY MEDICARE, 2007'
      HHCMCD07='HOME HEALTH, PAID BY MEDICAID, 2007'
      HHCTRI07='HOME HEALTH, PAID BY TRICARE, 2007'
      HHCVA07 ='HOME HEALTH, PAID BY VA, 2007'
      HHCWC07 ='HOME HEALTH, PAID BY WORKERS COMP, 2007'
      HHCOTP07='HOME HEALTH, PAID BY OTHER PUBLIC, 2007'
      HHCOSR07='HOME HEALTH, PAID BY OTHER, 2007'
      RXEXP07 ='RX, PAID BY TOTAL, 2007'
      RXSLF07 ='RX, PAID BY OUT OF POCKET, 2007'
      RXPHI07 ='RX, PAID BY PRIV INSU, 2007'
      RXMCR07 ='RX, PAID BY MEDICARE, 2007'
      RXMCD07 ='RX, PAID BY MEDICAID, 2007'
      RXTRI07 ='RX, PAID BY TRICARE, 2007'
      RXVA07  ='RX, PAID BY VA, 2007'
      RXWC07  ='RX, PAID BY WORKERS COMP, 2007'
      RXOTP07 ='RX, PAID BY OTHER PUBLIC, 2007'
      RXOSR07 ='RX, PAID BY OTHER, 2007'
      OTHEXP07='OTHER MEDICAL, PAID BY TOTAL, 2007'
      OTHSLF07='OTHER MEDICAL, BY OUT OF POCKET, 2007'
      OTHPHI07='OTHER MEDICAL, PAID BY PRIV INSU, 2007'
      OTHMCR07='OTHER MEDICAL, PAID BY MEDICARE, 2007'
      OTHMCD07='OTHER MEDICAL, PAID BY MEDICAID, 2007'
      OTHTRI07='OTHER MEDICAL, PAID BY TRICARE, 2007'
      OTHVA07 ='OTHER MEDICAL, PAID BY VA, 2007'
      OTHWC07 ='OTHER MEDICAL, BY WORKERS COMP, 2007'
      OTHOTP07='OTHER MEDICAL, PAID BY OTHR PUBLIC, 2007'
      OTHOSR07='OTHER MEDICAL, PAID BY OTHER, 2007'
      WTADJ07 ='GROWTH/FERTILITY/MORTALITY ADJ WGT,2007'
;


* VALUE STATEMENTS;
VALUE AGESTUB  
  0 - 17 = '0-17'
  18 - 64 = '18-64'
  65 - HIGH = '65 or older'
  ;
VALUE DVTEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.18 - 131.47 = '$1 - $131'
  131.47 < - 258.335 = '$132 - $258'
  258.335 < - 605.095 = '$259 - $605'
  605.095 < - 24382.46 = '$606 - $24,382'
  ;
VALUE DVTMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.84 - 80.87 = '$1 - $81'
  80.87 < - 143.08 = '$82 - $143'
  143.08 < - 297.6 = '$144 - $298'
  297.6 < - 12410.3 = '$299 - $12,410'
  ;
VALUE DVTMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.91 - 20.22 = '$1 - $20'
  20.22 < - 41.64 = '$21 - $42'
  41.64 < - 107.06 = '$43 - $107'
  107.06 < - 2169.72 = '$108 - $2,170'
  ;
VALUE DVTOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.17 - 94.84 = '$1 - $95'
  94.84 < - 192.11 = '$96 - $192'
  192.11 < - 352.6 = '$193 - $353'
  352.6 < - 11644.28 = '$354 - $11,644'
  ;
VALUE DVTOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  13.87 - 79.71 = '$13 - $80'
  79.71 < - 158.83 = '$81 - $159'
  158.83 < - 443.96 = '$160 - $444'
  443.96 < - 5552.21 = '$445 - $5,552'
  ;
VALUE DVTPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.53 - 142.8 = '$1 - $143'
  142.8 < - 253.77 = '$144 - $254'
  253.77 < - 523.23 = '$255 - $523'
  523.23 < - 21833.24 = '$524 - $21,833'
  ;
VALUE DVTSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.22 - 51.32 = '$1 - $51'
  51.32 < - 136.97 = '$52 - $137'
  136.97 < - 377.94 = '$138 - $378'
  377.94 < - 21207.98 = '$379 - $21,208'
  ;
VALUE DVTTRI  
  0 = '0'
  ;
VALUE DVTVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.04 - 2.03 = '$1 - $2'
  2.03 < - 4.675 = '$3 - $5'
  4.675 < - 16.68 = '$6 - $17'
  16.68 < - 184.52 = '$18 - $185'
  ;
VALUE DVTWC  
  0 = '0'
  ;
VALUE GTZERO  
  0 = '0'
  0 < - HIGH = '>0'
  ;
VALUE HHCEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.8 - 1041.64 = '$6 - $1,042'
  1041.64 < - 4115.225 = '$1,043 - $4,115'
  4115.225 < - 10901.33 = '$4,116 - $10,901'
  10901.33 < - 255891.47 = '$10,902 - $255,891'
  ;
VALUE HHCMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  4.21 - 817.13 = '$4 - $817'
  817.13 < - 3745.69 = '$818 - $3,746'
  3745.69 < - 12297.68 = '$3,747 - $12,298'
  12297.68 < - 192559.22 = '$12,299 - $192,559'
  ;
VALUE HHCMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  16.32 - 1910.37 = '$16 - $1,910'
  1910.37 < - 4318.96 = '$1,911 - $4,319'
  4318.96 < - 9681.41 = '$4,320 - $9,681'
  9681.41 < - 77556.69 = '$9,682 - $77,557'
  ;
VALUE HHCOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  61.32 - 151.31 = '$61 - $151'
  151.31 < - 347.09 = '$152 - $347'
  347.09 < - 984.59 = '$348 - $985'
  984.59 < - 2956.08 = '$986 - $2,956'
  ;
VALUE HHCOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  16.29 - 346.31 = '$16 - $346'
  346.31 < - 866.005 = '$347 - $866'
  866.005 < - 2254.24 = '$867 - $2,254'
  2254.24 < - 17004.73 = '$2,255 - $17,005'
  ;
VALUE HHCPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  37.17 - 779.22 = '$37 - $779'
  779.22 < - 2502.41 = '$780 - $2,502'
  2502.41 < - 7659.67 = '$2,503 - $7,660'
  7659.67 < - 126588.27 = '$7,661 - $126,588'
  ;
VALUE HHCSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.8 - 119.09 = '$6 - $119'
  119.09 < - 413.87 = '$120 - $414'
  413.87 < - 1389.95 = '$415 - $1,390'
  1389.95 < - 81253.09 = '$1,391 - $81,253'
  ;
VALUE HHCTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.34 - 52.655 = '$6 - $53'
  52.655 < - 171.4 = '$54 - $171'
  171.4 < - 457.14 = '$172 - $457'
  457.14 < - 1774.67 = '$458 - $1,775'
  ;
VALUE HHCVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  178.08 - 1698.16 = '$178 - $1,698'
  1698.16 < - 4452.06 = '$1,699 - $4,452'
  4452.06 < - 10142.74 = '$4,453 - $10,143'
  10142.74 < - 46301.43 = '$10,144 - $46,301'
  ;
VALUE HHCWC  
  0 = '0'
  20000 - 40000 = '$20,000 - $40,000'
  ;
VALUE HOSEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.54 - 242.175 = '$2 - $242'
  242.175 < - 912.79 = '$243 - $913'
  912.79 < - 4028.435 = '$914 - $4,028'
  4028.435 < - 754281 = '$4,029 - $754,281'
  ;
VALUE HOSMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.46 - 162.365 = '$1 - $162'
  162.365 < - 605.63 = '$163 - $606'
  605.63 < - 2968.45 = '$607 - $2,968'
  2968.45 < - 574960.75 = '$2,969 - $574,961'
  ;
VALUE HOSMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.07 - 194.03 = '$1 - $194'
  194.03 < - 1004.71 = '$195 - $1,005'
  1004.71 < - 6079.695 = '$1,006 - $6,080'
  6079.695 < - 193105.21 = '$6,081 - $193,105'
  ;
VALUE HOSOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.3 - 98.75 = '$2 - $99'
  98.75 < - 320.97 = '$100 - $321'
  320.97 < - 1204.95 = '$322 - $1,205'
  1204.95 < - 64531.84 = '$1,206 - $64,532'
  ;
VALUE HOSOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.45 - 87.91 = '$6 - $88'
  87.91 < - 272.515 = '$89 - $273'
  272.515 < - 1125.15 = '$274 - $1,125'
  1125.15 < - 56681.41 = '$1,126 - $56,681'
  ;
VALUE HOSPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.27 - 215.28 = '$1 - $215'
  215.28 < - 785.12 = '$216 - $785'
  785.12 < - 2648.06 = '$786 - $2,648'
  2648.06 < - 754281 = '$2,649 - $754,281'
  ;
VALUE HOSSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.47 - 38.23 = '$1 - $38'
  38.23 < - 114.68 = '$39 - $115'
  114.68 < - 382.25 = '$116 - $382'
  382.25 < - 95653.79 = '$383 - $95,654'
  ;
VALUE HOSTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.67 - 52.23 = '$1 - $52'
  52.23 < - 190.255 = '$53 - $190'
  190.255 < - 625.915 = '$191 - $626'
  625.915 < - 120520.84 = '$627 - $120,521'
  ;
VALUE HOSVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.26 - 170.89 = '$1 - $171'
  170.89 < - 680.625 = '$172 - $681'
  680.625 < - 2804.62 = '$682 - $2,805'
  2804.62 < - 260822.08 = '$2,806 - $260,822'
  ;
VALUE HOSWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.15 - 83.23 = '$2 - $83'
  83.23 < - 233.39 = '$84 - $233'
  233.39 < - 762.48 = '$234 - $762'
  762.48 < - 355284.87 = '$763 - $355,285'
  ;
VALUE $ID  
  'N0000107' - 'N7338007' = 'N0000107 - N7338007'
  ;
VALUE INSCOV_A  
  1 = '1 Any Private, employment related or TRICARE'
  2 = '2 Any Private, not employment related'
  3 = '3 Any Public (Medicaid, SCHIP, Medicare)'
  4 = '4 Uninsured for entire year'
  5 = '5 Age 65 or older'
  ;
VALUE INSCOV_B  
  -1 = '-1 Inapplicable (under age 65)'
  1 = '1 Held Medicaid and Medicare at same time'
  2 = '2 Held Mcare & Priv via emplymnt at same time'
  3 = '3 Held Mcare & Priv-nonemplmnt at same time'
  4 = '4 Held Medicare alone during the year'
  5 = '5 Held no Medicare during the year'
  ;
VALUE OBOEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.11 - 16.76 = '$1 - $17'
  16.76 < - 61.84 = '$18 - $62'
  61.84 < - 247.74 = '$63 - $248'
  247.74 < - 75694.17 = '$249 - $75,694'
  ;
VALUE OBOMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.1 - 8.41 = '$1 - $8'
  8.41 < - 24.38 = '$9 - $24'
  24.38 < - 95.92 = '$25 - $96'
  95.92 < - 58803.61 = '$97 - $58,804'
  ;
VALUE OBOMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.12 - 25.52 = '$1 - $26'
  25.52 < - 96.31 = '$27 - $96'
  96.31 < - 296.92 = '$97 - $297'
  296.92 < - 69316.05 = '$298 - $69,316'
  ;
VALUE OBOOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.17 - 36.38 = '$1 - $36'
  36.38 < - 100.64 = '$37 - $101'
  100.64 < - 328.59 = '$102 - $329'
  328.59 < - 12767.74 = '$330 - $12,768'
  ;
VALUE OBOOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.01 - 33.34 = '$2 - $33'
  33.34 < - 81.64 = '$34 - $82'
  81.64 < - 230.19 = '$83 - $230'
  230.19 < - 3827.72 = '$231 - $3,828'
  ;
VALUE OBOPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.11 - 11.25 = '$1 - $11'
  11.25 < - 36.84 = '$12 - $37'
  36.84 < - 150.64 = '$38 - $151'
  150.64 < - 64086.05 = '$152 - $64,086'
  ;
VALUE OBOSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.15 - 3.87 = '$1 - $4'
  3.87 < - 12.72 = '$5 - $13'
  12.72 < - 49.36 = '$14 - $49'
  49.36 < - 32644.8 = '$50 - $32,645'
  ;
VALUE OBOTRI  
  0 = '0'
  ;
VALUE OBOVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.11 - 1.91 = '$1 - $2'
  1.91 < - 5.85 = '$3 - $6'
  5.85 < - 17.88 = '$7 - $18'
  17.88 < - 877.34 = '$19 - $877'
  ;
VALUE OBOWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.08 - 50.58 = '$1 - $51'
  50.58 < - 144.305 = '$52 - $144'
  144.305 < - 550.15 = '$145 - $550'
  550.15 < - 13649.81 = '$551 - $13,650'
  ;
VALUE OTHEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.7 - 134.56 = '$1 - $135'
  134.56 < - 277.055 = '$136 - $277'
  277.055 < - 504.63 = '$278 - $505'
  504.63 < - 55248.4 = '$506 - $55,248'
  ;
VALUE OTHMCD  
  0 = '0'
  ;
VALUE OTHMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.74 - 655.695 = '$6 - $656'
  655.695 < - 1277.01 = '$657 - $1,277'
  1277.01 < - 3049.33 = '$1,278 - $3,049'
  3049.33 < - 54562.64 = '$3,050 - $54,563'
  ;
VALUE OTHOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.14 - 95.66 = '$6 - $96'
  95.66 < - 212.58 = '$97 - $213'
  212.58 < - 365.6 = '$214 - $366'
  365.6 < - 7168.68 = '$367 - $7,169'
  ;
VALUE OTHOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.61 - 54.02 = '$2 - $54'
  54.02 < - 98.37 = '$55 - $98'
  98.37 < - 252.11 = '$99 - $252'
  252.11 < - 2709.56 = '$253 - $2,710'
  ;
VALUE OTHPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.88 - 63.95 = '$1 - $64'
  63.95 < - 126.26 = '$65 - $126'
  126.26 < - 227.3 = '$127 - $227'
  227.3 < - 16365.57 = '$228 - $16,366'
  ;
VALUE OTHSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.7 - 101.85 = '$1 - $102'
  101.85 < - 237.86 = '$103 - $238'
  237.86 < - 440.48 = '$239 - $440'
  440.48 < - 47966.01 = '$441 - $47,966'
  ;
VALUE OTHTRI  
  0 = '0'
  ;
VALUE OTHVA  
  0 = '0'
  ;
VALUE OTHWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  163 - 1067.93 = '$163 - $1,068'
  1067.93 < - 2115.12 = '$1,069 - $2,115'
  2115.12 < - 4318.82 = '$2,116 - $4,319'
  4318.82 < - 19615.29 = '$4,320 - $19,615'
  ;
VALUE PHYEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.24 - 155.83 = '$1 - $156'
  155.83 < - 406.42 = '$157 - $406'
  406.42 < - 1233.79 = '$407 - $1,234'
  1233.79 < - 121338.89 = '$1,235 - $121,339'
  ;
VALUE PHYMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.19 - 84.19 = '$1 - $84'
  84.19 < - 205.18 = '$85 - $205'
  205.18 < - 565.45 = '$206 - $565'
  565.45 < - 57035.71 = '$566 - $57,036'
  ;
VALUE PHYMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.53 - 235.46 = '$1 - $235'
  235.46 < - 698.42 = '$236 - $698'
  698.42 < - 1985 = '$699 - $1,985'
  1985 < - 93256.99 = '$1,986 - $93,257'
  ;
VALUE PHYOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.19 - 52.17 = '$1 - $52'
  52.17 < - 113.22 = '$53 - $113'
  113.22 < - 288.12 = '$114 - $288'
  288.12 < - 95313.01 = '$289 - $95,313'
  ;
VALUE PHYOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1 - 47.81 = '$1 - $48'
  47.81 < - 105.56 = '$49 - $106'
  105.56 < - 304.21 = '$107 - $304'
  304.21 < - 38813.91 = '$305 - $38,814'
  ;
VALUE PHYPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.69 - 131.82 = '$1 - $132'
  131.82 < - 323.39 = '$133 - $323'
  323.39 < - 898.12 = '$324 - $898'
  898.12 < - 96881.07 = '$899 - $96,881'
  ;
VALUE PHYSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.2 - 24.02 = '$1 - $24'
  24.02 < - 59.945 = '$25 - $60'
  59.945 < - 153.74 = '$61 - $154'
  153.74 < - 33654.4 = '$155 - $33,654'
  ;
VALUE PHYTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  6.22 - 143.675 = '$6 - $144'
  143.675 < - 424.575 = '$145 - $425'
  424.575 < - 1085.21 = '$426 - $1,085'
  1085.21 < - 104553.34 = '$1,086 - $104,553'
  ;
VALUE PHYVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.36 - 19.07 = '$1 - $19'
  19.07 < - 62.97 = '$20 - $63'
  62.97 < - 209.41 = '$64 - $209'
  209.41 < - 7224.07 = '$210 - $7,224'
  ;
VALUE PHYWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  5 - 216.96 = '$5 - $217'
  216.96 < - 550.45 = '$218 - $550'
  550.45 < - 1751.42 = '$551 - $1,751'
  1751.42 < - 57023.6 = '$1,752 - $57,024'
  ;
VALUE POVCAT  
  1 = '1 Less than 1.00 times poverty line'
  2 = '2 1.01 to 1.24 times poverty line'
  3 = '3 1.25 to 1.99 times poverty line'
  4 = '4 2.0 to 3.99 times poverty line'
  5 = '5 4.00 or more times poverty line'
  ;
VALUE RACE7P  
  1 = '1 Hispanic'
  2 = '2 White Alone, NH'
  3 = '3 Black Alone, NH'
  4 = '4 American Indian and Alaska Native Alone, NH'
  5 = '5 Asian Alone, NH'
  6 = '6 Native Hawaiian/Pacific Islander Alone, NH'
  7 = '7 Two or more Races, NH'
  ;
VALUE RXEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.33 - 55.56 = '$1 - $56'
  55.56 < - 233.42 = '$57 - $233'
  233.42 < - 924.49 = '$234 - $924'
  924.49 < - 208642.06 = '$925 - $208,642'
  ;
VALUE RXMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.33 - 33.775 = '$1 - $34'
  33.775 < - 108.615 = '$35 - $109'
  108.615 < - 460.87 = '$110 - $461'
  460.87 < - 184834.73 = '$462 - $184,835'
  ;
VALUE RXMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  5.63 - 590.51 = '$5 - $591'
  590.51 < - 1780.07 = '$592 - $1,780'
  1780.07 < - 4782.53 = '$1,781 - $4,783'
  4782.53 < - 207685.88 = '$4,784 - $207,686'
  ;
VALUE RXOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  3.72 - 34.69 = '$3 - $35'
  34.69 < - 133.74 = '$36 - $134'
  133.74 < - 301.41 = '$135 - $301'
  301.41 < - 3490.14 = '$302 - $3,490'
  ;
VALUE RXOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.4 - 43.455 = '$1 - $43'
  43.455 < - 216.615 = '$44 - $217'
  216.615 < - 825.99 = '$218 - $826'
  825.99 < - 34360.68 = '$827 - $34,361'
  ;
VALUE RXPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.49 - 60.28 = '$1 - $60'
  60.28 < - 230.82 = '$61 - $231'
  230.82 < - 845.84 = '$232 - $846'
  845.84 < - 65550.5 = '$847 - $65,551'
  ;
VALUE RXSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.58 - 16.23 = '$1 - $16'
  16.23 < - 63.11 = '$17 - $63'
  63.11 < - 224.21 = '$64 - $224'
  224.21 < - 21199.37 = '$225 - $21,199'
  ;
VALUE RXTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.41 - 23.45 = '$1 - $23'
  23.45 < - 111.39 = '$24 - $111'
  111.39 < - 468.82 = '$112 - $469'
  468.82 < - 16860.26 = '$470 - $16,860'
  ;
VALUE RXVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.56 - 40.92 = '$1 - $41'
  40.92 < - 176.115 = '$42 - $176'
  176.115 < - 499.71 = '$177 - $500'
  499.71 < - 12802.07 = '$501 - $12,802'
  ;
VALUE RXWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.48 - 64.43 = '$1 - $64'
  64.43 < - 165.14 = '$65 - $165'
  165.14 < - 537.96 = '$166 - $538'
  537.96 < - 16877.23 = '$539 - $16,877'
  ;
VALUE SEX  
  1 = '1 Male'
  2 = '2 Female'
  ;
VALUE TOTEXP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.6 - 351.86 = '$1 - $352'
  351.86 < - 1120.12 = '$353 - $1,120'
  1120.12 < - 3753.49 = '$1,121 - $3,753'
  3753.49 < - 819020.19 = '$3,754 - $819,020'
  ;
VALUE TOTMCD  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.65 - 162.02 = '$1 - $162'
  162.02 < - 485.35 = '$163 - $485'
  485.35 < - 1962.47 = '$486 - $1,962'
  1962.47 < - 583408.85 = '$1,963 - $583,409'
  ;
VALUE TOTMCR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.07 - 414.41 = '$1 - $414'
  414.41 < - 1613.435 = '$415 - $1,613'
  1613.435 < - 6516.47 = '$1,614 - $6,516'
  6516.47 < - 228713.45 = '$6,517 - $228,713'
  ;
VALUE TOTOSR  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.17 - 66.4 = '$1 - $66'
  66.4 < - 158.15 = '$67 - $158'
  158.15 < - 425.59 = '$159 - $426'
  425.59 < - 95313.01 = '$427 - $95,313'
  ;
VALUE TOTOTP  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1 - 65.26 = '$1 - $65'
  65.26 < - 203 = '$66 - $203'
  203 < - 759.4 = '$204 - $759'
  759.4 < - 56681.41 = '$760 - $56,681'
  ;
VALUE TOTPHI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  1.25 - 253.87 = '$1 - $254'
  253.87 < - 756.93 = '$255 - $757'
  756.93 < - 2330.46 = '$758 - $2,330'
  2330.46 < - 814494.8 = '$2,331 - $814,495'
  ;
VALUE TOTSLF  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.58 - 63.89 = '$1 - $64'
  63.89 < - 243.58 = '$65 - $244'
  243.58 < - 706.07 = '$245 - $706'
  706.07 < - 110468.9 = '$707 - $110,469'
  ;
VALUE TOTTRI  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.67 - 166.77 = '$1 - $167'
  166.77 < - 563.07 = '$168 - $563'
  563.07 < - 1631.3 = '$564 - $1,631'
  1631.3 < - 133820.17 = '$1,632 - $133,820'
  ;
VALUE TOTVA  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  0.08 - 24.895 = '$1 - $25'
  24.895 < - 138.835 = '$26 - $139'
  138.835 < - 633.81 = '$140 - $634'
  633.81 < - 261018.39 = '$635 - $261,018'
  ;
VALUE TOTWC  
  -9 = '-9 NOT ASCERTAINED'
  0 = '0'
  2.15 - 227.03 = '$2 - $227'
  227.03 < - 723.51 = '$228 - $724'
  723.51 < - 2339.28 = '$725 - $2,339'
  2339.28 < - 424966.5 = '$2,340 - $424,967'
  ;
VALUE YESNO  
  0 = '0 No'
  1 = '1 Yes'
  ;