diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63ac1f8..bf94de1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - "3.10" fail-fast: false - name: cropped-example-py${{ matrix.python-version }} + name: metro-cropped-example-py${{ matrix.python-version }} runs-on: ubuntu-latest steps: @@ -49,7 +49,51 @@ jobs: uv pip list # Run the test - - name: Run cropped example test + - name: Run Metro cropped example test run: | cd ../activitysim - uv run python $GITHUB_WORKSPACE/resident/test/test_cropped_dataset.py + uv run python $GITHUB_WORKSPACE/resident/test/test_cropped_dataset_metro.py + skats_cropped_example: + strategy: + matrix: + python-version: + - "3.10" + fail-fast: false + + name: skats-cropped-example-py${{ matrix.python-version }} + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + # Clone ActivitySim from SimOR_pnr branch + - name: Clone ActivitySim + run: | + cd .. + git clone --branch SimOR_pnr https://github.com/RSGInc/activitysim.git + pwd + ls -la + + # Install UV + - name: Install UV + uses: astral-sh/setup-uv@v4 + with: + version: "latest" + + # Set up Python with UV + - name: Set up Python + run: uv python install ${{ matrix.python-version }} + + # Install dependencies using UV and the lock file from ActivitySim + - name: Install dependencies with UV + run: | + cd ../activitysim + uv sync --frozen + uv pip install -e . --no-deps + uv pip list + + # Run the test + - name: Run SKATS cropped example test + run: | + cd ../activitysim + uv run python $GITHUB_WORKSPACE/resident/test/test_cropped_dataset_skats.py diff --git a/.vscode/launch.json b/.vscode/launch.json index 0ab2c93..3e6ede7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -17,6 +17,20 @@ "-o", "outputs/full", ] }, + { + "name": "Run Estimation Mode", + "type": "debugpy", + "request": "launch", + "cwd": "${workspaceFolder}/resident", + "program": "simulation.py", + "console": "integratedTerminal", + "args": [ + "-c", "configs_estimation", // check the settings.yaml file for run settings! + "-c", "configs", + "-d", "model_data/metro/data_full", + "-o", "outputs/estimation", + ] + }, { "name": "Run Cropped Example", "type": "debugpy", diff --git a/resident/configs/accessibility.yaml b/resident/configs/accessibility.yaml index 13b96c2..34ba094 100644 --- a/resident/configs/accessibility.yaml +++ b/resident/configs/accessibility.yaml @@ -1,2 +1,3 @@ # columns from land_use table to add to df land_use_columns: ['EMP_RET', 'EMP_TOTAL', 'TOTHHS', 'walk_dist_local_bus'] +explicit_chunk: 0.2 \ No newline at end of file diff --git a/resident/configs/annotate_disaggregate_accessibility.csv b/resident/configs/annotate_disaggregate_accessibility.csv index 821dda4..312f1d2 100644 --- a/resident/configs/annotate_disaggregate_accessibility.csv +++ b/resident/configs/annotate_disaggregate_accessibility.csv @@ -1,4 +1,4 @@ -# annotating the proto_disaggregate_accessibilty table +# annotating the proto_disaggregate_accessibilty table,, Description,Target,Expression workplace location for zero auto only,workplace_location_accessibility_0,"np.where(df.auto_ownership == 0, df.workplace_location_accessibility, np.nan)" workplace location for auto deficient,workplace_location_accessibility_1,"np.where(df.auto_ownership == 1, df.workplace_location_accessibility, np.nan)" diff --git a/resident/configs/annotate_landuse.csv b/resident/configs/annotate_landuse.csv index 1614376..65fe663 100644 --- a/resident/configs/annotate_landuse.csv +++ b/resident/configs/annotate_landuse.csv @@ -4,10 +4,10 @@ household_density,household_density,land_use.TOTHHS / land_use.ACRES.clip(lower= population_density,population_density,land_use['TOTPOP'] / land_use.ACRES.clip(lower=1) employment_density,employment_density,(land_use['EMP_TOTAL'] / land_use.ACRES.clip(lower=1)).clip(upper=500) density_index,density_index,(household_density * employment_density) / (household_density + employment_density).clip(lower=1) +effective active acres,ACTIVE_ACRES,land_use.ACRES * land_use.PARKATTRACT # FIXME pseudomsa is used in a few places but there is no equivalent in Metro landuse,, ,pseudomsa,0 # FIXME missing in landuse but used in SANDAG -- setting to 0 for now,, -,ACTIVE_ACRES,0 ,micro_dist_local_bus,0 ,microtransit,0 ,nev,0 diff --git a/resident/configs/annotate_persons.csv b/resident/configs/annotate_persons.csv index eeb6d11..7cc9e49 100644 --- a/resident/configs/annotate_persons.csv +++ b/resident/configs/annotate_persons.csv @@ -11,20 +11,20 @@ employment status type,pemploy,"pd.Series(np.zeros(len(persons)), index=persons. ,pemploy,"np.where((persons.age >= 16) & ((persons.ESR == 3) | (persons.ESR == 6)), PEMPLOY_NOT, pemploy)" ,pemploy,"np.where((persons.age>=16) & (persons.ESR != 3) & (persons.ESR != 6) & (persons.WKHP >= 35) & (persons.WKW >= 1) & (persons.WKW <= 4), PEMPLOY_FULL, pemploy)" student category,pstudent,"pd.Series(np.zeros(len(persons)), index=persons.index)" -,pstudent,"np.where((pemploy == 1) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" -,pstudent,"np.where((pemploy == 1) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((pemploy == PEMPLOY_FULL) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" +,pstudent,"np.where((pemploy == PEMPLOY_FULL) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" ,pstudent,"np.where((persons.SCHG < 1) & (persons.age >= 16), PSTUDENT_NOT, pstudent)" ,pstudent,"np.where((persons.SCHG < 1) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.SCHG >= 15) & (persons.age >= 16) & (pemploy != 1), PSTUDENT_UNIVERSITY, pstudent)" -,pstudent,"np.where((persons.SCHG >= 15) & (persons.age < 16) & (pemploy != 1), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.age <= 19) & (pemploy != 1) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_GRADE_OR_HIGH, pstudent)" -,pstudent,"np.where((persons.age > 19) & (pemploy != 1) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age >= 16), PSTUDENT_UNIVERSITY, pstudent)" +,pstudent,"np.where((persons.SCHG >= 15) & (persons.age < 16), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age <= 19) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_GRADE_OR_HIGH, pstudent)" +,pstudent,"np.where((persons.age > 19) & (persons.SCHG >=1) & (persons.SCHG<=14), PSTUDENT_UNIVERSITY, pstudent)" ,pstudent,"np.where(pstudent == 0, 3, pstudent)" person type,ptype,"pd.Series(PTYPE_NONWORK, index=persons.index)" ,ptype,"np.where(persons.age >= 65, PTYPE_RETIRED, ptype)" ,ptype,"np.where(pemploy == 2, PTYPE_PART, ptype)" ,ptype,"np.where(pemploy == 1, PTYPE_FULL, ptype)" -,ptype,"np.where((persons.age >= 5) & ((persons.age < 18) | ((persons.age == 18) & (pstudent == 1)))), PTYPE_SCHOOL, ptype)" +,ptype,"np.where((persons.age >= 5) & ((persons.age < 18) | ((persons.age == 18) & (pstudent == 1))), PTYPE_SCHOOL, ptype)" ,ptype,"np.where(persons.age < 5, PTYPE_PRESCHOOL, ptype)" ,ptype,"np.where(pstudent == 2, PTYPE_UNIVERSITY, ptype)" # FIXME are these rules for preschoolers still wanted?,, @@ -62,4 +62,4 @@ travel time sensitivity factor for non-work travel,time_factor_nonwork,"np.minim ,naics_code,_naics_code.astype('int') if all(_naics_code!=0) else 0 #,, # FIXME does filling with -1 make sense here? depends on what the missing values mean,, -occupation categories mapped to workplace segments,occupation,persons.OCCP.fillna(-1).map(occupation_xwalk) +occupation categories mapped to workplace segments,occupation,persons.OCCP.fillna(999).map(occupation_xwalk) diff --git a/resident/configs/auto_ownership.csv b/resident/configs/auto_ownership.csv index 144f617..760f2fa 100644 --- a/resident/configs/auto_ownership.csv +++ b/resident/configs/auto_ownership.csv @@ -14,7 +14,7 @@ util_hh_income_verylow,household income <15k,@(df.income<15000),coef_household_i util_hh_income_low,household income 15k-30k,@((df.income>=15000) & (df.income<30000)),coef_household_income_1530k_0_CARS,,coef_household_income_1530k_2_CARS,coef_household_income_1530k_3_CARS,coef_household_income_1530k_4_CARS util_hh_income_mid,household income 30-60k,@((df.income>=30000) & (df.income<60000)),coef_household_income_3060k_0_CARS,,coef_household_income_3060k_2_CARS,coef_household_income_3060k_3_CARS,coef_household_income_3060k_4_CARS util_hh_income_veryhigh,household income 100k+,@(df.income>=100000),coef_household_income_100k_0_CARS,,coef_household_income_100k_2_CARS,coef_household_income_100k_3_CARS,coef_household_income_100k_4_CARS -# FIXME no bldgsz equivalent in the Metro data,,,,,, +# FIXME no bldgsz equivalent in the Metro data,,,,,,, # util_attached,attached dwelling,"@np.where(df.bldgsz == 2, 0, 1)",coef_attached_0_CARS,,coef_attached_2_CARS,coef_attached_3_CARS,coef_attached_4_CARS # 0.785 sq miles in 1/2 mile radius * 640 acres per square mile = 502,,,,,,, util_intersection_density,Intersection count in 1/2 mile radius of household,totint/502,coef_intersection_density_0_CARS,,coef_intersection_density_2_CARS,coef_intersection_density_3_CARS,coef_intersection_density_4_CARS diff --git a/resident/configs/auto_ownership_preprocessor.csv b/resident/configs/auto_ownership_preprocessor.csv index 9d7b904..3e341f1 100644 --- a/resident/configs/auto_ownership_preprocessor.csv +++ b/resident/configs/auto_ownership_preprocessor.csv @@ -1,7 +1,7 @@ Description,Target,Expression ,_PERSON_COUNT,"lambda query, persons, households: persons.query(query).groupby('household_id').size().reindex(households.index).fillna(0).astype(np.int8)" ,num_old_retirees,"_PERSON_COUNT('80 <= age', persons, households)" -# averaging disaggregate accessibilities across all household members +# averaging disaggregate accessibilities across all household members,, ,shopping_accessibility_0,persons_merged.groupby('household_id').shopping_accessibility_0.mean().reindex(df.index) ,shopping_accessibility_1,persons_merged.groupby('household_id').shopping_accessibility_1.mean().reindex(df.index) ,shopping_accessibility_2,persons_merged.groupby('household_id').shopping_accessibility_2.mean().reindex(df.index) diff --git a/resident/configs/constants.yaml b/resident/configs/constants.yaml index be8be5d..5682565 100644 --- a/resident/configs/constants.yaml +++ b/resident/configs/constants.yaml @@ -99,7 +99,6 @@ occupation_xwalk: 5: nat_res_cnstr_maint 6: prod_trans_move 999: missing # no occupation - -1: missing # no occupation # RIDEHAIL Settings - all costs in dollars, times in minutes Taxi_baseFare: 3.00 @@ -351,4 +350,8 @@ PkVTCr: 0.1858 OpVTCa: 0.0432 OpVTCe: 0.0984 OpVTCl: 0.1442 -OpVTCr: 0.1442 \ No newline at end of file +OpVTCr: 0.1442 + +# model region constants +KNR_available: True # SKATS does not have KNR, so set to False in configs_skats/constants.yaml +model_region_name: "Metro" diff --git a/resident/configs/destination_choice_size_terms.csv b/resident/configs/destination_choice_size_terms.csv index 17c1fa1..5b70001 100644 --- a/resident/configs/destination_choice_size_terms.csv +++ b/resident/configs/destination_choice_size_terms.csv @@ -10,21 +10,22 @@ school,preschool,0,0.1888,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0 school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 -non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -non_mandatory,shopping,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0 -non_mandatory,othmaint,0,0,0,0,0,0,0,1.60296,0.42255,0.42255,0,0.24001,0,0,0,0,0,0,0,0,0 -non_mandatory,eatout,0.5512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -non_mandatory,social,0.3006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0 +non_mandatory,shopping,0.01,0,0.1,0.1,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0 +non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0 +non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0 +non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0 non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0 -atwork,atwork,0,0,0,0,0,0,0,0.104,0.0145,0,0,0,0,0,0,0,0,0,0,0,0 +atwork,atwork,0,0,0.1,0.1,0.1,0.1,0.1,0.104,0.0145,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0 trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 -trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0,0 -trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0,0 -trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0,0 -trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0 +trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0.1,0 +trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0.1,0 +trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0 +trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0 trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0.05 trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0 +trip,school,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0 # not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,, #trip,gradeschool,0,,,,,,,,,,,,,,,,,,,, #trip,highschool,0,,,,,,,,,,,,,,,,,,,, diff --git a/resident/configs/disaggregate_accessibility.yaml b/resident/configs/disaggregate_accessibility.yaml index 153095f..49358e2 100644 --- a/resident/configs/disaggregate_accessibility.yaml +++ b/resident/configs/disaggregate_accessibility.yaml @@ -94,7 +94,7 @@ CREATE_TABLES: # FIXME this should be updated when occupation_xwalk is updated OCCP: # occupation codes 1: 1 # Management Occupations - 2: -1 # Non-worker + 2: 999 # Non-worker PROTO_TOURS: index_col: proto_tour_id diff --git a/resident/configs/external_non_mandatory_identification.csv b/resident/configs/external_non_mandatory_identification.csv index 2c84300..39b8df2 100644 --- a/resident/configs/external_non_mandatory_identification.csv +++ b/resident/configs/external_non_mandatory_identification.csv @@ -1,6 +1,6 @@ Label,Description,Expression,external_tour,internal_tour util_dist_to_nearest_ext_station,Distance to nearest external station,dist_to_external_zone,coef_dist_to_nearest_ext_station, -# FIXME need actual external counts at external station - fix in destination choice size terms too +# FIXME need actual external counts at external station - fix in destination choice size terms too,,,, # util_log_size,Log size of nearest station,"@np.log1p(reindex(land_use.external_nonwork, df.closest_external_zone))",coef_log_size_of_nearest_ext_station, util_log_size,Log size of nearest station,"@np.log1p(reindex(land_use.EXTERNAL, df.closest_external_zone))",coef_log_size_of_nearest_ext_station, util_escort,escort tour ASC,"@np.where(df.tour_type == 'escort', 1, 0)",coef_escort, diff --git a/resident/configs/external_non_mandatory_identification.yaml b/resident/configs/external_non_mandatory_identification.yaml index c2a882b..d9b4bda 100644 --- a/resident/configs/external_non_mandatory_identification.yaml +++ b/resident/configs/external_non_mandatory_identification.yaml @@ -9,3 +9,5 @@ LOGIT_TYPE: MNL EXTERNAL_COL_NAME: is_external_tour # set to True if not external but CHOOSER_FILTER_COLUMN_NAME is True INTERNAL_COL_NAME: is_internal_tour + +EXTERNAL_TOUR_ALT: 1 \ No newline at end of file diff --git a/resident/configs/external_worker_identification.csv b/resident/configs/external_worker_identification.csv index d70b683..3b31005 100644 --- a/resident/configs/external_worker_identification.csv +++ b/resident/configs/external_worker_identification.csv @@ -1,16 +1,16 @@ -Label,Description,Expression,work_external,work_internal -util_dist_to_nearest_ext_station,Distance to nearest external station,dist_to_external_zone,coef_dist_to_nearest_ext_station, +Label,Description,Expression,work_internal,work_external +util_dist_to_nearest_ext_station,Distance to nearest external station,dist_to_external_zone,,coef_dist_to_nearest_ext_station # FIXME just have a single external indicator not counts at the station here and in destination choice size terms,,,, -#util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.external_work,df.closest_external_zone))",coef_size_of_nearest_ext_station, -util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.EXTERNAL,df.closest_external_zone))",coef_size_of_nearest_ext_station, -util_dist_lt_2p5,Distance less than 2.5 miles,"@np.where(df.dist_to_external_zone<2.5,1,0)",coef_dist_lt_2p5, -util_part_time,Part time worker,"@np.where(df.pemploy == 2,1,0)",coef_part_time, -util_inc_lt15,Household Income less than $15k,@(df.income<15000),coef_inc_lt15, -util_inc_15_25,Household income $15k-$25k,@(df.income>=15000) & (df.income<25000) ,coef_inc_15_25, -util_inc_25_50,Household Income $25k-$50k,@(df.income>=25000) & (df.income<50000) ,coef_inc_25_50, -util_inc_150_250,Household Income $150k-$50k,@(df.income>=150000) * (df.income<250000) ,coef_inc_150_250, -util_inc_250plus,Household Income $250k+,@(df.income>=250000),coef_inc_250plus, -util_asc,Alternative-specific constant for external worker,1,asc_external_worker, -util_global_switch,Global switch to have everything internal,@NO_EXTERNAL,-999, -util_2016,Constant for pre-COVID conditions,@PRE_COVID,asc_external_2016, -util_calib,Constant for calibration,1,0.35, +#util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.external_work,df.closest_external_zone))",,coef_size_of_nearest_ext_station +util_size_of_nearest_ext_station,Size of nearest external station,"@np.log1p(reindex(land_use.EXTERNAL,df.closest_external_zone))",,coef_size_of_nearest_ext_station +util_dist_lt_2p5,Distance less than 2.5 miles,"@np.where(df.dist_to_external_zone<2.5,1,0)",,coef_dist_lt_2p5 +util_part_time,Part time worker,"@np.where(df.pemploy == 2,1,0)",,coef_part_time +util_inc_lt15,Household Income less than $15k,@(df.income<15000),,coef_inc_lt15 +util_inc_15_25,Household income $15k-$25k,@(df.income>=15000) & (df.income<25000) ,,coef_inc_15_25 +util_inc_25_50,Household Income $25k-$50k,@(df.income>=25000) & (df.income<50000) ,,coef_inc_25_50 +util_inc_150_250,Household Income $150k-$50k,@(df.income>=150000) * (df.income<250000) ,,coef_inc_150_250 +util_inc_250plus,Household Income $250k+,@(df.income>=250000),,coef_inc_250plus +util_asc,Alternative-specific constant for external worker,1,,asc_external_worker +util_global_switch,Global switch to have everything internal,@NO_EXTERNAL,,-999 +util_2016,Constant for pre-COVID conditions,@PRE_COVID,,asc_external_2016 +util_calib,Constant for calibration,1,,0.35 diff --git a/resident/configs/external_worker_identification.yaml b/resident/configs/external_worker_identification.yaml index e9660b6..fc81619 100644 --- a/resident/configs/external_worker_identification.yaml +++ b/resident/configs/external_worker_identification.yaml @@ -4,6 +4,8 @@ COEFFICIENTS: external_worker_identification_coeffs.csv LOGIT_TYPE: MNL +EXTERNAL_WORKER_ALT: 1 + # boolean column to filter choosers (True means keep) # will only expose these people to the model CHOOSER_FILTER_COLUMN_NAME: is_out_of_home_worker diff --git a/resident/configs/joint_tour_frequency_composition.csv b/resident/configs/joint_tour_frequency_composition.csv index 8a1bb7b..be23d9d 100644 --- a/resident/configs/joint_tour_frequency_composition.csv +++ b/resident/configs/joint_tour_frequency_composition.csv @@ -21,7 +21,7 @@ util_constant_for_2_visiting_tour,Constant for 2 visiting tour,@df.social==2,coe util_constant_for_1_visiting_tour,Constant for 1 visiting tour,@df.social==2,coef_constant_for_1_visiting_tour util_1_visiting_and_1_discretionary_tour,1 Visiting and 1 Discretionary Tour,@((df.social==1) & (df.othdiscr==1)),coef_1_visiting_and_1_discretionary_tour util_constant_for_2_discretionary_tour,Constant for 2 discretionary tour,othdiscr==2,coef_constant_for_2_discretionary_tour -util_constant_for_2_discretionary_tour,Constant for 2 discretionary tour,othdiscr==1,coef_constant_for_1_discretionary_tour +util_constant_for_1_discretionary_tour,Constant for 1 discretionary tour,othdiscr==1,coef_constant_for_1_discretionary_tour util_number_of_active_full_time_workers_shopping,Number of Active Full time workers /Shopping,num_travel_active_full_time_workers * shopping,coef_number_of_active_full_time_workers_shopping util_number_of_active_nonworkers_shopping,Number of Active Non-workers /Shopping,num_travel_active_non_workers * shopping,coef_number_of_active_nonworkers_shopping util_number_of_active_pre_driving_age_school_children_shopping,Number of Active Pre- Driving Age School Children /Shopping,num_travel_active_pre_driving_age_school_kids * shopping,coef_number_of_active_pre_driving_age_school_children_shopping diff --git a/resident/configs/license_holding_status.csv b/resident/configs/license_holding_status.csv index ab4fbeb..f2bd9ab 100644 --- a/resident/configs/license_holding_status.csv +++ b/resident/configs/license_holding_status.csv @@ -1,5 +1,5 @@ Label,Description,Expression,has_license,does_not_have_license -# dummy specification for license holding status model,,, +# dummy specification for license holding status model,,,, util_constant,alternative specific constant,1,coef_has_license_ASC,0 util_unavailable_for_under_16,unavailable for persons under 16 years old,@df.age < 16,coef_unavailable,0 util_age,Age of person in years,@df.age,coef_age,0 diff --git a/resident/configs/logging.yaml b/resident/configs/logging.yaml index 71162f1..9342be6 100644 --- a/resident/configs/logging.yaml +++ b/resident/configs/logging.yaml @@ -46,12 +46,12 @@ logging: class: logging.Formatter # format: '%(levelname)s - %(name)s - %(message)s' format: '%(levelname)s - %(message)s' - datefmt: '%d/%m/%Y %H:%M:%S' + datefmt: '%Y-%m-%dT%H:%M:%S%z' fileFormatter: class: logging.Formatter format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' - datefmt: '%d/%m/%Y %H:%M:%S' + datefmt: '%Y-%m-%dT%H:%M:%S%z' elapsedFormatter: (): activitysim.core.tracing.ElapsedTimeFormatter diff --git a/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv b/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv index d961142..8eed736 100644 --- a/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv +++ b/resident/configs/mandatory_tour_scheduling_annotate_alts_preprocessor.csv @@ -6,7 +6,7 @@ duration_reference_bin,durationRefBin,20 departure_shift,departureLinearShift1,"(9-df.start)*(df.start<=9) + (df.start-9)*(df.start>9)" arrival_shift,arrivalLinearShift1,"(29-df.end)*(df.end<=29) + (df.end-29)*(df.end>29)" duration_shift,durationShift,"(20-df.duration)*(df.duration<=20) + (df.duration-20)*(df.duration>20)" -# school specific bins +# school specific bins,, departure_reference_bin_school,departureRefBin_school,9 arrival_reference_bin_school,arrivalRefBin_school,29 duration_reference_bin_school,durationRefBin_school,16 diff --git a/resident/configs/non_mandatory_tour_destination.csv b/resident/configs/non_mandatory_tour_destination.csv index 116360a..754a4db 100644 --- a/resident/configs/non_mandatory_tour_destination.csv +++ b/resident/configs/non_mandatory_tour_destination.csv @@ -71,4 +71,4 @@ util_joint_0_2_ASC,joint tours in 0_2bin calibration constant,"@(_DIST.between(0 util_joint_2_5_ASC,joint tours in 2_5bin calibration constant,"@(_DIST.between(2,5)) * (df.get('tour_category', default=False) == 'joint')",,coef_abm3_dist_2_5jointmaint_asc,coef_abm3_dist_2_5jointdisc_asc,coef_abm3_dist_2_5jointmaint_asc,coef_abm3_dist_2_5jointdisc_asc,coef_abm3_dist_2_5jointdisc_asc util_joint_5_10_ASC,joint tours in 5_10bin calibration constant,"@(_DIST.between(5,10)) * (df.get('tour_category', default=False) == 'joint')",,coef_abm3_dist_5_10jointmaint_asc,coef_abm3_dist_5_10jointdisc_asc,coef_abm3_dist_5_10jointmaint_asc,coef_abm3_dist_5_10jointdisc_asc,coef_abm3_dist_5_10jointdisc_asc util_joint_10_30_ASC,joint tours in 10_30bin calibration constant,"@(_DIST.between(10,30)) * (df.get('tour_category', default=False) == 'joint')",,coef_abm3_dist_10_30jointmaint_asc,coef_abm3_dist_10_30jointdisc_asc,coef_abm3_dist_10_30jointmaint_asc,coef_abm3_dist_10_30jointdisc_asc,coef_abm3_dist_10_30jointdisc_asc -util_indiv_dist_ASC,indiv tours in distance calibration constant,"@(_DIST) * (df.get('tour_category', default=False) == 'joint')",,0.10,,0.10,, \ No newline at end of file +util_joint_dist_ASC,indiv tours in distance calibration constant,"@(_DIST) * (df.get('tour_category', default=False) == 'joint')",,0.10,,0.10,, \ No newline at end of file diff --git a/resident/configs/non_mandatory_tour_destination.yaml b/resident/configs/non_mandatory_tour_destination.yaml index f8daa2c..6813065 100644 --- a/resident/configs/non_mandatory_tour_destination.yaml +++ b/resident/configs/non_mandatory_tour_destination.yaml @@ -3,6 +3,7 @@ SPEC: non_mandatory_tour_destination.csv COEFFICIENTS: non_mandatory_tour_destination_coefficients.csv SAMPLE_SIZE: 30 +ESTIMATION_SAMPLE_SIZE: 30 SIZE_TERM_SELECTOR: non_mandatory diff --git a/resident/configs/non_mandatory_tour_frequency_alternatives.csv b/resident/configs/non_mandatory_tour_frequency_alternatives.csv index e4d4f2e..a44fba3 100644 --- a/resident/configs/non_mandatory_tour_frequency_alternatives.csv +++ b/resident/configs/non_mandatory_tour_frequency_alternatives.csv @@ -196,3 +196,7 @@ escort,shopping,othmaint,eatout,social,othdiscr 2,2,0,0,1,0 2,2,0,1,0,0 2,2,1,0,0,0 +2,2,1,0,1,0 +1,2,1,1,1,0 +2,1,1,0,1,1 +2,1,2,1,0,0 \ No newline at end of file diff --git a/resident/configs/school_escorting_coefficients_inbound.csv b/resident/configs/school_escorting_coefficients_inbound.csv index d6bc194..39aa4a3 100644 --- a/resident/configs/school_escorting_coefficients_inbound.csv +++ b/resident/configs/school_escorting_coefficients_inbound.csv @@ -6,10 +6,10 @@ coef_child_age_u5_noes,-1.36718,F coef_ln_dist_from_school_noes,-0.01787,F coef_ln_dist_from_school_u6_noes,-0.23304,F coef_ln_dist_from_school_6to9_noes,-0.07286,F -coef_child_age_16p_rs,1.97184 -coef_child_age_10to15_rs,1.73544 -coef_child_age_6to9_rs,1.73544 -coef_child_age_u6_rs,1.34996 +coef_child_age_16p_rs,1.97184, +coef_child_age_10to15_rs,1.73544, +coef_child_age_6to9_rs,1.73544, +coef_child_age_u6_rs,1.34996, coef_hh_inc_u25k_noes,0.0,F coef_hh_inc_25to50k_noes,0.0,F coef_zero_auto_hh_noes,0.13165,F diff --git a/resident/configs/school_escorting_preprocessor_outbound.csv b/resident/configs/school_escorting_preprocessor_outbound.csv index 8997826..4d930c8 100644 --- a/resident/configs/school_escorting_preprocessor_outbound.csv +++ b/resident/configs/school_escorting_preprocessor_outbound.csv @@ -12,13 +12,13 @@ Daily activity pattern - chauffer 2,cdap_chauf2,"reindex(persons.cdap_activity, Age - child 1,age_child1,"reindex(persons.age, df.child_id1)" Age - child 2,age_child2,"reindex(persons.age, df.child_id2)" Age - child 3,age_child3,"reindex(persons.age, df.child_id3)" -# Departure times to school and work +# Departure times to school and work,, Preferred departure time to school - child 1,pref_depart_time_school1,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id1)" Preferred departure time to school - child 2,pref_depart_time_school2,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id2)" Preferred departure time to school - child 3,pref_depart_time_school3,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id3)" Preferred departure time to work / univ - chauffer 1,pref_depart_time_chauf1,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id1)" Preferred departure time to work / univ - chauffer 2,pref_depart_time_chauf2,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id2)" -# Distances and times to school and work +# Distances and times to school and work,, School location - child 1,school_location_child1,"reindex(persons.school_zone_id, df.child_id1)" School location - child 2,school_location_child2,"reindex(persons.school_zone_id, df.child_id2)" School location - child 3,school_location_child3,"reindex(persons.school_zone_id, df.child_id3)" diff --git a/resident/configs/school_escorting_preprocessor_outbound_cond.csv b/resident/configs/school_escorting_preprocessor_outbound_cond.csv index 10a9811..2d7e040 100644 --- a/resident/configs/school_escorting_preprocessor_outbound_cond.csv +++ b/resident/configs/school_escorting_preprocessor_outbound_cond.csv @@ -12,13 +12,13 @@ Daily activity pattern - chauffer 2,cdap_chauf2,"reindex(persons.cdap_activity, Age - child 1,age_child1,"reindex(persons.age, df.child_id1)" Age - child 2,age_child2,"reindex(persons.age, df.child_id2)" Age - child 3,age_child3,"reindex(persons.age, df.child_id3)" -# Departure times to school and work +# Departure times to school and work,, Preferred departure time to school - child 1,pref_depart_time_school1,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id1)" Preferred departure time to school - child 2,pref_depart_time_school2,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id2)" Preferred departure time to school - child 3,pref_depart_time_school3,"reindex(tours[(tours.tour_type == 'school') & (tours.tour_num == 1)].set_index('person_id').start, df.child_id3)" Preferred departure time to work / univ - chauffer 1,pref_depart_time_chauf1,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id1)" Preferred departure time to work / univ - chauffer 2,pref_depart_time_chauf2,"reindex(tours[(tours.tour_category == 'mandatory') & (tours.tour_num == 1)].set_index('person_id').start, df.chauf_id2)" -# Distances and times to school and work +# Distances and times to school and work,, School location - child 1,school_location_child1,"reindex(persons.school_zone_id, df.child_id1)" School location - child 2,school_location_child2,"reindex(persons.school_zone_id, df.child_id2)" School location - child 3,school_location_child3,"reindex(persons.school_zone_id, df.child_id3)" diff --git a/resident/configs/school_location.csv b/resident/configs/school_location.csv index 3b07c3d..162e3df 100644 --- a/resident/configs/school_location.csv +++ b/resident/configs/school_location.csv @@ -1,7 +1,7 @@ Label,Description,Expression,university,highschool,gradeschool,preschool -local_dist,,"_DIST@skims[('SOV_M_DIST', 'MD')]",1,1,1,1 +local_dist,,"_DIST@skims[('SOV_M_DIST', 'MD')].fillna(0)",1,1,1,1 util_mode_choice_logsum,Mode choice logsum,mode_choice_logsum,coef_mclogsum_univ,coef_mclogsum_hsch,coef_mclogsum_gs,coef_mclogsum_ps -util_Distance,Distance,@_DIST.clip(upper=50),coef_dist_univ,coef_dist_hsch,coef_dist_gs,coef_dist_ps +util_Distance,Distance,@_DIST.clip(upper=50).fillna(0),coef_dist_univ,coef_dist_hsch,coef_dist_gs,coef_dist_ps util_log_Distance,log_Distance,@np.log(_DIST.clip(upper=50)+1),coef_lndist_univ,coef_zero,coef_zero,coef_lndist_ps util_Distance_squareroot,Squareroot of distance,@_DIST.clip(upper=50)**0.5,coef_sqrtdist_univ,coef_sqrtdist_hsch,coef_sqrtdist_gs,coef_sqrtdist_ps util_Distance_squared,Distance_squared,@_DIST.clip(upper=50)**2,coef_sqrddist_univ,coef_sqrddist_hsch,coef_sqrddist_gs,coef_sqrddist_ps @@ -12,17 +12,17 @@ util_Distance_worker_univ,Distance for a worker_university specific,"@np.where(d util_Distance_largeuniversity_univ,Distance for large university enrollment,"@np.where(df.COLLEGEENROLL>5000, _DIST.clip(upper=50), 0)",coef_univenrol_dist_univ,coef_zero,coef_zero,coef_zero util_Distance _lowincome_prek,Distance - low income,"@np.where(df.income<60000, _DIST.clip(upper=50), 0)",coef_zero,coef_zero,coef_zero,coef_lowincdist_ps util_Distance - age03_prek,Distance - age 0 to 3,"@np.where(df.age<3,_DIST.clip(upper=50),0)",coef_zero,coef_zero,coef_zero,coef_age03dist_ps -util_LoggedSize,Logged Size variable - University specific,@df['size_term'].apply(np.log1p),coef_lnSize,coef_lnSize,coef_lnSize,coef_lnSize +util_LoggedSize,Logged Size variable - University specific,@df['size_term'].fillna(0).apply(np.log1p),coef_lnSize,coef_lnSize,coef_lnSize,coef_lnSize util_no_attractions,no attractions if logged university size is zero,@df['size_term']==0,-999,-999,-999,-999 util_sample_of_corrections_factor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",1,1,1,1 -util_sp_utility_adjustment,shadow price utility adjustment,@df['shadow_price_utility_adjustment'],1,1,1 +util_sp_utility_adjustment,shadow price utility adjustment,@df['shadow_price_utility_adjustment'].fillna(0),1,1,1, #,,,,,, util_ABM2calibration_0-1miles,ABM2 calibration_0-1miles,@(_DIST<1),coef_zero,coef_abmcalib_01miles,coef_abmcalib_01miles,coef_abmcalib_01miles util_ABM2calibration_1-2miles,ABM2 calibration_1-2miles,@(_DIST<2) * (_DIST>=1),coef_zero,coef_abmcalib_12miles,coef_abmcalib_12miles,coef_abmcalib_12miles util_ABM2calibration_2-3miles,ABM2 calibration_2-3miles,@(_DIST<3) * (_DIST>=2),coef_zero,coef_abmcalib_23miles,coef_abmcalib_23miles,coef_abmcalib_23miles util_ABM2calibration_0-20miles,ABM2 calibration_0-20miles,@(_DIST<20) * (_DIST),coef_zero,coef_abmcalib_20miles,coef_abmcalib_20miles,coef_abmcalib_20miles #,,,,,, -#calibration constants,,, +#calibration constants,,,,,, util_Calibration 0-2 - miles,Calibration 0-2 - miles,@_DIST<=2,,coef_distance_0_2miles,coef_distance_2_5miles,coef_distance_5_10miles util_Calibration 2-5 - miles,Calibration 2-5 - miles,@(_DIST>2) * (_DIST<=5),,coef_distance_0_2miles,coef_distance_2_5miles,coef_distance_5_10miles util_Calibration 5-10 - miles,Calibration 5-10 - miles,@(_DIST>5) * (_DIST<=10),,coef_distance_0_2miles,coef_distance_2_5miles,coef_distance_5_10miles diff --git a/resident/configs/school_location.yaml b/resident/configs/school_location.yaml index 7c3c2b1..6ff92cd 100644 --- a/resident/configs/school_location.yaml +++ b/resident/configs/school_location.yaml @@ -1,5 +1,5 @@ SAMPLE_SIZE: 30 -ESTIMATION_SAMPLE_SIZE: 10 +ESTIMATION_SAMPLE_SIZE: 30 SIMULATE_CHOOSER_COLUMNS: - home_zone_id diff --git a/resident/configs/stop_frequency_annotate_tours_preprocessor.csv b/resident/configs/stop_frequency_annotate_tours_preprocessor.csv index bd2847c..7ad0ca5 100644 --- a/resident/configs/stop_frequency_annotate_tours_preprocessor.csv +++ b/resident/configs/stop_frequency_annotate_tours_preprocessor.csv @@ -21,7 +21,7 @@ Number of Adults (>= 16 years old),num_adult,"reindex_i(_HH_PERSON_COUNT('age >= ,tour_mode_is_drive_transit,df.tour_mode.isin(DRIVE_TO_TRANSIT_MODES) ,tour_mode_is_non_motorized,df.tour_mode.isin(NONMOTORIZED_MODES) ,tour_mode_is_schbus,df.tour_mode.isin(['SCH_BUS']) - +#,, #,, #num_work_tours already defined,, ,num_total_tours,"reindex_i(df.groupby('person_id').size(), df.person_id)" diff --git a/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv b/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv index d504d5f..985df59 100644 --- a/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv +++ b/resident/configs/tour_mode_choice_annotate_choosers_preprocessor.csv @@ -8,22 +8,22 @@ local,_DF_IS_TOUR,'tour_type' in df.columns, ,sr2_veh_option,"np.where(is_atwork_subtour, _parent_tour_veh, df.get('vehicle_occup_2', np.nan))", ,sr3p_veh_option,"np.where(is_atwork_subtour, _parent_tour_veh, df.get('vehicle_occup_3.5', np.nan))", #AV factors,,, -SOV tour Vehicle is AV,sov_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_1', np.nan)), pd.Series(sov_veh_option, dtype = 'str').str.contains('AV'), False)" -SR2 tour Vehicle is AV,sr2_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_2', np.nan)), pd.Series(sr2_veh_option, dtype = 'str').str.contains('AV'), False)" -SR3 tour Vehicle is AV,sr3_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_3.5', np.nan)), pd.Series(sr3p_veh_option, dtype = 'str').str.contains('AV'), False)" -SOV AV IVT Factor Adjustment,autoIVTFactor_DA,"np.where(sov_tour_uses_av, autoIVTFactorAV, 1.0)" -SR2 AV IVT Factor Adjustment,autoIVTFactor_SR2,"np.where(sr2_tour_uses_av, autoIVTFactorAV, 1.0)" -SR3+ AV IVT Factor Adjustment,autoIVTFactor_SR3,"np.where(sr3_tour_uses_av, autoIVTFactorAV, 1.0)" -SOV AV Parking Cost Factor Adjustment,autoParkingCostFactor_DA,"np.where(sov_tour_uses_av, autoParkingCostFactorAV, 1.0)" -SR2 AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR2,"np.where(sr2_tour_uses_av, autoParkingCostFactorAV, 1.0)" -SR3+ AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR3,"np.where(sr3_tour_uses_av, autoParkingCostFactorAV, 1.0)" -SOV AV Auto Terminal Time Factor,autoTermTimeFactor_DA,"np.where(sov_tour_uses_av, autoTerminalTimeFactorAV, 1.0)" -SR2 AV Auto Terminal Time Factor,autoTermTimeFactor_SR2,"np.where(sr2_tour_uses_av, autoTerminalTimeFactorAV, 1.0)" -SR3+ AV Auto Terminal Time Factor,autoTermTimeFactor_SR3,"np.where(sr3_tour_uses_av, autoTerminalTimeFactorAV, 1.0)" -SOV AV Auto Terminal Time Factor,autoCPMFactor_DA,"np.where(sov_tour_uses_av, autoCostPerMileFactorAV, 1.0)" -SR2 AV Auto Terminal Time Factor,autoCPMFactor_SR2,"np.where(sr2_tour_uses_av, autoCostPerMileFactorAV, 1.0)" -SR3+ AV Auto Terminal Time Factor,autoCPMFactor_SR3,"np.where(sr3_tour_uses_av, autoCostPerMileFactorAV, 1.0)" -AV Min Age to Drive Alone,minimumAgeDA,"np.where(sov_tour_uses_av, minAgeDriveAloneAV, 16)" +SOV tour Vehicle is AV,sov_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_1', np.nan)), pd.Series(sov_veh_option, dtype = 'str').str.contains('AV'), False)", +SR2 tour Vehicle is AV,sr2_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_2', np.nan)), pd.Series(sr2_veh_option, dtype = 'str').str.contains('AV'), False)", +SR3 tour Vehicle is AV,sr3_tour_uses_av,"np.where(pd.notna(df.get('vehicle_occup_3.5', np.nan)), pd.Series(sr3p_veh_option, dtype = 'str').str.contains('AV'), False)", +SOV AV IVT Factor Adjustment,autoIVTFactor_DA,"np.where(sov_tour_uses_av, autoIVTFactorAV, 1.0)", +SR2 AV IVT Factor Adjustment,autoIVTFactor_SR2,"np.where(sr2_tour_uses_av, autoIVTFactorAV, 1.0)", +SR3+ AV IVT Factor Adjustment,autoIVTFactor_SR3,"np.where(sr3_tour_uses_av, autoIVTFactorAV, 1.0)", +SOV AV Parking Cost Factor Adjustment,autoParkingCostFactor_DA,"np.where(sov_tour_uses_av, autoParkingCostFactorAV, 1.0)", +SR2 AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR2,"np.where(sr2_tour_uses_av, autoParkingCostFactorAV, 1.0)", +SR3+ AV Parking Cost Factor Adjustment,autoParkingCostFactor_SR3,"np.where(sr3_tour_uses_av, autoParkingCostFactorAV, 1.0)", +SOV AV Auto Terminal Time Factor,autoTermTimeFactor_DA,"np.where(sov_tour_uses_av, autoTerminalTimeFactorAV, 1.0)", +SR2 AV Auto Terminal Time Factor,autoTermTimeFactor_SR2,"np.where(sr2_tour_uses_av, autoTerminalTimeFactorAV, 1.0)", +SR3+ AV Auto Terminal Time Factor,autoTermTimeFactor_SR3,"np.where(sr3_tour_uses_av, autoTerminalTimeFactorAV, 1.0)", +SOV AV Auto Terminal Time Factor,autoCPMFactor_DA,"np.where(sov_tour_uses_av, autoCostPerMileFactorAV, 1.0)", +SR2 AV Auto Terminal Time Factor,autoCPMFactor_SR2,"np.where(sr2_tour_uses_av, autoCostPerMileFactorAV, 1.0)", +SR3+ AV Auto Terminal Time Factor,autoCPMFactor_SR3,"np.where(sr3_tour_uses_av, autoCostPerMileFactorAV, 1.0)", +AV Min Age to Drive Alone,minimumAgeDA,"np.where(sov_tour_uses_av, minAgeDriveAloneAV, 16)", reimburseProportion placeholder,reimburseProportion,0, "Tour duration, in hours",tourDuration,df.duration/2, #,,, @@ -45,12 +45,12 @@ treat tours as work if tour_type not yet decided,tour_type,"df.get('tour_type', popempdenpermi calculated in preprocessor and input via landuse file,_origin_density_measure,"reindex(land_use.popempdenpermi, df[orig_col_name])", ,_dest_density_measure,"reindex(land_use.popempdenpermi, df[dest_col_name])", ,origin_density,"pd.cut(_origin_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)", -,dest_density,"pd.cut(_dest_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)", +,dest_density,"pd.cut(_dest_density_measure.fillna(0), bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)", ,origin_zone_taxi_wait_time_mean,"origin_density.map({k: v for k, v in Taxi_waitTime_mean.items()})", ,origin_zone_taxi_wait_time_sd,"origin_density.map({k: v for k, v in Taxi_waitTime_sd.items()})", ,dest_zone_taxi_wait_time_mean,"dest_density.map({k: v for k, v in Taxi_waitTime_mean.items()})", ,dest_zone_taxi_wait_time_sd,"dest_density.map({k: v for k, v in Taxi_waitTime_sd.items()})", -# ,, Note that the mean and standard deviation are not the values for the distribution itself but of the underlying normal distribution it is derived from +# ,, Note that the mean and standard deviation are not the values for the distribution itself but of the underlying normal distribution it is derived from, ,origTaxiWaitTime,"rng.lognormal_for_df(df, mu=origin_zone_taxi_wait_time_mean, sigma=origin_zone_taxi_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)", ,destTaxiWaitTime,"rng.lognormal_for_df(df, mu=dest_zone_taxi_wait_time_mean, sigma=dest_zone_taxi_wait_time_sd, broadcast=True, scale=True).clip(min_waitTime, max_waitTime)", ,origin_zone_singleTNC_wait_time_mean,"origin_density.map({k: v for k, v in TNC_single_waitTime_mean.items()})", @@ -75,8 +75,10 @@ person has free on-site parking at workplace,freeOnsite,"(free_parking_available new daily parking cost with reimbursement in cents,parkingCostDay,"reindex(land_use.exp_daily, df[dest_col_name])", new hourly parking cost with reimbursement in cents,parkingCostHour,"reindex(land_use.exp_hourly, df[dest_col_name])", new monthly parking cost with reimbursement in cents,parkingCostMonth,"reindex(land_use.exp_monthly, df[dest_col_name])", -Tour parking cost for full-time workers and university students,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * is_indiv * np.minimum(parkingCostMonth/22, parkingCostDay)", -Tour parking cost for full-time workers and university students,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * is_indiv * np.minimum(_parkingCostBeforeReimb, parkingCostHour * tourDuration)", +,_telecommute_freq,"df.telecommute_frequency if 'telecommute_frequency' in df.columns else pd.Series('No_Telecommute', index=df.index)", +Tour parking cost for full-time workers and university students that telecommute less than 2 days,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * _telecommute_freq.isin(['No_Telecommute', '1_day_week']) * is_indiv * np.minimum(parkingCostMonth, parkingCostDay)" +Tour parking cost for full-time workers and university students that telecommute less than 2 days,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * _telecommute_freq.isin(['No_Telecommute', '1_day_week']) * is_indiv * np.minimum(_parkingCostBeforeReimb, parkingCostHour * tourDuration)" +Tour parking cost for the rest of full-time workers and university students,_parkingCostBeforeReimb,"np.where(df.ptype.isin([1,3]) * ~_telecommute_freq.isin(['No_Telecommute', '1_day_week']) * is_indiv, np.minimum(parkingCostDay, parkingCostHour * tourDuration), _parkingCostBeforeReimb)" Tour parking cost for other person types,parkingCostBeforeReimb,"np.where((~df.ptype.isin([1,3]) * is_indiv) | (is_joint), np.minimum(parkingCostDay, parkingCostHour * tourDuration), _parkingCostBeforeReimb)", Reimbursement applies to this tour purpose,reimbursePurpose,df.tour_type == 'work' if _DF_IS_TOUR else False, Effective parking cost for free parkers,_parkingCost,"0 * np.where(is_indiv*reimbursePurpose*freeOnsite,1,0)", @@ -125,12 +127,12 @@ Person age,age,df.age, #,,, Joint tour,is_joint,"df.get('tour_category', default=False) == 'joint'", Determining Tour Destination,destination,df.destination if 'destination' in df.columns else df.alt_dest, -Origin MGRA Dwelling Unit Density,oMGRADUDen,"reindex(land_use.duden,origin)", -Origin MGRA Employment Density,oMGRAEmpDen,"reindex(land_use.empden,origin)", -Origin MGRA Total Intersections,oMGRATotInt,"reindex(land_use.totint,origin)", -Destination MGRA Dwelling Unit Density,dMGRADUDen,"reindex(land_use.duden,destination)", -Destination MGRA Employment Density,dMGRAEmpDen,"reindex(land_use.empden,destination)", -Destination MGRA Total Intersections,dMGRATotInt,"reindex(land_use.totint,destination)", +Origin MGRA Dwelling Unit Density,oMGRADUDen,"reindex(land_use.duden,origin).clip(upper=300)", +Origin MGRA Employment Density,oMGRAEmpDen,"reindex(land_use.empden,origin).clip(upper=300)", +Origin MGRA Total Intersections,oMGRATotInt,"reindex(land_use.totint,origin).clip(upper=300)", +Destination MGRA Dwelling Unit Density,dMGRADUDen,"reindex(land_use.duden,destination).clip(upper=300)", +Destination MGRA Employment Density,dMGRAEmpDen,"reindex(land_use.empden,destination).clip(upper=300)", +Destination MGRA Total Intersections,dMGRATotInt,"reindex(land_use.totint,destination).clip(upper=300)", Origin MGRA Mix,oMGRAMix,"np.where(oMGRADUDen+oMGRAEmpDen > 0, (oMGRADUDen*oMGRAEmpDen)/(oMGRADUDen+oMGRAEmpDen),0)", Destination MGRA Mix,dMGRAMix,"np.where(dMGRADUDen+dMGRAEmpDen > 0, (dMGRADUDen*dMGRAEmpDen)/(dMGRADUDen+dMGRAEmpDen),0)", Origin MGRA Dwelling Unit Density Normalized by Average in Bike Estimation Sample,oMGRADUDenNorm_bike,oMGRADUDen/6.77, @@ -155,7 +157,7 @@ bike logsum outbound (same as inbound),bikeLSO,0, bike time inbound,bike_time_inb,do_skims['DISTWALK'] / bikeSpeed * 60, bike time outbound,bike_time_out,od_skims['DISTWALK'] / bikeSpeed * 60, bike availability,bikeAvailable,(bikeLSI > -300) & (bikeLSO > -300) & (od_skims['DISTWALK']>0), - +#,,, #,,, "Cost factor for shared 2 tours, 1/(2^0.8)",costFactorS2,0.57, "Cost factor for shared 3+ tours, 1/(3.5^0.8)",costFactorS3,0.37, @@ -179,16 +181,16 @@ Determining Tour Destination,destination,df.destination if 'destination' in df.c ,walk_local_available,(odt_skims['WTW_TIV']>0) & (dot_skims['WTW_TIV']>0), ,knr_local_available,"(odt_skims['KTW_TIV']>0) & (dot_skims['WTK_TIV']>0) if KNR_available else 0", ,tnc_local_available,"(odt_skims['KTW_TIV']>0) & (dot_skims['WTK_TIV']>0) if KNR_available else 0", -#KNR times +#KNR times,,, ,knr_total_tiv,"(odt_skims['KTW_TIV'] + dot_skims['WTK_TIV']) if KNR_available else 0", -,knr_total_fwt,"(odt_skims['KTW_FWT']) + (dot_skims['WTK_FWT']) if KNR_available else 0" -,knr_total_xwt,"(odt_skims['KTW_XWT'] + dot_skims['WTK_XWT']) if KNR_available else 0" -,knr_acc_egg_time,"(odt_skims['KTW_ACC'] + dot_skims['WTK_EGR']) if KNR_available else 0" +,knr_total_fwt,"(odt_skims['KTW_FWT']) + (dot_skims['WTK_FWT']) if KNR_available else 0", +,knr_total_xwt,"(odt_skims['KTW_XWT'] + dot_skims['WTK_XWT']) if KNR_available else 0", +,knr_acc_egg_time,"(odt_skims['KTW_ACC'] + dot_skims['WTK_EGR']) if KNR_available else 0", ,knr_other_walk_time,"(odt_skims['KTW_AUX'] + dot_skims['WTK_AUX']) if KNR_available else 0", -,ktw_odt_xfr,"odt_skims['KTW_XFR'] if KNR_available else 0" -,wtk_odt_xfr,"dot_skims['WTK_XFR'] if KNR_available else 0" -,knr_stop_constant,"(odt_skims['KTW_RST'] + dot_skims['WTK_RST']) if KNR_available else 0" -,knr_veh_constant,"(odt_skims['KTW_VTC'] + dot_skims['WTK_VTC']) if KNR_available else 0" +,ktw_odt_xfr,"odt_skims['KTW_XFR'] if KNR_available else 0", +,wtk_odt_xfr,"dot_skims['WTK_XFR'] if KNR_available else 0", +,knr_stop_constant,"(odt_skims['KTW_RST'] + dot_skims['WTK_RST']) if KNR_available else 0", +,knr_veh_constant,"(odt_skims['KTW_VTC'] + dot_skims['WTK_VTC']) if KNR_available else 0", # Micromobility times,,, ebike time inbound,ebike_time_inb,bike_time_inb * bikeSpeed / ebikeSpeed, ebike time outbound,ebike_time_out,bike_time_out * bikeSpeed / ebikeSpeed, @@ -249,5 +251,5 @@ first wait times pnr,iwait_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, ( stop type constant pnr,stop_type_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, (ldt_skims['WTW_RST'] + dlt_skims['WTW_RST']), 0)", vehicle type constant pnr,vehicle_type_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, (ldt_skims['WTW_VTC'] + dlt_skims['WTW_VTC']), 0)", walking access and egress times at dest end pnr,walk_at_dest_end_pnr,"2 * dest_local_time", -parking cost pnr,parking_cost_pnr,"0 if ((not _CALC_PNR) or ('PNR_PRKCST' not in land_use.columns)) else np.where(is_valid_pnr,reindex(land_use.PNR_PRKCST, df.pnr_zone_id), 0)" +parking cost pnr,parking_cost_pnr,"0 if ((not _CALC_PNR) or ('PNR_PRKCST' not in land_use.columns)) else np.where(is_valid_pnr,reindex(land_use.PNR_PRKCST, df.pnr_zone_id), 0)", fare pnr,fare_pnr,"0 if not _CALC_PNR else np.where(is_valid_pnr, (ldt_skims['fare'] + dlt_skims['fare']), 0)", diff --git a/resident/configs/transit_pass_subsidy.csv b/resident/configs/transit_pass_subsidy.csv index 2082f6e..3e3fdf2 100644 --- a/resident/configs/transit_pass_subsidy.csv +++ b/resident/configs/transit_pass_subsidy.csv @@ -21,3 +21,7 @@ util_availability,Availability of transit pass,transit_subsidy_available==False, util_ft_ASC,ptype_ft calibration constant,@df.ptype == 1,0,coef_ft_asc util_pt_ASC,ptype_pt calibration constant,@df.ptype == 2,0,coef_pt_asc util_un_ASC,ptype_un calibration constant,@df.ptype == 3,0,coef_un_asc +util_transit_ivt_home_to_work_walk_peak,Walk-transit home to work peak availability,@df.transit_ivt_home_to_work_walk_peak,0,coef_transit_ivt_home_to_work_walk_peak +util_transit_ivt_home_to_work_drive_peak,Drive-transit home to work peak availability,@df.transit_ivt_home_to_work_drive_peak,0,coef_transit_ivt_home_to_work_drive_peak +util_transit_ivt_home_to_school_walk_peak,Walk-transit home to school peak availability,@df.transit_ivt_home_to_school_walk_peak,0,coef_transit_ivt_home_to_school_walk_peak +util_transit_ivt_home_to_school_drive_peak,Drive-transit home to school peak availability,@df.transit_ivt_home_to_school_drive_peak,0,coef_transit_ivt_home_to_school_drive_peak diff --git a/resident/configs/transit_pass_subsidy_coefficients.csv b/resident/configs/transit_pass_subsidy_coefficients.csv index a7b3539..e23c1e6 100644 --- a/resident/configs/transit_pass_subsidy_coefficients.csv +++ b/resident/configs/transit_pass_subsidy_coefficients.csv @@ -21,3 +21,7 @@ coef_unavailable,-999.0,F coef_ft_asc,-0.240,F coef_pt_asc,-0.250,F coef_un_asc,0.30,F +coef_transit_ivt_home_to_work_walk_peak,0.3,F +coef_transit_ivt_home_to_work_drive_peak,0.3,F +coef_transit_ivt_home_to_school_walk_peak,0.3,F +coef_transit_ivt_home_to_school_drive_peak,0.3,F \ No newline at end of file diff --git a/resident/configs/transit_pass_subsidy_preprocessor.csv b/resident/configs/transit_pass_subsidy_preprocessor.csv index 6f213cb..15f16ee 100644 --- a/resident/configs/transit_pass_subsidy_preprocessor.csv +++ b/resident/configs/transit_pass_subsidy_preprocessor.csv @@ -1,5 +1,7 @@ Description,Target,Expression -,_transit_ivt_home_to_work_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('WTW_TIV', 'AM'))" -,_transit_ivt_home_to_work_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('KTW_TIV', 'AM'))" -,transit_subsidy_available,((_transit_ivt_home_to_work_walk_peak > 0) | (_transit_ivt_home_to_work_drive_peak > 0)) & (persons.workplace_zone_id > 0) +,transit_ivt_home_to_work_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('WTW_TIV', 'AM'))" +,transit_ivt_home_to_work_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.workplace_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" +,transit_ivt_home_to_school_walk_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('WTW_TIV', 'AM'))" +,transit_ivt_home_to_school_drive_peak,"skim_dict.lookup(persons.home_zone_id, persons.school_zone_id, ('KTW_TIV', 'AM')) if KNR_available else 0" +,transit_subsidy_available,(persons.workplace_zone_id > 0) | (persons.school_zone_id > 0) ,trn_wk_access_hh,"np.where(persons.workplace_zone_id > 0, reindex(accessibility.trPkHH, persons.workplace_zone_id), 0)" \ No newline at end of file diff --git a/resident/configs/trip_destination.csv b/resident/configs/trip_destination.csv index db222c6..8dfa800 100644 --- a/resident/configs/trip_destination.csv +++ b/resident/configs/trip_destination.csv @@ -10,42 +10,42 @@ util_sizeterm,size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose))",coe util_Sampleofalternativescorrectionfactor,Sample of alternatives correction factor,"@np.minimum(np.log(df.pick_count/df.prob), 60)",coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one,coef_one util_Modechoicelogsum,Mode choice logsum,od_logsum + dp_logsum,coef_mode_choice_logsum_mandatory,coef_mode_choice_logsum_mandatory,coef_mode_choice_logsum_mandatory,coef_mode_choice_logsum_maint,coef_mode_choice_logsum_maint,coef_mode_choice_logsum_maint,coef_mode_choice_logsum_discr,coef_mode_choice_logsum_discr,coef_mode_choice_logsum_discr,coef_mode_choice_logsum_discr #,,,,,,,,,,,, -util_DistanceDeviationLinearRelative,Distance Deviation Linear - Relative,"@np.minimum((_dist_dev)/_op_DIST, 100)",,,,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr -util_DistanceDeviationLinearAbsolute,Distance Deviation Linear - Absolute,@(_dist_dev),coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr +util_dist_dev_LinearRelative,Distance Deviation Linear - Relative,"@np.minimum((_dist_dev)/_op_DIST, 100)",,,,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_maint,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr,coef_DistanceDeviationLinearRelative_discr +util_dist_dev_LinearAbsolute,Distance Deviation Linear - Absolute,@(_dist_dev),coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_mandatory,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_maint,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr,coef_DistanceDeviationLinearAbsolute_discr util_LogofDistanceRelativeDeviation,Log of Distance Relative Deviation,"@np.where((_dist_dev > 0), np.log(np.minimum((_dist_dev)/_op_DIST, 100)), 0)",,,,coef_LogofDistanceRelativeDeviation_maint,coef_LogofDistanceRelativeDeviation_maint,coef_LogofDistanceRelativeDeviation_maint,coef_LogofDistanceRelativeDeviation_discr,coef_LogofDistanceRelativeDeviation_discr,coef_LogofDistanceRelativeDeviation_discr,coef_LogofDistanceRelativeDeviation_discr util_LogofDistanceAbsoluteDeviation,Log of Distance Absolute Deviation,"@(_dist_dev_logged)",coef_LogofDistanceAbsoluteDeviation_mandatory,coef_LogofDistanceAbsoluteDeviation_mandatory,coef_LogofDistanceAbsoluteDeviation_mandatory,coef_LogofDistanceAbsoluteDeviation_maint,coef_LogofDistanceAbsoluteDeviation_maint,coef_LogofDistanceAbsoluteDeviation_maint,coef_LogofDistanceAbsoluteDeviation_discr,coef_LogofDistanceAbsoluteDeviation_discr,coef_LogofDistanceAbsoluteDeviation_discr,coef_LogofDistanceAbsoluteDeviation_discr -util_DistanceDeviationsquaredRelative,Distance Deviation squared - Relative,"@np.power(np.minimum((_dist_dev)/_op_DIST, 100),2)",,,,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr -util_DistanceDeviationsquaredAbsolute,Distance Deviation squared - Absolute,"@np.power(_dist_dev,2)",coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr -util_DistanceDeviation2ndstopofhalftour,Distance Deviation - 2nd stop of half tour,@(df.trip_num==2) * (_dist_dev),coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr -util_DistanceDeviation3rdmorestoponhalftour,Distance Deviation - 3rd+ stop on half tour,@(df.trip_num>2) * (_dist_dev),coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr -util_DistanceDeviationNumberofStopsonthehalftour,Distance Deviation - Number of Stops on the half-tour,"@np.minimum(_dist_dev,7.0)*df.trip_count",coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr -util_DistanceDeviationwalkbiketour,Distance Deviation - walk/bike tour,nonmotorTour * (_dist_dev),coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr -util_DistanceDeviationworkstoppurpose,Distance Deviation - work stop purpose,workStop *_dist_dev,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr -util_DistanceDeviationuniversitystoppurpose,Distance Deviation - university stop purpose,"@df.univStop * np.minimum(_dist_dev,5.0)",coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr -util_DistanceDeviationmaintenancestoppurpose,Distance Deviation - maintenance stop purpose,othmainStop * _dist_dev,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr -util_DistanceDeviationdiscretionarystoppurpose,Distance Deviation - discretionary stop purpose,"@df.discStop * np.minimum(_dist_dev,8.0)",coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr -util_DistanceDeviationshoppingstoppurpose,Distance Deviation - shopping stop purpose,shopStop *_dist_dev,,,,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr -util_DistanceDeviationeatoutstoppurpose,Distance Deviation - eatout stop purpose,eatStop *_dist_dev,,,,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr -util_DistanceDeviationsocialstoppurpose,Distance Deviation - social stop purpose,socStop * _dist_dev,,,,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr -util_DistanceDeviationworkstoppurpose_log,Distance Deviation - work stop purpose,workStop * _dist_dev_logged,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,,,,,,, -util_DistanceDeviationshoppingstoppurpose_log,Distance Deviation - shopping stop purpose,shopStop * _dist_dev_logged,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,,,,,,, -util_DistanceDeviationsocialvisitingstoppurpose_log,Distance Deviation - socialvisiting stop purpose,socStop * _dist_dev_logged,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,,,,,,, -util_DistanceDeviationSchool,Distance Deviation - School Tour purpose,schoolTour * _dist_dev,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,,,,,,, -util_DistanceDeviationUniversity,Distance Deviation - University Tour purpose,univTour * _dist_dev,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,,,,,,, -util_DistanceDeviationShopping,Distance Deviation - Shopping Tour purpose,shopTour * _dist_dev,,,,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,,,, -util_DistanceDeviationOthMaint,Distance Deviation - Other maintenanceTour purpose,othmainTour * _dist_dev,,,,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,,,, -util_DistanceDeviationDiscr,Distance Deviation - DiscTour purpose,discTour * _dist_dev,,,,,,,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint -util_DistanceDeviationAtwork,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,,,,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint -util_DistanceDeviationIncomeLessthan60k,"Distance Deviation - Income Less than $60,000","@(df.income_trips<60000) * np.minimum(_dist_dev,13.0)",coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr -util_DistanceDeviationFemale,Distance Deviation - Female,(female & (is_joint==0)) * (_dist_dev),coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr -util_DistanceDeviationAgebetween35and54years,Distance Deviation - Age between 35 and 54 years,"@(df.age_trips.between(35,54)*df.is_joint==0) * (_dist_dev)",coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr -util_DistanceDeviationAgeover54years,Distance Deviation - Age over 54 years,@(df.age_trips>54) * (df.is_joint==0) * (_dist_dev),coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr +util_dist_dev_squaredRelative,Distance Deviation squared - Relative,"@np.power(np.minimum((_dist_dev)/_op_DIST, 100),2)",,,,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_maint,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr,coef_DistanceDeviationsquaredRelative_discr +util_dist_dev_squaredAbsolute,Distance Deviation squared - Absolute,"@np.power(_dist_dev,2)",coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_mandatory,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_maint,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr,coef_DistanceDeviationsquaredAbsolute_discr +util_dist_dev_2ndstopofhalftour,Distance Deviation - 2nd stop of half tour,@(df.trip_num==2) * (_dist_dev),coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_mandatory,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_maint,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr,coef_DistanceDeviation2ndstopofhalftour_discr +util_dist_dev_3rdmorestoponhalftour,Distance Deviation - 3rd+ stop on half tour,@(df.trip_num>2) * (_dist_dev),coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_mandatory,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_maint,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr,coef_DistanceDeviation3rdmorestoponhalftour_discr +util_dist_dev_NumberofStopsonthehalftour,Distance Deviation - Number of Stops on the half-tour,"@np.minimum(_dist_dev,7.0)*df.trip_count",coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_mandatory,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_maint,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr,coef_DistanceDeviationNumberofStopsonthehalftour_discr +util_dist_dev_walkbiketour,Distance Deviation - walk/bike tour,nonmotorTour * (_dist_dev),coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_mandatory,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_maint,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr,coef_DistanceDeviationwalkbiketour_discr +util_dist_dev_workstoppurpose,Distance Deviation - work stop purpose,workStop *_dist_dev,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_mandatory,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_maint,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr,coef_DistanceDeviationworkstoppurpose_discr +util_dist_dev_universitystoppurpose,Distance Deviation - university stop purpose,"@df.univStop * np.minimum(_dist_dev,5.0)",coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_mandatory,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_maint,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr,coef_DistanceDeviationuniversitystoppurpose_discr +util_dist_dev_maintenancestoppurpose,Distance Deviation - maintenance stop purpose,othmainStop * _dist_dev,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_mandatory,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_maint,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr,coef_DistanceDeviationmaintenancestoppurpose_discr +util_dist_dev_discretionarystoppurpose,Distance Deviation - discretionary stop purpose,"@df.discStop * np.minimum(_dist_dev,8.0)",coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_mandatory,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_maint,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr,coef_DistanceDeviationdiscretionarystoppurpose_discr +util_dist_dev_shoppingstoppurpose,Distance Deviation - shopping stop purpose,shopStop *_dist_dev,,,,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_maint,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr,coef_DistanceDeviationshoppingstoppurpose_discr +util_dist_dev_eatoutstoppurpose,Distance Deviation - eatout stop purpose,eatStop *_dist_dev,,,,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_maint,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr,coef_DistanceDeviationeatoutstoppurpose_discr +util_dist_dev_socialstoppurpose,Distance Deviation - social stop purpose,socStop * _dist_dev,,,,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_maint,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr,coef_DistanceDeviationsocialstoppurpose_discr +util_dist_dev_workstoppurpose_log,Distance Deviation - work stop purpose,workStop * _dist_dev_logged,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,coef_DistanceDeviationworkstoppurpose,,,,,,, +util_dist_dev_shoppingstoppurpose_log,Distance Deviation - shopping stop purpose,shopStop * _dist_dev_logged,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,coef_DistanceDeviationshoppingstoppurpose_mandatory,,,,,,, +util_dist_dev_socialvisitingstoppurpose_log,Distance Deviation - socialvisiting stop purpose,socStop * _dist_dev_logged,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,coef_DistanceDeviationsocialvisitingstoppurpose_mandatory,,,,,,, +util_dist_dev_School,Distance Deviation - School Tour purpose,schoolTour * _dist_dev,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,coef_DistanceDeviationSchool_mandatory,,,,,,, +util_dist_dev_University,Distance Deviation - University Tour purpose,univTour * _dist_dev,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,coef_DistanceDeviationUniversity_mandatory,,,,,,, +util_dist_dev_Shopping,Distance Deviation - Shopping Tour purpose,shopTour * _dist_dev,,,,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,coef_DistanceDeviationothmaint_maint,,,, +util_dist_dev_OthMaint,Distance Deviation - Other maintenanceTour purpose,othmainTour * _dist_dev,,,,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,coef_DistanceDeviationshopping_maint,,,, +util_dist_dev_Maint,Distance Deviation - Maint purpose,othmainTour * _dist_dev,,,,,,,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint,coef_DistanceDeviationdiscr_maint +util_dist_dev_Atwork,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,,,,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint,coef_DistanceDeviationatwork_maint +util_dist_dev_IncomeLessthan60k,"Distance Deviation - Income Less than $60,000","@(df.income_trips<60000) * np.minimum(_dist_dev,13.0)",coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_mandatory,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_maint,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr,coef_DistanceDeviationIncomeLessthan60k_discr +util_dist_dev_Female,Distance Deviation - Female,(female & (is_joint==0)) * (_dist_dev),coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_mandatory,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_maint,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr,coef_DistanceDeviationFemale_discr +util_dist_dev_Agebetween35and54years,Distance Deviation - Age between 35 and 54 years,"@(df.age_trips.between(35,54)*df.is_joint==0) * (_dist_dev)",coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_mandatory,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_maint,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr,coef_DistanceDeviationAgebetween35and54years_discr +util_dist_dev_Ageover54years,Distance Deviation - Age over 54 years,@(df.age_trips>54) * (df.is_joint==0) * (_dist_dev),coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_mandatory,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_maint,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr,coef_DistanceDeviationAgeover54years_discr util_DistanceRatio,Distance Ratio,(_nd_DIST)/ (_nd_DIST + _dp_DIST),coef_DistanceRatio_mandatory,coef_DistanceRatio_mandatory,coef_DistanceRatio_mandatory,coef_DistanceRatio_maint,coef_DistanceRatio_maint,coef_DistanceRatio_maint,coef_DistanceRatio_discr,coef_DistanceRatio_discr,coef_DistanceRatio_discr,coef_DistanceRatio_discr util_DistanceRatioFirstOutboundStop,Distance Ratio - First Outbound Stop,@(df.trip_num==1)*(df.outbound) * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioFirstOutboundStop_mandatory,coef_DistanceRatioFirstOutboundStop_mandatory,coef_DistanceRatioFirstOutboundStop_mandatory,coef_DistanceRatioFirstOutboundStop_maint,coef_DistanceRatioFirstOutboundStop_maint,coef_DistanceRatioFirstOutboundStop_maint,coef_DistanceRatioFirstOutboundStop_discr,coef_DistanceRatioFirstOutboundStop_discr,coef_DistanceRatioFirstOutboundStop_discr,coef_DistanceRatioFirstOutboundStop_discr util_DistanceRatioFirstInboundStop,Distance Ratio - First Inbound Stop,@(df.trip_num==1)*(df.outbound==0) * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioFirstInboundStop_mandatory,coef_DistanceRatioFirstInboundStop_mandatory,coef_DistanceRatioFirstInboundStop_mandatory,coef_DistanceRatioFirstInboundStop_maint,coef_DistanceRatioFirstInboundStop_maint,coef_DistanceRatioFirstInboundStop_maint,coef_DistanceRatioFirstInboundStop_discr,coef_DistanceRatioFirstInboundStop_discr,coef_DistanceRatioFirstInboundStop_discr,coef_DistanceRatioFirstInboundStop_discr util_DistanceRatioMandatoryOutboundTour,Distance Ratio - Mandatory Outbound Tour,(outbound)* mandTour * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioMandatoryOutboundTour_mandatory,coef_DistanceRatioMandatoryOutboundTour_mandatory,coef_DistanceRatioMandatoryOutboundTour_mandatory,,,,,,, util_DistanceRatioMandatoryInboundTour,Distance Ratio - Mandatory Inbound Tour,(outbound==0) * mandTour * ((_nd_DIST)/ (_nd_DIST + _dp_DIST)),coef_DistanceRatioMandatoryInboundTour_mandatory,coef_DistanceRatioMandatoryInboundTour_mandatory,coef_DistanceRatioMandatoryInboundTour_mandatory,,,,,,, -util_DistanceDeviationSquareWork,Distance Deviation Square - Work Tour purpose,"@df.workTour * np.power(_dist_dev,2)",coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,,,,,,, -util_DistanceDeviationSocial,Distance Deviation SocialTour purpose,socTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr -util_DistanceDeviationDiscr,Distance Deviation DiscrTour purpose,discTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr -util_DistanceDeviationAtwork_calibration,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib +util_dist_dev_SquareWork,Distance Deviation Square - Work Tour purpose,"@df.workTour * np.power(_dist_dev,2)",coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,coef_DistanceDeviationSquareWork_mandatory,,,,,,, +util_dist_dev_Social,Distance Deviation SocialTour purpose,socTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr +util_dist_dev_Discr,Distance Deviation DiscrTour purpose,discTour * _dist_dev,,,,,,,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr,coef_DistanceDeviationDiscr +util_dist_dev_Atwork_calibration,Distance Deviation - AtworkTour purpose,atworkTour * _dist_dev,,,,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib,coef_DistanceDeviationatwork_calib diff --git a/resident/configs/trip_destination_sample.csv b/resident/configs/trip_destination_sample.csv index 853a754..a89518d 100644 --- a/resident/configs/trip_destination_sample.csv +++ b/resident/configs/trip_destination_sample.csv @@ -2,7 +2,7 @@ Description,Expression,work,univ,school,escort,shopping,eatout,othmaint,social,o ,"_od_DIST@od_skims[('SOV_M_DIST', 'MD')]",1,1,1,1,1,1,1,1,1,1 ,"_dp_DIST@dp_skims[('SOV_M_DIST', 'MD')]",1,1,1,1,1,1,1,1,1,1 ,"_op_DIST@op_skims[('SOV_M_DIST', 'MD')]",1,1,1,1,1,1,1,1,1,1 -# next line gets max MAZ micromobility access time in destination TAZ +# next line gets max MAZ micromobility access time in destination TAZ,,,,,,,,,,, ,"_d_microAccTime@land_use.sort_values(by='ESCOOACCTIME',ascending=False).drop_duplicates('TAZ',keep='first').set_index('TAZ')['ESCOOACCTIME'].reindex(df.dest_taz)",1,1,1,1,1,1,1,1,1,1 #,,,,,,,,,,, size term,"@np.log1p(size_terms.get(df.dest_taz, df.purpose))",1,1,1,1,1,1,1,1,1,1 diff --git a/resident/configs/trip_mode_choice.csv b/resident/configs/trip_mode_choice.csv index 756e494..ecb7545 100644 --- a/resident/configs/trip_mode_choice.csv +++ b/resident/configs/trip_mode_choice.csv @@ -1,48 +1,48 @@ Label,Description,Expression,DRIVEALONE,SHARED2,SHARED3,WALK,BIKE,WALK_TRANSIT,PNR_TRANSIT,KNR_TRANSIT,BIKE_TRANSIT,TAXI,TNC_SINGLE,TNC_SHARED,SCH_BUS,EBIKE,ESCOOTER #,Drive alone,,,,,,,,,,,,,,,, util_DRIVEALONEFREE_Unavailable,Drive alone - Unavailable,sov_available == False,-999,,,,,,,,,,,,,, -util_Drive alone - In-vehicle time,Drive alone - In-vehicle time,(da_time_skims) * autoIVTFactor * time_factor,coef_ivt,,,,,,,,,,,,,, -util_Drive alone - cost,Drive alone - cost,"@(df.auto_op_cost * df.autoCPMFactor * df.da_dist_skims + df.da_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, -util_Drive alone - Parking cost ,Drive alone - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, -util_Drive alone - Terminal Time,Drive alone - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,coef_acctime,,,,,,,,,,,,,, +util_Drive_alone_In_vehicle_time,Drive alone - In-vehicle time,(da_time_skims) * autoIVTFactor * time_factor,coef_ivt,,,,,,,,,,,,,, +util_Drive_alone_cost,Drive alone - cost,"@(df.auto_op_cost * df.autoCPMFactor * df.da_dist_skims + df.da_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Parking_cost,Drive alone - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Terminal_Time,Drive alone - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,coef_acctime,,,,,,,,,,,,,, #,Shared ride2,,,,,,,,,,,,,,,, util_sr2_available,sr2 available,sr2_available == False,,-999,,,,,,,,,,,,, util_sr2_tourbike_disadvantage,sr2 tourbike disadvantage,tourBike,,-30,,,,,,,,,,,,, -util_Shared ride 2 - In -vehicle time,Shared ride 2 - In -vehicle time,(s2_time_skims) * autoIVTFactor * time_factor,,coef_ivt,,,,,,,,,,,,, -util_Shared ride 2 - cost,Shared ride 2 - cost,"@((df.auto_op_cost * df.autoCPMFactor * df.s2_dist_skims) + df.s2_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, -util_Shared ride 2 - Parking cost ,Shared ride 2 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS2))*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, -util_Shared ride 2 Terminal Time - acc,Shared ride 2 - Terminal Time ,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,coef_acctime,,,,,,,,,,,,, -util_Shared ride 2 _Two_person_household,Shared ride 2 - Two person household,@(df.hhsize == 2),,coef_size2_sr2,,,,,,,,,,,,, -util_Shared ride 2 _Three_person_household,Shared ride 2 - Three person household,@(df.hhsize == 3),,coef_size3_sr2,,,,,,,,,,,,, -util_Shared ride 2 _Four+_person_household,Shared ride 2 - Four plus person household,@(df.hhsize > 3),,coef_size4p_sr2,,,,,,,,,,,,, -util_Shared ride 2 - Female,Shared ride 2 - female,@(df.female == 1),,coef_female_sr2,,,,,,,,,,,,, +util_Shared_ride_2_In_vehicle_time,Shared ride 2 - In -vehicle time,(s2_time_skims) * autoIVTFactor * time_factor,,coef_ivt,,,,,,,,,,,,, +util_Shared_ride_2_cost,Shared ride 2 - cost,"@((df.auto_op_cost * df.autoCPMFactor * df.s2_dist_skims) + df.s2_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Parking_cost,Shared ride 2 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS2))*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Terminal_Time,Shared ride 2 - Terminal Time ,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,coef_acctime,,,,,,,,,,,,, +util_Shared_ride_2_Two_person_household,Shared ride 2 - Two person household,@(df.hhsize == 2),,coef_size2_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Three_person_household,Shared ride 2 - Three person household,@(df.hhsize == 3),,coef_size3_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Four_plus_person_household,Shared ride 2 - Four plus person household,@(df.hhsize > 3),,coef_size4p_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Female,Shared ride 2 - female,@(df.female == 1),,coef_female_sr2,,,,,,,,,,,,, #,Shared ride 3,,,,,,,,,,,,,,,, util_sr3_available,sr3 available,sr3_available == False,,,-999,,,,,,,,,,,, util_sr3_tourbike_disadvantage,sr3 tourbike disadvantage,tourBike,,,-30,,,,,,,,,,,, -util_Shared ride 3 - In -vehicle time,Shared ride 3 - In -vehicle time,(s3_time_skims) * autoIVTFactor * time_factor,,,coef_ivt,,,,,,,,,,,, -util_Shared ride 3 - Cost ,Shared ride 3 - cost,"@(df.auto_op_cost * df.s3_dist_skims * df.autoCPMFactor + df.s3_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, -util_Shared ride 3 - Parking cost ,Shared ride 3 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS3))*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, -util_Shared ride 3 - Terminal Time,Shared ride 3 - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,,coef_acctime,,,,,,,,,,,, -util_Shared ride 3 - Two_person_household,Shared ride 3 - Two person household,@(df.hhsize == 2),,,coef_size2_sr3p,,,,,,,,,,,, -util_Shared ride 3 - Three_person_household,Shared ride 3 - Three person household,@(df.hhsize == 3),,,coef_size3_sr3p,,,,,,,,,,,, -util_Shared ride 3 - Four+_person_household,Shared ride 3 - Four plus person household,@(df.hhsize > 3),,,coef_size4p_sr3p,,,,,,,,,,,, -util_Shared ride 3 - Female,Shared ride 3 - female,@(df.female == 1),,,coef_female_sr3p,,,,,,,,,,,, +util_Shared_ride_3_In_vehicle_time,Shared ride 3 - In -vehicle time,(s3_time_skims) * autoIVTFactor * time_factor,,,coef_ivt,,,,,,,,,,,, +util_Shared_ride_3_Cost,Shared ride 3 - cost,"@(df.auto_op_cost * df.s3_dist_skims * df.autoCPMFactor + df.s3_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Parking_cost,Shared ride 3 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS3))*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Terminal_Time,Shared ride 3 - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,,coef_acctime,,,,,,,,,,,, +util_Shared_ride_3_Two_person_household,Shared ride 3 - Two person household,@(df.hhsize == 2),,,coef_size2_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Three_person_household,Shared ride 3 - Three person household,@(df.hhsize == 3),,,coef_size3_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Four_plus_person_household,Shared ride 3 - Four plus person household,@(df.hhsize > 3),,,coef_size4p_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Female,Shared ride 3 - female,@(df.female == 1),,,coef_female_sr3p,,,,,,,,,,,, #,Walk,,,,,,,,,,,,,,,, #,school escorting can force longer walk trips so not turning off completely if walk tour,,,,,,,,,,,,,,,, -util_Walk - Unavailable,Walk - Unavailable,(walkAvailable == 0) & (tourWalk == 0),,,,-999,,,,,,,,,,, -util_Walk - Unavailable - walkTour,Walk - Unavailable - Walk Tour,(walkAvailable == 0) & (tourWalk == 1),,,,-20,,,,,,,,,,, -util_Walk - Female,Walk - Female,@df.female,,,,coef_female_nmot,,,,,,,,,,, -util_Walk - time,Walk - time - clipped for really long walk trips to avoid zero probs,@(df.walk_time_skims * df.time_factor).clip(upper=1000),,,,coef_walkTime,,,,,,,,,,, -util_Walk - Origin Mix,Walk - Origin Mix,oMGRAMix,,,,coef_oMix_nmot,,,,,,,,,,, -util_Walk - Origin Intersection Density,Walk - Origin Intersection Density,oMGRATotInt,,,,coef_oIntDen_nmot,,,,,,,,,,, -util_Walk - Destination Employment Density,Walk - Destination Employment Density,dMGRAEmpDen,,,,coef_dEmpDen_nmot,,,,,,,,,,, -util_Walk - Age 1-5 (school only),Walk - Age 1-6,"@df.age.between(1,5)",,,,coef_age1to5_nmot,,,,,,,,,,, -util_Walk - Age 6-12 (school only),Walk - Age 6-13,"@df.age.between(6,12)",,,,coef_age6to12_nmot,,,,,,,,,,, -util_Walk - Age 13-15 (school only),Walk - Age 13-16,"@df.age.between(13,15)",,,,coef_age13to15_nmot,,,,,,,,,,, +util_Walk_Unavailable,Walk - Unavailable,(walkAvailable == 0) & (tourWalk == 0),,,,-999,,,,,,,,,,, +util_Walk_Unavailable_walkTour,Walk - Unavailable - Walk Tour,(walkAvailable == 0) & (tourWalk == 1),,,,-20,,,,,,,,,,, +util_Walk_Female,Walk - Female,@df.female,,,,coef_female_nmot,,,,,,,,,,, +util_Walk_time,Walk - time - clipped for really long walk trips to avoid zero probs,@(df.walk_time_skims * df.time_factor).clip(upper=1000),,,,coef_walkTime,,,,,,,,,,, +util_Walk_Origin_Mix,Walk - Origin Mix,oMGRAMix,,,,coef_oMix_nmot,,,,,,,,,,, +util_Walk_Origin_Intersection_Density,Walk - Origin Intersection Density,oMGRATotInt,,,,coef_oIntDen_nmot,,,,,,,,,,, +util_Walk_Destination_Employment_Density,Walk - Destination Employment Density,dMGRAEmpDen,,,,coef_dEmpDen_nmot,,,,,,,,,,, +util_Walk_Age_1_5,Walk - Age 1-6,"@df.age.between(1,5)",,,,coef_age1to5_nmot,,,,,,,,,,, +util_Walk_Age_6_12,Walk - Age 6-13,"@df.age.between(6,12)",,,,coef_age6to12_nmot,,,,,,,,,,, +util_Walk_Age_13_15,Walk - Age 13-16,"@df.age.between(13,15)",,,,coef_age13to15_nmot,,,,,,,,,,, #,Bike,,,,,,,,,,,,,,,, -util_BIKE_Mode unavailable,Bike - Mode unavailable unless on bike tour,@(df.tourBike == 0)|(df.bike_time <= 0),,,,,-999,,,,,,,,,, -util_BIKE_Female - bike,Bike - Female,@df.female,,,,,coef_female_nmot,,,,,,,,,, -util_BIKE_Bike - logsum,Bike - logsum clipped to allow for long bike trips on school escort tours,@df.bikeLS.clip(lower=-100),,,,,coef_bikeLogsum,,,,,,,,,, +util_BIKE_Mode_unavailable,Bike - Mode unavailable unless on bike tour,@(df.tourBike == 0)|(df.bike_time <= 0),,,,,-999,,,,,,,,,, +util_BIKE_Female,Bike - Female,@df.female,,,,,coef_female_nmot,,,,,,,,,, +util_BIKE_logsum,Bike - logsum clipped to allow for long bike trips on school escort tours,@df.bikeLS.clip(lower=-100),,,,,coef_bikeLogsum,,,,,,,,,, #,WalktoTransit,,,,,,,,,,,,,,,, util_WalkTransit_Unavailable,WalkTransit_Available,walk_local_available == False,,,,,,-999,,,,,,,,, util_WALKLOC__In_vehicle_time,WALK_LOC - In-vehicle time,@(odt_skims['WTW_TIV']) * df.time_factor,,,,,,coef_ivt,,,,,,,,, @@ -55,10 +55,10 @@ util_WALK_LOC_wait_egress_time,WALK_LOC - Egress mt/nev wait time,"@np.where(df. util_WALK_LOC_transfer_walk_time,WALK_LOC - transfer walk time,@(odt_skims['WTW_AUX'])* df.time_factor,,,,,,coef_xwalk,,,,,,,,, util_WALK_LOC_transfers_penalty,WALK_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.outbound*df.mtnev_egr_xfer_out + ~df.outbound*df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor",,,,,,coef_xfer,,,,,,,,, util_WTW_FARE,WALK_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,coef_income,,,,,,,,, -util_WALK_LOC - Female,WALK_LOC - Female,@(df.female),,,,,,coef_female_tran,,,,,,,,, -util_WALK_LOC - Origin Mix,WALK_LOC - Origin Mix,oMGRAMix,,,,,,coef_oMix_wTran,,,,,,,,, -util_WALK_LOC - Origin Intersection Density,WALK_LOC - Origin Intersection Density,oMGRATotInt,,,,,,coef_oIntDen_wTran,,,,,,,,, -util_WALK_LOC - Destination Employment Density,WALK_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,coef_dEmpDen_wTran,,,,,,,,, +util_WALK_LOC_Female,WALK_LOC - Female,@(df.female),,,,,,coef_female_tran,,,,,,,,, +util_WALK_LOC_Origin_Mix,WALK_LOC - Origin Mix,oMGRAMix,,,,,,coef_oMix_wTran,,,,,,,,, +util_WALK_LOC_Origin_Intersection_Density,WALK_LOC - Origin Intersection Density,oMGRATotInt,,,,,,coef_oIntDen_wTran,,,,,,,,, +util_WALK_LOC_Destination_Employment_Density,WALK_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,coef_dEmpDen_wTran,,,,,,,,, #,PNR_LOC,,,,,,,,,,,,,,,, # FIXME need PNR utilties for new PNR treatment if not restricting stops on PNR tours,,,,,,,,,,,,,,,,, util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,-999,-999,-999,-999,-999,,-999,-999,-999,-999,-999,-999,-999, @@ -87,9 +87,9 @@ util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,- # util_PNR_LOC - Female,PNR_LOC - Female,@(df.female),,,,,,,coef_female_tran,,,,,,,, # util_PNR_LOC - Destination Employment Density,PNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,coef_dEmpDen_dTran,,,,,,,, #,,,,,,,,,,,,,,,,, -util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,(knr_local_available == False)|(KNR_available==0),,,,,,,,-999,,,,,,, +util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,(knr_local_available == False)|(KNR_implemented_and_available==0),,,,,,,,-999,,,,,,, util_KNR_LOC_In_vehicle_time,KNR_LOC - In-vehicle time,@(df.ktw_odt_ivt) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, -util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(df.odt_fwt) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, +util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(df.ktw_odt_fwt) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@(df.ktw_odt_xwt) * df.time_factor * df.outbound,,,,,,,,coef_xwait,,,,,,, util_KNR_LOC_number_of_transfers,KNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(df.ktw_odt_xfr + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,coef_xferdrive,,,,,,, util_KNR_LOC_KNR_time,KNR_LOC - KNR time,@(df.ktw_odt_acc) * df.time_factor * df.outbound,,,,,,,,coef_acctime,,,,,,, @@ -108,55 +108,60 @@ util_KNRIN_LOC_Walk_access_time,KNRIN_LOC - Walk access time,"@np.where(df.nev_l util_KNRIN_LOC_wait_access_time,KNRIN_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_access_available_in, nevWaitTime, np.where(df.microtransit_local_access_available_in, microtransitWaitTime, 0)) * df.time_factor * ~df.outbound",,,,,,,,coef_wait,,,,,,, util_KNRIN_LOC_Walk_other_time,KNRIN_LOC - Walk other time,@(df.wtk_odt_aux) * df.time_factor * ~df.outbound,,,,,,,,coef_xwalk,,,,,,, util_KNRIN_LOC_Fare_and_operating_cost,KNRIN_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * ~df.outbound",,,,,,,,coef_income,,,,,,, -util_KNR_LOC - Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, -util_KNR_LOC - Destination Employment Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, +util_KNR_LOC_Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, +util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, #,BiketoTransit,,,,,,,,,,,,,,,, -util_WalkTransit_Unavailable,WalkTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, -util_BIKE_TRANSIT__In_vehicle_time,BIKE_TRANSIT - In-vehicle time,@(odt_skims['WTW_TIV']) * df.time_factor,,,,,,,,,coef_ivt,,,,,, -util_BIKE_TRANSIT_iwait_time,BIKE_TRANSIT - wait time,@(odt_skims['WTW_FWT']) * df.time_factor,,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_wait_time,BIKE_TRANSIT - transfer wait time,@(odt_skims['WTW_XWT'])* df.time_factor,,,,,,,,,coef_xwait,,,,,, +util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, -util_BIKE_TRANSIT_transfer_walk_time,BIKE_TRANSIT - transfer walk time,@(odt_skims['WTW_AUX'])* df.time_factor,,,,,,,,,coef_xwalk,,,,,, -util_BIKE_TRANSIT_transfers_penalty,BIKE_TRANSIT - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.outbound*df.mtnev_egr_xfer_out + ~df.outbound*df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, -util_BIKE_TRANSIT - Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, -util_BIKE_TRANSIT - Origin Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, -util_BIKE_TRANSIT - Origin Intersection Density,BIKE_TRANSIT - Origin Intersection Density,oMGRATotInt,,,,,,,,,coef_oIntDen_wTran,,,,,, -util_BIKE_TRANSIT - Destination Employment Density,BIKE_TRANSIT - Destination Employment Density,dMGRAEmpDen,,,,,,,,,coef_dEmpDen_wTran,,,,,, +util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, +util_BIKE_TRANSIT_Origin_Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, +util_BIKE_TRANSIT_Origin_Intersection_Density,BIKE_TRANSIT - Origin Intersection Density,oMGRATotInt,,,,,,,,,coef_oIntDen_wTran,,,,,, +util_BIKE_TRANSIT_Destination_Employment_Density,BIKE_TRANSIT - Destination Employment Density,dMGRAEmpDen,,,,,,,,,coef_dEmpDen_wTran,,,,,, #,Taxi,,,,,,,,,,,,,,,, util_Taxi_Unavailable,Taxi - Unavailable,RideHail_available==0,,,,,,,,,,-999,,,,, -util_Taxi - In-vehicle time,Taxi - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,coef_ivt,,,,, -util_Taxi - Wait time,Taxi - Wait time,origTaxiWaitTime * time_factor,,,,,,,,,,coef_wait,,,,, -util_Taxi - Fare,Taxi - Fare,"@(((Taxi_baseFare + df.s2_dist_skims * Taxi_costPerMile + df.s2_time_skims * Taxi_costPerMinute) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,coef_income,,,,, +util_Taxi_In_vehicle_time,Taxi - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,coef_ivt,,,,, +util_Taxi_Wait_time,Taxi - Wait time,origTaxiWaitTime * time_factor,,,,,,,,,,coef_wait,,,,, +util_Taxi_Fare,Taxi - Fare,"@(((Taxi_baseFare + df.s2_dist_skims * Taxi_costPerMile + df.s2_time_skims * Taxi_costPerMinute) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,coef_income,,,,, #,TNC Single,,,,,,,,,,,,,,,, -util_TNC Single_Unavailable,TNC Single - Unavailable,RideHail_available==0,,,,,,,,,,,-999,,,, -util_TNC Single - In-vehicle time,TNC Single - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,,coef_ivt,,,, -util_TNC Single - Wait time,TNC Single - Wait time,origSingleTNCWaitTime * time_factor,,,,,,,,,,,coef_wait,,,, -util_TNC Single - Cost,TNC Single - Cost,"@((np.maximum(TNC_single_baseFare + df.s2_dist_skims * TNC_single_costPerMile + df.s2_time_skims * TNC_single_costPerMinute, TNC_single_costMinimum) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,coef_income,,,, +util_TNC_Single_Unavailable,TNC Single - Unavailable,RideHail_available==0,,,,,,,,,,,-999,,,, +util_TNC_Single_In_vehicle_time,TNC Single - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,,coef_ivt,,,, +util_TNC_Single_Wait_time,TNC Single - Wait time,origSingleTNCWaitTime * time_factor,,,,,,,,,,,coef_wait,,,, +util_TNC_Single_Cost,TNC Single - Cost,"@((np.maximum(TNC_single_baseFare + df.s2_dist_skims * TNC_single_costPerMile + df.s2_time_skims * TNC_single_costPerMinute, TNC_single_costMinimum) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,coef_income,,,, #,TNC Shared,,,,,,,,,,,,,,,, -util_TNC Shared_switch,TNC Shared - switch turn-off (depends on data availability),@(((~df.nev_available) & (~df.microtransit_available) & (scenarioYear==2022)) | (df.RideHail_available==0)),,,,,,,,,,,,-999,,, -util_TNC Shared - In-vehicle time,TNC Shared - In-vehicle time,"@(np.where(df.nev_available, df.nev_time, np.where(df.microtransit_available, df.microtransit_time, df.s3_time_skims * TNC_shared_IVTFactor))) * df.time_factor",,,,,,,,,,,,coef_ivt,,, -util_TNC Shared - Wait time,TNC Shared - Wait time,"@np.where(df.nev_available, nevWaitTime, np.where(df.microtransit_available, microtransitWaitTime, df.origSharedTNCWaitTime)) * df.time_factor",,,,,,,,,,,,coef_wait,,, -util_TNC Shared - Cost,TNC Shared - Cost,"@np.where(df.nev_available, nevCost, np.where(df.microtransit_available, microtransitCost, (np.maximum(TNC_shared_baseFare + df.s3_dist_skims * TNC_shared_costPerMile + df.s3_time_skims * TNC_shared_costPerMinute, TNC_shared_costMinimum) + df.s3_cost_skims)))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,,coef_income,,, +util_TNC_Shared_switch,TNC Shared - switch turn-off (depends on data availability),@(((~df.nev_available) & (~df.microtransit_available) & (scenarioYear==2022)) | (df.RideHail_available==0)),,,,,,,,,,,,-999,,, +util_TNC_Shared_In_vehicle_time,TNC Shared - In-vehicle time,"@(np.where(df.nev_available, df.nev_time, np.where(df.microtransit_available, df.microtransit_time, df.s3_time_skims * TNC_shared_IVTFactor))) * df.time_factor",,,,,,,,,,,,coef_ivt,,, +util_TNC_Shared_Wait_time,TNC Shared - Wait time,"@np.where(df.nev_available, nevWaitTime, np.where(df.microtransit_available, microtransitWaitTime, df.origSharedTNCWaitTime)) * df.time_factor",,,,,,,,,,,,coef_wait,,, +util_TNC_Shared_Cost,TNC Shared - Cost,"@np.where(df.nev_available, nevCost, np.where(df.microtransit_available, microtransitCost, (np.maximum(TNC_shared_baseFare + df.s3_dist_skims * TNC_shared_costPerMile + df.s3_time_skims * TNC_shared_costPerMinute, TNC_shared_costMinimum) + df.s3_cost_skims)))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,,coef_income,,, util_calib_flexfleet,Calibration for flexible fleets,microtransit_available | nev_available,,,,,,,,,,,,coef_calib_flexfleet,,, #,School bus,,,,,,,,,,,,,,,, -util_School Bus - Unavailable,School Bus - Unavailable,SCHBUS_available==0,,,,,,,,,,,,,-999,, -util_School Bus - In-vehicle Time at 20 miles per hour,School Bus - In-vehicle Time at 20 miles per hour,(da_dist_skims)* 3 * time_factor,,,,,,,,,,,,,coef_ivt,, -util_School Bus - Wait Time (asserted),School Bus - Wait Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_wait,, -util_School Bus - Walk Time (asserted),School Bus - Walk Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_acctime,, -util_School Bus - Age 6 to 12,School Bus - Age 6 to 12,@(df.age > 5) * (df.age < 13),,,,,,,,,,,,,coef_age6to12_schb,, +util_School_Bus_Unavailable,School Bus - Unavailable,SCHBUS_available==0,,,,,,,,,,,,,-999,, +util_School_Bus_In_vehicle_Time,School Bus - In-vehicle Time at 20 miles per hour,(da_dist_skims)* 3 * time_factor,,,,,,,,,,,,,coef_ivt,, +util_School_Bus_Wait_Time,School Bus - Wait Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_wait,, +util_School_Bus_Walk_Time,School Bus - Walk Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_acctime,, +util_School_Bus_Age_6_to_12,School Bus - Age 6 to 12,@(df.age > 5) * (df.age < 13),,,,,,,,,,,,,coef_age6to12_schb,, #,Escooter,,,,,,,,,,,,,,,, -util_Escooter - Unavailable,Escooter - Unavailable,Escooter_available==0,,,,,,,,,,,,,,,-999 +util_Escooter_Unavailable,Escooter - Unavailable,Escooter_available==0,,,,,,,,,,,,,,,-999 #,Ebike,,,,,,,,,,,,,,,, -util_Ebike - Unavailable,Ebike - Unavailable,Ebike_available==0,,,,,,,,,,,,,,-999, +util_Ebike_Unavailable,Ebike - Unavailable,Ebike_available==0,,,,,,,,,,,,,,-999, #,indiv tour ASCs,,,,,,,,,,,,,,,, util_calib_numberofparticipan,abm 2+ calibration,(numberOfParticipantsInJointTour<=2)&(jointTour==1),,,coef_calib_numberofparticipants_SHARED3,,,,,,,,,,,, -util_calib_KNR Transit - Distance Parameter,abm 2+ calibration,"@df.c_ivt*5*np.maximum((10-df.da_dist_skims),0)*0.5",,,,,,,,coef_calib_civt5max10sovdistski_KNR_TRANSIT,coef_calib_civt5max10sovdistski_TNC_TRANSIT,,,,,, -util_calib_Walk-Transit - Distance Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((200+(-133*df.da_dist_skims)),0)*0.5",,,,,,coef_calib_civtmax200133sovdist_WALK_TRANSIT,,,,,,,,, -util_calib_PNR-Transit - Distance Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((45+(-2.5*df.da_dist_skims)),0)*0.5",,,,,,,coef_calib_civtmax4525sovdistsk_PNR_TRANSIT,,,,,,,, +util_calib_KNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*5*np.maximum((10-df.da_dist_skims),0)*0.5",,,,,,,,coef_calib_civt5max10sovdistski_KNR_TRANSIT,coef_calib_civt5max10sovdistski_TNC_TRANSIT,,,,,, +util_calib_Walk_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((200+(-133*df.da_dist_skims)),0)*0.5",,,,,,coef_calib_civtmax200133sovdist_WALK_TRANSIT,,,,,,,,, +util_calib_PNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((45+(-2.5*df.da_dist_skims)),0)*0.5",,,,,,,coef_calib_civtmax4525sovdistsk_PNR_TRANSIT,,,,,,,, util_calib_esctour1,abm 2+ calibration,tour_type=='escort',,,,coef_calib_esctour1_WALK,,,,,,,,,,, #,,,,,,,,,,,,,,,,, util_calib_tourda,abm 2+ calibration,tourDA,,coef_calib_tourda_SHARED2,coef_calib_tourda_SHARED3,coef_calib_tourda_WALK,coef_calib_tourda_BIKE,coef_calib_tourda_WALK_TRANSIT,coef_calib_tourda_PNR_TRANSIT,coef_calib_tourda_KNR_TRANSIT,coef_calib_tourda_TNC_TRANSIT,coef_calib_tourda_TAXI,coef_calib_tourda_TNC_SINGLE,coef_calib_tourda_TNC_SHARED,coef_calib_tourda_SCH_BUS,-999,-999 diff --git a/resident/configs/trip_mode_choice.yaml b/resident/configs/trip_mode_choice.yaml index 7f87b22..ca7e028 100644 --- a/resident/configs/trip_mode_choice.yaml +++ b/resident/configs/trip_mode_choice.yaml @@ -82,6 +82,7 @@ TOURS_MERGED_CHOOSER_COLUMNS: - end - transit_pass_subsidy - transit_pass_ownership + - telecommute_frequency MODE_CHOICE_LOGSUM_COLUMN_NAME: mode_choice_logsum diff --git a/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv b/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv index 10a0214..93df057 100644 --- a/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv +++ b/resident/configs/trip_mode_choice_annotate_trips_preprocessor.csv @@ -47,12 +47,12 @@ popempdenpermi calculated in preprocessor and input via landuse file,_origin_den ,_dest_density_measure,"reindex(land_use.popempdenpermi, df[dest_col_name])" ,origin_density,"pd.cut(_origin_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)" ,dest_density,"pd.cut(_dest_density_measure, bins=[-np.inf, 500, 2000, 5000, 15000, np.inf], labels=[5, 4, 3, 2, 1]).astype(int)" -Origin MGRA Dwelling Unit Density,oMGRADUDen,"reindex(land_use.duden,df.origin)" -Origin MGRA Employment Density,oMGRAEmpDen,"reindex(land_use.empden,df.origin)" -Origin MGRA Total Intersections,oMGRATotInt,"reindex(land_use.totint,df.origin)" -Destination MGRA Dwelling Unit Density,dMGRADUDen,"reindex(land_use.duden,df.destination)" -Destination MGRA Employment Density,dMGRAEmpDen,"reindex(land_use.empden,df.destination)" -Destination MGRA Total Intersections,dMGRATotInt,"reindex(land_use.totint,df.destination)" +Origin MGRA Dwelling Unit Density,oMGRADUDen,"reindex(land_use.duden,df.origin).clip(upper=300)" +Origin MGRA Employment Density,oMGRAEmpDen,"reindex(land_use.empden,df.origin).clip(upper=300)" +Origin MGRA Total Intersections,oMGRATotInt,"reindex(land_use.totint,df.origin).clip(upper=300)" +Destination MGRA Dwelling Unit Density,dMGRADUDen,"reindex(land_use.duden,df.destination).clip(upper=300)" +Destination MGRA Employment Density,dMGRAEmpDen,"reindex(land_use.empden,df.destination).clip(upper=300)" +Destination MGRA Total Intersections,dMGRATotInt,"reindex(land_use.totint,df.destination).clip(upper=300)" Origin MGRA Mix,oMGRAMix,"np.where(oMGRADUDen+oMGRAEmpDen > 0,(oMGRADUDen*oMGRAEmpDen)/(oMGRADUDen+oMGRAEmpDen),0)" Destination MGRA Mix,dMGRAMix,"np.where(dMGRADUDen+dMGRAEmpDen > 0,(dMGRADUDen*dMGRAEmpDen)/(dMGRADUDen+dMGRAEmpDen),0)" ,origin_zone_taxi_wait_time_mean,"origin_density.map({k: v for k, v in Taxi_waitTime_mean.items()})" @@ -133,8 +133,9 @@ half tour duration,tourDuration,"reindex(tours.duration, df.tour_id)/2" new daily parking cost with reimbursement,parkingCostDay,"reindex(land_use.exp_daily, tour_dest)" new hourly parking cost with reimbursement,parkingCostHour,"reindex(land_use.exp_hourly, tour_dest)" new monthly parking cost with reimbursement,parkingCostMonth,"reindex(land_use.exp_monthly, tour_dest)" -Tour parking cost for full-time workers and university students,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * is_indiv * np.minimum(parkingCostMonth/22, parkingCostDay)" -Tour parking cost for full-time workers and university students,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * is_indiv * np.minimum(_parkingCostBeforeReimb, parkingCostHour * tourDuration)" +Tour parking cost for full-time workers and university students that telecommute less than 2 days,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * df.telecommute_frequency.isin(['No_Telecommute', '1_day_week']) * is_indiv * np.minimum(parkingCostMonth, parkingCostDay)" +Tour parking cost for full-time workers and university students that telecommute less than 2 days,_parkingCostBeforeReimb,"df.ptype.isin([1,3]) * df.telecommute_frequency.isin(['No_Telecommute', '1_day_week']) * is_indiv * np.minimum(_parkingCostBeforeReimb, parkingCostHour * tourDuration)" +Tour parking cost for the rest of full-time workers and university students,_parkingCostBeforeReimb,"np.where(df.ptype.isin([1,3]) * ~df.telecommute_frequency.isin(['No_Telecommute', '1_day_week']) * is_indiv, np.minimum(parkingCostDay, parkingCostHour * tourDuration), _parkingCostBeforeReimb)" Tour parking cost for other person types,parkingCostBeforeReimb,"np.where((~df.ptype.isin([1,3]) * is_indiv) | (is_joint), np.minimum(parkingCostDay, parkingCostHour * tourDuration), _parkingCostBeforeReimb)" Reimbursement applies to this tour purpose,reimbursePurpose,"reindex(tours.tour_type, df.tour_id)=='work'" Effective parking cost for free parkers,_parkingCost,"0 * np.where(reimbursePurpose*freeOnsite,1,0)" @@ -172,7 +173,7 @@ no long walks,walkAvailable,"np.where((walk_time_skims < max_walk_time),1,0) * n ,Escooter_available,"(bike_time>0) * np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourPNR)|(tourKNR)|(tourBNR)|(tourMaaS)|(tourSchBus)|(tourEbike),0,1)" ,Ebike_available,"(bike_time>0) * np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourPNR)|(tourKNR)|(tourBNR)|(tourMaaS)|(tourSchBus)|(tourEscooter),0,1)" ,PNR_available,"(autos>0) * (age>15) * np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourKNR)|(tourBNR)|(tourMaaS)|(tourSchBus)|(tourEbike)|(tourEscooter),0,1)" -,KNR_available,"np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourPNR)|(tourBNR)|(tourMaaS)|(tourSchBus)|(tourEbike)|(tourEscooter),0,1)" +,KNR_implemented_and_available,"np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourPNR)|(tourBNR)|(tourMaaS)|(tourSchBus)|(tourEbike)|(tourEscooter),0,1) if KNR_available else 0" ,BNR_available,"np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourPNR)|(tourKNR)|(tourMaaS)|(tourSchBus)|(tourEbike)|(tourEscooter),0,1)" ,RideHail_available,"np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourPNR)|(tourKNR)|(tourBNR)|(tourSchBus)|(tourEbike)|(tourEscooter),0,1)" ,SCHBUS_available,"(df.tour_type =='school') & (df.ptype!=3)*np.where((tourDA)|(tourS2)|(tourS3)|(tourWalk)|(tourBike)|(tourWTran)|(tourPNR)|(tourKNR)|(tourBNR)|(tourMaaS)|(tourEbike)|(tourEscooter),0,1)" @@ -245,16 +246,17 @@ microtransit/nev egress transfer,mtnev_egr_xfer_out,microtransit_local_egress_av microtransit/nev egress transfer,mtnev_egr_xfer_in,microtransit_local_egress_available_in | nev_local_egress_available_in #,, transit subsidi pass discount,transitSubsidyPassDiscount,"np.where(df.transit_pass_subsidy | df.transit_pass_ownership,0,1)" -#KNR times +#KNR times,, ,ktw_odt_ivt,"odt_skims['KTW_TIV'] if KNR_available else 0" ,ktw_odt_fwt,"odt_skims['KTW_FWT'] if KNR_available else 0" ,ktw_odt_xwt,"odt_skims['KTW_XWT'] if KNR_available else 0" ,ktw_odt_xfr,"odt_skims['KTW_XFR'] if KNR_available else 0" ,ktw_odt_acc,"odt_skims['KTW_ACC'] if KNR_available else 0" ,ktw_odt_aux,"odt_skims['KTW_AUX'] if KNR_available else 0" +,ktw_odt_egr,"odt_skims['KTW_EGR'] if KNR_available else 0" ,wtk_odt_egr,"odt_skims['WTK_EGR'] if KNR_available else 0" ,wtk_odt_tiv,"odt_skims['WTK_TIV'] if KNR_available else 0" ,wtk_odt_fwt,"odt_skims['WTK_FWT'] if KNR_available else 0" ,wtk_odt_xwt,"odt_skims['WTK_XWT'] if KNR_available else 0" -,wtw_odt_xfr,"odt_skims['WTK_XFR'] if KNR_available else 0" +,wtk_odt_xfr,"odt_skims['WTK_XFR'] if KNR_available else 0" ,wtk_odt_aux,"odt_skims['WTK_AUX'] if KNR_available else 0" \ No newline at end of file diff --git a/resident/configs/trip_scheduling_preprocessor.csv b/resident/configs/trip_scheduling_preprocessor.csv index 732a58d..fd4f40d 100644 --- a/resident/configs/trip_scheduling_preprocessor.csv +++ b/resident/configs/trip_scheduling_preprocessor.csv @@ -1,6 +1,6 @@ Description,Target,Expression ,periods_left,(df.latest - df.earliest) -# binning the periods differently for inbound and outbound +# binning the periods differently for inbound and outbound,, ,periods_left_min,"np.where(df['outbound'], periods_left.clip(upper=25), periods_left.clip(upper=34))" ,periods_left_max,"np.where(((periods_left >= 25) & (df['outbound'])) | ((periods_left >= 34) & (~df['outbound'])), 47, periods_left)" ,tour_purpose,"reindex(tours.tour_type, df.tour_id)" diff --git a/resident/configs/vehicle_allocation.csv b/resident/configs/vehicle_allocation.csv index 7a4bd77..c5c83cd 100644 --- a/resident/configs/vehicle_allocation.csv +++ b/resident/configs/vehicle_allocation.csv @@ -1,15 +1,15 @@ Label,Description,Expression,veh_num1,veh_num2,veh_num3,veh_num4,non_hh_veh -#,Availability Conditions,,,, +#,Availability Conditions,,,,,, util_alt1_unavail,Household does not own vehicle,"veh_num1.isna() | (veh_num1 == '')",coef_unavail,0,0,0,0 util_alt2_unavail,Household does not own vehicle,"veh_num2.isna() | (veh_num2 == '')",0,coef_unavail,0,0,0 util_alt3_unavail,Household does not own vehicle,"veh_num3.isna() | (veh_num3 == '')",0,0,coef_unavail,0,0 util_alt4_unavail,Household does not own vehicle,"veh_num4.isna() | (veh_num4 == '')",0,0,0,coef_unavail,0 -#,BEV Range,,,, +#,BEV Range,,,,,, util_dstgtrng1,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_1) & (df.fuel_type_1 == 'BEV'), 1, 0)",coef_dstgtrng,0,0,0,0 util_dstgtrng2,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_2) & (df.fuel_type_2 == 'BEV'), 1, 0)",0,coef_dstgtrng,0,0,0 util_dstgtrng3,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_3) & (df.fuel_type_3 == 'BEV'), 1, 0)",0,0,coef_dstgtrng,0,0 util_dstgtrng4,Round trip tour distance > BEV range,"@np.where((df.tot_tour_dist > df.Range_4) & (df.fuel_type_4 == 'BEV'), 1, 0)",0,0,0,coef_dstgtrng,0 -#,Vehicles & Driver interactions,,,, +#,Vehicles & Driver interactions,,,,,, util_vehltdr_nh,Vehicles < Drivers -- Non-Household Vehicle,"hh_veh_lt_drivers",0,0,0,0,coef_vehltdr_nh util_vehltdr_nh,Vehicles > Drivers -- Non-Household Vehicle,"hh_veh_gt_drivers",0,0,0,0,coef_vehgtdr_nh util_vehltdr_van1,Vehicles > Drivers -- Van alt 1,"hh_veh_gt_drivers * (body_type_1 == 'Van')",coef_vehltdr_van,0,0,0,0 @@ -40,7 +40,7 @@ util_vehltdr_age1,Vehicles > Drivers -- Age alt 1,"hh_veh_gt_drivers * age_1",co util_vehltdr_age2,Vehicles > Drivers -- Age alt 2,"hh_veh_gt_drivers * age_2",0,coef_vehltdr_age,0,0,0 util_vehltdr_age3,Vehicles > Drivers -- Age alt 3,"hh_veh_gt_drivers * age_3",0,0,coef_vehltdr_age,0,0 util_vehltdr_age4,Vehicles > Drivers -- Age alt 4,"hh_veh_gt_drivers * age_4",0,0,0,coef_vehltdr_age,0 -#,Occupancy interactions,,,, +#,Occupancy interactions,,,,,, util_maxocc_van1,Maximum Occupancy -- Van alt 1,"@occup * (df.body_type_1 == 'Van')",coef_maxocc_van,0,0,0,0 util_maxocc_van2,Maximum Occupancy -- Van alt 2,"@occup * (df.body_type_2 == 'Van')",0,coef_maxocc_van,0,0,0 util_maxocc_van3,Maximum Occupancy -- Van alt 3,"@occup * (df.body_type_3 == 'Van')",0,0,coef_maxocc_van,0,0 @@ -62,7 +62,7 @@ util_maxocc_age2,Maximum Occupancy -- Age alt 2,"@occup * df.age_2",0,coef_maxoc util_maxocc_age3,Maximum Occupancy -- Age alt 3,"@occup * df.age_3",0,0,coef_maxocc_age,0,0 util_maxocc_age4,Maximum Occupancy -- Age alt 4,"@occup * df.age_4",0,0,0,coef_maxocc_age,0 util_maxocc_nh,Maximum Occupancy -- Age alt 1,"@occup",0,0,0,0,util_maxocc_nh -#,Alternative Specific Constants,,,, +#,Alternative Specific Constants,,,,,, util_non_hh,Non-Household Vehicle Constant,"1",0,0,0,0,coef_non_hh util_van1,Van ASC alt 1,"(body_type_1 == 'Van')",coef_van,0,0,0,0 util_van2,Van ASC alt 2,"(body_type_2 == 'Van')",0,coef_van,0,0,0 diff --git a/resident/configs/workplace_location.yaml b/resident/configs/workplace_location.yaml index 0a86fe5..99fabd0 100644 --- a/resident/configs/workplace_location.yaml +++ b/resident/configs/workplace_location.yaml @@ -1,5 +1,5 @@ SAMPLE_SIZE: 30 -ESTIMATION_SAMPLE_SIZE: 10 +ESTIMATION_SAMPLE_SIZE: 30 SIMULATE_CHOOSER_COLUMNS: - income_segment diff --git a/resident/configs_estimation/destination_choice_size_terms.csv b/resident/configs_estimation/destination_choice_size_terms.csv new file mode 100644 index 0000000..329f5a4 --- /dev/null +++ b/resident/configs_estimation/destination_choice_size_terms.csv @@ -0,0 +1,39 @@ +model_selector,segment,TOTHHS,TOTPOP,EMP_NRM,EMP_CON,EMP_MFG,EMP_WT,EMP_TWU,EMP_RET,EMP_IFRPBS,EMP_HCS,EMP_OSV,EMP_GOV,EMP_EDU,EMP_AER,EMP_AFS,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,COLLEGEENROLL,ACTIVE_ACRES,EXTERNAL,ACRES +workplace,mngt_busi_scic_arts,0,0,0.023150473,0.105478261,0.033921273,0.520588696,0.019155288,0.063194096,1,0.12997306,0.101893393,0.357056089,0.046020203,0.044384337,0.014582422,0,0,0,0,0,0,0 +workplace,white_collar,0,0,0.011768937,0.051276887,0.174045033,1,0.206618229,0.914135674,0.494698223,0.170534494,0.142953744,0.337702324,0.048183584,0.052183296,0.031177613,0,0,0,0,0,0,0 +workplace,blue_collar,0,0,0.044941354,0.059838173,0.160289782,0.055761149,0.692090573,0.577996613,0.289719626,0.051119614,0.300100358,0.169102427,0.010851157,0.045537226,0.039515775,0,0,0,0,0,0,0 +workplace,sales_office,0,0,0.03214445,0.013782902,0.002031041,0.064277161,0.007689779,0.04669046,0.477412008,0.145096152,0.403566649,0.565075489,0.264904083,0.154746531,0.079950222,0,0,0,0,0,0,0 +workplace,nat_res_cnstr_maint,0,0,0.114467809,1,0.019444044,0.053921216,0.042038744,0.057720006,0.149701138,0.007849633,0.160935475,0.137710644,0.014673052,0.021406453,0.007723607,0,0,0,0,0,0,0 +workplace,prod_trans_move,0,0,0.044941354,0.059838173,0.160289782,0.055761149,0.692090573,0.577996613,0.289719626,0.051119614,0.300100358,0.169102427,0.010851157,0.045537226,0.039515775,0,0,0,0,0,0,0 +workplace,missing,0,0,0.03214445,0.013782902,0.002031041,0.064277161,0.007689779,0.04669046,0.477412008,0.145096152,0.403566649,0.565075489,0.264904083,0.154746531,0.079950222,0,0,0,0,0,0,0 +school,preschool,0,0.1888,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0 +school,gradeschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +school,highschool,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0 +school,university,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0 +non_mandatory,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0,0.001 +non_mandatory,shopping,0.01,0,0,0,0,0,0,1,0.1,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 +non_mandatory,othmaint,0.01,0,0.1,0.1,0.1,0.1,0.1,1.60296,0.42255,0.42255,0.1,0.24001,0.1,0.1,0.1,0,0,0,0,0.1,0,0.001 +non_mandatory,eatout,0.5512,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0,0,0,0,0.1,0,0.001 +non_mandatory,social,0.3006,0,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0.1,0,0.001 +non_mandatory,othdiscr,0.04333,0,0,0,0,0.004465,0,0.042025,0.004465,0,1,0.005953,0,0.20337,0.03453,0,0.03167,0.05136,0.02258,3.71685,0,0.001 +atwork,atwork,0,0,0.1,0.1,0.1,0.1,0.1,0.104,0.0145,0.1,0.1,0.1,0.1,0.1,0.1,0,0,0,0,0,0,0.001 +trip,work,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.001 +trip,escort,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.1,0,0.001 +trip,shopping,0.000001,0,0,0,0,0,0,0.375,0,0,0,0,0,0,0,0.0001,0,0,0,0.1,0,0.001 +trip,othmaint,0.000001,0,0,0,0,0,0,1.2379255,0.025,1.464014,0,0.661904,0,0,0,0.0001,0,0,0,0.1,0,0.001 +trip,eatout,0.010162,0,0,0,0,0,0,0.0689145,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 +trip,social,0.495249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0.001 +trip,othdiscr,0.027342,0,0,0,0,0,0,0.0194215,0,0,1,0,0,0.473744,0.092343,0,0,0,0,3.71685,0,0.001 +trip,univ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.001 +trip,school,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0.001 +# not needed as school is not chosen as an intermediate trip destination,,,,,,,,,,,,,,,,,,,,,,, +#trip,gradeschool,0,,,,,,,,,,,,,,,,,,,,, +#trip,highschool,0,,,,,,,,,,,,,,,,,,,,, +external_workplace,external_workplace,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_nonwork,external_nonwork,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,escort,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,shopping,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,othmaint,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,eatout,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,social,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 +external_non_mandatory,othdiscr,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0 diff --git a/resident/configs_estimation/estimation.yaml b/resident/configs_estimation/estimation.yaml new file mode 100644 index 0000000..621e231 --- /dev/null +++ b/resident/configs_estimation/estimation.yaml @@ -0,0 +1,109 @@ +EDB_FILETYPE: parquet # options: csv, pkl, parquet +DELETE_MP_SUBDIRS: True + +enable: True + +bundles: + - license_holding_status + - bike_comfort + - auto_ownership + - work_from_home + - external_worker_identification + - external_workplace_location + - school_location + - workplace_location + - vehicle_type_choice + - transit_pass_subsidy + - transit_pass_ownership + - free_parking + - telecommute_frequency + - cdap + - mandatory_tour_frequency + - mandatory_tour_scheduling_work + - mandatory_tour_scheduling_school + - mandatory_tour_scheduling_univ + - school_escorting + - joint_tour_frequency_composition + - external_joint_tour_identification + - joint_tour_participation + - joint_tour_destination + - joint_tour_scheduling + - non_mandatory_tour_frequency + - external_non_mandatory_identification + - external_non_mandatory_destination + - non_mandatory_tour_destination + - non_mandatory_tour_scheduling + - vehicle_allocation + # - park_and_ride_lot_choice + - tour_mode_choice + - atwork_subtour_frequency + - atwork_subtour_destination + - atwork_subtour_scheduling + - atwork_subtour_mode_choice + - stop_frequency + - trip_purpose + - trip_destination + - trip_scheduling + - trip_mode_choice + +# - atwork_subtour_mode_choice subtours.tour_mode + +survey_tables: + households: + file_name: override_households.csv + index_col: household_id + persons: + file_name: override_persons.csv + index_col: person_id + tours: + file_name: override_tours.csv + index_col: tour_id + joint_tour_participants: + file_name: override_joint_tour_participants.csv + index_col: participant_id + trips: + file_name: override_trips.csv + index_col: trip_id + +estimation_table_types: + license_holding_status: simple_simulate + bike_comfort: simple_simulate + work_from_home: simple_simulate + external_worker_identification: simple_simulate + external_workplace_location: interaction_sample_simulate + school_location: interaction_sample_simulate + workplace_location: interaction_sample_simulate + transit_pass_subsidy: simple_simulate + transit_pass_ownership: simple_simulate + auto_ownership: simple_simulate + vehicle_type_choice: interaction_simulate + transponder_ownership: simple_simulate + free_parking: simple_simulate + telecommute_frequency: simple_simulate + cdap: cdap_simulate + mandatory_tour_frequency: simple_simulate + mandatory_tour_scheduling_work: interaction_sample_simulate + mandatory_tour_scheduling_school: interaction_sample_simulate + mandatory_tour_scheduling_univ: interaction_sample_simulate + school_escorting: interaction_simulate + joint_tour_frequency_composition: interaction_simulate + external_joint_tour_identification: simple_simulate + joint_tour_participation: simple_simulate + joint_tour_destination: interaction_sample_simulate + joint_tour_scheduling: interaction_sample_simulate + non_mandatory_tour_frequency: interaction_simulate + external_non_mandatory_identification: simple_simulate + non_mandatory_tour_destination: interaction_sample_simulate + external_non_mandatory_destination: interaction_sample_simulate + non_mandatory_tour_scheduling: interaction_sample_simulate + vehicle_allocation: simple_simulate + tour_mode_choice: simple_simulate + atwork_subtour_frequency: simple_simulate + atwork_subtour_destination: interaction_sample_simulate + atwork_subtour_scheduling: interaction_sample_simulate + atwork_subtour_mode_choice: simple_simulate + stop_frequency: simple_simulate + trip_purpose: simple_probabilistic + trip_destination: interaction_sample_simulate + trip_scheduling: simple_probabilistic + trip_mode_choice: simple_simulate diff --git a/resident/configs_estimation/logging.yaml b/resident/configs_estimation/logging.yaml new file mode 100644 index 0000000..fd83f2b --- /dev/null +++ b/resident/configs_estimation/logging.yaml @@ -0,0 +1,60 @@ +# Config for logging +# ------------------ +# See http://docs.python.org/2.7/library/logging.config.html#configuration-dictionary-schema + +logging: + version: 1 + disable_existing_loggers: true + + + # Configuring the default (root) logger is highly recommended + root: + level: NOTSET + handlers: [console] + + loggers: + + activitysim: + level: INFO + handlers: [console, logfile] + propagate: false + + sharrow: + level: INFO + handlers: [console, logfile] + propagate: false + + handlers: + + logfile: + class: logging.FileHandler + filename: + get_log_file_path: 'activitysim.log' + mode: w + formatter: fileFormatter + level: NOTSET + + console: + class: logging.StreamHandler + stream: ext://sys.stdout + formatter: elapsedFormatter + level: INFO + + formatters: + + simpleFormatter: + class: logging.Formatter + # format: '%(levelname)s - %(name)s - %(message)s' + format: '%(levelname)s - %(message)s' + datefmt: '%Y-%m-%dT%H:%M:%S%z' + + fileFormatter: + class: logging.Formatter + format: '%(asctime)s - %(levelname)s - %(name)s - %(message)s' + datefmt: '%Y-%m-%dT%H:%M:%S%z' + + elapsedFormatter: + (): activitysim.core.tracing.ElapsedTimeFormatter + format: '[{elapsedTime}] {levelname:s}: {message:s}' + style: '{' + datefmt: '%Y-%m-%dT%H:%M:%S%z' \ No newline at end of file diff --git a/resident/configs_estimation/settings.yaml b/resident/configs_estimation/settings.yaml new file mode 100644 index 0000000..6d8984b --- /dev/null +++ b/resident/configs_estimation/settings.yaml @@ -0,0 +1,148 @@ + +inherit_settings: True + +# assume enough RAM to not chunk +chunk_training_mode: disabled + +# input tables +# input tables +input_table_list: + - tablename: households + filename: override_households.csv + index_col: household_id + - tablename: persons + filename: override_persons.csv + index_col: person_id + - tablename: land_use + filename: land_use.csv + index_col: zone_id + rename_columns: + MAZ: zone_id + drop_columns: + - i1 + - i2 + - i3 + - i4 + - i5 + - i6 + - i7 + - i8 + - i9 + - hs + - hs_sf + - hs_mf + - hs_mh + - hh_sf + - hh_mf + - hh_mh + - zip09 + - luz_id + +write_raw_tables: False + +fail_fast: True + +use_shadow_pricing: False + +multiprocess: False +num_processes: 10 + +# turn writing of sample_tables on and off for all models +# (if True, tables will be written if DEST_CHOICE_SAMPLE_TABLE_NAME is specified in individual model settings) +want_dest_choice_sample_tables: False + +# number of households to simulate +households_sample_size: 0 + +resume_after: + +models: + ### mp_init_proto_pop (single process) + - transit_lot_connectivity + - initialize_proto_population # Separate step so proto tables can be split for multiprocess. + ### mp_disaggregate_accessibility + - compute_disaggregate_accessibility + ### mp_initialize_hhs (single process) + - initialize_landuse + - initialize_households + ### mp_accessibility + - compute_accessibility + ### mp_households + - license_holding_status + - bike_comfort + - av_ownership + - auto_ownership_simulate + - work_from_home + - external_worker_identification + - external_workplace_location + - school_location + - workplace_location + - vehicle_type_choice + - adjust_auto_operating_cost + - transit_pass_subsidy + - transit_pass_ownership + - free_parking + - telecommute_frequency + - cdap_simulate + - mandatory_tour_frequency + - mandatory_tour_scheduling + - school_escorting + - joint_tour_frequency_composition + - external_joint_tour_identification + - joint_tour_participation + - joint_tour_destination + - external_joint_tour_destination + - joint_tour_scheduling + - non_mandatory_tour_frequency + - external_non_mandatory_identification + - non_mandatory_tour_destination + - external_non_mandatory_destination + - non_mandatory_tour_scheduling + - vehicle_allocation + - park_and_ride_lot_choice + - tour_mode_choice_simulate + - atwork_subtour_frequency + - atwork_subtour_destination + - atwork_subtour_scheduling + - atwork_subtour_mode_choice + - stop_frequency + - trip_purpose + - trip_destination + - trip_purpose_and_destination + - trip_scheduling + - trip_mode_choice + - parking_location + ### mp_summarize (single process) + - write_data_dictionary + - track_skim_usage + - write_trip_matrices + - write_tables + +multiprocess_steps: + - name: mp_init_proto_pop + begin: transit_lot_connectivity + - name: mp_disaggregate_accessibility + num_processes: 10 + begin: compute_disaggregate_accessibility + slice: + tables: + - proto_households + - proto_persons + - proto_tours + - name: mp_initialize_hhs + begin: initialize_landuse + - name: mp_accessibility + begin: compute_accessibility + num_processes: 10 + slice: + tables: + - accessibility + exclude: True # this is needed so landuse (i.e. destinations) doesn't get split + - name: mp_households + begin: license_holding_status + slice: + tables: + - households + - persons + - name: mp_summarize + begin: write_data_dictionary \ No newline at end of file diff --git a/resident/configs_estimation/trip_mode_choice.csv b/resident/configs_estimation/trip_mode_choice.csv new file mode 100644 index 0000000..c426cb2 --- /dev/null +++ b/resident/configs_estimation/trip_mode_choice.csv @@ -0,0 +1,239 @@ +Label,Description,Expression,DRIVEALONE,SHARED2,SHARED3,WALK,BIKE,WALK_TRANSIT,PNR_TRANSIT,KNR_TRANSIT,BIKE_TRANSIT,TAXI,TNC_SINGLE,TNC_SHARED,SCH_BUS,EBIKE,ESCOOTER +#,Drive alone,,,,,,,,,,,,,,,, +util_DRIVEALONEFREE_Unavailable,Drive alone - Unavailable,sov_available == False,-999,,,,,,,,,,,,,, +util_Drive_alone_In_vehicle_time,Drive alone - In-vehicle time,(da_time_skims) * autoIVTFactor * time_factor,coef_ivt,,,,,,,,,,,,,, +util_Drive_alone_cost,Drive alone - cost,"@(df.auto_op_cost * df.autoCPMFactor * df.da_dist_skims + df.da_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Parking_cost,Drive alone - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor)*100/(np.maximum(df.income,1000)**df.income_exponent)",coef_income,,,,,,,,,,,,,, +util_Drive_alone_Terminal_Time,Drive alone - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,coef_acctime,,,,,,,,,,,,,, +#,Shared ride2,,,,,,,,,,,,,,,, +util_sr2_available,sr2 available,sr2_available == False,,-999,,,,,,,,,,,,, +util_sr2_tourbike_disadvantage,sr2 tourbike disadvantage,tourBike,,-30,,,,,,,,,,,,, +util_Shared_ride_2_In_vehicle_time,Shared ride 2 - In -vehicle time,(s2_time_skims) * autoIVTFactor * time_factor,,coef_ivt,,,,,,,,,,,,, +util_Shared_ride_2_cost,Shared ride 2 - cost,"@((df.auto_op_cost * df.autoCPMFactor * df.s2_dist_skims) + df.s2_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Parking_cost,Shared ride 2 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS2))*100/(np.maximum(df.income,1000)**df.income_exponent)",,coef_income,,,,,,,,,,,,, +util_Shared_ride_2_Terminal_Time,Shared ride 2 - Terminal Time ,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,coef_acctime,,,,,,,,,,,,, +util_Shared_ride_2_Two_person_household,Shared ride 2 - Two person household,@(df.hhsize == 2),,coef_size2_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Three_person_household,Shared ride 2 - Three person household,@(df.hhsize == 3),,coef_size3_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Four_plus_person_household,Shared ride 2 - Four plus person household,@(df.hhsize > 3),,coef_size4p_sr2,,,,,,,,,,,,, +util_Shared_ride_2_Female,Shared ride 2 - female,@(df.female == 1),,coef_female_sr2,,,,,,,,,,,,, +#,Shared ride 3,,,,,,,,,,,,,,,, +util_sr3_available,sr3 available,sr3_available == False,,,-30,,,,,,,,,,,, +util_sr3_tourbike_disadvantage,sr3 tourbike disadvantage,tourBike,,,-30,,,,,,,,,,,, +util_Shared_ride_3_In_vehicle_time,Shared ride 3 - In -vehicle time,(s3_time_skims) * autoIVTFactor * time_factor,,,coef_ivt,,,,,,,,,,,, +util_Shared_ride_3_Cost,Shared ride 3 - cost,"@(df.auto_op_cost * df.s3_dist_skims * df.autoCPMFactor + df.s3_cost_skims)*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Parking_cost,Shared ride 3 - Parking cost ,"@(df.parkingCost * df.autoParkingCostFactor * np.where(df.is_joint,1,df.costFactorS3))*100/(np.maximum(df.income,1000)**df.income_exponent)",,,coef_income,,,,,,,,,,,, +util_Shared_ride_3_Terminal_Time,Shared ride 3 - Terminal Time,(oTermTime + dTermTime) * autoTermTimeFactor * time_factor,,,coef_acctime,,,,,,,,,,,, +util_Shared_ride_3_Two_person_household,Shared ride 3 - Two person household,@(df.hhsize == 2),,,coef_size2_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Three_person_household,Shared ride 3 - Three person household,@(df.hhsize == 3),,,coef_size3_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Four_plus_person_household,Shared ride 3 - Four plus person household,@(df.hhsize > 3),,,coef_size4p_sr3p,,,,,,,,,,,, +util_Shared_ride_3_Female,Shared ride 3 - female,@(df.female == 1),,,coef_female_sr3p,,,,,,,,,,,, +#,Walk,,,,,,,,,,,,,,,, +#,school escorting can force longer walk trips so not turning off completely if walk tour,,,,,,,,,,,,,,,, +util_Walk_Unavailable,Walk - Unavailable,(walkAvailable == 0) & (tourWalk == 0),,,,-30,,,,,,,,,,, +util_Walk_Unavailable_walkTour,Walk - Unavailable - Walk Tour,(walkAvailable == 0) & (tourWalk == 1),,,,-20,,,,,,,,,,, +util_Walk_Female,Walk - Female,@df.female,,,,coef_female_nmot,,,,,,,,,,, +util_Walk_time,Walk - time - clipped for really long walk trips to avoid zero probs,@(df.walk_time_skims * df.time_factor).clip(upper=1000),,,,coef_walkTime,,,,,,,,,,, +util_Walk_Origin_Mix,Walk - Origin Mix,oMGRAMix,,,,coef_oMix_nmot,,,,,,,,,,, +util_Walk_Origin_Intersection_Density,Walk - Origin Intersection Density,oMGRATotInt,,,,coef_oIntDen_nmot,,,,,,,,,,, +util_Walk_Destination_Employment_Density,Walk - Destination Employment Density,dMGRAEmpDen,,,,coef_dEmpDen_nmot,,,,,,,,,,, +util_Walk_Age_1_5,Walk - Age 1-6,"@df.age.between(1,5)",,,,coef_age1to5_nmot,,,,,,,,,,, +util_Walk_Age_6_12,Walk - Age 6-13,"@df.age.between(6,12)",,,,coef_age6to12_nmot,,,,,,,,,,, +util_Walk_Age_13_15,Walk - Age 13-16,"@df.age.between(13,15)",,,,coef_age13to15_nmot,,,,,,,,,,, +#,Bike,,,,,,,,,,,,,,,, +util_BIKE_Mode_unavailable,Bike - Mode unavailable unless on bike tour,@(df.tourBike == 0)|(df.bike_time <= 0),,,,,-999,,,,,,,,,, +util_BIKE_Female,Bike - Female,@df.female,,,,,coef_female_nmot,,,,,,,,,, +util_BIKE_logsum,Bike - logsum clipped to allow for long bike trips on school escort tours,@df.bikeLS.clip(lower=-100),,,,,coef_bikeLogsum,,,,,,,,,, +#,WalktoTransit,,,,,,,,,,,,,,,, +util_WalkTransit_Unavailable,WalkTransit_Available,walk_local_available == False,,,,,,-999,,,,,,,,, +util_WALKLOC__In_vehicle_time,WALK_LOC - In-vehicle time,@(odt_skims['WTW_TIV']) * df.time_factor,,,,,,coef_ivt,,,,,,,,, +util_WALK_LOC_iwait_time,WALK_LOC - wait time,@(odt_skims['WTW_FWT']) * df.time_factor,,,,,,coef_wait,,,,,,,,, +util_WALK_LOC_transfer_wait_time,WALK_LOC - transfer wait time,@(odt_skims['WTW_XWT'])* df.time_factor,,,,,,coef_xwait,,,,,,,,, +util_WALK_LOC_Walk_access_time,WALK_LOC - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,coef_acctime,,,,,,,,, +util_WALK_LOC_wait_access_time,WALK_LOC - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,coef_wait,,,,,,,,, +util_WALK_LOC_Walk_egress_time,WALK_LOC - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,coef_acctime,,,,,,,,, +util_WALK_LOC_wait_egress_time,WALK_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,coef_wait,,,,,,,,, +util_WALK_LOC_transfer_walk_time,WALK_LOC - transfer walk time,@(odt_skims['WTW_AUX'])* df.time_factor,,,,,,coef_xwalk,,,,,,,,, +util_WALK_LOC_transfers_penalty,WALK_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTW_XFR'] + df.outbound*df.mtnev_egr_xfer_out + ~df.outbound*df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor",,,,,,coef_xfer,,,,,,,,, +util_WTW_FARE,WALK_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,coef_income,,,,,,,,, +util_WALK_LOC_Female,WALK_LOC - Female,@(df.female),,,,,,coef_female_tran,,,,,,,,, +util_WALK_LOC_Origin_Mix,WALK_LOC - Origin Mix,oMGRAMix,,,,,,coef_oMix_wTran,,,,,,,,, +util_WALK_LOC_Origin_Intersection_Density,WALK_LOC - Origin Intersection Density,oMGRATotInt,,,,,,coef_oIntDen_wTran,,,,,,,,, +util_WALK_LOC_Destination_Employment_Density,WALK_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,coef_dEmpDen_wTran,,,,,,,,, +#,PNR_LOC,,,,,,,,,,,,,,,, +# FIXME need PNR utilties for new PNR treatment if not restricting stops on PNR tours,,,,,,,,,,,,,,,,, +util_is_PNR_transit,Only allowed to take PNR transit on PNR tours,tourPNR,-999,-999,-999,-999,-999,-999,,-999,-999,-999,-999,-999,-999,-999, +# util_PNR_LOC_Unavailable,PNR_LOC - Unavailable,(pnr_local_available == False)|(PNR_available==0),,,,,,,-999,,,,,,,, +# util_PNR_LOC_In_vehicle_time,PNR_LOC - In-vehicle time,@(odt_skims['PNROUT_LOC_TIV'])* df.time_factor * df.outbound,,,,,,,coef_ivt,,,,,,,, +# util_PNR_LOC_iwait_time,PNR_LOC - First iwait time,@(odt_skims['PNROUT_LOC_FWT'])* df.time_factor * df.outbound,,,,,,,coef_wait,,,,,,,, +# util_PNR_LOC_transfer_wait_time,PNR_LOC - transfer wait time,@(odt_skims['PNROUT_LOC_XWT'])* df.time_factor * df.outbound,,,,,,,coef_xwait,,,,,,,, +# util_PNR_LOC_number_of_transfers,PNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['PNROUT_LOC_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,coef_xferdrive,,,,,,,, +# util_PNR_LOC_PNR_time,PNR_LOC - PNR time,@odt_skims['PNROUT_LOC_ACC']* df.time_factor * df.outbound,,,,,,,coef_acctime,,,,,,,, +# util_PNR_LOC_PNR_cost,PNR_LOC - PNR cost,"@(df.auto_op_cost * (odt_skims['PNROUT_LOC_ACC']/60) *driveSpeed)* df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,coef_income,,,,,,,, +# util_PNRIN_LOC_PNR_cost,PNR_LOC - PNR cost,"@(df.auto_op_cost * (odt_skims['PNRIN_LOC_EGR']/60) *driveSpeed) * ~df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,coef_income,,,,,,,, +# util_PNR_LOC_Walk_egress_time_(at_attraction_end),PNR_LOC - Walk egress time (at attraction end),"@np.where(df.nev_local_egress_available_out, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor * df.outbound",,,,,,,coef_acctime,,,,,,,, +# util_PNR_LOC_wait_egress_time_(at_attraction_end),PNR_LOC - Egress mt/nev wait time (at attraction end),"@np.where(df.nev_local_egress_available_out, nevWaitTime, np.where(df.microtransit_local_egress_available_out, microtransitWaitTime, 0)) * df.time_factor * df.outbound",,,,,,,coef_wait,,,,,,,, +# util_PNR_LOC_Walk_other_time,PNR_LOC - Walk other time,@odt_skims['PNROUT_LOC_AUX']* df.time_factor * df.outbound,,,,,,,coef_xwalk,,,,,,,, +# util_PNR_LOC_Fare_and_operating_cost,PNR_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['PNROUT_LOC_FARE'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * df.outbound",,,,,,,coef_income,,,,,,,, +# util_PNRIN_LOC_In_vehicle_time,PNRIN_LOC - In-vehicle time,@(odt_skims['PNRIN_LOC_TIV'])* df.time_factor * ~df.outbound,,,,,,,coef_ivt,,,,,,,, +# util_PNRIN_LOC_iwait_time,PNRIN_LOC - First iwait time,@(odt_skims['PNRIN_LOC_FWT']) * df.time_factor* ~df.outbound,,,,,,,coef_wait,,,,,,,, +# util_PNRIN_LOC_transfer_wait_time,PNRIN_LOC - transfer wait time,@(odt_skims['PNRIN_LOC_XWT'])* ~df.outbound,,,,,,,coef_xwait,,,,,,,, +# util_PNRIN_LOC_number_of_transfers,PNRIN_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['PNRIN_LOC_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,coef_xferdrive,,,,,,,, +# util_PNRIN_LOC_PNRIN_time,PNRIN_LOC - PNR time,@odt_skims['PNRIN_LOC_EGR'] * df.time_factor * ~df.outbound,,,,,,,coef_acctime,,,,,,,, +# util_PNRIN_LOC_Walk_access_time,PNRIN_LOC - Walk access time,"@np.where(df.nev_local_access_available_in, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in, df.microtransit_local_access_time_in, df.origin_local_time)) * df.time_factor * ~df.outbound",,,,,,,coef_acctime,,,,,,,, +# util_PNRIN_LOC_wait_access_time,PNRIN_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_access_available_in, nevWaitTime, np.where(df.microtransit_local_access_available_in, microtransitWaitTime, 0)) * df.time_factor * ~df.outbound",,,,,,,coef_wait,,,,,,,, +# util_PNRIN_LOC_Walk_other_time,PNRIN_LOC - Walk other time,@odt_skims['PNRIN_LOC_AUX']* df.time_factor * ~df.outbound,,,,,,,coef_xwalk,,,,,,,, +# util_PNRIN_LOC_Fare_and_operating_cost,PNRIN_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['PNRIN_LOC_FARE'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * ~df.outbound",,,,,,,coef_income,,,,,,,, +# util_PNRIN_LOC_Destination_zone_densityIndex,PNRIN_LOC - Destination zone densityIndex,@density_index_multiplier * df.dest_density_index,,,,,,,coef_ivt,,,,,,,, +# util_PNR_LOC - Female,PNR_LOC - Female,@(df.female),,,,,,,coef_female_tran,,,,,,,, +# util_PNR_LOC - Destination Employment Density,PNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,coef_dEmpDen_dTran,,,,,,,, +#,,,,,,,,,,,,,,,,, +util_KNR_LOC_Unavailable,KNR_LOC - Unavailable,@(df.knr_local_available == False)|(KNR_available==0),,,,,,,,-999,,,,,,, +util_KNR_LOC_In_vehicle_time_out,KNR_LOC - In-vehicle time,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNR_LOC_iwait_time,KNR_LOC - First iwait time,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,coef_wait,,,,,,, +util_KNR_LOC_transfer_wait_time,KNR_LOC - transfer wait time,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,coef_xwait,,,,,,, +util_KNR_LOC_number_of_transfers,KNR_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,coef_xferdrive,,,,,,, +util_KNR_LOC_KNR_time,KNR_LOC - KNR time,@(odt_skims['KTW_ACC']) * df.time_factor * df.outbound,,,,,,,,coef_acctime,,,,,,, +util_KNR_LOC_Walk_egress_time_(at_attraction_end),KNR_LOC - Walk egress time (at attraction end),"@np.where(df.nev_local_egress_available_out, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out, df.microtransit_local_egress_time_out, df.dest_local_time)) * df.time_factor * df.outbound",,,,,,,,coef_acctime,,,,,,, +util_KNR_LOC_wait_egress_time_(at_attraction_end),KNR_LOC - Egress mt/nev wait time (at attraction end),"@np.where(df.nev_local_egress_available_out, nevWaitTime, np.where(df.microtransit_local_egress_available_out, microtransitWaitTime, 0)) * df.time_factor * df.outbound",,,,,,,,coef_wait,,,,,,, +util_KNR_LOC_Walk_other_time,KNR_LOC - Walk other time,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,coef_xwalk,,,,,,, +util_KNR_LOC_Fare,KNR_LOC - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * df.outbound",,,,,,,,coef_income,,,,,,, +util_KNR_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['KTW_ACC']/60) *driveSpeed )*100*df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, +util_KNRIN_LOC_KNR_cost,KNR_LOC - KNR cost,"@(df.auto_op_cost * df.autoCPMFactor * (odt_skims['WTK_EGR']/60) *driveSpeed)*100*~df.outbound/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,coef_income,,,,,,, +util_KNRIN_LOC_In_vehicle_time_in,KNRIN_LOC - In-vehicle time,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,coef_ivt,,,,,,, +util_KNRIN_LOC_iwait_time,KNRIN_LOC - First iwait time,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_wait,,,,,,, +util_KNRIN_LOC_transfer_wait_time,KNRIN_LOC - transfer wait time,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwait,,,,,,, +util_KNRIN_LOC_number_of_transfers,KNRIN_LOC - number of transfers,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,coef_xferdrive,,,,,,, +util_KNRIN_LOC_KNRIN_time,KNRIN_LOC - KNR time,@odt_skims['WTK_EGR'] * df.time_factor * ~df.outbound,,,,,,,,coef_acctime,,,,,,, +util_KNRIN_LOC_Walk_access_time,KNRIN_LOC - Walk access time,"@np.where(df.nev_local_access_available_in, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in, df.microtransit_local_access_time_in, df.origin_local_time)) * df.time_factor * ~df.outbound",,,,,,,,coef_acctime,,,,,,, +util_KNRIN_LOC_wait_access_time,KNRIN_LOC - Egress mt/nev wait time,"@np.where(df.nev_local_access_available_in, nevWaitTime, np.where(df.microtransit_local_access_available_in, microtransitWaitTime, 0)) * df.time_factor * ~df.outbound",,,,,,,,coef_wait,,,,,,, +util_KNRIN_LOC_Walk_other_time,KNRIN_LOC - Walk other time,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,coef_xwalk,,,,,,, +util_KNRIN_LOC_Fare_and_operating_cost,KNRIN_LOC - Fare ,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent) * ~df.outbound",,,,,,,,coef_income,,,,,,, +util_KNR_LOC_Female,KNR_LOC - Female,@(df.female),,,,,,,,coef_female_tran,,,,,,, +util_KNR_LOC_Destination_Employment_Density,KNR_LOC - Destination Employment Density,dMGRAEmpDen,,,,,,,,coef_dEmpDen_dTran,,,,,,, +#,BiketoTransit,,,,,,,,,,,,,,,, +util_BikeTransit_Unavailable,BikeTransit_Available,bike_local_available == False | (BNR_available==0),,,,,,,,,-999,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_out,BIKE_TRANSIT - In-vehicle time outbound,@(odt_skims['KTW_TIV']) * df.time_factor * df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_In_vehicle_time_in,BIKE_TRANSIT - In-vehicle time inbound,@(odt_skims['WTK_TIV']) * df.time_factor * ~df.outbound,,,,,,,,,coef_ivt,,,,,, +util_BIKE_TRANSIT_iwait_time_out,BIKE_TRANSIT - wait time outbound,@(odt_skims['KTW_FWT']) * df.time_factor * df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_iwait_time_in,BIKE_TRANSIT - wait time inbound,@(odt_skims['WTK_FWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_out,BIKE_TRANSIT - transfer wait time outbound,@(odt_skims['KTW_XWT']) * df.time_factor * df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_transfer_wait_time_in,BIKE_TRANSIT - transfer wait time inbound,@(odt_skims['WTK_XWT']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwait,,,,,, +util_BIKE_TRANSIT_Walk_access_time,BIKE_TRANSIT - Walk access time,"@np.where(df.nev_local_access_available_in & ~df.outbound, df.nev_local_access_time_in, np.where(df.microtransit_local_access_available_in & ~df.outbound, df.microtransit_local_access_time_in, df.origin_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, +util_BIKE_TRANSIT_wait_access_time,BIKE_TRANSIT - Access mt/nev wait time,"@np.where(df.nev_local_access_available_in & ~df.outbound, nevWaitTime, np.where(df.microtransit_local_access_available_in & ~df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_Walk_egress_time,BIKE_TRANSIT - Walk egress time,"@np.where(df.nev_local_egress_available_out & df.outbound, df.nev_local_egress_time_out, np.where(df.microtransit_local_egress_available_out & df.outbound, df.microtransit_local_egress_time_out, df.dest_local_time))* df.time_factor",,,,,,,,,coef_acctime,,,,,, +util_BIKE_TRANSIT_wait_egress_time,BIKE_TRANSIT - Egress mt/nev wait time,"@np.where(df.nev_local_egress_available_out & df.outbound, nevWaitTime, np.where(df.microtransit_local_egress_available_out & df.outbound, microtransitWaitTime, 0))* df.time_factor",,,,,,,,,coef_wait,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_out,BIKE_TRANSIT - transfer walk time outbound,@(odt_skims['KTW_AUX']) * df.time_factor * df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfer_walk_time_in,BIKE_TRANSIT - transfer walk time inbound,@(odt_skims['WTK_AUX']) * df.time_factor * ~df.outbound,,,,,,,,,coef_xwalk,,,,,, +util_BIKE_TRANSIT_transfers_penalty_out,BIKE_TRANSIT - number of transfers outbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['KTW_XFR'] + df.mtnev_egr_xfer_out, a_min=None,a_max=4))) * df.time_factor * df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_transfers_penalty_in,BIKE_TRANSIT - number of transfers inbound,"@(-23+23*np.exp(0.414*np.clip(odt_skims['WTK_XFR'] + df.mtnev_acc_xfer_in, a_min=None,a_max=4))) * df.time_factor * ~df.outbound",,,,,,,,,coef_xfer,,,,,, +util_BIKE_TRANSIT_Fare,BIKE_TRANSIT - Fare,"@df.transitSubsidyPassDiscount*(odt_skims['fare'])*100*df.number_of_participants/(np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,coef_income,,,,,, +util_BIKE_TRANSIT_Female,BIKE_TRANSIT - Female,@(df.female),,,,,,,,,coef_female_tran,,,,,, +util_BIKE_TRANSIT_Origin_Mix,BIKE_TRANSIT - Origin Mix,oMGRAMix,,,,,,,,,coef_oMix_wTran,,,,,, +util_BIKE_TRANSIT_Origin_Intersection_Density,BIKE_TRANSIT - Origin Intersection Density,oMGRATotInt,,,,,,,,,coef_oIntDen_wTran,,,,,, +util_BIKE_TRANSIT_Destination_Employment_Density,BIKE_TRANSIT - Destination Employment Density,dMGRAEmpDen,,,,,,,,,coef_dEmpDen_wTran,,,,,, +#,Taxi,,,,,,,,,,,,,,,, +util_Taxi_Unavailable,Taxi - Unavailable,RideHail_available==0,,,,,,,,,,-999,,,,, +util_Taxi_In_vehicle_time,Taxi - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,coef_ivt,,,,, +util_Taxi_Wait_time,Taxi - Wait time,origTaxiWaitTime * time_factor,,,,,,,,,,coef_wait,,,,, +util_Taxi_Fare,Taxi - Fare,"@(((Taxi_baseFare + df.s2_dist_skims * Taxi_costPerMile + df.s2_time_skims * Taxi_costPerMinute) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,coef_income,,,,, +#,TNC Single,,,,,,,,,,,,,,,, +util_TNC_Single_Unavailable,TNC Single - Unavailable,RideHail_available==0,,,,,,,,,,,-999,,,, +util_TNC_Single_In_vehicle_time,TNC Single - In-vehicle time,(s2_time_skims) * time_factor,,,,,,,,,,,coef_ivt,,,, +util_TNC_Single_Wait_time,TNC Single - Wait time,origSingleTNCWaitTime * time_factor,,,,,,,,,,,coef_wait,,,, +util_TNC_Single_Cost,TNC Single - Cost,"@((np.maximum(TNC_single_baseFare + df.s2_dist_skims * TNC_single_costPerMile + df.s2_time_skims * TNC_single_costPerMinute, TNC_single_costMinimum) + df.s2_cost_skims))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,coef_income,,,, +#,TNC Shared,,,,,,,,,,,,,,,, +util_TNC_Shared_switch,TNC Shared - switch turn-off (depends on data availability),@(((~df.nev_available) & (~df.microtransit_available) & (scenarioYear==2022)) | (df.RideHail_available==0)),,,,,,,,,,,,-999,,, +util_TNC_Shared_In_vehicle_time,TNC Shared - In-vehicle time,"@(np.where(df.nev_available, df.nev_time, np.where(df.microtransit_available, df.microtransit_time, df.s3_time_skims * TNC_shared_IVTFactor))) * df.time_factor",,,,,,,,,,,,coef_ivt,,, +util_TNC_Shared_Wait_time,TNC Shared - Wait time,"@np.where(df.nev_available, nevWaitTime, np.where(df.microtransit_available, microtransitWaitTime, df.origSharedTNCWaitTime)) * df.time_factor",,,,,,,,,,,,coef_wait,,, +util_TNC_Shared_Cost,TNC Shared - Cost,"@np.where(df.nev_available, nevCost, np.where(df.microtransit_available, microtransitCost, (np.maximum(TNC_shared_baseFare + df.s3_dist_skims * TNC_shared_costPerMile + df.s3_time_skims * TNC_shared_costPerMinute, TNC_shared_costMinimum) + df.s3_cost_skims)))*100 / (np.maximum(df.income,1000)**df.income_exponent)",,,,,,,,,,,,coef_income,,, +util_calib_flexfleet,Calibration for flexible fleets,microtransit_available | nev_available,,,,,,,,,,,,coef_calib_flexfleet,,, +#,School bus,,,,,,,,,,,,,,,, +util_School_Bus_Unavailable,School Bus - Unavailable,SCHBUS_available==0,,,,,,,,,,,,,-999,, +util_School_Bus_In_vehicle_Time,School Bus - In-vehicle Time at 20 miles per hour,(da_dist_skims)* 3 * time_factor,,,,,,,,,,,,,coef_ivt,, +util_School_Bus_Wait_Time,School Bus - Wait Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_wait,, +util_School_Bus_Walk_Time,School Bus - Walk Time (asserted),10 * time_factor,,,,,,,,,,,,,coef_acctime,, +util_School_Bus_Age_6_to_12,School Bus - Age 6 to 12,@(df.age > 5) * (df.age < 13),,,,,,,,,,,,,coef_age6to12_schb,, +#,Escooter,,,,,,,,,,,,,,,, +util_Escooter_Unavailable,Escooter - Unavailable,Escooter_available==0,,,,,,,,,,,,,,,-999 +#,Ebike,,,,,,,,,,,,,,,, +util_Ebike_Unavailable,Ebike - Unavailable,Ebike_available==0,,,,,,,,,,,,,,-999, +#,indiv tour ASCs,,,,,,,,,,,,,,,, +util_calib_numberofparticipan,abm 2+ calibration,(numberOfParticipantsInJointTour<=2)&(jointTour==1),,,coef_calib_numberofparticipants_SHARED3,,,,,,,,,,,, +util_calib_KNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*5*np.maximum((10-df.da_dist_skims),0)*0.5",,,,,,,,coef_calib_civt5max10sovdistski_KNR_TRANSIT,coef_calib_civt5max10sovdistski_TNC_TRANSIT,,,,,, +util_calib_Walk_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((200+(-133*df.da_dist_skims)),0)*0.5",,,,,,coef_calib_civtmax200133sovdist_WALK_TRANSIT,,,,,,,,, +util_calib_PNR_Transit_Distance_Parameter,abm 2+ calibration,"@df.c_ivt*np.maximum((45+(-2.5*df.da_dist_skims)),0)*0.5",,,,,,,coef_calib_civtmax4525sovdistsk_PNR_TRANSIT,,,,,,,, +util_calib_esctour1,abm 2+ calibration,tour_type=='escort',,,,coef_calib_esctour1_WALK,,,,,,,,,,, +#,,,,,,,,,,,,,,,,, +util_calib_tourda,abm 2+ calibration,tourDA,,coef_calib_tourda_SHARED2,coef_calib_tourda_SHARED3,coef_calib_tourda_WALK,coef_calib_tourda_BIKE,coef_calib_tourda_WALK_TRANSIT,coef_calib_tourda_PNR_TRANSIT,coef_calib_tourda_KNR_TRANSIT,coef_calib_tourda_TNC_TRANSIT,coef_calib_tourda_TAXI,coef_calib_tourda_TNC_SINGLE,coef_calib_tourda_TNC_SHARED,coef_calib_tourda_SCH_BUS,-999,-999 +util_calib_tours2,abm 2+ calibration,tourS2,coef_calib_tours2_DRIVEALONE,coef_calib_tours2_SHARED2,coef_calib_tours2_SHARED3,coef_calib_tours2_WALK,coef_calib_tours2_BIKE,coef_calib_tours2_WALK_TRANSIT,coef_calib_tours2_PNR_TRANSIT,coef_calib_tours2_KNR_TRANSIT,coef_calib_tours2_TNC_TRANSIT,coef_calib_tours2_TAXI,coef_calib_tours2_TNC_SINGLE,coef_calib_tours2_TNC_SHARED,coef_calib_tours2_SCH_BUS,0,0 +util_calib_tours3,abm 2+ calibration,tourS3,coef_calib_tours3_DRIVEALONE,coef_calib_tours3_SHARED2,coef_calib_tours3_SHARED3,coef_calib_tours3_WALK,coef_calib_tours3_BIKE,coef_calib_tours3_WALK_TRANSIT,coef_calib_tours3_PNR_TRANSIT,coef_calib_tours3_KNR_TRANSIT,coef_calib_tours3_TNC_TRANSIT,coef_calib_tours3_TAXI,coef_calib_tours3_TNC_SINGLE,coef_calib_tours3_TNC_SHARED,coef_calib_tours3_SCH_BUS,0,0 +util_calib_tourwalk,abm 2+ calibration,tourWalk,coef_calib_tourwalk_DRIVEALONE,coef_calib_tourwalk_SHARED2,coef_calib_tourwalk_SHARED3,0,coef_calib_tourwalk_BIKE,coef_calib_tourwalk_WALK_TRANSIT,coef_calib_tourwalk_PNR_TRANSIT,coef_calib_tourwalk_KNR_TRANSIT,coef_calib_tourwalk_TNC_TRANSIT,coef_calib_tourwalk_TAXI,coef_calib_tourwalk_TNC_SINGLE,coef_calib_tourwalk_TNC_SHARED,coef_calib_tourwalk_SCH_BUS,-999,-999 +util_calib_tourbike,abm 2+ calibration,tourBike,coef_calib_tourbike_DRIVEALONE,coef_calib_tourbike_SHARED2,coef_calib_tourbike_SHARED3,coef_calib_tourbike_WALK,coef_calib_tourbike_BIKE,coef_calib_tourbike_WALK_TRANSIT,coef_calib_tourbike_PNR_TRANSIT,coef_calib_tourbike_KNR_TRANSIT,coef_calib_tourbike_TNC_TRANSIT,coef_calib_tourbike_TAXI,coef_calib_tourbike_TNC_SINGLE,coef_calib_tourbike_TNC_SHARED,coef_calib_tourbike_SCH_BUS,-999,-999 +util_calib_tourwtran,abm 2+ calibration,tourWTran,coef_calib_tourwtran_DRIVEALONE,coef_calib_tourwtran_SHARED2,coef_calib_tourwtran_SHARED3,coef_calib_tourwtran_WALK,coef_calib_tourwtran_BIKE,coef_calib_tourwtran_WALK_TRANSIT,coef_calib_tourwtran_PNR_TRANSIT,coef_calib_tourwtran_KNR_TRANSIT,coef_calib_tourwtran_TNC_TRANSIT,coef_calib_tourwtran_TAXI,coef_calib_tourwtran_TNC_SINGLE,coef_calib_tourwtran_TNC_SHARED,coef_calib_tourwtran_SCH_BUS,0,0 +util_calib_tourpnr,abm 2+ calibration,tourPNR,coef_calib_tourpnr_DRIVEALONE,coef_calib_tourpnr_SHARED2,coef_calib_tourpnr_SHARED3,coef_calib_tourpnr_WALK,coef_calib_tourpnr_BIKE,coef_calib_tourpnr_WALK_TRANSIT,coef_calib_tourpnr_PNR_TRANSIT,coef_calib_tourpnr_KNR_TRANSIT,coef_calib_tourpnr_TNC_TRANSIT,coef_calib_tourpnr_TAXI,coef_calib_tourpnr_TNC_SINGLE,coef_calib_tourpnr_TNC_SHARED,coef_calib_tourpnr_SCH_BUS,-999,-999 +util_calib_tourknr,abm 2+ calibration,tourKNR,coef_calib_tourknr_DRIVEALONE,coef_calib_tourknr_SHARED2,coef_calib_tourknr_SHARED3,coef_calib_tourknr_WALK,coef_calib_tourknr_BIKE,coef_calib_tourknr_WALK_TRANSIT,coef_calib_tourknr_PNR_TRANSIT,coef_calib_tourknr_KNR_TRANSIT,coef_calib_tourknr_TNC_TRANSIT,coef_calib_tourknr_TAXI,coef_calib_tourknr_TNC_SINGLE,coef_calib_tourknr_TNC_SHARED,coef_calib_tourknr_SCH_BUS,-999,-999 +util_calib_tourtnr,abm 2+ calibration,tourBNR,coef_calib_tourtnr_DRIVEALONE,0,0,0,coef_calib_tourtnr_BIKE,0,coef_calib_tourtnr_PNR_TRANSIT,0,0,0,0,0,coef_calib_tourtnr_SCH_BUS,-999,-999 +util_calib_tourmaas,abm 2+ calibration,tourMaaS,coef_calib_tourmaas_DRIVEALONE,coef_calib_tourmaas_SHARED2,coef_calib_tourmaas_SHARED3,coef_calib_tourmaas_WALK,coef_calib_tourmaas_BIKE,coef_calib_tourmaas_WALK_TRANSIT,coef_calib_tourmaas_PNR_TRANSIT,coef_calib_tourmaas_KNR_TRANSIT,coef_calib_tourmaas_TNC_TRANSIT,coef_calib_tourmaas_TAXI,coef_calib_tourmaas_TNC_SINGLE,coef_calib_tourmaas_TNC_SHARED,coef_calib_tourmaas_TNC_SCH_BUS,0,0 +util_calib_tourschbus,abm 2+ calibration,tourSchBus,coef_calib_tourschbus_DRIVEALONE,coef_calib_tourschbus_SHARED2,coef_calib_tourschbus_SHARED3,coef_calib_tourschbus_WALK,coef_calib_tourschbus_BIKE,coef_calib_tourschbus_WALK_TRANSIT,coef_calib_tourschbus_PNR_TRANSIT,coef_calib_tourschbus_KNR_TRANSIT,coef_calib_tourschbus_TNC_TRANSIT,coef_calib_tourschbus_TAXI,coef_calib_tourschbus_TNC_SINGLE,coef_calib_tourschbus_TNC_SHARED,0,-999,-999 +util_availability_tourebike,,tourEbike,-999,-999,-999,0,-999,-999,-999,-999,-999,-999,-999,-999,-999,0,-999 +util_availability_tourescooter,,tourEscooter,-999,-999,-999,0,-999,-999,-999,-999,-999,-999,-999,-999,-999,-999,0 +#,,,,,,,,,,,,,,,,, +util_calib_jointtour1,abm 2+ calibration,jointTour==1,0,0,0,coef_calib_jointtour1_WALK,0,coef_calib_jointtour1_WALK_TRANSIT,coef_calib_jointtour1_PNR_TRANSIT,coef_calib_jointtour1_KNR_TRANSIT,coef_calib_jointtour1_TNC_TRANSIT,0,0,0,0,, +util_calib_tourbikejointtour0,abm 2+ calibration,tourBike*(jointTour==0),coef_calib_tourbikejointtour0_DRIVEALONE,coef_calib_tourbikejointtour0_SHARED2,coef_calib_tourbikejointtour0_SHARED3,coef_calib_tourbikejointtour0_WALK,coef_calib_tourbikejointtour0_BIKE,coef_calib_tourbikejointtour0_WALK_TRANSIT,coef_calib_tourbikejointtour0_PNR_TRANSIT,coef_calib_tourbikejointtour0_KNR_TRANSIT,coef_calib_tourbikejointtour0_TNC_TRANSIT,coef_calib_tourbikejointtour0_TAXI,coef_calib_tourbikejointtour0_TNC_SINGLE,coef_calib_tourbikejointtour0_TNC_SHARED,0,, +util_calib_tourbikejointtour1,abm 2+ calibration,tourBike*(jointTour==1),0,0,0,0,coef_calib_tourbikejointtour1_BIKE,0,0,0,0,coef_calib_tourbikejointtour1_TAXI,coef_calib_tourbikejointtour1_TNC_SINGLE,coef_calib_tourbikejointtour1_TNC_SHARED,0,, +util_calib_tourdajointtour0,abm 2+ calibration,tourDA*(jointTour==0),coef_calib_tourdajointtour0_DRIVEALONE,coef_calib_tourdajointtour0_SHARED2,coef_calib_tourdajointtour0_SHARED3,coef_calib_tourdajointtour0_WALK,coef_calib_tourdajointtour0_BIKE,coef_calib_tourdajointtour0_WALK_TRANSIT,coef_calib_tourdajointtour0_PNR_TRANSIT,coef_calib_tourdajointtour0_KNR_TRANSIT,coef_calib_tourdajointtour0_TNC_TRANSIT,coef_calib_tourdajointtour0_TAXI,coef_calib_tourdajointtour0_TNC_SINGLE,coef_calib_tourdajointtour0_TNC_SHARED,0,, +util_calib_tourdajointtour1,abm 2+ calibration,tourDA*(jointTour==1),0,coef_calib_tourdajointtour1_SHARED2,coef_calib_tourdajointtour1_SHARED3,coef_calib_tourdajointtour1_WALK,coef_calib_tourdajointtour1_BIKE,coef_calib_tourdajointtour1_WALK_TRANSIT,coef_calib_tourdajointtour1_PNR_TRANSIT,coef_calib_tourdajointtour1_KNR_TRANSIT,coef_calib_tourdajointtour1_TNC_TRANSIT,coef_calib_tourdajointtour1_TAXI,coef_calib_tourdajointtour1_TNC_SINGLE,coef_calib_tourdajointtour1_TNC_SHARED,0,, +util_calib_tourknrjointtour0,abm 2+ calibration,tourKNR*(jointTour==0),coef_calib_tourknrjointtour0_DRIVEALONE,coef_calib_tourknrjointtour0_SHARED2,coef_calib_tourknrjointtour0_SHARED3,coef_calib_tourknrjointtour0_WALK,coef_calib_tourknrjointtour0_BIKE,coef_calib_tourknrjointtour0_WALK_TRANSIT,coef_calib_tourknrjointtour0_PNR_TRANSIT,coef_calib_tourknrjointtour0_KNR_TRANSIT,coef_calib_tourknrjointtour0_TNC_TRANSIT,coef_calib_tourknrjointtour0_TAXI,coef_calib_tourknrjointtour0_TNC_SINGLE,coef_calib_tourknrjointtour0_TNC_SHARED,0,, +util_calib_tourknrjointtour1,abm 2+ calibration,tourKNR*(jointTour==1),coef_calib_tourknrjointtour1_DRIVEALONE,0,0,0,coef_calib_tourknrjointtour1_BIKE,0,coef_calib_tourknrjointtour1_PNR_TRANSIT,0,coef_calib_tourknrjointtour1_TNC_TRANSIT,coef_calib_tourknrjointtour1_TAXI,coef_calib_tourknrjointtour1_TNC_SINGLE,coef_calib_tourknrjointtour1_TNC_SHARED,0,, +util_calib_tourknrtotstops0,abm 2+ calibration,tourKNR*(totStops==0),coef_calib_tourknrtotstops0_DRIVEALONE,coef_calib_tourknrtotstops0_SHARED2,coef_calib_tourknrtotstops0_SHARED3,coef_calib_tourknrtotstops0_WALK,coef_calib_tourknrtotstops0_BIKE,coef_calib_tourknrtotstops0_WALK_TRANSIT,coef_calib_tourknrtotstops0_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourknrtotstops>0,abm 2+ calibration,tourKNR*(totStops>0),coef_calib_tourknrtotstopsm0_DRIVEALONE,0,0,0,coef_calib_tourknrtotstopsm0_BIKE,0,coef_calib_tourknrtotstopsm0_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourknrfirstofmult,abm 2+ calibration,tourKNR*firstOfMultipleTrips,coef_calib_tourknrfirstofmultip_DRIVEALONE,0,0,0,coef_calib_tourknrfirstofmultip_BIKE,0,coef_calib_tourknrfirstofmultip_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourknrlastofmulti,abm 2+ calibration,tourKNR*lastofMultipleTrips,coef_calib_tourknrlastofmultipl_DRIVEALONE,0,0,0,coef_calib_tourknrlastofmultipl_BIKE,0,coef_calib_tourknrlastofmultipl_PNR_TRANSIT,0,0,0,0,0,0,, +util_calib_tourebikejointtour0,,tourEbike*(jointTour==0),,,,coef_calib_tourebikejointtour0_WALK,,,,,,,,,,coef_calib_tourebikejointtour0_EBIKE, +util_calib_tourebikejointtour1,,tourEbike*(jointTour==1),,,,coef_calib_tourebikejointtour1_WALK,,,,,,,,,,coef_calib_tourebikejointtour1_EBIKE, +util_calib_tourescooterjointtour0,,tourEscooter*(jointTour==0),,,,coef_calib_tourescooterjointtour0_WALK,,,,,,,,,,,coef_calib_tourescooterjointtour0_ESCOOTER +util_calib_tourescooterjointtour1,,tourEscooter*(jointTour==1),,,,coef_calib_tourescooterjointtour1_WALK,,,,,,,,,,,coef_calib_tourescooterjointtour1_ESCOOTER +#,,,,,,,,,,,,,,,,, +util_calib_tourmaasjointtour0,abm 2+ calibration,tourMaaS*(jointTour==0),0,coef_calib_tourmaasjointtour0_SHARED2,coef_calib_tourmaasjointtour0_SHARED3,coef_calib_tourmaasjointtour0_WALK,0,0,0,0,0,coef_calib_tourmaasjointtour0_TAXI,coef_calib_tourmaasjointtour0_TNC_SINGLE,coef_calib_tourmaasjointtour0_TNC_SHARED,0,, +util_calib_tourmaasjointtour1,abm 2+ calibration,tourMaaS*(jointTour==1),0,coef_calib_tourmaasjointtour1_SHARED2,coef_calib_tourmaasjointtour1_SHARED3,coef_calib_tourmaasjointtour1_WALK,0,0,0,0,0,0,coef_calib_tourmaasjointtour1_TNC_SINGLE,coef_calib_tourmaasjointtour1_TNC_SHARED,0,, +util_calib_tourpnrjointtour0,abm 2+ calibration,tourPNR*(jointTour==0),coef_calib_tourpnrjointtour0_DRIVEALONE,coef_calib_tourpnrjointtour0_SHARED2,coef_calib_tourpnrjointtour0_SHARED3,coef_calib_tourpnrjointtour0_WALK,coef_calib_tourpnrjointtour0_BIKE,coef_calib_tourpnrjointtour0_WALK_TRANSIT,coef_calib_tourpnrjointtour0_PNR_TRANSIT,coef_calib_tourpnrjointtour0_KNR_TRANSIT,coef_calib_tourpnrjointtour0_TNC_TRANSIT,coef_calib_tourpnrjointtour0_TAXI,coef_calib_tourpnrjointtour0_TNC_SINGLE,coef_calib_tourpnrjointtour0_TNC_SHARED,0,, +util_calib_tourpnrjointtour1,abm 2+ calibration,tourPNR*(jointTour==1),0,0,0,0,coef_calib_tourpnrjointtour1_BIKE,0,0,coef_calib_tourpnrjointtour1_KNR_TRANSIT,coef_calib_tourpnrjointtour1_TNC_TRANSIT,coef_calib_tourpnrjointtour1_TAXI,coef_calib_tourpnrjointtour1_TNC_SINGLE,coef_calib_tourpnrjointtour1_TNC_SHARED,0,, +util_calib_tourpnrtotstops0,abm 2+ calibration,tourPNR*(totStops==0),coef_calib_tourpnrtotstops0_DRIVEALONE,coef_calib_tourpnrtotstops0_SHARED2,coef_calib_tourpnrtotstops0_SHARED3,coef_calib_tourpnrtotstops0_WALK,coef_calib_tourpnrtotstops0_BIKE,coef_calib_tourpnrtotstops0_WALK_TRANSIT,0,coef_calib_tourpnrtotstops0_KNR_TRANSIT,coef_calib_tourpnrtotstops0_TNC_TRANSIT,0,0,0,0,, +util_calib_tourpnrtotstops>0,abm 2+ calibration,tourPNR*(totStops>0),0,0,0,0,coef_calib_tourpnrtotstopsm0_BIKE,coef_calib_tourpnrtotstopsm0_WALK_TRANSIT,0,coef_calib_tourpnrtotstopsm0_KNR_TRANSIT,coef_calib_tourpnrtotstopsm0_TNC_TRANSIT,0,0,0,0,, +util_calib_tourpnrfirstofmult,abm 2+ calibration,tourPNR*firstOfMultipleTrips,0,0,0,0,coef_calib_tourpnrfirstofmultip_BIKE,0,0,coef_calib_tourpnrfirstofmultip_KNR_TRANSIT,coef_calib_tourpnrfirstofmultip_TNC_TRANSIT,0,0,0,0,, +util_calib_tourpnrlastofmulti,abm 2+ calibration,tourPNR*lastofMultipleTrips,0,0,0,0,coef_calib_tourpnrlastofmultipl_BIKE,0,0,coef_calib_tourpnrlastofmultipl_KNR_TRANSIT,coef_calib_tourpnrlastofmultipl_TNC_TRANSIT,0,0,0,0,, +util_calib_tours2jointtour0,abm 2+ calibration,tourS2*(jointTour==0),coef_calib_tours2jointtour0_DRIVEALONE,coef_calib_tours2jointtour0_SHARED2,coef_calib_tours2jointtour0_SHARED3,coef_calib_tours2jointtour0_WALK,coef_calib_tours2jointtour0_BIKE,coef_calib_tours2jointtour0_WALK_TRANSIT,coef_calib_tours2jointtour0_PNR_TRANSIT,coef_calib_tours2jointtour0_KNR_TRANSIT,coef_calib_tours2jointtour0_TNC_TRANSIT,coef_calib_tours2jointtour0_TAXI,coef_calib_tours2jointtour0_TNC_SINGLE,coef_calib_tours2jointtour0_TNC_SHARED,0,, +util_calib_tours2jointtour1,abm 2+ calibration,tourS2*(jointTour==1),coef_calib_tours2jointtour1_DRIVEALONE,coef_calib_tours2jointtour1_SHARED2,coef_calib_tours2jointtour1_SHARED3,coef_calib_tours2jointtour1_WALK,coef_calib_tours2jointtour1_BIKE,coef_calib_tours2jointtour1_WALK_TRANSIT,coef_calib_tours2jointtour1_PNR_TRANSIT,coef_calib_tours2jointtour1_KNR_TRANSIT,coef_calib_tours2jointtour1_TNC_TRANSIT,coef_calib_tours2jointtour1_TAXI,coef_calib_tours2jointtour1_TNC_SINGLE,coef_calib_tours2jointtour1_TNC_SHARED,0,, +#,,,,,,,,,,,,,,,,, +util_calib_tours2totstops0,abm 2+ calibration,tourS2*(totStops==0),coef_calib_tours2totstops0_DRIVEALONE,0,coef_calib_tours2totstops0_SHARED3,coef_calib_tours2totstops0_WALK,coef_calib_tours2totstops0_BIKE,coef_calib_tours2totstops0_WALK_TRANSIT,coef_calib_tours2totstops0_PNR_TRANSIT,coef_calib_tours2totstops0_KNR_TRANSIT,coef_calib_tours2totstops0_TNC_TRANSIT,0,0,0,0,, +util_calib_tours2firstofmulti,abm 2+ calibration,tourS2*firstOfMultipleTrips,coef_calib_tours2firstofmultipl_DRIVEALONE,0,coef_calib_tours2firstofmultipl_SHARED3,coef_calib_tours2firstofmultipl_WALK,coef_calib_tours2firstofmultipl_BIKE,coef_calib_tours2firstofmultipl_WALK_TRANSIT,coef_calib_tours2firstofmultipl_PNR_TRANSIT,coef_calib_tours2firstofmultipl_KNR_TRANSIT,coef_calib_tours2firstofmultipl_TNC_TRANSIT,0,0,0,0,, +util_calib_tours2lastofmultip,abm 2+ calibration,tourS2*lastofMultipleTrips,coef_calib_tours2lastofmultiple_DRIVEALONE,0,coef_calib_tours2lastofmultiple_SHARED3,coef_calib_tours2lastofmultiple_WALK,coef_calib_tours2lastofmultiple_BIKE,coef_calib_tours2lastofmultiple_WALK_TRANSIT,coef_calib_tours2lastofmultiple_PNR_TRANSIT,coef_calib_tours2lastofmultiple_KNR_TRANSIT,coef_calib_tours2lastofmultiple_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3jointtour0,abm 2+ calibration,tourS3*(jointTour==0),coef_calib_tours3jointtour0_DRIVEALONE,coef_calib_tours3jointtour0_SHARED2,coef_calib_tours3jointtour0_SHARED3,coef_calib_tours3jointtour0_WALK,coef_calib_tours3jointtour0_BIKE,coef_calib_tours3jointtour0_WALK_TRANSIT,coef_calib_tours3jointtour0_PNR_TRANSIT,coef_calib_tours3jointtour0_KNR_TRANSIT,coef_calib_tours3jointtour0_TNC_TRANSIT,coef_calib_tours3jointtour0_TAXI,coef_calib_tours3jointtour0_TNC_SINGLE,coef_calib_tours3jointtour0_TNC_SHARED,0,, +util_calib_tours3jointtour1,abm 2+ calibration,tourS3*(jointTour==1),coef_calib_tours3jointtour1_DRIVEALONE,coef_calib_tours3jointtour1_SHARED2,coef_calib_tours3jointtour1_SHARED3,coef_calib_tours3jointtour1_WALK,coef_calib_tours3jointtour1_BIKE,coef_calib_tours3jointtour1_WALK_TRANSIT,coef_calib_tours3jointtour1_PNR_TRANSIT,coef_calib_tours3jointtour1_KNR_TRANSIT,coef_calib_tours3jointtour1_TNC_TRANSIT,coef_calib_tours3jointtour1_TAXI,coef_calib_tours3jointtour1_TNC_SINGLE,coef_calib_tours3jointtour1_TNC_SHARED,0,, +util_calib_tours3totstops0,abm 2+ calibration,tourS3*(totStops==0),coef_calib_tours3totstops0_DRIVEALONE,coef_calib_tours3totstops0_SHARED2,0,coef_calib_tours3totstops0_WALK,coef_calib_tours3totstops0_BIKE,coef_calib_tours3totstops0_WALK_TRANSIT,coef_calib_tours3totstops0_PNR_TRANSIT,coef_calib_tours3totstops0_KNR_TRANSIT,coef_calib_tours3totstops0_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3autodeficien,abm 2+ calibration,tourS3*autoDeficientHH,0,coef_calib_tours3autodeficienth_SHARED2,0,0,0,0,0,0,0,0,0,0,0,, +util_calib_tours3firstofmulti,abm 2+ calibration,tourS3*firstOfMultipleTrips,coef_calib_tours3firstofmultipl_DRIVEALONE,coef_calib_tours3firstofmultipl_SHARED2,0,coef_calib_tours3firstofmultipl_WALK,coef_calib_tours3firstofmultipl_BIKE,coef_calib_tours3firstofmultipl_WALK_TRANSIT,coef_calib_tours3firstofmultipl_PNR_TRANSIT,coef_calib_tours3firstofmultipl_KNR_TRANSIT,coef_calib_tours3firstofmultipl_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3lastofmultip,abm 2+ calibration,tourS3*lastofMultipleTrips,coef_calib_tours3lastofmultiple_DRIVEALONE,coef_calib_tours3lastofmultiple_SHARED2,0,coef_calib_tours3lastofmultiple_WALK,coef_calib_tours3lastofmultiple_BIKE,coef_calib_tours3lastofmultiple_WALK_TRANSIT,coef_calib_tours3lastofmultiple_PNR_TRANSIT,coef_calib_tours3lastofmultiple_KNR_TRANSIT,coef_calib_tours3lastofmultiple_TNC_TRANSIT,0,0,0,0,, +util_calib_tours3zeroautohh,abm 2+ calibration,tourS3*zeroAutoHH,0,coef_calib_tours3zeroautohh_SHARED2,0,0,0,0,0,0,0,0,0,0,0,, +#,,,,,,,,,,,,,,,,, +util_calib_tourwtranjointtour0,abm 2+ calibration,tourWTran*(jointTour==0),coef_calib_tourwtranjointtour0_DRIVEALONE,coef_calib_tourwtranjointtour0_SHARED2,coef_calib_tourwtranjointtour0_SHARED3,coef_calib_tourwtranjointtour0_WALK,coef_calib_tourwtranjointtour0_BIKE,coef_calib_tourwtranjointtour0_WALK_TRANSIT,coef_calib_tourwtranjointtour0_PNR_TRANSIT,coef_calib_tourwtranjointtour0_KNR_TRANSIT,coef_calib_tourwtranjointtour0_TNC_TRANSIT,0,coef_calib_tourwtranjointtour0_TNC_SINGLE,coef_calib_tourwtranjointtour0_TNC_SHARED,0,, +util_calib_tourwtranjointtour1,abm 2+ calibration,tourWTran*(jointTour==1),coef_calib_tourwtranjointtour1_DRIVEALONE,coef_calib_tourwtranjointtour1_SHARED2,coef_calib_tourwtranjointtour1_SHARED3,coef_calib_tourwtranjointtour1_WALK,coef_calib_tourwtranjointtour1_BIKE,coef_calib_tourwtranjointtour1_WALK_TRANSIT,coef_calib_tourwtranjointtour1_PNR_TRANSIT,coef_calib_tourwtranjointtour1_KNR_TRANSIT,coef_calib_tourwtranjointtour1_TNC_TRANSIT,coef_calib_tourwtranjointtour1_TAXI,coef_calib_tourwtranjointtour1_TNC_SINGLE,coef_calib_tourwtranjointtour1_TNC_SHARED,0,, +util_calib_tourwtrantotstops0,abm 2+ calibration,tourWTran*(totStops==0),coef_calib_tourwtrantotstops0_DRIVEALONE,coef_calib_tourwtrantotstops0_SHARED2,coef_calib_tourwtrantotstops0_SHARED3,coef_calib_tourwtrantotstops0_WALK,coef_calib_tourwtrantotstops0_BIKE,0,coef_calib_tourwtrantotstops0_PNR_TRANSIT,coef_calib_tourwtrantotstops0_KNR_TRANSIT,coef_calib_tourwtrantotstops0_TNC_TRANSIT,0,0,0,coef_calib_tourwtrantotstops0_SCH_BUS,, +#,,,,,,,,,,,,,,,,, +util_calib_tourwtranfirstofmu,abm 2+ calibration,tourWTran*firstOfMultipleTrips,coef_calib_tourwtranfirstofmult_DRIVEALONE,coef_calib_tourwtranfirstofmult_SHARED2,coef_calib_tourwtranfirstofmult_SHARED3,coef_calib_tourwtranfirstofmult_WALK,coef_calib_tourwtranfirstofmult_BIKE,0,coef_calib_tourwtranfirstofmult_PNR_TRANSIT,coef_calib_tourwtranfirstofmult_KNR_TRANSIT,coef_calib_tourwtranfirstofmult_TNC_TRANSIT,0,0,0,coef_calib_tourwtranfirstofmult_SCH_BUS,, +util_calib_tourwtranlastofmul,abm 2+ calibration,tourWTran*lastofMultipleTrips,coef_calib_tourwtranlastofmulti_DRIVEALONE,coef_calib_tourwtranlastofmulti_SHARED2,coef_calib_tourwtranlastofmulti_SHARED3,coef_calib_tourwtranlastofmulti_WALK,coef_calib_tourwtranlastofmulti_BIKE,0,coef_calib_tourwtranlastofmulti_PNR_TRANSIT,coef_calib_tourwtranlastofmulti_KNR_TRANSIT,coef_calib_tourwtranlastofmulti_TNC_TRANSIT,0,0,0,coef_calib_tourwtranlastofmulti_SCH_BUS,, +util_calib_tourwtranzeroautoh,abm 2+ calibration,tourWTran*zeroAutoHH,0,0,0,coef_calib_tourwtranzeroautohh_WALK,0,0,0,0,0,0,0,0,0,, +util_calib_tourwalkjointtour0,abm 2+ calibration,tourWalk*(jointTour==0),coef_calib_tourwalkjointtour0_DRIVEALONE,coef_calib_tourwalkjointtour0_SHARED2,coef_calib_tourwalkjointtour0_SHARED3,coef_calib_tourwalkjointtour0_WALK,coef_calib_tourwalkjointtour0_BIKE,coef_calib_tourwalkjointtour0_WALK_TRANSIT,coef_calib_tourwalkjointtour0_PNR_TRANSIT,coef_calib_tourwalkjointtour0_KNR_TRANSIT,coef_calib_tourwalkjointtour0_TNC_TRANSIT,coef_calib_tourwalkjointtour0_TAXI,coef_calib_tourwalkjointtour0_TNC_SINGLE,coef_calib_tourwalkjointtour0_TNC_SHARED,0,, +util_calib_tourwalkjointtour1,abm 2+ calibration,tourWalk*(jointTour==1),coef_calib_tourwalkjointtour1_DRIVEALONE,coef_calib_tourwalkjointtour1_SHARED2,coef_calib_tourwalkjointtour1_SHARED3,0,coef_calib_tourwalkjointtour1_BIKE,coef_calib_tourwalkjointtour1_WALK_TRANSIT,coef_calib_tourwalkjointtour1_PNR_TRANSIT,coef_calib_tourwalkjointtour1_KNR_TRANSIT,coef_calib_tourwalkjointtour1_TNC_TRANSIT,coef_calib_tourwalkjointtour1_TAXI,coef_calib_tourwalkjointtour1_TNC_SINGLE,coef_calib_tourwalkjointtour1_TNC_SHARED,0,, +#,Micromobility,,,,,,,,,,,,,,,, +util_micromobility_long_access,Shut off micromobility if access time > threshold and not micromobility tour,@((df.MicroAccessTime > microAccessThreshold)& ~(df.tourEbike | df.tourEscooter)),,,,,,,,,,,,,,-999,-999 +util_ebike_long_access_microTour,Decrease ebike if access time > threshold but tour is micromobility,@((df.MicroAccessTime > microAccessThreshold) & (df.tourEbike | df.tourEscooter) & ((~df.ebike_owner) | (~df.tourEbike))),,,,,,,,,,,,,,-20, +util_escooter_long_access_microTour,Decrease escooter if access time > threshold but tour is micromobility,@((df.MicroAccessTime > microAccessThreshold) & (df.tourEbike | df.tourEscooter)),,,,,,,,,,,,,,,-20 +#util_micromobility_long_trip,Shut off ebike if distance > threshold,ebikeMaxDistance,,,,,,,,,,,,,,-999, +#util_micromobility_long_trip,Shut off escooter if distance > threshold,escooterMaxDistance,,,,,,,,,,,,,,,-999 +util_ebike_ivt,Ebike utility for in-vehicle time,@(df.ebike_time * df.time_factor),,,,,,,,,,,,,,coef_ivt, +util_ebike_access,Ebike utility for access time time,@((((~df.ebike_owner) | (~df.tourEbike))&(microRentTime + df.MicroAccessTime)))*df.time_factor,,,,,,,,,,,,,,coef_acctime, +util_ebike_cost_inb,Ebike utility for inbound cost,@(((~df.ebike_owner) | (~df.tourEbike)) & ((microFixedCost + microVarCost*df.ebike_time)*100/df.cost_sensitivity)),,,,,,,,,,,,,,coef_income, +util_escooter_ivt,Escooter utility for in-vehicle time,@(df.escooter_time)*df.time_factor,,,,,,,,,,,,,,,coef_ivt +util_escooter_access,Escooter utility for access time,@(microRentTime + df.MicroAccessTime) *df.time_factor,,,,,,,,,,,,,,,coef_acctime +util_escooter_cost_inb,Escooter utility for inbound cost,@(microFixedCost + microVarCost*df.escooter_time)*100/df.cost_sensitivity,,,,,,,,,,,,,,,coef_income diff --git a/resident/configs_estimation/trip_mode_choice_coefficients.csv b/resident/configs_estimation/trip_mode_choice_coefficients.csv new file mode 100644 index 0000000..92c90eb --- /dev/null +++ b/resident/configs_estimation/trip_mode_choice_coefficients.csv @@ -0,0 +1,1432 @@ +coefficient_name,value,constrain +coef_zero,0.0,T +coef_one,1.0,T +coef_nest_root,1.0,T +coef_nest_AUTO,0.5,T +coef_nest_NONMOTORIZED,0.5,T +coef_nest_MICROMOBILITY,0.5,T +coef_nest_TRANSIT,0.5,T +coef_nest_RIDEHAIL,0.5,T +coef_nest_SCHOOL_BUS,0.5,T +coef_unavailable,-30.0,T +#,0.0, +coef_ivt_work,-0.032,F +coef_ivt_univ,-0.032,F +coef_ivt_school,-0.02,F +coef_ivt_maint,-0.034,F +coef_ivt_disc,-0.03,F +coef_ivt_atwork,-0.064,F +coef_rel_work,-0.384,F +coef_rel_univ,-0.384,F +coef_rel_school,-0.24,F +coef_rel_maint,-0.408,F +coef_rel_disc,-0.36,F +coef_rel_atwork,-0.768,F +coef_income_work,-1.25,F +coef_income_univ,-0.524,F +coef_income_school,-0.524,F +coef_income_maint,-0.524,F +coef_income_disc,-0.524,F +coef_income_atwork,-0.524,F +coef_walktime_work,-0.0848,F +coef_walktime_univ,-0.0848,F +coef_walktime_school,-0.053,F +coef_walktime_maint,-0.0901,F +coef_walktime_disc,-0.0795,F +coef_walktime_atwork,-0.1696,F +coef_wait_work,-0.048,F +coef_wait_univ,-0.048,F +coef_wait_school,-0.03,F +coef_wait_maint,-0.051,F +coef_wait_disc,-0.045,F +coef_wait_atwork,-0.096,F +coef_xwait_work,-0.064,F +coef_xwait_univ,-0.064,F +coef_xwait_school,-0.04,F +coef_xwait_maint,-0.068,F +coef_xwait_disc,-0.06,F +coef_xwait_atwork,-0.128,F +coef_xfer_work,-0.048,F +coef_xfer_univ,-0.048,F +coef_xfer_school,-0.03,F +coef_xfer_maint,-0.051,F +coef_xfer_disc,-0.045,F +coef_xfer_atwork,-0.096,F +coef_xferdrive_work,-0.064,F +coef_xferdrive_univ,-0.064,F +coef_xferdrive_school,-0.04,F +coef_xferdrive_maint,-0.068,F +coef_xferdrive_disc,-0.06,F +coef_xferdrive_atwork,-0.128,F +coef_acctime_work,-0.064,F +coef_acctime_univ,-0.064,F +coef_acctime_school,-0.04,F +coef_acctime_maint,-0.068,F +coef_acctime_disc,-0.06,F +coef_acctime_atwork,-0.128,F +coef_xwalk_work,-0.064,F +coef_xwalk_univ,-0.064,F +coef_xwalk_school,-0.04,F +coef_xwalk_maint,-0.068,F +coef_xwalk_disc,-0.06,F +coef_xwalk_atwork,-0.128,F +#,0.0, +coef_oMix_nmot_work,0.22519,F +coef_oMix_wTran_work,0.0,F +coef_oIntDen_nmot_work,0.0,F +coef_oIntDen_wTran_work,0.0,F +coef_dEmpDen_nmot_work,0.0,F +coef_dEmpDen_wTran_work,0.0,F +coef_dEmpDen_dTran_work,0.02512,F +coef_female_sr2_work,0.2743,F +coef_female_sr3p_work,0.0718,F +coef_female_tran_work,1.0624,F +coef_female_nmot_work,-1.1033,F +coef_size2_sr2_work,0.0,F +coef_size2_sr3p_work,0.0,F +coef_size3_sr2_work,0.0,F +coef_size3_sr3p_work,0.0,F +coef_size4p_sr2_work,0.0,F +coef_size4p_sr3p_work,0.0,F +coef_bikeLogsum_work,0.06717,F +#,0.0, +coef_oMix_nmot_univ,0.0,F +coef_oMix_wTran_univ,0.0,F +coef_oIntDen_nmot_univ,0.0,F +coef_oIntDen_wTran_univ,0.0,F +coef_dEmpDen_nmot_univ,0.0,F +coef_dEmpDen_wTran_univ,0.0,F +coef_dEmpDen_dTran_univ,0.0,F +coef_female_sr2_univ,-0.7308,F +coef_female_sr3p_univ,-1.11759,F +coef_female_tran_univ,0.0,F +coef_female_nmot_univ,0.0,F +coef_size2_sr2_univ,0.0,F +coef_size2_sr3p_univ,0.0,F +coef_size3_sr2_univ,0.0,F +coef_size3_sr3p_univ,0.0,F +coef_size4p_sr2_univ,0.0,F +coef_size4p_sr3p_univ,0.0,F +coef_bikeLogsum_univ,0.06717,F +#,0.0, +coef_oMix_nmot_school,0.0,F +coef_oMix_wTran_school,0.0,F +coef_oIntDen_nmot_school,0.0,F +coef_oIntDen_wTran_school,0.0,F +coef_dEmpDen_nmot_school,0.0,F +coef_dEmpDen_wTran_school,0.0,F +coef_dEmpDen_dTran_school,0.0,F +coef_female_sr2_school,0.0,F +coef_female_sr3p_school,0.0,F +coef_female_tran_school,0.0,F +coef_female_nmot_school,0.0,F +coef_age1to5_nmot_school,-1.711,F +coef_age6to12_nmot_school,-0.762,F +coef_age13to15_nmot_school,-0.312,F +coef_age6to12_schb_school,0.0,F +coef_size2_sr2_school,0.0,F +coef_size2_sr3p_school,0.0,F +coef_size3_sr2_school,0.0,F +coef_size3_sr3p_school,0.0,F +coef_size4p_sr2_school,0.0,F +coef_size4p_sr3p_school,0.0,F +coef_bikeLogsum_school,0.06717,F +#,0.0, +coef_oMix_nmot_maint,0.0,F +coef_oMix_wTran_maint,0.0,F +coef_oIntDen_nmot_maint,0.0,F +coef_oIntDen_wTran_maint,0.0,F +coef_dEmpDen_nmot_maint,0.093,F +coef_dEmpDen_wTran_maint,0.0,F +coef_dEmpDen_dTran_maint,0.0,F +coef_female_sr2_maint,0.0,F +coef_female_sr3p_maint,0.0,F +coef_female_tran_maint,0.0,F +coef_female_nmot_maint,0.0,F +coef_size2_sr2_maint,0.0,F +coef_size2_sr3p_maint,0.0,F +coef_size3_sr2_maint,-0.416,F +coef_size3_sr3p_maint,0.792,F +coef_size4p_sr2_maint,-0.444,F +coef_size4p_sr3p_maint,0.424,F +coef_bikeLogsum_maint,0.06717,F +#,0.0, +coef_oMix_nmot_disc,0.275,F +coef_oMix_wTran_disc,0.0,F +coef_oIntDen_nmot_disc,0.0,F +coef_oIntDen_wTran_disc,0.0,F +coef_dEmpDen_nmot_disc,0.0,F +coef_dEmpDen_wTran_disc,0.0,F +coef_dEmpDen_dTran_disc,0.0,F +coef_female_sr2_disc,0.0,F +coef_female_sr3p_disc,0.0,F +coef_female_tran_disc,-2.736,F +coef_female_nmot_disc,0.0,F +coef_size2_sr2_disc,0.0,F +coef_size2_sr3p_disc,0.0,F +coef_size3_sr2_disc,0.958,F +coef_size3_sr3p_disc,0.695,F +coef_size4p_sr2_disc,0.958,F +coef_size4p_sr3p_disc,0.695,F +coef_bikeLogsum_disc,0.06717,F +#,0.0, +coef_oMix_nmot_atwork,0.0,F +coef_oMix_wTran_atwork,0.0,F +coef_oIntDen_nmot_atwork,0.0,F +coef_oIntDen_wTran_atwork,0.0,F +coef_dEmpDen_nmot_atwork,0.0,F +coef_dEmpDen_wTran_atwork,0.0,F +coef_dEmpDen_dTran_atwork,0.0,F +coef_female_sr2_atwork,0.0,F +coef_female_sr3p_atwork,0.0,F +coef_female_tran_atwork,0.0,F +coef_female_nmot_atwork,0.0,F +coef_size2_sr2_atwork,0.0,F +coef_size2_sr3p_atwork,0.0,F +coef_size3_sr2_atwork,0.0,F +coef_size3_sr3p_atwork,0.0,F +coef_size4p_sr2_atwork,0.0,F +coef_size4p_sr3p_atwork,0.0,F +coef_bikeLogsum_atwork,0.06717,F +coef_walkTime_atwork,-0.15926,F +#,0.0, +coef_calib_civt5max10sovdistski_KNR_TRANSIT_work,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_work,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_work,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_work,1.0,F +coef_calib_tourbike_DRIVEALONE_work,-30.0,F +coef_calib_tourbike_SHARED2_work,0.0,F +coef_calib_tourbike_SHARED3_work,0.0,F +coef_calib_tourbike_WALK_work,-44.0,F +coef_calib_tourbike_BIKE_work,-0.3227686816960651,F +coef_calib_tourbike_WALK_TRANSIT_work,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_work,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_work,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_work,-30.0,F +coef_calib_tourbike_TAXI_work,-30.0,F +coef_calib_tourbike_TNC_SINGLE_work,-30.0,F +coef_calib_tourbike_TNC_SHARED_work,-30.0,F +coef_calib_tourda_SHARED2_work,-30.0,F +coef_calib_tourda_SHARED3_work,-30.0,F +coef_calib_tourda_WALK_work,-30.0,F +coef_calib_tourda_BIKE_work,-30.0,F +coef_calib_tourda_WALK_TRANSIT_work,-30.0,F +coef_calib_tourda_PNR_TRANSIT_work,-30.0,F +coef_calib_tourda_KNR_TRANSIT_work,-30.0,F +coef_calib_tourda_TNC_TRANSIT_work,-30.0,F +coef_calib_tourda_TAXI_work,-30.0,F +coef_calib_tourda_TNC_SINGLE_work,-30.0,F +coef_calib_tourda_TNC_SHARED_work,-30.0,F +coef_calib_tourknr_DRIVEALONE_work,-3996.0,F +coef_calib_tourknr_SHARED2_work,3.206724072,F +coef_calib_tourknr_SHARED3_work,2.371212584,F +coef_calib_tourknr_WALK_work,3.88459523,F +coef_calib_tourknr_BIKE_work,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_work,15.5746,F +coef_calib_tourknr_PNR_TRANSIT_work,-30.0,F +coef_calib_tourknr_KNR_TRANSIT_work,1.1644205853617382,F +coef_calib_tourknr_TNC_TRANSIT_work,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_work,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_work,-1.0,F +coef_calib_tourknrtotstops0_SHARED3_work,-1.0,F +coef_calib_tourknrtotstops0_WALK_work,-1.0,F +coef_calib_tourknrtotstops0_BIKE_work,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_work,-1.0,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tourknrfirstofmultip_DRIVEALONE_work,-30.0,F +coef_calib_tourknrfirstofmultip_BIKE_work,-30.0,F +coef_calib_tourknrfirstofmultip_PNR_TRANSIT_work,-30.0,F +coef_calib_tourknrlastofmultipl_DRIVEALONE_work,-30.0,F +coef_calib_tourknrlastofmultipl_BIKE_work,-30.0,F +coef_calib_tourknrlastofmultipl_PNR_TRANSIT_work,-30.0,F +coef_calib_tourmaas_DRIVEALONE_work,-30.0,F +coef_calib_tourmaas_SHARED2_work,-29.26,F +coef_calib_tourmaas_SHARED3_work,-23.83,F +coef_calib_tourmaas_WALK_work,-20.71,F +coef_calib_tourmaas_BIKE_work,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_work,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_work,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_work,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_work,-30.0,F +coef_calib_tourmaas_TAXI_work,-28.06,F +coef_calib_tourmaas_TNC_SINGLE_work,2.787820012666538,F +coef_calib_tourmaas_TNC_SHARED_work,-7.11,F +coef_calib_tourpnr_DRIVEALONE_work,2.306054249,F +coef_calib_tourpnr_SHARED2_work,2.109169591,F +coef_calib_tourpnr_SHARED3_work,1.526,F +coef_calib_tourpnr_WALK_work,0.92600338,F +coef_calib_tourpnr_BIKE_work,-3996.0,F +coef_calib_tourpnr_WALK_TRANSIT_work,8.109380657,F +coef_calib_tourpnr_PNR_TRANSIT_work,0.6683276501380512,F +coef_calib_tourpnr_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_work,-30.0,F +coef_calib_tourpnr_TAXI_work,-30.0,F +coef_calib_tourpnr_TNC_SINGLE_work,-30.0,F +coef_calib_tourpnr_TNC_SHARED_work,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_work,-10.0,F +coef_calib_tourpnrtotstops0_SHARED2_work,-30.0,F +coef_calib_tourpnrtotstops0_SHARED3_work,-30.0,F +coef_calib_tourpnrtotstops0_WALK_work,-30.0,F +coef_calib_tourpnrtotstops0_BIKE_work,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_work,-30.0,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tourpnrfirstofmultip_BIKE_work,-30.0,F +coef_calib_tourpnrfirstofmultip_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnrfirstofmultip_TNC_TRANSIT_work,-30.0,F +coef_calib_tourpnrlastofmultipl_BIKE_work,-30.0,F +coef_calib_tourpnrlastofmultipl_KNR_TRANSIT_work,-30.0,F +coef_calib_tourpnrlastofmultipl_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2_DRIVEALONE_work,1.7593561940559026,F +coef_calib_tours2_SHARED2_work,1.0508543549194378,F +coef_calib_tours2_SHARED3_work,-30.0,F +coef_calib_tours2_WALK_work,1.9299711755116555,F +coef_calib_tours2_BIKE_work,-30.0,F +coef_calib_tours2_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2_TAXI_work,-30.0,F +coef_calib_tours2_TNC_SINGLE_work,-30.0,F +coef_calib_tours2_TNC_SHARED_work,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_work,-3.2003,F +coef_calib_tours2totstops0_SHARED3_work,-30.0,F +coef_calib_tours2totstops0_WALK_work,-3.2003,F +coef_calib_tours2totstops0_BIKE_work,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2totstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2totstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2totstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_DRIVEALONE_work,-3.0147,F +coef_calib_tours2firstofmultipl_SHARED3_work,-30.0,F +coef_calib_tours2firstofmultipl_WALK_work,-3.0147,F +coef_calib_tours2firstofmultipl_BIKE_work,-30.0,F +coef_calib_tours2firstofmultipl_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2firstofmultipl_TNC_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_DRIVEALONE_work,-2.0599,F +coef_calib_tours2lastofmultiple_SHARED3_work,-30.0,F +coef_calib_tours2lastofmultiple_WALK_work,-2.0599,F +coef_calib_tours2lastofmultiple_BIKE_work,-30.0,F +coef_calib_tours2lastofmultiple_WALK_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_PNR_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_KNR_TRANSIT_work,-30.0,F +coef_calib_tours2lastofmultiple_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3_DRIVEALONE_work,2.065041397538226,F +coef_calib_tours3_SHARED2_work,1.3212585379251784,F +coef_calib_tours3_SHARED3_work,1.4561122694539546,F +coef_calib_tours3_WALK_work,-6.474446872498466,F +coef_calib_tours3_BIKE_work,-30.0,F +coef_calib_tours3_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3_TAXI_work,-30.0,F +coef_calib_tours3_TNC_SINGLE_work,-30.0,F +coef_calib_tours3_TNC_SHARED_work,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_work,-2.2614,F +coef_calib_tours3totstops0_SHARED2_work,-2.2614,F +coef_calib_tours3totstops0_WALK_work,-2.2614,F +coef_calib_tours3totstops0_BIKE_work,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3totstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3totstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3totstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_DRIVEALONE_work,-1.8752,F +coef_calib_tours3firstofmultipl_SHARED2_work,-1.8752,F +coef_calib_tours3firstofmultipl_WALK_work,-1.8752,F +coef_calib_tours3firstofmultipl_BIKE_work,-30.0,F +coef_calib_tours3firstofmultipl_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3firstofmultipl_TNC_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_DRIVEALONE_work,-1.611,F +coef_calib_tours3lastofmultiple_SHARED2_work,-1.611,F +coef_calib_tours3lastofmultiple_WALK_work,-1.611,F +coef_calib_tours3lastofmultiple_BIKE_work,-30.0,F +coef_calib_tours3lastofmultiple_WALK_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_PNR_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_KNR_TRANSIT_work,-30.0,F +coef_calib_tours3lastofmultiple_TNC_TRANSIT_work,-30.0,F +coef_calib_tourtnr_DRIVEALONE_work,-30.0,F +coef_calib_tourtnr_BIKE_work,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtran_DRIVEALONE_work,-3.915145738127669,F +coef_calib_tourwtran_SHARED2_work,-2.7208261492167063,F +coef_calib_tourwtran_SHARED3_work,-4.6518099156093395,F +coef_calib_tourwtran_WALK_work,-2.801049007072627,F +coef_calib_tourwtran_BIKE_work,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_work,1.05215339432953,F +coef_calib_tourwtran_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwtran_TAXI_work,-9.690000000000001,F +coef_calib_tourwtran_TNC_SINGLE_work,32.98207726381463,F +coef_calib_tourwtran_TNC_SHARED_work,-8.690000000000001,F +coef_calib_tourwtrantotstops0_DRIVEALONE_work,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_work,-1.6562,F +coef_calib_tourwtrantotstops0_SHARED3_work,-1.6562,F +coef_calib_tourwtrantotstops0_WALK_work,-1.6562,F +coef_calib_tourwtrantotstops0_BIKE_work,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_work,-30.0,F +coef_calib_tourwtranfirstofmult_BIKE_work,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwtranlastofmulti_DRIVEALONE_work,-30.0,F +coef_calib_tourwtranlastofmulti_BIKE_work,-30.0,F +coef_calib_tourwtranlastofmulti_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranlastofmulti_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwtranlastofmulti_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwalk_DRIVEALONE_work,-30.0,F +coef_calib_tourwalk_SHARED2_work,-30.0,F +coef_calib_tourwalk_SHARED3_work,-30.0,F +coef_calib_tourwalk_BIKE_work,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_work,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_work,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_work,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_work,-30.0,F +coef_calib_tourwalk_TAXI_work,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_work,-30.0,F +coef_calib_tourwalk_TNC_SHARED_work,-30.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_univ,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_univ,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_univ,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_univ,1.0,F +coef_calib_tourbike_DRIVEALONE_univ,-30.0,F +coef_calib_tourbike_SHARED2_univ,0.0,F +coef_calib_tourbike_SHARED3_univ,0.0,F +coef_calib_tourbike_WALK_univ,-1.156683606924339,F +coef_calib_tourbike_BIKE_univ,-1.3630686198359863,F +coef_calib_tourbike_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourbike_TAXI_univ,-30.0,F +coef_calib_tourbike_TNC_SINGLE_univ,-30.0,F +coef_calib_tourbike_TNC_SHARED_univ,-30.0,F +coef_calib_tourda_SHARED2_univ,-30.0,F +coef_calib_tourda_SHARED3_univ,-30.0,F +coef_calib_tourda_WALK_univ,-30.0,F +coef_calib_tourda_BIKE_univ,-30.0,F +coef_calib_tourda_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourda_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourda_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourda_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourda_TAXI_univ,-30.0,F +coef_calib_tourda_TNC_SINGLE_univ,-30.0,F +coef_calib_tourda_TNC_SHARED_univ,-30.0,F +coef_calib_tourknr_DRIVEALONE_univ,-30.0,F +coef_calib_tourknr_SHARED2_univ,1.5968,F +coef_calib_tourknr_SHARED3_univ,0.1427,F +coef_calib_tourknr_WALK_univ,2.186,F +coef_calib_tourknr_BIKE_univ,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_univ,84.7542,F +coef_calib_tourknr_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourknr_KNR_TRANSIT_univ,0.7790842015177633,F +coef_calib_tourknr_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_univ,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_univ,-1.0002,F +coef_calib_tourknrtotstops0_SHARED3_univ,-1.0002,F +coef_calib_tourknrtotstops0_WALK_univ,-1.0002,F +coef_calib_tourknrtotstops0_BIKE_univ,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_univ,-1.0002,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourknrfirstofmultip_DRIVEALONE_univ,-30.0,F +coef_calib_tourknrfirstofmultip_BIKE_univ,-30.0,F +coef_calib_tourknrfirstofmultip_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourknrlastofmultipl_DRIVEALONE_univ,-30.0,F +coef_calib_tourknrlastofmultipl_BIKE_univ,-30.0,F +coef_calib_tourknrlastofmultipl_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_DRIVEALONE_univ,-30.0,F +coef_calib_tourmaas_WALK_univ,6.45,F +coef_calib_tourmaas_BIKE_univ,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourmaas_TAXI_univ,-1.35,F +coef_calib_tourmaas_TNC_SINGLE_univ,3.9912848911170227,F +coef_calib_tourmaas_TNC_SHARED_univ,-0.8600000000000001,F +coef_calib_tourpnr_DRIVEALONE_univ,-9.6624,F +coef_calib_tourpnr_SHARED2_univ,-8.4295,F +coef_calib_tourpnr_SHARED3_univ,-9.1428,F +coef_calib_tourpnr_WALK_univ,-30.0,F +coef_calib_tourpnr_BIKE_univ,-30.0,F +coef_calib_tourpnr_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourpnr_PNR_TRANSIT_univ,-4.598436349478694,F +coef_calib_tourpnr_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourpnr_TAXI_univ,-30.0,F +coef_calib_tourpnr_TNC_SINGLE_univ,-30.0,F +coef_calib_tourpnr_TNC_SHARED_univ,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_univ,-1.0002,F +coef_calib_tourpnrtotstops0_SHARED2_univ,-1.0002,F +coef_calib_tourpnrtotstops0_SHARED3_univ,-1.0002,F +coef_calib_tourpnrtotstops0_WALK_univ,-1.0002,F +coef_calib_tourpnrtotstops0_BIKE_univ,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_univ,-1.0002,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourpnrfirstofmultip_BIKE_univ,-30.0,F +coef_calib_tourpnrfirstofmultip_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnrfirstofmultip_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourpnrlastofmultipl_BIKE_univ,-30.0,F +coef_calib_tourpnrlastofmultipl_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourpnrlastofmultipl_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2_DRIVEALONE_univ,-1.0467106607934311,F +coef_calib_tours2_SHARED2_univ,-0.9345649530318371,F +coef_calib_tours2_SHARED3_univ,-30.0,F +coef_calib_tours2_WALK_univ,-5.474015479736969,F +coef_calib_tours2_BIKE_univ,-30.0,F +coef_calib_tours2_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2_TAXI_univ,-30.0,F +coef_calib_tours2_TNC_SINGLE_univ,-30.0,F +coef_calib_tours2_TNC_SHARED_univ,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_univ,-3.2105,F +coef_calib_tours2totstops0_SHARED3_univ,-30.0,F +coef_calib_tours2totstops0_WALK_univ,-3.2105,F +coef_calib_tours2totstops0_BIKE_univ,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2totstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2totstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2totstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_DRIVEALONE_univ,-1.2971,F +coef_calib_tours2firstofmultipl_SHARED3_univ,-30.0,F +coef_calib_tours2firstofmultipl_WALK_univ,-1.2971,F +coef_calib_tours2firstofmultipl_BIKE_univ,-30.0,F +coef_calib_tours2firstofmultipl_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2firstofmultipl_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_DRIVEALONE_univ,-0.7345,F +coef_calib_tours2lastofmultiple_SHARED3_univ,-30.0,F +coef_calib_tours2lastofmultiple_WALK_univ,-0.7345,F +coef_calib_tours2lastofmultiple_BIKE_univ,-30.0,F +coef_calib_tours2lastofmultiple_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours2lastofmultiple_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3_DRIVEALONE_univ,-0.4966596160422635,F +coef_calib_tours3_SHARED2_univ,-0.7052619965484133,F +coef_calib_tours3_SHARED3_univ,-0.8015588902246543,F +coef_calib_tours3_WALK_univ,-9.331800000000001,F +coef_calib_tours3_BIKE_univ,-30.0,F +coef_calib_tours3_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3_TAXI_univ,-30.0,F +coef_calib_tours3_TNC_SINGLE_univ,-30.0,F +coef_calib_tours3_TNC_SHARED_univ,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_univ,-1.893,F +coef_calib_tours3totstops0_SHARED2_univ,-1.893,F +coef_calib_tours3totstops0_WALK_univ,-1.893,F +coef_calib_tours3totstops0_BIKE_univ,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3totstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3totstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3totstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_DRIVEALONE_univ,-1.7826,F +coef_calib_tours3firstofmultipl_SHARED2_univ,-1.7826,F +coef_calib_tours3firstofmultipl_WALK_univ,-1.7826,F +coef_calib_tours3firstofmultipl_BIKE_univ,-30.0,F +coef_calib_tours3firstofmultipl_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3firstofmultipl_TNC_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_DRIVEALONE_univ,-1.1489,F +coef_calib_tours3lastofmultiple_SHARED2_univ,-1.1489,F +coef_calib_tours3lastofmultiple_WALK_univ,-1.1489,F +coef_calib_tours3lastofmultiple_BIKE_univ,-30.0,F +coef_calib_tours3lastofmultiple_WALK_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_PNR_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_KNR_TRANSIT_univ,-30.0,F +coef_calib_tours3lastofmultiple_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourtnr_DRIVEALONE_univ,-30.0,F +coef_calib_tourtnr_BIKE_univ,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_DRIVEALONE_univ,-6.689857452657601,F +coef_calib_tourwtran_SHARED2_univ,-6.341063912284481,F +coef_calib_tourwtran_SHARED3_univ,-6.479108855088794,F +coef_calib_tourwtran_WALK_univ,1.1152453787942982,F +coef_calib_tourwtran_BIKE_univ,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_univ,0.09439231570910812,F +coef_calib_tourwtran_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwtran_TAXI_univ,-6.69,F +coef_calib_tourwtran_TNC_SINGLE_univ,22.94,F +coef_calib_tourwtran_TNC_SHARED_univ,-7.69,F +coef_calib_tourwtrantotstops0_DRIVEALONE_univ,-30.0,F +coef_calib_tourwtrantotstops0_BIKE_univ,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_univ,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_univ,0.4204,F +coef_calib_tourwtranfirstofmult_SHARED3_univ,0.4204,F +coef_calib_tourwtranfirstofmult_WALK_univ,0.4204,F +coef_calib_tourwtranfirstofmult_BIKE_univ,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwtranlastofmulti_DRIVEALONE_univ,-30.0,F +coef_calib_tourwtranlastofmulti_BIKE_univ,-30.0,F +coef_calib_tourwtranlastofmulti_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranlastofmulti_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwtranlastofmulti_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_DRIVEALONE_univ,-30.0,F +coef_calib_tourwalk_SHARED2_univ,-30.0,F +coef_calib_tourwalk_SHARED3_univ,-30.0,F +coef_calib_tourwalk_BIKE_univ,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_univ,-30.0,F +coef_calib_tourwalk_TAXI_univ,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_univ,-30.0,F +coef_calib_tourwalk_TNC_SHARED_univ,-30.0,F +coef_calib_civtebikeownershipma_BIKE_school,1.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_school,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_school,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_school,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_school,1.0,F +coef_calib_tourbike_DRIVEALONE_school,-30.0,F +coef_calib_tourbike_SHARED2_school,0.0,F +coef_calib_tourbike_SHARED3_school,0.0,F +coef_calib_tourbike_WALK_school,-17.252948252633765,F +coef_calib_tourbike_BIKE_school,-16.603217615727758,F +coef_calib_tourbike_WALK_TRANSIT_school,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_school,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_school,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_school,-30.0,F +coef_calib_tourbike_TAXI_school,-30.0,F +coef_calib_tourbike_TNC_SINGLE_school,-30.0,F +coef_calib_tourbike_TNC_SHARED_school,-30.0,F +coef_calib_tourbike_SCH_BUS_school,-30.0,F +coef_calib_tourda_SHARED2_school,-30.0,F +coef_calib_tourda_SHARED3_school,-30.0,F +coef_calib_tourda_WALK_school,-30.0,F +coef_calib_tourda_BIKE_school,-30.0,F +coef_calib_tourda_WALK_TRANSIT_school,-30.0,F +coef_calib_tourda_PNR_TRANSIT_school,-30.0,F +coef_calib_tourda_KNR_TRANSIT_school,-30.0,F +coef_calib_tourda_TNC_TRANSIT_school,-30.0,F +coef_calib_tourda_TAXI_school,-30.0,F +coef_calib_tourda_TNC_SINGLE_school,-30.0,F +coef_calib_tourda_TNC_SHARED_school,-30.0,F +coef_calib_tourda_SCH_BUS_school,-30.0,F +coef_calib_tourknr_DRIVEALONE_school,-30.0,F +coef_calib_tourknr_SHARED2_school,-1.7329,F +coef_calib_tourknr_SHARED3_school,-1.18,F +coef_calib_tourknr_WALK_school,4.8676,F +coef_calib_tourknr_BIKE_school,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_school,24.9347,F +coef_calib_tourknr_PNR_TRANSIT_school,-30.0,F +coef_calib_tourknr_KNR_TRANSIT_school,-27.4507,F +coef_calib_tourknr_TAXI_school,-30.0,F +coef_calib_tourknr_TNC_SINGLE_school,-30.0,F +coef_calib_tourknr_TNC_SHARED_school,-30.0,F +coef_calib_tourknr_SCH_BUS_school,-30.0,F +coef_calib_tourpnr_DRIVEALONE_school,-2.9471,F +coef_calib_tourpnr_SHARED2_school,-1.5651,F +coef_calib_tourpnr_SHARED3_school,-2.419,F +coef_calib_tourpnr_WALK_school,-30.0,F +coef_calib_tourpnr_BIKE_school,-30.0,F +coef_calib_tourpnr_WALK_TRANSIT_school,-30.0,F +coef_calib_tourpnr_KNR_TRANSIT_school,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_school,-30.0,F +coef_calib_tourpnr_TAXI_school,-30.0,F +coef_calib_tourpnr_TNC_SINGLE_school,-30.0,F +coef_calib_tourpnr_TNC_SHARED_school,-30.0,F +coef_calib_tourpnr_SCH_BUS_school,-30.0,F +coef_calib_tours2_DRIVEALONE_school,-30.0,F +coef_calib_tours2_SHARED2_school,-5.44528416304262,F +coef_calib_tours2_SHARED3_school,-30.0,F +coef_calib_tours2_WALK_school,-8.768360236119591,F +coef_calib_tours2_BIKE_school,-30.0,F +coef_calib_tours2_WALK_TRANSIT_school,-30.0,F +coef_calib_tours2_PNR_TRANSIT_school,-30.0,F +coef_calib_tours2_KNR_TRANSIT_school,-30.0,F +coef_calib_tours2_TNC_TRANSIT_school,-30.0,F +coef_calib_tours2_TAXI_school,-30.0,F +coef_calib_tours2_TNC_SINGLE_school,-30.0,F +coef_calib_tours2_TNC_SHARED_school,-30.0,F +coef_calib_tours2_SCH_BUS_school,-30.0,F +coef_calib_tours3_DRIVEALONE_school,-30.0,F +coef_calib_tours3_SHARED2_school,-3.260738776679035,F +coef_calib_tours3_SHARED3_school,-2.893606747836543,F +coef_calib_tours3_WALK_school,-2.682750615187065,F +coef_calib_tours3_BIKE_school,-30.0,F +coef_calib_tours3_WALK_TRANSIT_school,-30.0,F +coef_calib_tours3_PNR_TRANSIT_school,-30.0,F +coef_calib_tours3_KNR_TRANSIT_school,-30.0,F +coef_calib_tours3_TNC_TRANSIT_school,-30.0,F +coef_calib_tours3_TAXI_school,-30.0,F +coef_calib_tours3_TNC_SINGLE_school,-30.0,F +coef_calib_tours3_TNC_SHARED_school,-30.0,F +coef_calib_tours3_SCH_BUS_school,-30.0,F +coef_calib_tourschbus_DRIVEALONE_school,-30.0,F +coef_calib_tourschbus_SHARED2_school,-30.0,F +coef_calib_tourschbus_SHARED3_school,-30.0,F +coef_calib_tourschbus_WALK_school,-30.0,F +coef_calib_tourschbus_BIKE_school,-30.0,F +coef_calib_tourschbus_WALK_TRANSIT_school,-30.0,F +coef_calib_tourschbus_PNR_TRANSIT_school,-30.0,F +coef_calib_tourschbus_KNR_TRANSIT_school,-30.0,F +coef_calib_tourschbus_TNC_TRANSIT_school,-30.0,F +coef_calib_tourschbus_TAXI_school,-30.0,F +coef_calib_tourschbus_TNC_SINGLE_school,-30.0,F +coef_calib_tourschbus_TNC_SHARED_school,-30.0,F +coef_calib_tourwtran_DRIVEALONE_school,-10.0,F +coef_calib_tourwtran_SHARED2_school,-5.014717325674122,F +coef_calib_tourwtran_SHARED3_school,-2.5893694543407273,F +coef_calib_tourwtran_WALK_school,-13.1126,F +coef_calib_tourwtran_BIKE_school,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_school,-1.0648104626473114,F +coef_calib_tourwtran_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtran_TAXI_school,-30.0,F +coef_calib_tourwtran_TNC_SINGLE_school,-30.0,F +coef_calib_tourwtran_TNC_SHARED_school,-30.0,F +coef_calib_tourwtran_SCH_BUS_school,-30.0,F +coef_calib_tourwtrantotstops0_DRIVEALONE_school,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_school,-1.706,F +coef_calib_tourwtrantotstops0_SHARED3_school,-1.706,F +coef_calib_tourwtrantotstops0_WALK_school,-1.706,F +coef_calib_tourwtrantotstops0_BIKE_school,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtrantotstops0_SCH_BUS_school,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_school,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_school,0.921,F +coef_calib_tourwtranfirstofmult_SHARED3_school,0.921,F +coef_calib_tourwtranfirstofmult_WALK_school,0.921,F +coef_calib_tourwtranfirstofmult_BIKE_school,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtranfirstofmult_SCH_BUS_school,-30.0,F +coef_calib_tourwtranlastofmulti_DRIVEALONE_school,-30.0,F +coef_calib_tourwtranlastofmulti_SHARED2_school,1.58,F +coef_calib_tourwtranlastofmulti_SHARED3_school,1.58,F +coef_calib_tourwtranlastofmulti_WALK_school,1.58,F +coef_calib_tourwtranlastofmulti_BIKE_school,-30.0,F +coef_calib_tourwtranlastofmulti_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranlastofmulti_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwtranlastofmulti_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwtranlastofmulti_SCH_BUS_school,-30.0,F +coef_calib_tourwalk_DRIVEALONE_school,-30.0,F +coef_calib_tourwalk_SHARED2_school,-30.0,F +coef_calib_tourwalk_SHARED3_school,-30.0,F +coef_calib_tourwalk_BIKE_school,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_school,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_school,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_school,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_school,-30.0,F +coef_calib_tourwalk_TAXI_school,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_school,-30.0,F +coef_calib_tourwalk_TNC_SHARED_school,-30.0,F +coef_calib_tourwalk_SCH_BUS_school,-30.0,F +coef_calib_numberofparticipants_SHARED3_maint,-0.11,F +coef_calib_civtebikeownershipma_BIKE_maint,1.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_maint,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_maint,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_maint,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_maint,1.0,F +coef_calib_esctour1_WALK_maint,-1.27,F +coef_calib_jointtour1_WALK_maint,-1.669,F +coef_calib_jointtour1_WALK_TRANSIT_maint,-0.824,F +coef_calib_jointtour1_PNR_TRANSIT_maint,-1.629,F +coef_calib_jointtour1_KNR_TRANSIT_maint,-1.629,F +coef_calib_jointtour1_TNC_TRANSIT_maint,-1.629,F +coef_calib_tourbike_DRIVEALONE_maint,-30.0,F +coef_calib_tourbike_SHARED2_maint,0.0,F +coef_calib_tourbike_SHARED3_maint,0.0,F +coef_calib_tourbike_WALK_maint,-20.0,F +coef_calib_tourbike_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourbikejointtour0_SHARED2_maint,0.0,F +coef_calib_tourbikejointtour0_SHARED3_maint,0.0,F +coef_calib_tourbikejointtour0_WALK_maint,-30.0,F +coef_calib_tourbikejointtour0_BIKE_maint,-10.500258951012205,F +coef_calib_tourbikejointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourbikejointtour0_TAXI_maint,-30.0,F +coef_calib_tourbikejointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourbikejointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourbikejointtour1_BIKE_maint,-0.31,F +coef_calib_tourbikejointtour1_TAXI_maint,-30.0,F +coef_calib_tourbikejointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourbikejointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourda_SHARED2_maint,-30.0,F +coef_calib_tourda_SHARED3_maint,-30.0,F +coef_calib_tourda_WALK_maint,-30.0,F +coef_calib_tourda_BIKE_maint,-30.0,F +coef_calib_tourda_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourda_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourda_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourda_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_DRIVEALONE_maint,0.32660647324783104,F +coef_calib_tourdajointtour0_SHARED2_maint,-30.0,F +coef_calib_tourdajointtour0_SHARED3_maint,-30.0,F +coef_calib_tourdajointtour0_WALK_maint,-30.0,F +coef_calib_tourdajointtour0_BIKE_maint,-30.0,F +coef_calib_tourdajointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour0_TAXI_maint,-30.0,F +coef_calib_tourdajointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourdajointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourdajointtour1_SHARED2_maint,-30.0,F +coef_calib_tourdajointtour1_SHARED3_maint,-30.0,F +coef_calib_tourdajointtour1_WALK_maint,-30.0,F +coef_calib_tourdajointtour1_BIKE_maint,-30.0,F +coef_calib_tourdajointtour1_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourdajointtour1_TAXI_maint,-30.0,F +coef_calib_tourdajointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourdajointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourknr_DRIVEALONE_maint,-30.0,F +coef_calib_tourknr_BIKE_maint,-30.0,F +coef_calib_tourknr_WALK_TRANSIT_maint,2.159,F +coef_calib_tourknr_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrjointtour0_SHARED2_maint,8.6939,F +coef_calib_tourknrjointtour0_SHARED3_maint,8.8007,F +coef_calib_tourknrjointtour0_WALK_maint,-4.3153,F +coef_calib_tourknrjointtour0_BIKE_maint,-30.0,F +coef_calib_tourknrjointtour0_WALK_TRANSIT_maint,7.390431703,F +coef_calib_tourknrjointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour0_KNR_TRANSIT_maint,0.5605618505808558,F +coef_calib_tourknrjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour0_TAXI_maint,-30.0,F +coef_calib_tourknrjointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourknrjointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourknrjointtour1_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrjointtour1_BIKE_maint,-30.0,F +coef_calib_tourknrjointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourknrjointtour1_TAXI_maint,-30.0,F +coef_calib_tourknrjointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourknrjointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_maint,-10.0,F +coef_calib_tourknrtotstops0_SHARED3_maint,-10.0,F +coef_calib_tourknrtotstops0_WALK_maint,-30.0,F +coef_calib_tourknrtotstops0_BIKE_maint,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourknrtotstopsm0_DRIVEALONE_maint,-30.0,F +coef_calib_tourknrtotstopsm0_BIKE_maint,-30.0,F +coef_calib_tourknrtotstopsm0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_DRIVEALONE_maint,-30.0,F +coef_calib_tourmaas_BIKE_maint,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourmaas_TAXI_maint,-2.3,F +coef_calib_tourmaas_TNC_SINGLE_maint,0.73,F +coef_calib_tourmaas_TNC_SHARED_maint,-1.3,F +coef_calib_tourmaasjointtour0_SHARED2_maint,-30.12,F +coef_calib_tourmaasjointtour0_SHARED3_maint,-31.55,F +coef_calib_tourmaasjointtour0_WALK_maint,-26.14,F +coef_calib_tourmaasjointtour0_TAXI_maint,6.404988840099761,F +coef_calib_tourmaasjointtour0_TNC_SINGLE_maint,1.4695282807200076,F +coef_calib_tourmaasjointtour0_TNC_SHARED_maint,-4.02,F +coef_calib_tourmaasjointtour1_SHARED2_maint,1.92,F +coef_calib_tourmaasjointtour1_WALK_maint,-2.69,F +coef_calib_tourmaasjointtour1_TNC_SINGLE_maint,-25.2,F +coef_calib_tourmaasjointtour1_TNC_SHARED_maint,2.04,F +coef_calib_tourpnr_BIKE_maint,-30.0,F +coef_calib_tourpnr_WALK_TRANSIT_maint,1.584,F +coef_calib_tourpnr_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnr_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour0_DRIVEALONE_maint,-6.8467,F +coef_calib_tourpnrjointtour0_SHARED2_maint,-7.3704,F +coef_calib_tourpnrjointtour0_SHARED3_maint,-11.0441,F +coef_calib_tourpnrjointtour0_WALK_maint,-9.9546,F +coef_calib_tourpnrjointtour0_BIKE_maint,-30.0,F +coef_calib_tourpnrjointtour0_WALK_TRANSIT_maint,-8.4007,F +coef_calib_tourpnrjointtour0_PNR_TRANSIT_maint,-1.4144786765104174,F +coef_calib_tourpnrjointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour0_TAXI_maint,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourpnrjointtour1_BIKE_maint,-30.0,F +coef_calib_tourpnrjointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrjointtour1_TAXI_maint,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_maint,-10.0,F +coef_calib_tourpnrtotstops0_SHARED2_maint,-30.0,F +coef_calib_tourpnrtotstops0_SHARED3_maint,-30.0,F +coef_calib_tourpnrtotstops0_WALK_maint,-30.0,F +coef_calib_tourpnrtotstops0_BIKE_maint,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_BIKE_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourpnrtotstopsm0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2_DRIVEALONE_maint,-0.656,F +coef_calib_tours2_SHARED3_maint,-30.0,F +coef_calib_tours2_WALK_maint,-2.2366,F +coef_calib_tours2_BIKE_maint,-30.0,F +coef_calib_tours2_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours2_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours2_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours2_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_DRIVEALONE_maint,1.3106952326448469,F +coef_calib_tours2jointtour0_SHARED2_maint,1.0037024718823004,F +coef_calib_tours2jointtour0_SHARED3_maint,-30.0,F +coef_calib_tours2jointtour0_WALK_maint,1.0962594370533987,F +coef_calib_tours2jointtour0_BIKE_maint,-30.0,F +coef_calib_tours2jointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour0_TAXI_maint,-30.0,F +coef_calib_tours2jointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tours2jointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tours2jointtour1_DRIVEALONE_maint,0.0861,F +coef_calib_tours2jointtour1_SHARED3_maint,-30.0,F +coef_calib_tours2jointtour1_WALK_maint,-7.078424660896279,F +coef_calib_tours2jointtour1_BIKE_maint,-30.0,F +coef_calib_tours2jointtour1_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours2jointtour1_TAXI_maint,-30.0,F +coef_calib_tours2jointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tours2jointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tours3_DRIVEALONE_maint,-0.452,F +coef_calib_tours3_WALK_maint,-1.5731,F +coef_calib_tours3_BIKE_maint,-30.0,F +coef_calib_tours3_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours3_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours3_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours3_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_DRIVEALONE_maint,1.1044212959375723,F +coef_calib_tours3jointtour0_SHARED2_maint,0.8563886856236229,F +coef_calib_tours3jointtour0_SHARED3_maint,0.5094228907551963,F +coef_calib_tours3jointtour0_WALK_maint,0.44039869543269305,F +coef_calib_tours3jointtour0_BIKE_maint,-30.0,F +coef_calib_tours3jointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour0_TAXI_maint,-30.0,F +coef_calib_tours3jointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tours3jointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tours3jointtour1_DRIVEALONE_maint,-0.1811,F +coef_calib_tours3jointtour1_SHARED2_maint,23.11576844,F +coef_calib_tours3jointtour1_SHARED3_maint,-0.11240160385167762,F +coef_calib_tours3jointtour1_WALK_maint,-3.1775819454987086,F +coef_calib_tours3jointtour1_BIKE_maint,-30.0,F +coef_calib_tours3jointtour1_WALK_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tours3jointtour1_TAXI_maint,-30.0,F +coef_calib_tours3jointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tours3jointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_tours3autodeficienth_SHARED2_maint,-0.324,F +coef_calib_tours3zeroautohh_SHARED2_maint,-1.469,F +coef_calib_tourtnr_DRIVEALONE_maint,-30.0,F +coef_calib_tourtnr_BIKE_maint,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtran_DRIVEALONE_maint,-10.0,F +coef_calib_tourwtran_SHARED2_maint,-3.437,F +coef_calib_tourwtran_SHARED3_maint,-4.71,F +coef_calib_tourwtran_WALK_maint,2.848,F +coef_calib_tourwtran_BIKE_maint,-30.0,F +coef_calib_tourwtran_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtranjointtour0_SHARED2_maint,-2.859522433166758,F +coef_calib_tourwtranjointtour0_SHARED3_maint,-2.7038682724988528,F +coef_calib_tourwtranjointtour0_WALK_maint,-7.4494210899125815,F +coef_calib_tourwtranjointtour0_BIKE_maint,-30.0,F +coef_calib_tourwtranjointtour0_WALK_TRANSIT_maint,-1.1214609100489512,F +coef_calib_tourwtranjointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour0_TNC_SINGLE_maint,34.31241802020134,F +coef_calib_tourwtranjointtour0_TNC_SHARED_maint,-10.41,F +coef_calib_tourwtranjointtour1_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtranjointtour1_SHARED2_maint,-5.437101753,F +coef_calib_tourwtranjointtour1_SHARED3_maint,-18.95675834,F +coef_calib_tourwtranjointtour1_WALK_maint,-21.494345343,F +coef_calib_tourwtranjointtour1_BIKE_maint,-30.0,F +coef_calib_tourwtranjointtour1_WALK_TRANSIT_maint,-19.642763791,F +coef_calib_tourwtranjointtour1_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour1_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour1_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranjointtour1_TAXI_maint,-8.28,F +coef_calib_tourwtranjointtour1_TNC_SINGLE_maint,-2.95,F +coef_calib_tourwtranjointtour1_TNC_SHARED_maint,-9.280000000000001,F +coef_calib_tourwtrantotstops0_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_maint,-1.5218,F +coef_calib_tourwtrantotstops0_SHARED3_maint,-1.5218,F +coef_calib_tourwtrantotstops0_WALK_maint,-1.5218,F +coef_calib_tourwtrantotstops0_BIKE_maint,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_maint,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_maint,-1.477,F +coef_calib_tourwtranfirstofmult_SHARED3_maint,-1.477,F +coef_calib_tourwtranfirstofmult_WALK_maint,-1.477,F +coef_calib_tourwtranfirstofmult_BIKE_maint,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwtranzeroautohh_WALK_maint,1.424,F +coef_calib_tourwalk_DRIVEALONE_maint,-30.0,F +coef_calib_tourwalk_SHARED2_maint,-30.0,F +coef_calib_tourwalk_SHARED3_maint,-30.0,F +coef_calib_tourwalk_BIKE_maint,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_DRIVEALONE_maint,-30.0,F +coef_calib_tourwalkjointtour0_SHARED2_maint,-30.0,F +coef_calib_tourwalkjointtour0_SHARED3_maint,-30.0,F +coef_calib_tourwalkjointtour0_WALK_maint,1.6462845772761598,F +coef_calib_tourwalkjointtour0_BIKE_maint,-30.0,F +coef_calib_tourwalkjointtour0_WALK_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_PNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_KNR_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_TNC_TRANSIT_maint,-30.0,F +coef_calib_tourwalkjointtour0_TAXI_maint,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SINGLE_maint,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SHARED_maint,-30.0,F +coef_calib_tourwalkjointtour1_TAXI_maint,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SINGLE_maint,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SHARED_maint,-30.0,F +coef_calib_civtebikeownershipma_BIKE_disc,1.0,F +coef_calib_civt5max10sovdistski_KNR_TRANSIT_disc,1.0,F +coef_calib_civt5max10sovdistski_TNC_TRANSIT_disc,1.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_disc,1.0,F +coef_calib_civtmax4525sovdistsk_PNR_TRANSIT_disc,1.0,F +coef_calib_tourbike_DRIVEALONE_disc,-30.0,F +coef_calib_tourbike_SHARED2_disc,0.0,F +coef_calib_tourbike_SHARED3_disc,0.0,F +coef_calib_tourbike_WALK_disc,-20.0,F +coef_calib_tourbike_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourbike_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourbike_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourbike_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourbikejointtour0_SHARED2_disc,-30.0,F +coef_calib_tourbikejointtour0_SHARED3_disc,-30.0,F +coef_calib_tourbikejointtour0_WALK_disc,-30.0,F +coef_calib_tourbikejointtour0_BIKE_disc,-2.8371334245691715,F +coef_calib_tourbikejointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourbikejointtour0_TAXI_disc,-30.0,F +coef_calib_tourbikejointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourbikejointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourbikejointtour1_BIKE_disc,-1.55,F +coef_calib_tourbikejointtour1_TAXI_disc,-30.0,F +coef_calib_tourbikejointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourbikejointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourda_SHARED2_disc,-30.0,F +coef_calib_tourda_SHARED3_disc,-30.0,F +coef_calib_tourda_WALK_disc,-30.0,F +coef_calib_tourda_BIKE_disc,-30.0,F +coef_calib_tourda_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourda_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourda_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourda_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_DRIVEALONE_disc,0.05046829276861734,F +coef_calib_tourdajointtour0_SHARED2_disc,-30.0,F +coef_calib_tourdajointtour0_SHARED3_disc,-30.0,F +coef_calib_tourdajointtour0_WALK_disc,-30.0,F +coef_calib_tourdajointtour0_BIKE_disc,-30.0,F +coef_calib_tourdajointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour0_TAXI_disc,-30.0,F +coef_calib_tourdajointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourdajointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourdajointtour1_SHARED2_disc,-30.0,F +coef_calib_tourdajointtour1_SHARED3_disc,-30.0,F +coef_calib_tourdajointtour1_WALK_disc,-30.0,F +coef_calib_tourdajointtour1_BIKE_disc,-30.0,F +coef_calib_tourdajointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourdajointtour1_TAXI_disc,-30.0,F +coef_calib_tourdajointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourdajointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourknrjointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrjointtour0_SHARED2_disc,0.7499,F +coef_calib_tourknrjointtour0_SHARED3_disc,1.4961,F +coef_calib_tourknrjointtour0_WALK_disc,0.4389,F +coef_calib_tourknrjointtour0_BIKE_disc,-30.0,F +coef_calib_tourknrjointtour0_WALK_TRANSIT_disc,46.2844,F +coef_calib_tourknrjointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourknrjointtour0_KNR_TRANSIT_disc,1.82463921614539,F +coef_calib_tourknrjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourknrjointtour0_TAXI_disc,-30.0,F +coef_calib_tourknrjointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourknrjointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourknrjointtour1_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrjointtour1_BIKE_disc,-30.0,F +coef_calib_tourknrjointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourknrjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourknrtotstops0_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrtotstops0_SHARED2_disc,-10.0,F +coef_calib_tourknrtotstops0_SHARED3_disc,-10.0,F +coef_calib_tourknrtotstops0_WALK_disc,-30.0,F +coef_calib_tourknrtotstops0_BIKE_disc,-30.0,F +coef_calib_tourknrtotstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourknrtotstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourknrtotstopsm0_DRIVEALONE_disc,-30.0,F +coef_calib_tourknrtotstopsm0_BIKE_disc,-30.0,F +coef_calib_tourknrtotstopsm0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_DRIVEALONE_disc,-30.0,F +coef_calib_tourmaas_BIKE_disc,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourmaas_TAXI_disc,0.02,F +coef_calib_tourmaas_TNC_SINGLE_disc,2.53,F +coef_calib_tourmaas_TNC_SHARED_disc,1.02,F +coef_calib_tourmaasjointtour0_SHARED2_disc,-1.37,F +coef_calib_tourmaasjointtour0_SHARED3_disc,-0.77,F +coef_calib_tourmaasjointtour0_WALK_disc,1.77,F +coef_calib_tourmaasjointtour0_TAXI_disc,3.2847189567147628,F +coef_calib_tourmaasjointtour0_TNC_SINGLE_disc,-4.197345793267215,F +coef_calib_tourmaasjointtour0_TNC_SHARED_disc,-2.27,F +coef_calib_tourmaasjointtour1_SHARED2_disc,-0.14,F +coef_calib_tourmaasjointtour1_SHARED3_disc,-0.01,F +coef_calib_tourmaasjointtour1_WALK_disc,2.44,F +coef_calib_tourmaasjointtour1_TNC_SINGLE_disc,-27.82,F +coef_calib_tourpnrjointtour0_DRIVEALONE_disc,-6.6205,F +coef_calib_tourpnrjointtour0_SHARED2_disc,-0.8124,F +coef_calib_tourpnrjointtour0_SHARED3_disc,-0.4849,F +coef_calib_tourpnrjointtour0_WALK_disc,1.0992,F +coef_calib_tourpnrjointtour0_BIKE_disc,-30.0,F +coef_calib_tourpnrjointtour0_WALK_TRANSIT_disc,10.1369,F +coef_calib_tourpnrjointtour0_PNR_TRANSIT_disc,-0.7682535395283122,F +coef_calib_tourpnrjointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour0_TAXI_disc,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourpnrjointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourpnrjointtour1_BIKE_disc,-30.0,F +coef_calib_tourpnrjointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourpnrjointtour1_TAXI_disc,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourpnrjointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourpnrtotstops0_DRIVEALONE_disc,-10.0,F +coef_calib_tourpnrtotstops0_SHARED2_disc,-30.0,F +coef_calib_tourpnrtotstops0_SHARED3_disc,-30.0,F +coef_calib_tourpnrtotstops0_WALK_disc,-30.0,F +coef_calib_tourpnrtotstops0_BIKE_disc,-30.0,F +coef_calib_tourpnrtotstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_BIKE_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourpnrtotstopsm0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2_DRIVEALONE_disc,-0.688,F +coef_calib_tours2_SHARED3_disc,-30.0,F +coef_calib_tours2_WALK_disc,1.854,F +coef_calib_tours2_BIKE_disc,-30.0,F +coef_calib_tours2_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_DRIVEALONE_disc,1.3711251281897145,F +coef_calib_tours2jointtour0_SHARED2_disc,0.5534376307334923,F +coef_calib_tours2jointtour0_SHARED3_disc,-30.0,F +coef_calib_tours2jointtour0_WALK_disc,-2.5572214336369505,F +coef_calib_tours2jointtour0_BIKE_disc,-30.0,F +coef_calib_tours2jointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour0_TAXI_disc,-30.0,F +coef_calib_tours2jointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tours2jointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tours2jointtour1_DRIVEALONE_disc,-0.0787,F +coef_calib_tours2jointtour1_SHARED2_disc,0.006192950906288385,F +coef_calib_tours2jointtour1_SHARED3_disc,-30.0,F +coef_calib_tours2jointtour1_WALK_disc,-3.508924660896279,F +coef_calib_tours2jointtour1_BIKE_disc,-30.0,F +coef_calib_tours2jointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2jointtour1_TAXI_disc,-30.0,F +coef_calib_tours2jointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tours2jointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_disc,-3.241,F +coef_calib_tours2totstops0_SHARED3_disc,-30.0,F +coef_calib_tours2totstops0_WALK_disc,-3.241,F +coef_calib_tours2totstops0_BIKE_disc,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2totstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2totstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2totstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_DRIVEALONE_disc,0.807,F +coef_calib_tours2firstofmultipl_SHARED3_disc,-30.0,F +coef_calib_tours2firstofmultipl_WALK_disc,0.807,F +coef_calib_tours2firstofmultipl_BIKE_disc,-30.0,F +coef_calib_tours2firstofmultipl_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours2firstofmultipl_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3_DRIVEALONE_disc,-1.73,F +coef_calib_tours3_SHARED2_disc,-1.247,F +coef_calib_tours3_WALK_disc,0.878,F +coef_calib_tours3_BIKE_disc,-30.0,F +coef_calib_tours3_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_DRIVEALONE_disc,1.5214985313922953,F +coef_calib_tours3jointtour0_SHARED2_disc,0.4519608857673781,F +coef_calib_tours3jointtour0_SHARED3_disc,0.7339852484782727,F +coef_calib_tours3jointtour0_WALK_disc,0.899554825327642,F +coef_calib_tours3jointtour0_BIKE_disc,-30.0,F +coef_calib_tours3jointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour0_TAXI_disc,-30.0,F +coef_calib_tours3jointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tours3jointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tours3jointtour1_DRIVEALONE_disc,-0.1763,F +coef_calib_tours3jointtour1_SHARED2_disc,22.85936844,F +coef_calib_tours3jointtour1_WALK_disc,-1.4200819454987088,F +coef_calib_tours3jointtour1_BIKE_disc,-30.0,F +coef_calib_tours3jointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3jointtour1_TAXI_disc,-30.0,F +coef_calib_tours3jointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tours3jointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_disc,-1.773,F +coef_calib_tours3totstops0_SHARED2_disc,-1.773,F +coef_calib_tours3totstops0_WALK_disc,-1.773,F +coef_calib_tours3totstops0_BIKE_disc,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3totstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3totstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3totstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_DRIVEALONE_disc,0.397,F +coef_calib_tours3firstofmultipl_SHARED2_disc,0.397,F +coef_calib_tours3firstofmultipl_WALK_disc,0.397,F +coef_calib_tours3firstofmultipl_BIKE_disc,-30.0,F +coef_calib_tours3firstofmultipl_WALK_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_PNR_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_KNR_TRANSIT_disc,-30.0,F +coef_calib_tours3firstofmultipl_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourtnr_DRIVEALONE_disc,-30.0,F +coef_calib_tourtnr_BIKE_disc,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtran_DRIVEALONE_disc,-7.0,F +coef_calib_tourwtran_SHARED2_disc,-6.223,F +coef_calib_tourwtran_SHARED3_disc,-6.0,F +coef_calib_tourwtran_WALK_disc,2.418,F +coef_calib_tourwtran_BIKE_disc,-30.0,F +coef_calib_tourwtran_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtran_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtran_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtranjointtour0_SHARED2_disc,-6.0,F +coef_calib_tourwtranjointtour0_SHARED3_disc,-6.0,F +coef_calib_tourwtranjointtour0_WALK_disc,-9.820499722690379,F +coef_calib_tourwtranjointtour0_BIKE_disc,-30.0,F +coef_calib_tourwtranjointtour0_WALK_TRANSIT_disc,-5.634512572937531,F +coef_calib_tourwtranjointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour0_TNC_SINGLE_disc,27.74,F +coef_calib_tourwtranjointtour1_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtranjointtour1_SHARED3_disc,-14.95676,F +coef_calib_tourwtranjointtour1_WALK_disc,-27.2353935,F +coef_calib_tourwtranjointtour1_BIKE_disc,-30.0,F +coef_calib_tourwtranjointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranjointtour1_TAXI_disc,-8.33,F +coef_calib_tourwtranjointtour1_TNC_SINGLE_disc,-4.53,F +coef_calib_tourwtranjointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_tourwtrantotstops0_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtrantotstops0_SHARED2_disc,-3.06,F +coef_calib_tourwtrantotstops0_SHARED3_disc,-3.06,F +coef_calib_tourwtrantotstops0_WALK_disc,-3.06,F +coef_calib_tourwtrantotstops0_BIKE_disc,-30.0,F +coef_calib_tourwtrantotstops0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtrantotstops0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtrantotstops0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwtranfirstofmult_DRIVEALONE_disc,-30.0,F +coef_calib_tourwtranfirstofmult_SHARED2_disc,-3.045,F +coef_calib_tourwtranfirstofmult_SHARED3_disc,-3.045,F +coef_calib_tourwtranfirstofmult_WALK_disc,-3.045,F +coef_calib_tourwtranfirstofmult_BIKE_disc,-30.0,F +coef_calib_tourwtranfirstofmult_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranfirstofmult_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwtranfirstofmult_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_DRIVEALONE_disc,-30.0,F +coef_calib_tourwalk_SHARED2_disc,-30.0,F +coef_calib_tourwalk_SHARED3_disc,-30.0,F +coef_calib_tourwalk_BIKE_disc,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalk_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_DRIVEALONE_disc,-30.0,F +coef_calib_tourwalkjointtour0_SHARED2_disc,-30.0,F +coef_calib_tourwalkjointtour0_SHARED3_disc,-30.0,F +coef_calib_tourwalkjointtour0_WALK_disc,1.1284402519937065,F +coef_calib_tourwalkjointtour0_BIKE_disc,-30.0,F +coef_calib_tourwalkjointtour0_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour0_TAXI_disc,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SINGLE_disc,-30.0,F +coef_calib_tourwalkjointtour0_TNC_SHARED_disc,-30.0,F +coef_calib_tourwalkjointtour1_DRIVEALONE_disc,-30.0,F +coef_calib_tourwalkjointtour1_SHARED2_disc,-30.0,F +coef_calib_tourwalkjointtour1_SHARED3_disc,-30.0,F +coef_calib_tourwalkjointtour1_BIKE_disc,-30.0,F +coef_calib_tourwalkjointtour1_WALK_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_PNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_KNR_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_TNC_TRANSIT_disc,-30.0,F +coef_calib_tourwalkjointtour1_TAXI_disc,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SINGLE_disc,-30.0,F +coef_calib_tourwalkjointtour1_TNC_SHARED_disc,-30.0,F +coef_calib_civtmax200133sovdist_WALK_TRANSIT_atwork,1.0,F +coef_calib_tourbike_DRIVEALONE_atwork,-30.0,F +coef_calib_tourbike_SHARED2_atwork,0.0,F +coef_calib_tourbike_SHARED3_atwork,0.0,F +coef_calib_tourbike_WALK_atwork,-5.5897134151007,F +coef_calib_tourbike_BIKE_atwork,-5.36914703002003,F +coef_calib_tourbike_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourbike_TAXI_atwork,-30.0,F +coef_calib_tourbike_TNC_SINGLE_atwork,-30.0,F +coef_calib_tourbike_TNC_SHARED_atwork,-30.0,F +coef_calib_tourda_SHARED2_atwork,-30.0,F +coef_calib_tourda_SHARED3_atwork,-30.0,F +coef_calib_tourda_WALK_atwork,-30.0,F +coef_calib_tourda_BIKE_atwork,-30.0,F +coef_calib_tourda_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourda_TAXI_atwork,-30.0,F +coef_calib_tourda_TNC_SINGLE_atwork,-30.0,F +coef_calib_tourda_TNC_SHARED_atwork,-30.0,F +coef_calib_tourmaas_DRIVEALONE_atwork,-30.0,F +coef_calib_tourmaas_SHARED2_atwork,-3.54,F +coef_calib_tourmaas_SHARED3_atwork,0.69,F +coef_calib_tourmaas_WALK_atwork,-0.63,F +coef_calib_tourmaas_BIKE_atwork,-30.0,F +coef_calib_tourmaas_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_PNR_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_KNR_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_TNC_TRANSIT_atwork,-30.0,F +coef_calib_tourmaas_TAXI_atwork,-26.12,F +coef_calib_tourmaas_TNC_SINGLE_atwork,-26.04,F +coef_calib_tourmaas_TNC_SHARED_atwork,-2.79,F +coef_calib_tours2_DRIVEALONE_atwork,0.6104330884578978,F +coef_calib_tours2_SHARED2_atwork,0.48830207806157105,F +coef_calib_tours2_SHARED3_atwork,-30.0,F +coef_calib_tours2_WALK_atwork,0.35561239430716407,F +coef_calib_tours2_BIKE_atwork,-30.0,F +coef_calib_tours2_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tours2_TAXI_atwork,-30.0,F +coef_calib_tours2_TNC_SINGLE_atwork,-30.0,F +coef_calib_tours2_TNC_SHARED_atwork,-30.0,F +coef_calib_tours2totstops0_DRIVEALONE_atwork,-1.4142,F +coef_calib_tours2totstops0_SHARED3_atwork,-30.0,F +coef_calib_tours2totstops0_WALK_atwork,-1.4142,F +coef_calib_tours2totstops0_BIKE_atwork,-30.0,F +coef_calib_tours2totstops0_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tours3_DRIVEALONE_atwork,1.332060563581082,F +coef_calib_tours3_SHARED2_atwork,-0.2241990970061125,F +coef_calib_tours3_SHARED3_atwork,1.7126980827937628,F +coef_calib_tours3_WALK_atwork,-5.916021459074802,F +coef_calib_tours3_BIKE_atwork,-30.0,F +coef_calib_tours3_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tours3_TAXI_atwork,-30.0,F +coef_calib_tours3_TNC_SINGLE_atwork,-30.0,F +coef_calib_tours3_TNC_SHARED_atwork,-30.0,F +coef_calib_tours3totstops0_DRIVEALONE_atwork,-1.7313,F +coef_calib_tours3totstops0_SHARED2_atwork,-1.7313,F +coef_calib_tours3totstops0_WALK_atwork,-1.7313,F +coef_calib_tours3totstops0_BIKE_atwork,-30.0,F +coef_calib_tours3totstops0_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourtnr_DRIVEALONE_atwork,-30.0,F +coef_calib_tourtnr_BIKE_atwork,-30.0,F +coef_calib_tourtnr_PNR_TRANSIT_atwork,-30.0,F +coef_calib_tourwtran_DRIVEALONE_atwork,-20.0,F +coef_calib_tourwtran_SHARED2_atwork,-22.0,F +coef_calib_tourwtran_SHARED3_atwork,-22.0,F +coef_calib_tourwtran_WALK_atwork,-9.7479,F +coef_calib_tourwtran_BIKE_atwork,-30.0,F +coef_calib_tourwtran_WALK_TRANSIT_atwork,-13.489559480821685,F +coef_calib_tourwtran_TNC_SINGLE_atwork,-0.02,F +coef_calib_tourwalk_DRIVEALONE_atwork,-30.0,F +coef_calib_tourwalk_SHARED2_atwork,-30.0,F +coef_calib_tourwalk_SHARED3_atwork,-30.0,F +coef_calib_tourwalk_BIKE_atwork,-30.0,F +coef_calib_tourwalk_WALK_TRANSIT_atwork,-30.0,F +coef_calib_tourwalk_TAXI_atwork,-30.0,F +coef_calib_tourwalk_TNC_SINGLE_atwork,-30.0,F +coef_calib_tourwalk_TNC_SHARED_atwork,-30.0,F +coef_calib_tourebikejointtour0_WALK_disc,0.0,F +coef_calib_tourebikejointtour0_WALK_maint,0.0,F +coef_calib_tourebikejointtour1_WALK_disc,0.0,F +coef_calib_tourebikejointtour1_WALK_maint,0.0,F +coef_calib_tourebikejointtour0_EBIKE_disc,0.0,F +coef_calib_tourebikejointtour0_EBIKE_maint,0.020409266,F +coef_calib_tourebikejointtour1_EBIKE_disc,0.0,F +coef_calib_tourebikejointtour1_EBIKE_maint,0.0,F +coef_calib_tourescooterjointtour0_WALK_disc,0.0,F +coef_calib_tourescooterjointtour0_WALK_maint,0.0,F +coef_calib_tourescooterjointtour1_WALK_disc,0.0,F +coef_calib_tourescooterjointtour1_WALK_maint,0.0,F +coef_calib_tourescooterjointtour0_ESCOOTER_disc,0.0,F +coef_calib_tourescooterjointtour0_ESCOOTER_maint,0.0,F +coef_calib_tourescooterjointtour1_ESCOOTER_disc,-28.0,F +coef_calib_tourescooterjointtour1_ESCOOTER_maint,-28.0,F +coef_calib_flexfleet,7.5,F diff --git a/resident/configs_skats/constants.yaml b/resident/configs_skats/constants.yaml new file mode 100644 index 0000000..91ef5d3 --- /dev/null +++ b/resident/configs_skats/constants.yaml @@ -0,0 +1,4 @@ +inherit_settings: True +KNR_available: False + +model_region_name: "SKATS" \ No newline at end of file diff --git a/resident/extensions/external_identification.py b/resident/extensions/external_identification.py index 3800a04..66d1c4b 100644 --- a/resident/extensions/external_identification.py +++ b/resident/extensions/external_identification.py @@ -38,6 +38,9 @@ class ExternalIdentificationSettings(LogitComponentSettings, extra="forbid"): preprocessor: PreprocessorSettings | None = None + EXTERNAL_WORKER_ALT: int | None = 0 + EXTERNAL_TOUR_ALT: int | None = 0 + def determine_closest_external_station( state, choosers, skim_dict, origin_col="home_zone_id" @@ -183,7 +186,7 @@ def external_worker_identification( if external_col_name is not None: persons[external_col_name] = ( - (choices == 0).reindex(persons.index).fillna(False).astype(bool) + (choices == model_settings.EXTERNAL_WORKER_ALT).reindex(persons.index).fillna(False).astype(bool) ) if internal_col_name is not None: persons[internal_col_name] = persons[filter_col] & ~persons[external_col_name] @@ -277,12 +280,10 @@ def set_external_tour_variables(state, tours, choices, model_settings, trace_lab if external_col_name is not None: tours[external_col_name] = ( - (choices == 0).reindex(tours.index).fillna(False).astype(bool) + (choices == model_settings.EXTERNAL_TOUR_ALT).reindex(tours.index).fillna(False).astype(bool) ) if internal_col_name is not None: - tours[internal_col_name] = ( - (choices == 1).reindex(tours.index).fillna(True).astype(bool) - ) + tours[internal_col_name] = ~tours[external_col_name] # - annotate tours table if "annotate_tours" in model_settings: @@ -304,7 +305,7 @@ def external_non_mandatory_identification( network_los: los.Network_LOS, model_settings: ExternalIdentificationSettings | None = None, model_settings_file_name: str = "external_non_mandatory_identification.yaml", - trace_label: str = "external_non_mandatory_identification", + trace_label: str = "external_non_mandatory_tour_identification", trace_hh_id: bool = False, ) -> None: """ diff --git a/resident/extensions/external_location_choice.py b/resident/extensions/external_location_choice.py index 0b3ee8e..c5c087b 100644 --- a/resident/extensions/external_location_choice.py +++ b/resident/extensions/external_location_choice.py @@ -57,7 +57,7 @@ def external_school_location( estimator = estimation.manager.begin_estimation(state, "external_school_location") if estimator: - write_estimation_specs(estimator, model_settings, model_settings_file_name) + write_estimation_specs(state, estimator, model_settings, model_settings_file_name) persons_df = iterate_location_choice( state=state, @@ -106,7 +106,7 @@ def external_workplace_location( state, "external_workplace_location" ) if estimator: - write_estimation_specs(estimator, model_settings, model_settings_file_name) + write_estimation_specs(state, estimator, model_settings, model_settings_file_name) persons_df = iterate_location_choice( state=state, diff --git a/resident/model_data/metro/data_cropped/land_use.csv b/resident/model_data/metro/data_cropped/land_use.csv index 31c62c2..4e3df50 100644 --- a/resident/model_data/metro/data_cropped/land_use.csv +++ b/resident/model_data/metro/data_cropped/land_use.csv @@ -1,653 +1,653 @@ -MAZ,TAZ,EXTERNAL,EMP_AFS,EMP_CON,EMP_GOV,EMP_HCS,EMP_IFRPBS,EMP_NRM,EMP_OSV,EMP_RET,EMP_AER,EMP_MFG,EMP_WT,EMP_EDU,EMP_TWU,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,DIST_Kto8,DIST_9to12,COLLEGEENROLL,PRKCST_HR,PRKCST_DAY,PRKCST_MNTH,PRKSPACES,INTHMI,PARKATTRACT,TERMINALTIME,ESCOOACCTIME,EBIKEACCTIME,PNR_SPACES,DISTRICT9,TOTHHS,TOTPOP,ACRES,walk_dist_local_bus,walk_dist_premium_transit,icnt,empden,retempden,duden,popden,popempdenpermi,totint -1,1,0,294,2,46,0,270,9,2,120,0,0,0,0,0,776,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,290,0,0.0,0.0,0.0,0,1,0,0,1.6633769723569505,0.111,0.114,1.0,212.171,5.386,10.328,12.902,144046.949,145.0 -2,1,0,30,0,0,19,185,0,0,12,9,5,0,0,0,168,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.91,0.0,300,0,0.0,0.0,0.0,0,1,0,0,1.6484082031656957,0.025,0.025,1.0,248.867,5.958,15.437,20.1,172138.57,136.0 -3,1,0,0,0,0,0,0,0,0,130,0,0,0,0,0,76,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,295,0,0.0,0.0,0.0,0,1,1,1,1.6929867345479397,0.0,0.0,1.0,200.985,4.795,13.779,17.855,140057.617,145.0 -4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,303,0,0.0,0.0,0.0,0,1,0,0,1.6658739496278083,0.025,0.025,1.0,248.867,5.958,15.437,20.1,172138.57,136.0 -5,1,0,5,0,0,0,693,0,2,1,3,0,46,0,0,385,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,281,0,0.0,0.0,0.0,0,1,0,0,1.674021284577425,0.0,0.0,1.0,185.323,4.829,15.365,20.721,131868.515,149.0 -6,1,0,177,651,761,79,3615,15,112,43,1,108,502,72,104,6945,0,0,PORTLAND,PORTLAND,0,2.4,13.0,13.0,0.0,292,0,0.0,0.0,0.0,0,1,0,0,1.6715201601537917,0.0,0.0,1.0,177.345,4.56,16.035,21.159,127042.878,164.0 -7,1,0,0,0,0,0,28,0,0,0,0,0,0,0,437,600,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,260,0,0.0,0.0,0.0,0,1,0,0,1.6182736818939645,0.048,0.151,1.0,184.132,4.853,16.146,21.484,131594.489,123.0 -8,1,0,5,0,0,0,0,0,0,5,0,0,0,0,0,13,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.65,0.0,275,0,0.0,0.0,0.0,0,1,0,0,1.667942492330622,0.078,0.078,1.0,251.499,6.04,14.857,19.549,173470.906,134.0 -9,1,0,90,13,12,8,291,0,7,4,0,0,0,1,0,308,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.96,0.0,264,0,0.0,0.0,0.0,0,1,0,0,1.6054031542468417,0.097,0.103,1.0,206.557,4.91,13.112,17.475,143380.579,143.0 -10,1,0,0,0,0,10,14,0,8,13,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.4,15.7,12.5,0.0,274,0,0.0,0.0,0.0,0,1,5,5,1.6441747428245526,0.078,0.078,1.0,251.499,6.04,14.857,19.549,173470.906,134.0 -11,1,0,2,0,0,0,33,0,0,8,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,15.0,13.7,0.0,268,0,0.0,0.0,0.0,0,1,0,0,1.6236077364165518,0.127,0.019,1.0,216.39,5.495,10.438,13.087,146865.191,133.0 -12,1,0,45,0,0,0,15,0,0,74,0,0,0,0,0,106,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,279,0,0.0,0.0,0.0,0,1,0,0,1.6934901763611443,0.097,0.1,1.0,206.431,5.128,10.967,13.707,140888.562,152.0 -13,2,0,1,0,12,0,158,0,17,32,0,0,0,0,0,264,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,290,0,0.0,0.0,0.0,0,1,0,0,1.6756281073418473,0.027,0.027,1.0,239.057,6.004,14.813,18.206,164647.965,148.0 -14,2,0,228,0,0,0,233,0,35,36,0,0,0,0,0,630,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,305,0,0.0,0.0,0.0,0,1,0,0,1.7108046182456784,0.0,0.024,1.0,200.507,5.396,11.943,14.023,137298.595,139.0 -15,2,0,62,0,0,1,339,0,0,10,0,0,4,0,0,642,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,295,0,0.0,0.0,0.0,0,1,0,0,1.6459321623541463,0.0,0.0,1.0,169.13,4.345,12.087,14.705,117654.173,160.0 -16,2,0,0,0,0,3,223,0,14,0,0,0,10,2,0,412,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,305,0,0.0,0.0,0.0,0,1,92,116,1.6873564761917892,0.0,0.024,1.0,200.507,5.396,11.943,14.023,137298.595,139.0 -17,2,0,0,3,0,26,1905,0,3,41,0,0,0,0,0,1592,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.28,0.0,271,0,0.0,0.0,0.0,0,1,0,0,1.6120043117579703,0.127,0.019,1.0,216.39,5.495,10.438,13.087,146865.191,133.0 -18,2,0,37,0,0,0,0,0,20,1,0,0,0,0,0,37,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,280,0,0.0,0.0,0.0,0,1,0,0,1.669718425748548,0.048,0.051,1.0,169.13,4.345,12.087,14.705,117654.173,160.0 -19,2,0,27,0,0,6,32,0,23,8,7,16,2,0,0,111,0,0,PORTLAND,PORTLAND,0,2.4,21.0,10.0,0.0,271,0,0.0,0.0,0.0,0,1,0,0,1.6112162900703184,0.0,0.152,1.0,190.39,4.749,10.372,12.775,130025.619,130.0 -20,2,0,4,1,0,0,222,0,2,5,8,0,5,0,0,368,0,0,PORTLAND,PORTLAND,0,2.4,10.0,12.82,0.0,280,0,0.0,0.0,0.0,0,1,0,0,1.6724770749212885,0.0,0.1,1.0,168.518,5.076,10.092,11.875,115451.752,155.0 -21,3,0,0,0,0,0,0,0,0,12,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,9.75,9.05,0.0,246,0,0.0,0.0,0.0,0,1,0,0,1.166340658558528,0.0,0.0,1.0,101.829,5.469,16.485,19.762,77818.452,164.0 -22,3,0,171,1,0,24,4022,0,9,4,0,0,5,0,5,3276,0,0,PORTLAND,PORTLAND,0,2.4,26.0,21.16,0.0,271,0,0.0,0.0,0.0,0,1,0,0,3.650661109061944,0.0,0.0,2.0,133.902,6.866,19.068,23.541,100763.669,169.0 -23,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,313,3,0.0,0.0,0.0,0,1,0,0,0.5326422455357304,0.084,0.148,2.0,125.048,6.118,27.939,35.191,102552.927,152.0 -24,3,0,0,0,0,146,0,0,0,0,0,0,0,0,0,114,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,302,0,0.0,0.0,0.0,0,1,0,0,0.7772867394426929,0.017,0.048,2.0,146.76,7.455,22.664,28.456,112138.196,195.0 -25,3,0,0,0,0,0,71,0,0,0,0,0,0,0,0,129,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.77,0.0,285,0,0.0,0.0,0.0,0,1,119,126,1.1400551553685587,0.0,0.031,2.0,134.421,6.939,21.357,26.834,103203.398,185.0 -26,3,0,0,1,0,0,24,0,0,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,321,0,0.0,0.0,0.0,0,1,0,0,1.3220287299372866,0.032,0.205,1.0,113.667,6.836,24.853,31.389,92835.821,176.0 -27,3,0,0,0,0,30,0,0,0,5,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,297,0,0.0,0.0,0.0,0,1,1,1,1.6717393482713658,0.0,0.0,1.0,177.678,5.947,13.605,16.223,124096.774,177.0 -28,3,0,0,0,234,7,106,0,0,0,0,5,23,0,0,514,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.77,0.0,304,0,0.0,0.0,0.0,0,1,0,0,1.6724402986393905,0.0,0.0,1.0,165.166,8.291,19.964,24.532,121406.839,177.0 -29,3,0,75,0,70,4,628,0,9,0,1,0,0,0,2,367,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,316,0,0.0,0.0,0.0,0,1,0,0,1.6676032817286577,0.0,0.101,1.0,170.897,8.43,23.667,30.171,128683.519,173.0 -30,3,0,21,0,0,34,20,0,15,0,0,0,0,0,11,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,293,0,0.0,0.0,0.0,0,1,0,0,1.6793523852455514,0.0,0.0,1.0,155.664,5.014,11.955,14.043,108613.07,168.0 -31,3,0,0,0,0,5,302,53,3,0,0,0,31,0,0,260,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.77,0.0,319,0,0.0,0.0,0.0,0,1,2,2,1.5708424484498729,0.027,0.151,0.0,152.773,8.162,25.093,31.668,118042.505,186.0 -32,3,0,40,0,0,0,1597,0,25,0,0,0,0,0,0,965,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,300,0,0.0,0.0,0.0,0,1,0,0,1.6866192139632936,0.0,0.0,2.0,158.064,6.323,15.837,19.174,113432.123,170.0 -33,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,324,3,0.0,0.0,0.0,0,1,0,0,0.9350760684896252,0.0,0.138,3.0,145.171,8.809,24.164,31.056,112785.061,175.0 -34,3,0,0,0,0,0,123,0,2,0,0,0,61,0,0,226,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.77,0.0,313,0,0.0,0.0,0.0,0,1,0,0,1.678629840951222,0.049,0.051,1.0,161.746,8.245,20.256,24.995,119514.657,179.0 -35,3,0,0,0,1369,0,0,0,211,0,0,0,0,0,0,645,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,277,0,0.0,0.0,0.0,0,1,0,0,1.6669725727203633,0.0,0.0,1.0,139.585,6.44,16.107,19.457,101787.215,157.0 -36,3,0,194,0,0,0,13,0,1,0,0,0,0,0,0,141,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,317,0,0.0,0.0,0.0,0,1,0,0,1.5775658358927631,0.1,0.102,0.0,179.981,8.036,18.233,21.673,129058.921,143.0 -37,3,0,0,0,0,35,488,0,0,0,0,0,0,0,0,485,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.28,0.0,260,0,0.0,0.0,0.0,0,1,0,0,1.4300813615620849,0.0,0.0,1.0,127.317,4.741,14.972,17.156,92462.7,127.0 -38,3,0,0,0,0,51,0,0,0,0,0,0,0,0,0,36,0,23,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,320,0,0.0,0.0,0.0,0,1,0,0,1.228577635855726,0.049,0.129,1.0,145.842,7.585,23.396,29.59,112276.473,196.0 -39,3,0,13,0,0,0,37,0,31,0,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.25,0.0,297,0,0.0,0.0,0.0,0,1,39,39,1.6012271136344274,0.0,0.031,0.0,134.421,6.939,21.357,26.834,103203.398,185.0 -40,3,0,21,0,7,11,277,0,0,10,0,0,4,0,8,184,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,314,0,0.0,0.0,0.0,0,1,7,7,1.1857354812730807,0.056,0.12,3.0,127.459,6.244,23.907,30.116,100848.431,175.0 -41,3,0,45,0,0,0,61,0,0,0,0,0,6,0,0,178,0,0,PORTLAND,PORTLAND,0,2.4,12.0,13.18,0.0,272,0,0.0,0.0,0.0,0,1,3,3,1.6068912711633316,0.083,0.094,1.0,106.19,2.171,9.819,10.602,74746.485,97.0 -42,3,0,40,11,0,0,141,0,35,3,0,0,0,3,0,434,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,285,0,0.0,0.0,0.0,0,1,0,0,1.6702659668977653,0.0,0.051,1.0,155.664,5.014,11.955,14.043,108613.07,168.0 -43,3,0,14,0,0,0,3,0,0,3,0,0,0,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.28,0.0,269,0,0.0,0.0,0.0,0,1,26,26,1.6125165242017716,0.048,0.11,1.0,148.194,3.565,9.297,10.562,101604.127,136.0 -44,3,0,0,5,0,0,27,0,82,2,0,0,0,0,0,90,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.21,0.0,277,0,0.0,0.0,0.0,0,1,0,0,1.67243743223037,0.048,0.1,1.0,128.969,3.911,11.721,13.417,91126.912,141.0 -45,3,0,0,0,0,0,64,0,0,0,0,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.4,10.25,10.77,0.0,259,0,0.0,0.0,0.0,0,1,0,0,1.6296306290641254,0.0,0.104,1.0,129.509,3.933,11.601,13.307,91402.255,139.0 -46,3,0,0,0,0,0,113,0,0,5,0,2,0,0,4,211,0,0,PORTLAND,PORTLAND,0,2.4,15.31,11.36,0.0,268,0,0.0,0.0,0.0,0,1,113,124,1.6529541198668205,0.0,0.052,1.0,118.296,4.248,15.366,17.932,87185.99,156.0 -47,3,0,15,1,0,0,19,0,15,0,0,0,0,5,0,59,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,243,0,0.0,0.0,0.0,0,1,96,102,1.6440680182969671,0.049,0.104,1.0,109.475,3.351,10.757,12.349,77967.504,133.0 -48,3,0,226,0,0,0,15,0,15,0,0,0,0,0,0,219,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,249,0,0.0,0.0,0.0,0,1,32,34,1.6602172441801424,0.052,0.052,1.0,113.892,3.786,13.099,14.855,82397.864,146.0 -49,3,0,106,0,0,0,8,0,16,5,12,0,0,0,0,182,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,230,0,0.0,0.0,0.0,0,1,0,0,1.0123463442414418,0.09,0.108,1.0,107.344,3.496,13.155,14.934,78257.579,133.0 -50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,240,0,0.0,0.0,0.0,0,1,0,0,0.3556276246452546,0.109,0.127,2.0,97.633,3.395,13.484,15.313,72285.083,127.0 -51,3,0,8,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,9.0,7.33,0.0,233,0,0.0,0.0,0.0,0,1,0,0,1.2540853502904388,0.038,0.056,2.0,97.311,3.848,16.105,19.007,74443.593,143.0 -52,3,0,48,0,0,0,0,0,0,5,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,226,0,0.0,0.0,0.0,0,1,0,0,1.2973569633627395,0.109,0.127,1.0,97.633,3.395,13.484,15.313,72285.083,127.0 -53,4,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,241,3,0.0,0.0,0.0,0,1,39,41,34.69835040929281,0.045,0.195,0.0,80.298,0.913,7.121,7.78,56369.553,75.0 -54,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,251,0,0.0,0.0,0.0,0,1,0,0,2.1356078845791697,0.0,0.193,0.0,133.938,3.785,7.916,8.917,91427.06,90.0 -55,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.68,0.0,261,0,0.0,0.0,0.0,0,1,0,0,1.7045783842577078,0.083,0.094,2.0,106.19,2.171,9.819,10.602,74746.485,97.0 -56,4,0,0,0,0,0,133,298,0,0,0,0,4,0,0,445,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.96,0.0,256,0,0.0,0.0,0.0,0,1,0,0,1.607878715073459,0.03,0.0,1.0,95.976,2.59,9.138,9.986,67815.764,110.0 -57,4,0,7,116,1365,16,119,38,0,0,0,2,0,0,0,1256,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,261,0,0.0,0.0,0.0,0,1,9,9,1.5494571731129716,0.03,0.0,2.0,95.976,2.59,9.138,9.986,67815.764,110.0 -58,4,0,46,0,0,0,30,0,35,2,0,0,0,0,0,106,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,246,0,0.0,0.0,0.0,0,1,0,0,1.591345950467043,0.0,0.047,2.0,105.371,2.732,8.907,9.734,73667.515,113.0 -59,4,0,21,0,0,0,25,0,0,0,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.77,0.0,254,0,0.0,0.0,0.0,0,1,6,6,1.5494618764877872,0.0,0.03,1.0,104.552,2.722,9.451,10.483,73622.695,114.0 -60,4,0,36,0,0,9,9,0,0,0,0,0,0,0,0,89,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.18,0.0,237,0,0.0,0.0,0.0,0,1,0,0,1.561606728062414,0.049,0.096,3.0,91.493,1.874,9.372,10.215,65093.371,103.0 -61,4,0,58,0,337,0,65,0,33,14,0,0,0,0,0,315,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.65,0.0,241,0,0.0,0.0,0.0,0,1,9,9,1.5673886283521714,0.097,0.138,1.0,105.852,2.732,10.307,11.568,75148.855,114.0 -62,4,0,0,0,58,0,0,0,0,0,0,0,0,0,0,124,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,222,3,0.0,0.0,0.0,0,1,0,0,1.946609515069344,0.073,0.156,0.0,81.875,1.21,10.398,11.505,59763.59,96.0 -63,4,0,8,0,0,0,2,0,0,4,0,0,0,1,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,229,0,0.0,0.0,0.0,0,1,0,0,1.494185619695788,0.073,0.156,1.0,81.875,1.21,10.398,11.505,59763.59,96.0 -64,4,0,0,0,0,141,0,0,0,4,0,0,0,0,0,274,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,216,0,0.0,0.0,0.0,0,1,22,22,1.3053326591445602,0.01,0.0,0.0,94.825,1.343,14.457,16.658,71349.121,97.0 -65,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,217,0,0.0,0.0,0.0,0,1,36,36,1.286830301654319,0.01,0.0,1.0,94.825,1.343,14.457,16.658,71349.121,97.0 -66,5,0,0,0,0,0,8,0,28,0,0,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,279,0,0.0,0.0,0.0,0,1,22,22,1.604382897687055,0.0,0.262,0.0,124.198,7.9,28.791,38.362,104038.025,135.0 -67,5,0,0,0,0,0,10,0,3,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,11.75,12.6,0.0,293,0,0.0,0.0,0.0,0,1,1,1,1.6453625802103908,0.0,0.262,0.0,124.198,7.9,28.791,38.362,104038.025,135.0 -68,5,0,0,0,0,36,0,0,0,0,0,0,0,0,0,89,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,303,0,0.0,0.0,0.0,0,1,56,66,1.7094608487349583,0.048,0.332,0.0,96.866,6.611,26.449,34.803,84268.107,145.0 -69,5,0,8,0,0,53,110,0,159,0,0,0,2,14,0,425,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.0,0.0,309,0,0.0,0.0,0.0,0,1,0,0,1.7236210700999297,0.097,0.194,0.0,107.665,7.188,25.307,33.413,90290.3,156.0 -70,5,0,0,0,0,1,0,0,14,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,14.0,10.46,0.0,308,0,0.0,0.0,0.0,0,1,0,0,1.7388212687617306,0.0,0.242,1.0,103.86,8.153,28.248,37.392,90401.396,157.0 -71,5,0,101,0,0,6,0,0,0,1,0,0,0,0,0,116,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,311,0,0.0,0.0,0.0,0,1,0,0,1.7129049524295037,0.0,0.292,1.0,97.295,7.605,24.755,33.15,83484.994,168.0 -72,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,306,0,0.0,0.0,0.0,0,1,117,141,0.8730649113923236,0.035,0.347,1.0,87.474,6.209,23.194,31.736,76294.38,165.0 -73,5,0,66,0,0,0,35,0,3,26,0,0,17,0,0,199,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.58,0.0,304,0,0.0,0.0,0.0,0,1,0,0,1.5474925860330944,0.0,0.312,1.0,86.212,7.215,26.171,35.339,77792.59,192.0 -74,5,0,206,0,0,1,156,0,9,5,0,0,0,0,0,376,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.5,0.0,310,0,0.0,0.0,0.0,0,1,7,8,1.684945568356964,0.051,0.311,1.0,97.878,6.515,26.664,35.535,85384.711,185.0 -75,5,0,55,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,308,0,0.0,0.0,0.0,0,1,274,341,0.4163023335276992,0.0,0.319,2.0,95.703,6.068,26.424,35.097,83711.811,208.0 -76,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,266,0,0.0,0.0,0.0,0,1,0,0,3.086860877328012,0.098,0.433,1.0,28.573,0.982,33.608,47.243,48522.246,72.0 -77,5,0,9,0,0,224,25,0,0,0,0,0,0,0,0,252,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,263,0,0.0,0.0,0.0,0,1,18,18,3.241959842377917,0.0,0.335,0.0,45.223,1.166,25.767,35.913,51927.112,117.0 -78,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,306,0,0.0,0.0,0.0,0,1,143,154,1.1628766083353557,0.0,0.242,0.0,103.86,8.153,28.248,37.392,90401.396,157.0 -79,5,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,2,30,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,308,0,0.0,0.0,0.0,0,1,0,0,1.5390963751755764,0.035,0.347,0.0,87.474,6.209,23.194,31.736,76294.38,165.0 -80,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,288,0,0.0,0.0,0.0,0,1,133,160,1.011005406562363,0.135,0.317,1.0,83.338,8.041,24.196,32.016,73826.823,119.0 -81,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,300,0,0.0,0.0,0.0,0,1,0,0,0.9908696847169872,0.135,0.317,2.0,83.338,8.041,24.196,32.016,73826.823,119.0 -82,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,303,0,0.0,0.0,0.0,0,1,0,0,1.021717564604396,0.097,0.194,1.0,107.665,7.188,25.307,33.413,90290.3,156.0 -83,6,0,7,0,0,0,51,0,0,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,311,0,0.0,0.0,0.0,0,1,0,0,1.0996451418744164,0.026,0.286,1.0,97.772,6.139,27.714,36.705,86065.381,201.0 -84,6,0,56,0,0,0,23,0,7,16,0,0,0,0,0,72,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,316,0,0.0,0.0,0.0,0,1,93,93,1.7156532189277267,0.0,0.234,1.0,118.321,7.965,27.57,35.568,98489.053,180.0 -85,6,0,97,0,0,1,13,0,22,0,0,2,0,0,0,77,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,314,0,0.0,0.0,0.0,0,1,10,10,0.715088302194791,0.0,0.236,3.0,104.979,6.07,26.0,33.446,88592.095,198.0 -86,6,0,42,32,86,6,86,0,28,15,79,0,0,2,0,387,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,319,0,0.0,0.0,0.0,0,1,0,0,1.5629639073673838,0.039,0.0,1.0,166.291,8.231,19.25,25.116,122500.674,169.0 -87,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,309,0,0.0,0.0,0.0,0,1,0,0,1.6545935532394729,0.024,0.063,1.0,156.299,9.479,20.876,27.755,117794.701,150.0 -88,6,0,12,0,0,90,22,0,1,0,0,0,0,0,0,161,0,0,PORTLAND,PORTLAND,0,2.4,12.5,12.25,0.0,309,0,0.0,0.0,0.0,0,1,12,12,1.677437686140967,0.098,0.192,1.0,107.665,7.188,25.307,33.413,90290.3,156.0 -89,6,0,0,0,0,0,11,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,321,0,0.0,0.0,0.0,0,1,0,0,1.5992760164294608,0.01,0.0,1.0,142.044,8.448,23.875,31.438,111028.772,181.0 -90,6,0,52,0,0,27,50,0,2,18,0,0,0,0,0,181,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,313,0,0.0,0.0,0.0,0,1,0,0,1.6804430915809303,0.024,0.063,1.0,156.299,9.479,20.876,27.755,117794.701,150.0 -91,6,0,0,0,0,27,108,0,0,0,0,12,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,309,0,0.0,0.0,0.0,0,1,47,47,1.684454234415983,0.049,0.143,1.0,129.241,8.518,27.471,36.467,106053.117,169.0 -92,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,327,0,0.0,0.0,0.0,0,1,0,0,1.5928270886837017,0.01,0.0,1.0,142.044,8.448,23.875,31.438,111028.772,181.0 -93,6,0,137,0,0,3,2,0,3,28,0,0,1,0,0,293,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.65,0.0,318,0,0.0,0.0,0.0,0,1,0,0,1.670256259968136,0.0,0.164,1.0,132.29,8.559,25.658,33.815,106307.399,154.0 -94,6,0,239,0,0,31,92,0,50,0,0,0,2,0,0,192,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,314,0,0.0,0.0,0.0,0,1,2,2,1.6717291851203473,0.0,0.29,1.0,97.326,7.572,25.216,33.6,83793.054,170.0 -95,6,0,115,1,0,0,165,0,0,0,0,0,0,0,0,353,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,326,0,0.0,0.0,0.0,0,1,0,0,1.5641402358415044,0.0,0.14,1.0,144.9,8.864,24.315,31.251,112736.881,174.0 -96,6,0,53,7,0,176,60,0,1,0,0,1,0,0,0,289,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.18,0.0,317,0,0.0,0.0,0.0,0,1,0,0,1.6728477172187777,0.0,0.188,1.0,137.338,8.483,26.243,34.362,109887.781,176.0 -97,6,0,14,267,0,0,273,0,0,0,0,0,1,0,0,319,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.96,0.0,313,0,0.0,0.0,0.0,0,1,0,0,1.6711223807379183,0.0,0.241,1.0,131.182,8.398,23.826,31.501,104116.971,186.0 -98,6,0,2,0,0,0,393,0,0,11,9,0,0,0,0,679,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,328,0,0.0,0.0,0.0,0,1,26,26,1.597578647153853,0.0,0.23,1.0,123.52,7.874,27.287,35.194,101576.902,183.0 -99,6,0,4,0,0,0,24,0,0,29,0,0,0,10,0,80,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,318,0,0.0,0.0,0.0,0,1,0,0,1.6346702389462562,0.0,0.236,1.0,133.345,8.559,23.978,31.676,105613.462,182.0 -100,6,0,188,0,0,0,42,0,0,8,0,0,3,0,0,166,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,311,0,0.0,0.0,0.0,0,1,0,0,1.66881824031794,0.051,0.311,1.0,97.878,6.515,26.664,35.535,85384.711,185.0 -101,6,0,0,0,0,0,21,0,0,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,2.4,11.0,11.14,0.0,321,0,0.0,0.0,0.0,0,1,26,26,1.670818161626772,0.0,0.181,1.0,149.854,8.442,25.252,32.253,116548.301,194.0 -102,6,0,54,0,0,0,0,0,9,4,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.4,11.8,10.0,0.0,313,0,0.0,0.0,0.0,0,1,0,0,1.5981282020729266,0.0,0.137,1.0,169.984,6.084,23.698,31.188,128749.677,152.0 -103,6,0,11,0,0,24,85,0,7,10,7,0,0,0,0,102,0,0,PORTLAND,PORTLAND,0,2.4,11.0,10.0,0.0,300,0,0.0,0.0,0.0,0,1,9,9,1.692732612134282,0.0,0.189,1.0,135.402,5.062,26.95,35.295,109246.494,144.0 -104,6,0,0,0,0,0,54,0,27,0,0,0,0,84,0,231,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,300,0,0.0,0.0,0.0,0,1,0,0,1.6794597155162525,0.0,0.241,1.0,128.075,7.557,30.162,39.956,107539.542,148.0 -105,7,0,74,0,31,14,747,0,15,5,150,0,6,23,0,1257,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.38,0.0,311,0,0.0,0.0,0.0,0,1,78,78,1.6716876523242366,0.024,0.011,1.0,227.537,6.617,14.994,18.411,157407.09,152.0 -106,7,0,7,277,642,0,479,0,13,44,0,0,20,0,0,1075,0,0,PORTLAND,PORTLAND,0,2.4,14.0,13.96,0.0,318,0,0.0,0.0,0.0,0,1,0,0,1.5793027962664852,0.078,0.136,0.0,172.017,6.565,22.53,29.303,128844.78,157.0 -107,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,326,3,0.0,0.0,0.0,0,1,0,0,0.8914068877352082,0.049,0.137,2.0,169.984,6.084,23.698,31.188,128749.677,152.0 -108,7,0,32,0,13,0,39,0,0,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,315,3,0.0,0.0,0.0,0,1,0,0,1.6860095935479105,0.024,0.011,1.0,227.537,6.617,14.994,18.411,157407.09,152.0 -109,7,0,0,0,0,0,1,0,0,392,0,0,0,0,0,166,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,325,0,0.0,0.0,0.0,0,1,0,0,1.5832840494152158,0.05,0.087,0.0,183.593,6.705,19.122,24.896,133433.115,159.0 -110,7,0,0,0,0,0,259,0,0,3,0,3,0,0,0,469,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,329,0,0.0,0.0,0.0,0,1,0,0,0.8828961818100157,0.049,0.01,2.0,168.79,8.126,21.5,28.177,126058.881,171.0 -111,7,0,2,5,0,2,293,0,56,14,0,0,1,16,4,524,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,318,0,0.0,0.0,0.0,0,1,168,215,1.651704007801476,0.0,0.021,1.0,189.983,7.225,18.977,24.155,137048.61,145.0 -112,7,0,37,0,0,0,25,0,12,0,0,0,16,0,0,88,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,323,0,0.0,0.0,0.0,0,1,0,0,1.5814956219532377,0.0,0.069,0.0,150.013,8.589,21.256,27.494,113604.597,168.0 -113,7,0,1,0,0,0,3,0,0,6,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,325,0,0.0,0.0,0.0,0,1,25,30,0.8965035714624098,0.0,0.041,2.0,156.517,8.567,21.863,29.073,118777.835,166.0 -114,7,0,102,0,0,0,107,0,1,18,0,0,0,16,0,168,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.55,0.0,315,0,0.0,0.0,0.0,0,1,82,105,1.645333734336592,0.0,0.053,1.0,182.62,5.859,20.503,25.159,132978.056,181.0 -115,7,0,1,0,0,0,434,0,7,56,0,31,0,0,0,371,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,329,0,0.0,0.0,0.0,0,1,0,0,1.583049387948184,0.0,0.103,0.0,169.84,8.478,23.712,30.324,128105.037,177.0 -116,7,0,105,0,0,0,29,0,3,10,0,0,0,0,0,137,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,327,0,0.0,0.0,0.0,0,1,0,0,0.9253683943916642,0.0,0.09,2.0,157.576,8.509,22.458,28.782,119269.091,171.0 -117,7,0,241,0,0,0,7,0,0,0,0,0,0,0,0,184,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,305,0,0.0,0.0,0.0,0,1,0,0,1.6705049425060954,0.0,0.052,1.0,171.857,4.655,19.093,25.514,126317.769,160.0 -118,7,0,0,0,0,0,92,0,0,19,0,0,0,0,0,131,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,312,0,0.0,0.0,0.0,0,1,0,0,1.5875659658798251,0.0,0.102,0.0,192.334,5.874,17.538,23.293,138001.663,171.0 -119,7,0,86,0,0,0,0,0,36,0,0,0,0,0,0,123,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,321,0,0.0,0.0,0.0,0,1,183,237,0.8709465374150231,0.0,0.13,2.0,172.65,5.909,22.181,29.337,129271.591,151.0 -120,8,0,3,95,841,0,0,0,0,0,0,0,0,0,0,1096,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,227,3,0.0,0.0,0.0,0,1,0,0,2.210298984196536,0.041,0.325,3.0,121.556,1.304,5.886,8.502,83237.555,79.0 -121,8,0,6,0,45,0,0,0,0,0,0,0,0,0,0,65,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.96,0.0,239,0,0.0,0.0,0.0,0,1,0,0,1.5694319386879068,0.0,0.154,2.0,195.664,3.22,15.061,21.394,138917.448,113.0 -122,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,237,0,0.0,0.0,0.0,0,1,0,0,1.7951610750219296,0.0,0.234,3.0,147.813,2.233,9.632,13.861,103471.077,91.0 -123,8,0,7,0,11,0,227,0,51,0,0,0,0,0,0,299,0,0,PORTLAND,PORTLAND,0,2.4,25.0,11.82,0.0,247,0,0.0,0.0,0.0,0,1,0,0,1.5328716048983555,0.028,0.28,1.0,121.997,0.995,8.256,12.148,85852.959,81.0 -124,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,240,0,0.0,0.0,0.0,0,1,0,0,1.7384206558138935,0.127,0.259,1.0,105.978,1.801,5.414,7.773,72800.862,88.0 -125,8,0,10,30,396,13,590,0,23,0,0,1,1,0,6,1120,0,0,PORTLAND,PORTLAND,0,2.4,19.0,15.47,0.0,254,0,0.0,0.0,0.0,0,1,0,0,1.5366625848895676,0.0,0.155,1.0,185.421,4.89,14.977,20.133,131554.552,122.0 -126,8,0,0,0,0,0,0,0,8,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.14,0.0,250,0,0.0,0.0,0.0,0,1,2,2,1.6632248414140756,0.05,0.184,2.0,174.256,4.766,11.714,15.947,121730.231,107.0 -127,8,0,11,3,91,88,2457,0,30,0,0,0,16,59,2,3231,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,262,0,0.0,0.0,0.0,0,1,0,0,1.5632104372843776,0.098,0.137,1.0,213.89,5.801,10.892,14.715,146306.928,112.0 -128,8,0,17,19,0,82,155,0,1,0,0,0,0,0,0,246,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.21,0.0,244,0,0.0,0.0,0.0,0,1,0,0,1.689582569742657,0.18,0.187,2.0,172.305,5.346,6.514,8.828,115925.587,93.0 -129,8,0,40,0,0,1,158,0,6,0,0,5,0,2,0,90,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,259,0,0.0,0.0,0.0,0,1,3,3,1.5525437328056253,0.125,0.0,1.0,150.114,4.873,7.048,8.46,101487.148,114.0 -130,8,0,49,0,0,0,87,0,4,0,13,0,0,0,0,95,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,251,0,0.0,0.0,0.0,0,1,1,1,1.6583492204224135,0.157,0.032,3.0,178.861,5.017,5.406,6.759,118796.783,110.0 -131,8,0,8,0,0,0,15,0,0,0,0,0,0,145,0,131,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.55,0.0,259,0,0.0,0.0,0.0,0,1,0,0,1.5538194634526732,0.125,0.0,0.0,150.114,4.873,7.048,8.46,101487.148,114.0 -132,8,0,1,0,0,0,2,0,0,0,13,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,233,3,0.0,0.0,0.0,0,1,0,0,39.30413334612749,0.246,0.207,0.0,130.019,3.842,5.046,6.523,87386.394,83.0 -133,8,0,0,0,0,0,324,0,2,0,1,0,0,0,0,706,0,0,PORTLAND,PORTLAND,0,2.4,25.0,10.23,0.0,263,0,0.0,0.0,0.0,0,1,25,25,1.5242915652443612,0.049,0.043,2.0,190.39,4.749,10.372,12.775,130025.619,130.0 -134,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,259,0,0.0,0.0,0.0,0,1,0,0,2.788012127913644,0.26,0.223,1.0,87.125,3.247,1.589,1.851,56944.813,68.0 -135,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,15.0,11.59,0.0,263,0,0.0,0.0,0.0,0,1,0,0,1.4118006245306958,0.0,0.15,1.0,144.857,3.545,7.575,8.45,98116.79,122.0 -136,9,0,0,0,0,0,28,0,0,0,147,0,0,0,0,157,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,284,0,0.0,0.0,0.0,0,1,0,0,3.284074829132222,0.096,0.282,1.0,140.871,5.225,30.852,40.667,116183.846,91.0 -137,9,0,6,0,0,97,73,1,0,5,0,0,0,0,0,138,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,274,0,0.0,0.0,0.0,0,1,0,0,3.334793938458561,0.0,0.332,0.0,70.793,1.303,32.413,43.474,73130.483,99.0 -138,9,0,3,7,0,11,60,0,0,0,0,0,0,98,0,83,136,118,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,269,0,0.0,0.0,0.0,0,1,352,440,3.34060960102474,0.0,0.332,0.0,70.793,1.303,32.413,43.474,73130.483,99.0 -139,9,0,14,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.62,0.0,301,0,0.0,0.0,0.0,0,1,537,698,1.6228551852691004,0.0,0.186,1.0,139.16,5.044,26.456,34.682,111258.864,145.0 -140,9,0,0,0,0,17,57,0,30,0,0,0,0,0,0,70,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.62,0.0,286,0,0.0,0.0,0.0,0,1,40,43,1.6595806329335807,0.0,0.341,1.0,110.452,4.57,27.399,35.659,93511.317,121.0 -141,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,9.25,12.07,0.0,288,0,0.0,0.0,0.0,0,1,81,92,1.6604339060726825,0.048,0.289,1.0,104.753,6.267,26.687,35.839,89979.128,136.0 -142,10,0,0,0,0,0,3,0,33,0,0,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,274,0,0.0,0.0,0.0,0,1,14,15,1.6658515200157962,0.0,0.0,1.0,221.726,5.841,18.514,25.307,158101.012,144.0 -143,10,0,23,0,0,0,4,0,11,0,66,0,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,283,0,0.0,0.0,0.0,0,1,41,48,1.5798648213566877,0.0,0.152,0.0,147.949,3.836,27.885,36.433,118004.618,148.0 -144,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,287,3,0.0,0.0,0.0,0,1,64,81,0.822243542461405,0.0,0.179,2.0,111.29,2.866,26.875,35.386,93872.366,139.0 -145,10,0,0,0,75,0,18,0,8,0,1,0,0,16,0,103,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,288,0,0.0,0.0,0.0,0,1,0,0,1.672790486419902,0.0,0.053,1.0,187.79,5.079,23.693,31.738,140498.138,147.0 -146,10,0,48,0,114,0,4,0,1,0,11,0,0,0,0,196,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,292,0,0.0,0.0,0.0,0,1,0,0,1.5935505177889235,0.05,0.103,0.0,174.86,4.599,25.988,34.395,133923.563,152.0 -147,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,294,3,0.0,0.0,0.0,0,1,10,10,0.8356337906612008,0.096,0.282,1.0,140.871,5.225,30.852,40.667,116183.846,91.0 -148,10,0,0,0,2,0,361,0,2,2,3,196,0,0,0,974,0,0,PORTLAND,PORTLAND,0,2.4,14.64,11.36,0.0,294,0,0.0,0.0,0.0,0,1,0,0,1.681316368037287,0.0,0.102,1.0,174.408,4.628,25.316,33.506,133065.151,152.0 -149,10,0,54,0,0,0,0,0,0,2,0,0,0,0,0,67,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,300,0,0.0,0.0,0.0,0,1,1,1,1.5924103266506129,0.049,0.151,0.0,172.434,5.514,23.263,30.804,130072.379,141.0 -150,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,307,3,0.0,0.0,0.0,0,1,0,0,0.8343126524947133,0.048,0.234,2.0,147.735,6.512,29.667,38.934,119468.184,111.0 -151,11,0,0,0,85,0,43,0,0,0,0,2,0,0,0,153,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,262,0,0.0,0.0,0.0,0,1,0,0,1.657625463163704,0.0,0.0,1.0,193.94,4.654,27.689,38.587,148817.561,132.0 -152,11,0,8,0,0,0,1064,0,0,0,1,0,16,0,0,860,0,0,PORTLAND,PORTLAND,0,2.4,24.0,11.82,0.0,267,0,0.0,0.0,0.0,0,1,0,0,1.652424970915803,0.0,0.0,1.0,221.726,5.841,18.514,25.307,158101.012,144.0 -153,11,0,0,0,1047,11,2,0,1,0,0,0,0,26,0,1842,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,264,0,0.0,0.0,0.0,0,1,0,0,1.6708709358279408,0.023,0.074,1.0,180.934,4.871,15.91,21.579,129608.792,130.0 -154,11,0,0,0,0,0,257,0,3,0,0,0,0,2,0,339,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.21,0.0,279,0,0.0,0.0,0.0,0,1,0,0,1.6790729961391286,0.0,0.025,1.0,220.857,6.01,18.733,27.139,158717.332,127.0 -155,11,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,275,0,0.0,0.0,0.0,0,1,0,0,1.6664205070105678,0.0,0.0,1.0,218.255,5.316,17.772,24.249,155202.63,156.0 -156,11,0,52,2,150,6,820,0,12,0,0,0,3,4,2,761,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,286,0,0.0,0.0,0.0,0,1,0,0,1.6679030126460834,0.0,0.025,1.0,213.341,5.766,18.793,24.971,152519.792,142.0 -157,11,0,0,5,1893,0,4,0,3,0,0,0,0,0,1,2249,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,249,0,0.0,0.0,0.0,0,1,0,0,1.6726142716336034,0.0,0.102,1.0,156.408,4.131,13.557,19.081,112312.699,131.0 -158,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,251,3,0.0,0.0,0.0,0,1,0,0,1.742631703295861,0.0,0.051,1.0,169.887,4.432,19.511,27.369,126243.78,144.0 -159,11,0,9,3,640,0,0,0,0,0,0,0,0,0,0,1084,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,252,0,0.0,0.0,0.0,0,1,0,0,1.548312582403614,0.0,0.151,1.0,192.656,3.34,14.682,20.874,136658.807,111.0 -160,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,268,3,0.0,0.0,0.0,0,1,0,0,1.7299828258852996,0.0,0.051,1.0,185.323,4.829,15.365,20.721,131868.515,149.0 -161,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,257,3,0.0,0.0,0.0,0,1,0,0,1.6569890732914174,0.023,0.074,1.0,180.934,4.871,15.91,21.579,129608.792,130.0 -162,11,0,0,0,564,0,6,0,0,0,0,0,0,0,0,419,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,259,0,0.0,0.0,0.0,0,1,0,0,1.6239156979379128,0.0,0.103,1.0,180.253,4.9,17.297,23.73,130549.361,128.0 -163,12,0,0,0,0,0,7,0,0,102,0,0,0,0,0,95,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,255,0,0.0,0.0,0.0,0,1,0,0,1.6681094378051915,0.0,0.232,2.0,108.933,2.646,27.204,36.51,93084.057,120.0 -164,12,0,0,0,0,42,0,0,0,0,0,0,0,0,0,31,10,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,261,0,0.0,0.0,0.0,0,1,134,183,1.6290648981420428,0.0,0.18,2.0,110.289,2.792,26.83,35.334,93198.62,137.0 -165,12,0,3,0,0,2,5,0,1,4,0,0,2,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,241,0,0.0,0.0,0.0,0,1,132,179,1.625728255469146,0.0,0.18,1.0,120.792,2.901,31.559,43.094,104887.238,118.0 -166,12,0,0,0,0,5,8,0,0,0,0,0,0,0,5,11,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,232,0,0.0,0.0,0.0,0,1,168,245,1.6575914360530517,0.0,0.232,1.0,89.999,1.477,32.74,43.082,85171.625,99.0 -167,12,0,4,0,0,2,0,0,4,0,0,0,0,1,0,15,0,0,PORTLAND,PORTLAND,0,2.4,11.75,10.68,0.0,250,0,0.0,0.0,0.0,0,1,129,185,1.6454443027820127,0.0,0.23,1.0,109.224,2.653,27.204,36.511,93270.009,119.0 -168,12,0,0,0,0,1,3,0,0,0,15,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.23,0.0,239,0,0.0,0.0,0.0,0,1,121,162,1.6741936695923785,0.0,0.307,1.0,45.087,1.02,32.448,42.703,56185.443,92.0 -169,13,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,253,0,0.0,0.0,0.0,0,1,83,110,1.6691068766827404,0.0,0.285,2.0,98.232,2.534,27.726,37.932,87145.091,132.0 -170,13,0,0,0,0,0,17,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,233,0,0.0,0.0,0.0,0,1,75,86,1.664580647044706,0.052,0.284,1.0,45.626,0.973,29.113,38.607,53909.351,106.0 -171,13,0,0,0,0,0,15,0,0,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.23,0.0,235,0,0.0,0.0,0.0,0,1,288,334,1.6646419723996575,0.024,0.309,1.0,77.302,2.634,29.172,39.101,74497.57,117.0 -172,14,0,0,0,28,0,0,0,0,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,247,0,0.0,0.0,0.0,0,1,283,332,1.6746437060176609,0.0,0.052,1.0,170.195,2.085,28.774,41.204,135295.328,120.0 -173,14,0,0,0,209,0,19,0,3,0,1,0,2,310,0,745,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,253,0,0.0,0.0,0.0,0,1,0,0,1.6730766727762425,0.0,0.014,1.0,162.494,1.229,21.846,32.304,124670.751,110.0 -174,14,0,1,0,0,0,78,0,10,4,0,0,1,15,0,62,0,0,PORTLAND,PORTLAND,0,2.4,13.25,10.68,0.0,271,0,0.0,0.0,0.0,0,1,0,0,1.60240393758065,0.0,0.102,0.0,156.841,3.784,29.699,40.01,125984.565,151.0 -175,14,0,0,0,0,0,127,0,1,0,0,0,0,0,0,245,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,267,0,0.0,0.0,0.0,0,1,305,495,1.6739794645260369,0.0,0.052,1.0,177.183,4.026,31.304,42.471,140578.215,137.0 -176,14,0,0,0,0,0,5,0,1,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,196,2.4,20.0,16.28,0.0,251,0,0.0,0.0,0.0,0,1,0,0,1.6960138061442938,0.0,0.0,1.0,160.024,1.207,21.072,31.153,122352.725,115.0 -177,14,0,14,0,0,4,92,0,0,0,0,0,0,0,0,130,0,0,PORTLAND,PORTLAND,0,2.4,12.95,10.54,0.0,259,0,0.0,0.0,0.0,0,1,117,182,1.673560068383579,0.0,0.0,1.0,188.235,4.411,25.618,36.097,143572.47,147.0 -178,14,0,2,2,0,0,2113,39,0,1,0,0,73,0,0,987,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.28,0.0,256,0,0.0,0.0,0.0,0,1,0,0,1.661970657283097,0.0,0.0,1.0,189.28,3.326,21.788,31.445,141264.119,128.0 -179,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,247,3,0.0,0.0,0.0,0,1,1,1,0.8115878042538652,0.0,0.13,2.0,136.134,3.007,32.286,44.352,115510.902,123.0 -180,14,0,0,0,0,1,4,0,0,0,0,0,1,0,1,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,253,0,0.0,0.0,0.0,0,1,0,0,1.5676870630090671,0.0,0.102,0.0,127.227,2.921,29.909,41.514,107994.574,137.0 -181,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,262,3,0.0,0.0,0.0,0,1,112,170,0.8433578317200401,0.048,0.178,2.0,120.792,2.901,31.559,43.094,104887.238,118.0 -182,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,274,3,0.0,0.0,0.0,0,1,9,9,0.833288349029151,0.0,0.131,2.0,149.813,3.075,29.326,39.724,121303.36,138.0 -183,14,0,0,0,104,24,317,0,0,0,22,0,0,0,0,551,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,255,0,0.0,0.0,0.0,0,1,0,0,1.6747949224009044,0.0,0.0,1.0,181.723,4.202,28.337,39.191,141384.751,128.0 -184,14,0,48,0,0,0,10,0,0,0,5,0,0,0,0,66,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,259,0,0.0,0.0,0.0,0,1,0,0,1.669440445854454,0.0,0.0,1.0,198.365,4.761,27.602,38.704,151723.913,130.0 -185,14,0,0,0,0,44,0,0,0,0,8,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.77,0.0,259,0,0.0,0.0,0.0,0,1,0,0,1.6628309661809624,0.0,0.0,1.0,198.365,4.761,27.602,38.704,151723.913,130.0 -186,14,0,39,0,0,25,264,0,16,0,0,0,0,0,0,522,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,262,0,0.0,0.0,0.0,0,1,87,125,1.5943148357621986,0.049,0.151,0.0,145.671,3.045,29.321,39.768,118680.934,132.0 -187,15,0,169,222,0,15,376,0,12,0,0,0,0,0,0,936,0,0,PORTLAND,PORTLAND,0,2.4,11.45,9.32,0.0,163,3,0.0,0.0,0.0,0,1,28,44,75.6600646586206,0.155,0.508,0.0,30.295,0.332,7.894,11.5,26748.855,42.0 -188,15,0,16,0,0,0,11,0,1,0,0,0,0,0,2,17,0,0,PORTLAND,PORTLAND,0,2.4,13.0,8.18,0.0,180,0,0.0,0.0,0.0,0,1,331,452,3.7095640800324983,0.144,0.513,6.0,14.984,0.0,3.271,4.587,12525.391,30.0 -189,15,0,0,0,0,7,77,0,2,0,0,0,0,0,0,69,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,197,3,0.0,0.0,0.0,0,1,118,154,13.431728169780952,0.091,0.393,5.0,32.951,0.306,8.732,12.891,29338.568,45.0 -190,15,0,21,0,0,1,44,0,5,0,0,0,0,101,0,256,286,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,170,0,0.0,0.0,0.0,0,1,139,191,20.12746735533597,999999.0,999999.0,12.0,9.145,0.0,19.717,26.975,23116.972,18.0 -191,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,171,0,0.0,0.0,0.0,0,1,114,149,2.666666852248683,0.16,0.311,0.0,24.534,0.33,35.937,57.888,52750.236,40.0 -192,16,0,74,0,0,2,0,0,0,4,0,0,0,0,0,75,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,184,0,0.0,0.0,0.0,0,1,31,45,1.6765748556311075,0.0,0.012,1.0,96.806,0.616,24.131,36.565,85357.576,72.0 -193,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,168,3,0.0,0.0,0.0,0,1,220,226,0.9330048948613664,0.102,0.141,3.0,82.004,0.647,18.591,29.663,71467.102,54.0 -194,16,0,43,0,0,0,3,0,0,0,0,0,0,0,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,197,0,0.0,0.0,0.0,0,1,0,0,1.673148198454919,0.051,0.1,1.0,98.294,0.64,24.182,36.719,86408.325,67.0 -195,16,0,0,0,0,6,0,0,0,0,0,0,0,4,0,14,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,180,3,0.0,0.0,0.0,0,1,0,0,4.78031264150662,0.149,0.188,0.0,72.869,0.538,22.944,33.664,68180.672,81.0 -196,16,0,0,0,0,0,9,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,208,0,0.0,0.0,0.0,0,1,0,0,1.6564868020545869,0.051,0.051,1.0,96.059,0.59,25.337,38.508,86123.124,75.0 -197,16,0,0,0,0,0,6,0,0,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,191,1,0.0,0.0,0.0,0,1,0,0,15.577020063370796,0.221,0.26,0.0,21.625,0.398,31.716,46.228,43425.466,62.0 -198,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,161,0,0.0,0.0,0.0,0,1,353,407,1.3356339815444214,0.102,0.141,1.0,82.004,0.647,18.591,29.663,71467.102,54.0 -199,16,0,0,0,0,114,2,0,118,0,0,0,0,0,0,85,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,158,0,0.0,0.0,0.0,0,1,0,0,0.2619982053081672,0.166,0.205,0.0,41.538,0.785,19.555,31.394,46676.518,46.0 -200,17,0,11,0,5,0,0,0,0,0,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,228,0,0.0,0.0,0.0,0,1,0,0,1.6708244735297544,0.03,0.0,1.0,163.441,1.311,30.634,44.066,132804.048,99.0 -201,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.96,0.0,214,0,0.0,0.0,0.0,0,1,0,0,1.657331377355175,0.149,0.381,1.0,29.229,1.05,34.561,46.069,48190.867,63.0 -202,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,202,0,0.0,0.0,0.0,0,1,160,170,3.341250588279187,999999.0,999999.0,1.0,0.267,0.0,21.399,22.736,14722.265,2.0 -203,17,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,11.81,9.62,0.0,206,3,0.0,0.0,0.0,0,1,0,0,4.135859966362376,0.048,0.323,1.0,46.074,1.039,40.324,55.678,65120.877,95.0 -204,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,227,0,0.0,0.0,0.0,0,1,72,80,1.652670838373726,0.0,0.228,1.0,87.986,1.441,33.204,44.94,85072.735,102.0 -205,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,224,1,0.0,0.0,0.0,0,1,31,35,1.664774525748606,0.186,0.418,0.0,34.49,1.519,45.463,59.615,60227.669,49.0 -206,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,217,1,0.0,0.0,0.0,0,1,0,0,1.6568597211911549,0.186,0.418,1.0,34.49,1.519,45.463,59.615,60227.669,49.0 -207,17,0,12,0,0,0,0,0,0,0,0,0,0,2,0,14,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,215,0,0.0,0.0,0.0,0,1,0,0,1.6718329641279477,0.076,0.076,1.0,103.265,0.552,24.194,36.647,89544.272,83.0 -208,17,0,2,0,0,0,0,0,2,0,0,0,0,0,0,4,40,10,PORTLAND,PORTLAND,21609,2.4,0.0,0.0,0.0,219,3,0.0,0.0,0.0,0,1,0,0,4.816302464085464,0.051,0.051,0.0,140.409,0.792,24.81,37.208,113674.486,99.0 -209,17,0,0,0,76,0,47,0,0,0,0,0,0,0,0,89,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,228,0,0.0,0.0,0.0,0,1,0,0,1.76190750679946,0.0,0.0,2.0,135.169,1.024,23.437,35.359,109137.482,112.0 -210,17,0,114,0,0,0,4,0,25,4,0,0,0,0,0,140,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,236,0,0.0,0.0,0.0,0,1,27,45,1.6561043454917388,0.0,0.004,2.0,127.552,0.938,24.3,36.841,105211.156,90.0 -211,17,0,38,0,0,0,0,0,0,12,0,1,0,0,0,56,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,240,0,0.0,0.0,0.0,0,1,1,2,1.6713978245877117,0.0,0.02,1.0,159.993,1.321,28.43,41.104,128702.304,109.0 -212,17,0,0,0,0,0,16,0,4,0,0,0,0,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.21,0.0,228,0,0.0,0.0,0.0,0,1,0,0,1.6756747016427287,0.0,0.0,1.0,158.323,1.401,27.916,40.362,127158.506,111.0 -213,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.25,0.0,241,0,0.0,0.0,0.0,0,1,0,0,1.6892052257207752,0.0,0.0,1.0,137.234,1.158,26.642,39.108,112858.847,114.0 -214,17,0,0,2,1,3,10,0,0,0,0,0,0,60,0,102,0,610,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,243,0,0.0,0.0,0.0,0,1,0,0,1.6769304013877104,0.0,0.014,1.0,162.494,1.229,21.846,32.304,124670.751,110.0 -215,17,0,0,0,0,0,291,0,0,0,0,0,1,0,0,270,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,239,0,0.0,0.0,0.0,0,1,0,0,1.657046868260318,0.1,0.1,1.0,159.381,0.928,27.681,41.903,128822.226,83.0 -216,17,0,17,0,0,0,19,0,2,4,0,0,0,1,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,210,0,0.0,0.0,0.0,0,1,0,0,1.635339732196699,0.0,0.275,1.0,58.089,1.31,36.885,48.507,68221.604,84.0 -217,18,0,0,0,0,13,0,0,0,0,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,246,0,0.0,0.0,0.0,0,1,291,465,1.643688268449495,0.0,0.336,1.0,64.091,1.164,30.272,40.941,67220.017,104.0 -218,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,209,2,0.0,0.0,0.0,0,1,48,50,3.3036853143019567,0.166,0.398,4.0,29.57,1.148,37.485,50.043,50951.871,58.0 -219,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,PORTLAND,PORTLAND,0,2.4,11.0,8.96,0.0,222,0,0.0,0.0,0.0,0,1,8,8,3.188872642550055,0.252,0.484,1.0,22.209,1.645,39.283,52.076,47542.48,39.0 -220,18,0,0,0,0,27,42,0,2,0,0,0,0,0,0,89,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,227,0,0.0,0.0,0.0,0,1,0,0,1.6904121262961682,0.104,0.336,0.0,40.57,0.896,31.585,42.22,52985.958,81.0 -221,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,220,0,0.0,0.0,0.0,0,1,433,482,2.6176245585227504,0.252,0.484,3.0,22.209,1.645,39.283,52.076,47542.48,39.0 -222,18,0,0,0,0,0,73,0,2,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,238,0,0.0,0.0,0.0,0,1,3,3,1.6590830909826018,0.024,0.309,1.0,77.302,2.634,29.172,39.101,74497.57,117.0 -223,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,242,0,0.0,0.0,0.0,0,1,269,282,1.8831266886867457,0.0,0.336,3.0,64.091,1.164,30.272,40.941,67220.017,104.0 -224,19,0,21,0,0,1,0,0,0,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,197,0,0.0,0.0,0.0,0,1,0,0,1.6454866538461603,0.027,0.022,1.0,82.029,0.678,21.801,34.283,74439.652,37.0 -225,19,0,0,0,14,0,0,0,0,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,202,0,0.0,0.0,0.0,0,1,252,580,1.682903436267006,0.027,0.027,1.0,105.829,0.989,23.494,35.71,90585.395,79.0 -226,19,0,0,0,0,1,2,0,6,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,217,0,0.0,0.0,0.0,0,1,107,115,1.6810609953140212,0.0,0.0,1.0,137.575,1.212,26.977,40.802,114161.154,90.0 -227,19,0,5,0,0,0,0,0,0,0,0,0,0,19,0,33,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,221,0,0.0,0.0,0.0,0,1,0,0,1.696586347167039,0.0,0.0,1.0,115.606,0.941,26.482,40.253,99749.813,88.0 -228,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,175,0,0.0,0.0,0.0,0,1,44,100,5.033548594871017,0.0,0.0,2.0,76.586,0.663,22.605,35.166,71521.406,56.0 -229,19,0,0,0,0,0,20,0,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,187,0,0.0,0.0,0.0,0,1,0,0,1.677965745977898,0.0,0.0,2.0,76.586,0.663,22.605,35.166,71521.406,56.0 -230,19,0,108,0,0,0,0,0,0,6,0,0,0,0,0,66,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.58,0.0,202,0,0.0,0.0,0.0,0,1,0,0,3.2854667121579637,0.0,0.0,1.0,76.724,0.717,23.101,36.102,72208.633,49.0 -231,19,0,0,0,0,0,88,0,0,0,0,0,0,0,0,73,0,0,PORTLAND,PORTLAND,0,2.4,11.25,10.23,0.0,213,0,0.0,0.0,0.0,0,1,60,137,1.6867486656725346,0.0,0.0,2.0,110.339,1.032,26.088,39.62,95973.324,77.0 -232,20,0,159,0,0,0,5,0,57,0,0,2,0,0,0,249,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,244,0,0.0,0.0,0.0,0,1,1,1,1.5894686276373309,0.0,0.15,1.0,126.901,1.082,12.128,18.142,92827.287,118.0 -233,20,0,0,0,0,0,14,0,0,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,249,0,0.0,0.0,0.0,0,1,148,211,1.6470269114578355,0.0,0.1,1.0,156.408,4.131,13.557,19.081,112312.699,131.0 -234,20,0,0,0,7,0,30,0,41,0,0,0,0,4726,0,3914,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.21,0.0,235,0,0.0,0.0,0.0,0,1,0,0,1.5266085264403504,0.0,0.053,1.0,160.024,1.207,21.072,31.153,122352.725,115.0 -235,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,240,3,0.0,0.0,0.0,0,1,0,0,1.7004609245090243,0.098,0.101,2.0,173.411,1.675,21.028,30.753,130664.92,122.0 -236,20,0,2,0,346,0,4,0,0,0,0,0,0,0,0,450,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.85,0.0,214,3,0.0,0.0,0.0,0,1,0,0,4.011558032339163,0.0,0.0,1.0,112.751,0.832,22.528,34.11,93991.306,99.0 -237,20,0,27,0,0,3,756,0,36,34,0,5,16,1,18,933,0,0,PORTLAND,PORTLAND,0,2.4,17.0,11.59,0.0,224,3,0.0,0.0,0.0,0,1,0,0,6.468540919032868,0.0,0.102,0.0,211.196,1.561,24.29,35.803,158079.438,94.0 -238,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,230,0,0.0,0.0,0.0,0,1,376,534,1.7549946881265166,0.153,0.262,0.0,128.214,0.759,11.24,16.131,92380.808,80.0 -239,20,0,97,263,0,0,1067,0,0,0,10,0,0,0,1,1282,0,0,PORTLAND,PORTLAND,0,2.4,17.0,13.84,0.0,239,0,0.0,0.0,0.0,0,1,0,0,1.610949408107777,0.122,0.125,1.0,186.296,1.666,21.279,31.396,139322.841,108.0 -240,20,0,0,0,0,0,0,0,5,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,245,0,0.0,0.0,0.0,0,1,16,20,1.6748015215303504,0.122,0.125,1.0,186.296,1.666,21.279,31.396,139322.841,108.0 -241,21,0,0,0,0,0,9,0,19,0,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.65,0.0,187,3,0.0,0.0,0.0,0,1,0,0,14.387867616691212,0.013,0.0,0.0,77.189,1.176,24.558,38.198,73847.692,56.0 -242,21,0,0,0,0,17,78,0,0,2,13,0,0,66,0,186,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,188,0,0.0,0.0,0.0,0,1,273,406,8.600230963540941,0.0,0.0,1.0,68.314,0.95,16.458,24.675,59513.41,77.0 -243,21,0,5,2,0,5,343,0,154,6,0,0,9,0,4,616,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.58,0.0,200,3,0.0,0.0,0.0,0,1,17,17,8.35462070339791,0.013,0.0,0.0,77.189,1.176,24.558,38.198,73847.692,56.0 -244,22,0,2,17,71,3,728,0,30,3,0,0,4,0,0,668,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,235,0,0.0,0.0,0.0,0,1,398,599,1.5194981316222578,0.0,0.203,1.0,125.031,1.35,10.356,14.978,89605.647,102.0 -245,22,0,2,0,0,15,753,0,6,0,0,0,7,0,1,348,0,0,PORTLAND,PORTLAND,0,2.4,22.0,12.73,0.0,228,0,0.0,0.0,0.0,0,1,0,0,1.6746198805772308,0.0,0.272,3.0,108.817,0.892,10.894,15.616,79636.904,105.0 -246,22,0,0,0,0,0,174,0,0,0,0,0,0,0,0,319,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,201,0,0.0,0.0,0.0,0,1,0,0,1.744144280295279,0.0,0.066,2.0,63.857,0.665,11.928,18.422,52659.128,75.0 -247,22,0,0,0,0,0,42,0,9,0,0,0,1,0,1,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,212,3,0.0,0.0,0.0,0,1,0,0,3.0997638875987787,0.0,0.154,0.0,99.937,0.834,18.356,27.762,81727.359,89.0 -248,22,0,0,0,0,1,1754,0,13,0,0,0,1,0,0,1567,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.4,0.0,215,3,0.0,0.0,0.0,0,1,171,259,5.724296419821107,0.0,0.154,0.0,99.937,0.834,18.356,27.762,81727.359,89.0 -249,22,0,0,0,128,2,253,0,69,69,0,0,0,0,0,750,0,0,PORTLAND,PORTLAND,0,2.4,14.69,11.96,0.0,215,0,0.0,0.0,0.0,0,1,331,514,5.059776124904404,0.02,0.234,1.0,84.545,0.461,9.553,13.928,63022.405,79.0 -250,22,0,0,0,53,19,527,0,36,0,0,3,0,3,0,487,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,213,0,0.0,0.0,0.0,0,1,0,0,1.7920397669484809,0.052,0.276,2.0,78.666,0.506,9.849,15.205,60077.434,92.0 -251,22,0,9,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.59,0.0,226,0,0.0,0.0,0.0,0,1,0,0,1.5547367905468794,0.097,0.206,1.0,131.89,1.103,12.956,18.616,96324.268,120.0 -252,22,0,88,0,0,0,41,0,23,0,0,0,0,0,0,183,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,218,0,0.0,0.0,0.0,0,1,0,0,1.6990615494543098,0.0,0.278,2.0,100.362,0.776,11.98,17.273,75285.972,99.0 -253,22,0,0,0,0,0,13,0,0,0,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,228,0,0.0,0.0,0.0,0,1,0,0,1.552696613431927,0.048,0.157,1.0,128.902,1.098,12.379,18.52,94349.483,115.0 -254,23,0,0,0,0,0,0,0,41,0,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,133,0,0.0,0.0,0.0,0,1,0,0,0.8012864442808678,0.113,0.952,1.0,15.387,1.323,15.137,22.462,24223.618,65.0 -255,23,0,28,0,0,2,25,0,2,0,0,8,0,0,1,94,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,213,0,0.0,0.0,0.0,0,1,0,0,1.546438718571084,0.0,0.551,1.0,45.244,4.796,26.936,38.237,53427.747,128.0 -256,23,0,0,0,0,0,14,0,0,5,0,1,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,219,0,0.0,0.0,0.0,0,1,187,240,1.61033759248163,0.0,0.649,0.0,37.946,2.829,23.111,32.65,45181.281,127.0 -257,23,0,0,0,0,0,146,0,0,130,0,0,19,0,0,280,0,0,PORTLAND,PORTLAND,0,2.4,16.0,13.03,0.0,221,0,0.0,0.0,0.0,0,1,213,275,1.491313334945546,0.0,0.598,1.0,40.397,4.098,24.833,35.193,48377.167,128.0 -258,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,223,0,0.0,0.0,0.0,0,1,0,0,1.04919895745097,0.0,0.649,1.0,37.946,2.829,23.111,32.65,45181.281,127.0 -259,23,0,16,0,0,18,25,0,3,0,0,0,0,0,0,55,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,196,0,0.0,0.0,0.0,0,1,0,0,1.549596987501666,0.048,0.552,1.0,42.976,4.416,25.817,36.803,51058.299,117.0 -260,23,0,0,0,66,66,112,0,0,0,30,0,2,0,0,251,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,206,0,0.0,0.0,0.0,0,1,210,271,1.5638572196582514,0.047,0.649,0.0,35.946,2.837,22.698,32.348,43708.066,124.0 -261,23,0,0,18,0,0,1,0,0,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,202,0,0.0,0.0,0.0,0,1,0,0,1.5348580593106815,0.048,0.601,1.0,38.103,3.049,24.172,34.381,46389.743,117.0 -262,23,0,0,0,118,0,0,0,0,0,0,0,0,0,0,75,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,209,0,0.0,0.0,0.0,0,1,0,0,1.0001861573025963,0.047,0.649,1.0,35.946,2.837,22.698,32.348,43708.066,124.0 -263,23,0,0,0,0,0,38,0,3,0,0,0,0,0,0,75,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,182,0,0.0,0.0,0.0,0,1,0,0,1.5505664776320531,0.0,0.569,1.0,39.824,3.098,24.79,35.427,48160.427,109.0 -264,23,0,0,0,0,0,0,0,0,0,0,0,3,0,0,6,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.21,0.0,190,0,0.0,0.0,0.0,0,1,0,0,1.5599978138858808,0.0,0.667,0.0,33.748,2.608,24.769,36.277,44816.096,108.0 -265,23,0,0,0,0,0,14,0,0,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,188,0,0.0,0.0,0.0,0,1,30,36,1.5636897521094149,0.0,0.618,1.0,36.557,3.096,23.864,34.242,45311.168,111.0 -266,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,195,0,0.0,0.0,0.0,0,1,0,0,0.9714175890231592,0.0,0.667,1.0,33.748,2.608,24.769,36.277,44816.096,108.0 -267,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,172,0,0.0,0.0,0.0,0,1,0,0,1.5564924901787796,0.097,0.664,1.0,35.726,2.641,25.768,37.961,47159.484,100.0 -268,23,0,0,5,57,0,2,0,13,0,0,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,176,0,0.0,0.0,0.0,0,1,0,0,1.540204825625615,0.096,0.758,0.0,29.602,2.545,25.789,37.962,43241.007,101.0 -269,23,0,0,1,0,0,22,0,0,1,0,0,4,0,0,31,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,167,0,0.0,0.0,0.0,0,1,135,171,1.539182727510954,0.049,0.614,2.0,32.101,3.202,23.794,34.324,42512.163,103.0 -270,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,8.38,6.82,0.0,181,0,0.0,0.0,0.0,0,1,255,343,0.979002278047731,0.048,0.713,1.0,29.352,2.548,25.358,37.185,42583.943,105.0 -271,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,10.95,6.59,0.0,168,0,0.0,0.0,0.0,0,1,0,0,0.9661124051397512,0.096,0.758,0.0,29.602,2.545,25.789,37.962,43241.007,101.0 -272,23,0,0,131,0,0,0,0,0,0,95,0,0,0,0,254,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,163,0,0.0,0.0,0.0,0,1,0,0,1.5516994147693337,0.096,0.758,0.0,29.602,2.545,25.789,37.962,43241.007,101.0 -273,23,0,0,1,0,0,7,0,0,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,153,0,0.0,0.0,0.0,0,1,0,0,1.5607571319975708,0.146,0.808,0.0,22.236,1.841,25.377,37.482,38219.334,90.0 -274,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,157,0,0.0,0.0,0.0,0,1,111,139,0.8957433512363279,0.146,0.808,0.0,22.236,1.841,25.377,37.482,38219.334,90.0 -275,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,142,0,0.0,0.0,0.0,0,1,0,0,2.002379237504298,0.145,0.856,1.0,20.406,1.68,18.446,27.335,30553.9,88.0 -276,24,0,57,0,0,1,3,0,14,0,0,0,0,0,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,198,0,0.0,0.0,0.0,0,1,0,0,1.5616484587869046,0.0,0.405,2.0,36.902,3.156,26.739,38.025,47953.271,116.0 -277,24,0,0,4,0,0,6,0,19,2,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,210,0,0.0,0.0,0.0,0,1,176,254,1.552773534604741,0.0,0.502,1.0,46.735,4.599,27.802,39.633,55275.479,121.0 -278,24,0,0,1,0,76,18,0,2,0,5,0,3,0,0,79,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,201,0,0.0,0.0,0.0,0,1,85,119,1.554670098868237,0.0,0.453,1.0,44.492,3.324,26.495,37.528,52492.516,121.0 -279,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,185,3,0.0,0.0,0.0,0,1,116,164,1.5320540255870492,0.049,0.455,1.0,35.003,3.201,26.362,37.461,46376.682,115.0 -280,24,0,0,0,0,23,3,0,2,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,188,0,0.0,0.0,0.0,0,1,0,0,1.5305052056753747,0.0,0.406,1.0,33.81,3.065,28.315,40.248,47396.705,107.0 -281,24,0,8,0,0,6,4,0,3,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,193,0,0.0,0.0,0.0,0,1,114,165,1.5366380372747794,0.048,0.503,1.0,41.378,3.302,27.704,39.487,51753.644,116.0 -282,24,0,11,14,0,3,9,0,15,0,0,0,0,1,0,68,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,175,0,0.0,0.0,0.0,0,1,118,171,1.5659406880151745,0.0,0.471,1.0,30.08,2.882,27.319,38.822,44097.226,108.0 -283,24,0,11,0,0,0,14,0,0,4,0,0,0,7,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,179,0,0.0,0.0,0.0,0,1,114,159,1.5466840420253771,0.0,0.52,1.0,34.12,3.371,26.05,37.28,45695.988,106.0 -284,25,0,0,0,0,44,39,0,4,0,0,0,0,0,0,131,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.09,0.0,187,0,0.0,0.0,0.0,0,1,208,302,3.795762831227481,0.242,0.278,2.0,32.054,2.464,24.712,34.302,42467.279,64.0 -285,25,0,53,0,0,0,0,0,3,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,177,0,0.0,0.0,0.0,0,1,173,252,1.975582002737047,0.114,0.292,1.0,31.29,2.359,27.134,38.267,44516.41,90.0 -286,25,0,0,0,0,0,23,0,2,0,19,0,0,0,0,43,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,176,0,0.0,0.0,0.0,0,1,0,0,1.444105868271445,0.0,0.422,5.0,31.7,2.886,25.494,36.34,43545.096,99.0 -287,25,0,0,0,7,0,430,0,0,350,0,0,0,0,0,802,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,169,0,0.0,0.0,0.0,0,1,167,246,10.41109282072708,0.114,0.292,1.0,31.29,2.359,27.134,38.267,44516.41,90.0 -288,25,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,152,3,0.0,0.0,0.0,0,1,48,48,10.09064423321757,0.146,0.663,0.0,27.52,2.908,22.983,33.286,38916.177,79.0 -289,25,0,0,0,1,81,112,8,8,0,0,0,13,0,0,320,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,139,0,0.0,0.0,0.0,0,1,154,224,62.52125272196864,0.0,0.471,0.0,24.111,2.018,21.549,30.841,35168.819,67.0 -290,26,0,0,0,0,0,22,0,1,0,0,0,0,0,28,98,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,167,0,0.0,0.0,0.0,0,1,159,223,1.5868087044464074,0.051,0.568,1.0,31.379,2.972,25.788,37.005,43766.218,97.0 -291,26,0,0,0,0,1,2,0,0,0,0,0,1,0,0,6,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,156,0,0.0,0.0,0.0,0,1,254,435,1.5341001398924832,0.097,0.66,2.0,30.466,2.718,25.838,38.188,43938.732,94.0 -292,26,0,11,0,0,1,2,0,0,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,159,0,0.0,0.0,0.0,0,1,161,276,1.5457422691012468,0.097,0.614,1.0,29.399,2.936,22.973,33.102,40000.791,89.0 -293,26,0,0,0,0,0,13,0,0,0,0,0,0,0,2,26,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,162,0,0.0,0.0,0.0,0,1,83,144,1.551007740779258,0.144,0.71,1.0,24.499,2.645,25.573,37.769,39851.514,97.0 -294,26,0,0,0,0,21,0,0,2,0,0,0,0,10,0,39,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,154,0,0.0,0.0,0.0,0,1,264,452,1.553948710219315,0.195,0.759,2.0,23.256,2.725,26.113,38.661,39626.921,91.0 -295,26,0,0,0,0,66,43,0,0,0,0,0,0,2,0,158,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,135,0,0.0,0.0,0.0,0,1,129,218,8.265948674648202,0.143,0.982,0.0,16.945,1.171,16.663,25.047,26874.331,53.0 -296,27,0,48,0,0,12,14,0,0,5,0,5,0,0,0,100,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,236,0,0.0,0.0,0.0,0,1,228,386,3.107220921789757,0.049,0.465,1.0,49.646,5.533,27.78,39.271,56907.063,131.0 -297,27,0,0,0,0,2,3,0,0,22,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,225,3,0.0,0.0,0.0,0,1,218,340,3.1426873979699685,0.0,0.369,0.0,45.405,5.213,27.704,39.018,54031.095,140.0 -298,27,0,5,0,0,6,20,0,0,9,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,282,0,0.0,0.0,0.0,0,1,91,135,1.5526790474792944,0.0,0.323,2.0,68.682,5.719,31.135,42.166,70942.153,169.0 -299,27,0,13,0,0,1,14,0,0,57,0,8,5,4,0,124,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,289,0,0.0,0.0,0.0,0,1,13,20,1.5519639258251896,0.0,0.369,1.0,56.153,4.894,29.65,40.755,62021.378,175.0 -300,27,0,14,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,276,1,0.0,0.0,0.0,0,1,102,155,1.5194578281496245,0.048,0.321,1.0,53.518,5.754,31.256,43.07,61816.159,159.0 -301,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,261,1,0.0,0.0,0.0,0,1,33,49,1.523315676372967,0.096,0.37,3.0,43.999,4.994,26.332,36.93,51794.502,148.0 -302,27,0,37,0,0,0,5,0,12,5,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,258,1,0.0,0.0,0.0,0,1,27,41,3.1112821452937043,0.0,0.272,1.0,44.29,3.789,26.548,37.11,52095.549,121.0 -303,28,0,0,0,0,0,0,0,0,0,14,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,258,0,0.0,0.0,0.0,0,1,116,180,1.5629789341202844,0.098,0.419,1.0,53.762,6.084,32.308,45.169,63316.055,156.0 -304,28,0,6,0,0,0,81,0,0,0,0,0,0,0,0,143,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,248,0,0.0,0.0,0.0,0,1,0,0,1.5537645273577494,0.097,0.466,1.0,47.942,5.19,27.129,37.942,54965.969,145.0 -305,28,0,15,0,0,44,762,0,0,0,0,0,0,0,0,767,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,232,0,0.0,0.0,0.0,0,1,203,294,1.5724335680081485,0.048,0.514,1.0,47.744,4.675,26.693,37.77,54729.036,138.0 -306,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,243,0,0.0,0.0,0.0,0,1,0,0,1.0396841300881157,0.05,0.611,0.0,45.249,4.544,27.8,39.247,54077.76,138.0 -307,28,0,0,0,0,0,9,0,0,23,1,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,238,0,0.0,0.0,0.0,0,1,0,0,1.560517261160879,0.05,0.611,0.0,45.249,4.544,27.8,39.247,54077.76,138.0 -308,28,0,12,0,0,8,3,0,12,8,0,0,0,0,18,38,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,240,0,0.0,0.0,0.0,0,1,141,202,1.5159762351004984,0.048,0.561,1.0,43.087,4.497,25.84,36.48,50922.968,135.0 -309,28,0,0,0,0,0,20,0,5,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,272,0,0.0,0.0,0.0,0,1,0,0,1.550400250642004,0.049,0.37,1.0,50.672,4.833,30.83,42.994,59945.811,168.0 -310,28,0,0,1,0,1,3,0,4,2,0,1,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,294,0,0.0,0.0,0.0,0,1,0,0,1.5527208808328763,0.048,0.371,1.0,60.701,5.018,31.508,43.064,66409.549,186.0 -311,28,0,10,2,0,6,7,0,0,9,0,2,0,0,0,44,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,285,0,0.0,0.0,0.0,0,1,70,93,1.553691021459699,0.0,0.419,1.0,57.803,5.067,33.12,45.477,66099.195,176.0 -312,28,0,0,0,0,0,0,0,4,11,0,4,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,12.28,10.0,0.0,301,0,0.0,0.0,0.0,0,1,1,1,1.5781580850888568,0.0,0.312,0.0,86.212,7.215,26.171,35.339,77792.59,192.0 -313,28,0,0,0,0,0,93,0,0,72,0,0,5,0,0,172,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,302,0,0.0,0.0,0.0,0,1,0,0,1.5763620350945244,0.0,0.341,0.0,89.383,6.489,27.73,37.324,81092.194,204.0 -314,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,299,0,0.0,0.0,0.0,0,1,0,0,1.413162847380132,0.097,0.345,1.0,73.621,6.61,26.623,36.163,70261.591,170.0 -315,28,0,37,0,0,40,95,0,7,11,0,0,0,0,0,198,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,295,0,0.0,0.0,0.0,0,1,0,0,1.5092662472782954,0.097,0.373,1.0,71.758,6.168,26.463,36.175,69076.752,189.0 -316,28,0,6,3,0,1,25,0,2,546,0,0,1,0,1,307,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.65,0.0,300,0,0.0,0.0,0.0,0,1,0,0,1.5561632300737749,0.049,0.39,0.0,83.289,6.768,25.187,34.116,75139.732,206.0 -317,28,0,0,2,0,0,14,0,0,2,0,0,0,27,0,82,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,297,0,0.0,0.0,0.0,0,1,223,327,1.5359520897702306,0.044,0.42,1.0,70.0,5.856,28.502,38.675,69551.989,178.0 -318,28,0,54,0,0,30,222,0,5,14,0,0,0,30,0,623,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,306,0,0.0,0.0,0.0,0,1,0,0,1.546350060091467,0.049,0.371,1.0,72.097,5.302,25.605,34.679,68336.728,197.0 -319,28,0,0,0,0,0,8,0,0,0,0,5,11,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,292,0,0.0,0.0,0.0,0,1,0,0,4.642829853614706,0.079,0.547,0.0,61.652,7.88,33.279,45.488,68569.503,107.0 -320,28,0,21,265,0,0,14,0,14,20,0,0,0,0,0,315,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,304,0,0.0,0.0,0.0,0,1,14,15,1.5498572800915795,0.0,0.37,1.0,71.401,5.314,28.85,39.112,70728.594,193.0 -321,28,0,83,3,0,0,102,0,6,7,0,0,11,0,0,170,0,0,PORTLAND,PORTLAND,219,2.4,0.0,0.0,0.0,301,0,0.0,0.0,0.0,0,1,61,80,1.5571967404135325,0.0,0.419,1.0,61.231,5.343,28.467,38.828,64037.726,169.0 -322,28,0,0,0,0,0,673,0,2,0,0,0,3,0,0,242,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,291,0,0.0,0.0,0.0,0,1,0,0,1.546338110595576,0.0,0.468,1.0,55.389,5.718,30.897,42.025,62344.938,160.0 -323,28,0,32,147,0,0,48,0,0,112,0,0,0,0,0,288,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,297,0,0.0,0.0,0.0,0,1,2,2,1.5520138726547037,0.048,0.421,1.0,58.674,5.149,31.264,42.588,64807.944,176.0 -324,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,293,0,0.0,0.0,0.0,0,1,1,1,1.9047007172891848,0.048,0.452,0.0,52.783,5.383,30.09,41.256,60184.633,172.0 -325,28,0,25,0,0,101,68,0,1,0,0,9,1,0,0,213,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,289,0,0.0,0.0,0.0,0,1,0,0,1.563498054406683,0.048,0.452,0.0,52.783,5.383,30.09,41.256,60184.633,172.0 -326,28,0,188,0,0,4,176,0,25,18,17,0,2,33,0,309,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,289,0,0.0,0.0,0.0,0,1,214,312,1.551952779319557,0.0,0.468,1.0,51.935,5.254,33.795,47.181,63434.824,153.0 -327,28,0,0,0,0,1,29,0,0,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,283,0,0.0,0.0,0.0,0,1,0,0,1.544594166203995,0.0,0.5,2.0,52.569,5.294,30.68,42.256,60687.975,167.0 -328,28,0,55,0,0,0,120,0,1,0,0,0,0,15,0,185,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,280,0,0.0,0.0,0.0,0,1,0,0,1.5516037333001471,0.098,0.419,0.0,55.869,5.703,33.509,46.836,65731.115,154.0 -329,28,0,0,0,0,3,3,0,0,1,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,268,0,0.0,0.0,0.0,0,1,51,68,1.5506076307209908,0.146,0.468,0.0,57.152,5.168,32.698,45.621,65774.226,141.0 -330,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,275,0,0.0,0.0,0.0,0,1,25,35,2.889848336734495,0.149,0.518,0.0,57.219,5.021,32.151,45.235,65570.736,142.0 -331,28,0,0,17,0,202,141,0,2,0,0,0,6,0,0,445,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,269,0,0.0,0.0,0.0,0,1,0,0,3.1224849808070654,0.149,0.518,0.0,57.219,5.021,32.151,45.235,65570.736,142.0 -332,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,256,0,0.0,0.0,0.0,0,1,146,212,1.0016450265914063,0.098,0.564,1.0,47.599,4.379,30.519,42.936,57942.422,148.0 -333,28,0,0,1,0,0,4,0,3,140,0,0,0,0,0,146,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.05,0.0,253,0,0.0,0.0,0.0,0,1,0,0,1.55767630124524,0.098,0.564,0.0,47.599,4.379,30.519,42.936,57942.422,148.0 -334,28,0,0,0,0,0,42,0,0,0,0,0,0,0,0,30,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,256,0,0.0,0.0,0.0,0,1,111,157,1.5433148394881215,0.048,0.561,1.0,43.087,4.497,25.84,36.48,50922.968,135.0 -335,29,0,0,0,0,0,15,0,1,0,0,0,0,149,0,201,0,0,PORTLAND,PORTLAND,487,2.4,0.0,0.0,0.0,248,3,0.0,0.0,0.0,0,1,0,0,1.5743540512173049,0.031,0.205,0.0,83.895,5.98,30.874,41.417,80199.504,134.0 -336,29,0,0,3,1367,0,14,0,2,0,0,0,0,0,3,1618,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,223,0,0.0,0.0,0.0,0,1,0,0,15.537345468361051,0.049,0.271,0.0,44.29,3.789,26.548,37.11,52095.549,121.0 -337,29,0,16,0,0,18,35,9,76,25,0,0,0,0,0,102,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,251,0,0.0,0.0,0.0,0,1,13,13,1.6018279622710538,0.0,0.272,3.0,44.29,3.789,26.548,37.11,52095.549,121.0 -338,29,0,20,0,0,1,22,0,0,9,31,0,3,0,0,103,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,222,0,0.0,0.0,0.0,0,1,0,0,3.1703234123060158,0.0,0.32,0.0,46.801,5.017,29.287,40.766,56043.088,130.0 -339,29,0,0,0,0,1,6,0,10,0,0,21,1,8,0,39,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.18,0.0,281,0,0.0,0.0,0.0,0,1,315,427,1.5519516627397598,0.0,0.272,1.0,52.279,5.514,23.782,32.736,54409.5,142.0 -340,29,0,2,0,0,0,126,0,1,9,0,0,6,0,0,155,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,267,0,0.0,0.0,0.0,0,1,69,90,1.5673252035022132,0.0,0.223,1.0,50.592,5.32,26.578,36.137,55507.065,154.0 -341,29,0,9,0,0,0,11,0,4,1,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,272,0,0.0,0.0,0.0,0,1,146,193,1.5542471823267747,0.0,0.223,2.0,61.077,5.386,24.653,33.237,60361.139,159.0 -342,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,255,3,0.0,0.0,0.0,0,1,108,142,0.9303064429909071,0.0,0.174,3.0,67.817,5.269,25.678,34.583,65536.016,149.0 -343,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,199,0,0.0,0.0,0.0,0,1,0,0,1.5390636388494108,0.0,0.096,3.0,63.039,2.432,23.2,28.314,58465.79,101.0 -344,30,0,0,0,0,0,139,0,6,1,0,0,2,0,7,190,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,167,0,0.0,0.0,0.0,0,1,0,0,32.93314600333015,0.256,0.475,0.0,7.771,0.024,2.084,2.789,6758.526,5.0 -345,30,0,0,0,379,194,0,0,0,0,0,0,0,0,0,839,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,223,0,0.0,0.0,0.0,0,1,243,329,1.5446287907541911,0.0,0.046,3.0,87.527,3.243,29.922,39.733,81446.525,132.0 -346,30,0,3,0,0,0,0,0,0,0,0,0,0,0,2,6,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,223,0,0.0,0.0,0.0,0,1,223,260,4.699753398737107,0.0,0.0,1.0,73.108,3.014,30.454,40.383,72633.862,109.0 -347,30,0,0,0,0,45,0,0,0,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,7.0,5.7,0.0,210,0,0.0,0.0,0.0,0,1,255,259,1.5565241459517711,0.0,0.0,2.0,73.849,1.654,24.967,31.62,67499.862,122.0 -348,30,0,15,0,0,0,75,0,0,0,3,0,0,0,4,116,0,0,PORTLAND,PORTLAND,0,2.4,11.5,9.36,0.0,195,2,0.0,0.0,0.0,0,1,48,48,21.776157498335557,0.099,0.099,2.0,41.262,1.858,19.372,24.637,42175.379,104.0 -349,31,0,0,0,0,0,3,0,4,8,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,14.5,11.82,0.0,307,0,0.0,0.0,0.0,0,1,614,836,1.5521823368598906,0.0,0.321,1.0,84.419,5.665,29.232,39.485,79299.139,179.0 -350,31,0,0,2,0,0,33,0,3,9,0,0,5,3,0,58,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,300,0,0.0,0.0,0.0,0,1,53,81,1.5519500809160622,0.049,0.322,1.0,66.787,5.253,30.747,41.619,69379.466,186.0 -351,31,0,122,10,0,0,22,0,0,8,0,0,0,0,0,133,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,305,0,0.0,0.0,0.0,0,1,55,85,1.5519748909330533,0.0,0.272,2.0,98.372,5.382,25.828,34.435,84996.404,181.0 -352,31,0,43,221,0,0,51,0,16,4,0,0,0,0,0,196,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,293,0,0.0,0.0,0.0,0,1,0,0,1.5510941195274268,0.048,0.273,0.0,78.494,5.215,27.204,36.641,73686.662,190.0 -353,31,0,7,0,0,0,759,0,0,26,0,0,1,0,0,373,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,309,0,0.0,0.0,0.0,0,1,115,192,1.5786563488306746,0.0,0.319,0.0,95.703,6.068,26.424,35.097,83711.811,208.0 -354,31,0,0,0,0,0,0,0,0,187,0,0,0,0,0,161,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,313,0,0.0,0.0,0.0,0,1,0,0,1.5610092270239049,0.013,0.257,2.0,97.89,5.742,25.138,33.137,83857.411,210.0 -355,31,0,41,0,0,0,400,0,0,26,0,0,1,0,0,788,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,308,0,0.0,0.0,0.0,0,1,0,0,1.585610986366301,0.049,0.368,0.0,86.488,6.017,24.383,33.113,76544.38,196.0 -356,31,0,63,0,0,0,3,0,0,1,0,0,0,0,0,148,0,0,PORTLAND,PORTLAND,0,2.4,10.75,10.68,0.0,312,0,0.0,0.0,0.0,0,1,2,2,1.5515925186284285,0.048,0.322,1.0,86.763,5.593,26.482,35.793,78435.589,201.0 -357,31,0,19,0,0,0,16,0,2,13,114,0,0,0,0,108,0,0,PORTLAND,PORTLAND,12,2.4,0.0,0.0,0.0,317,0,0.0,0.0,0.0,0,1,0,0,1.5415458993121542,0.0,0.319,0.0,101.174,5.81,26.009,34.375,86751.402,204.0 -358,31,0,63,0,0,0,3,0,4,6,18,0,0,0,0,144,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,315,0,0.0,0.0,0.0,0,1,100,157,1.5470384409372473,0.0,0.273,1.0,92.502,6.269,26.245,35.05,81633.192,194.0 -359,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,313,3,0.0,0.0,0.0,0,1,0,0,0.951464236114134,0.0,0.124,0.0,122.436,6.091,23.257,29.296,97108.518,191.0 -360,32,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,324,0,0.0,0.0,0.0,0,1,0,0,1.5530047001566394,0.0,0.173,0.0,111.277,6.379,25.258,32.301,91890.054,195.0 -361,32,0,0,0,4,84,0,0,0,0,0,1,0,0,0,106,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,298,0,0.0,0.0,0.0,0,1,3,4,1.5749121720250994,0.03,0.094,0.0,122.967,6.481,21.734,27.291,96165.668,196.0 -362,32,0,4,0,0,0,70,0,0,18,15,0,87,0,0,311,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.0,0.0,318,0,0.0,0.0,0.0,0,1,193,292,1.5770758299872727,0.0,0.222,0.0,104.905,5.859,25.495,33.012,88266.653,212.0 -363,32,0,0,0,0,0,152,0,0,3,20,0,0,0,0,160,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.21,0.0,291,0,0.0,0.0,0.0,0,1,33,33,1.538266286007197,0.08,0.144,0.0,118.823,5.94,25.184,31.863,96438.979,165.0 -364,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,304,3,0.0,0.0,0.0,0,1,0,0,0.9462062904760932,0.098,0.273,2.0,110.624,6.256,27.583,35.839,93736.157,149.0 -365,32,0,5,0,0,0,0,0,18,0,0,0,0,2,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,315,0,0.0,0.0,0.0,0,1,0,0,1.5509529211856516,0.047,0.222,1.0,109.587,5.485,24.905,32.06,90654.142,186.0 -366,32,0,48,0,0,0,1,0,0,7,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,2.4,12.63,10.28,0.0,323,0,0.0,0.0,0.0,0,1,0,0,1.558770187177282,0.0,0.274,1.0,98.571,6.54,25.71,34.051,84878.098,179.0 -367,32,0,5,1,0,0,46,0,0,0,0,1,0,0,1,89,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,280,0,0.0,0.0,0.0,0,1,105,161,1.5461328481451706,0.048,0.096,0.0,99.167,4.972,23.391,29.682,82463.482,172.0 -368,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,292,3,0.0,0.0,0.0,0,1,0,0,0.9711651523737804,0.079,0.127,2.0,93.429,4.649,23.399,29.872,78912.508,174.0 -369,32,0,0,0,0,0,76,0,0,0,8,0,0,0,0,119,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,306,0,0.0,0.0,0.0,0,1,0,0,1.5520074520274485,0.078,0.174,1.0,91.583,5.42,26.828,35.334,81226.48,180.0 -370,32,0,79,0,0,0,12,0,0,0,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,316,0,0.0,0.0,0.0,0,1,0,0,1.556922722746608,0.0,0.225,1.0,101.095,5.166,25.956,34.3,86653.006,189.0 -371,32,0,8,0,0,23,4,0,0,4,0,0,1,0,0,68,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,273,0,0.0,0.0,0.0,0,1,0,0,1.5537199150397287,0.0,0.096,0.0,91.931,4.852,23.5,30.061,78075.412,159.0 -372,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,284,3,0.0,0.0,0.0,0,1,93,140,0.9620690136563372,0.03,0.126,2.0,88.964,4.85,23.339,29.938,76097.37,154.0 -373,32,0,72,0,0,0,0,0,6,2,0,0,1,0,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,295,0,0.0,0.0,0.0,0,1,0,0,1.552775014468333,0.078,0.174,1.0,91.583,5.42,26.828,35.334,81226.48,180.0 -374,32,0,29,0,0,16,16,0,2,2,2,0,9,0,0,48,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,308,0,0.0,0.0,0.0,0,1,6,9,1.5519734983881004,0.0,0.224,1.0,82.972,5.442,27.621,37.116,76856.155,157.0 -375,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,269,3,0.0,0.0,0.0,0,1,144,219,0.9502467400885186,0.079,0.126,2.0,89.501,5.737,28.124,37.279,81139.202,161.0 -376,32,0,16,0,0,6,16,0,7,16,0,0,0,0,0,92,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,261,0,0.0,0.0,0.0,0,1,0,0,1.553398328080572,0.05,0.097,0.0,83.883,5.402,25.158,33.166,74911.75,149.0 -377,32,0,0,0,0,0,48,0,43,11,0,0,0,0,0,141,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.77,0.0,285,0,0.0,0.0,0.0,0,1,17,25,1.545338140579794,0.049,0.176,1.0,67.453,4.938,23.68,31.748,63488.224,164.0 -378,32,0,58,0,0,28,39,0,0,12,3,0,19,0,0,218,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,295,0,0.0,0.0,0.0,0,1,0,0,1.5594180772862207,0.05,0.225,1.0,75.566,6.056,27.682,37.03,72061.898,180.0 -379,33,0,19,0,0,0,91,0,0,0,35,8,0,0,0,123,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,257,0,0.0,0.0,0.0,0,1,2,3,1.5661177692006765,0.0,0.024,1.0,107.662,5.357,18.601,22.758,83468.447,175.0 -380,33,0,20,0,0,3,10,0,6,5,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,274,0,0.0,0.0,0.0,0,1,0,0,1.5243610485025705,0.0,0.046,0.0,121.131,6.207,19.437,24.332,93096.04,192.0 -381,33,0,42,0,0,100,1,0,0,0,0,0,0,0,0,137,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,270,0,0.0,0.0,0.0,0,1,111,114,1.5571226820157342,0.0,0.0,1.0,98.839,4.84,23.327,29.108,81886.078,152.0 -382,33,0,5,0,0,204,276,0,0,0,38,0,0,0,0,415,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.95,0.0,248,0,0.0,0.0,0.0,0,1,228,229,1.549617565988507,0.0,0.0,2.0,98.839,4.84,23.327,29.108,81886.078,152.0 -383,33,0,0,0,0,76,66,0,0,4,0,0,0,0,13,277,0,0,PORTLAND,PORTLAND,0,2.4,13.0,9.77,0.0,242,0,0.0,0.0,0.0,0,1,0,0,1.5486986868258814,0.0,0.027,0.0,96.549,2.342,23.787,29.086,80406.368,119.0 -384,33,0,0,0,0,0,84,0,0,5,0,0,0,0,0,199,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,263,0,0.0,0.0,0.0,0,1,192,196,1.558127366382286,0.0,0.048,1.0,101.162,5.093,22.147,27.674,82455.391,166.0 -385,33,0,0,0,0,54,36,0,32,0,0,0,0,0,0,122,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,234,0,0.0,0.0,0.0,0,1,1,1,1.551986772497011,0.0,0.027,1.0,96.549,2.342,23.787,29.086,80406.368,119.0 -386,33,0,0,0,0,16,1,0,0,13,0,49,0,0,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,253,0,0.0,0.0,0.0,0,1,78,79,1.5519309106125618,0.0,0.048,1.0,97.092,5.688,24.68,31.613,82370.741,163.0 -387,33,0,0,0,0,3,3,0,4,0,0,0,0,0,25,66,0,0,PORTLAND,PORTLAND,0,2.4,11.32,11.18,0.0,231,0,0.0,0.0,0.0,0,1,50,50,1.5261011418957364,0.0,0.028,2.0,86.199,3.714,29.174,38.389,79736.663,113.0 -388,33,0,0,0,0,0,10,0,11,0,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,248,0,0.0,0.0,0.0,0,1,0,0,1.5489502808642452,0.0,0.047,2.0,87.073,5.033,25.532,33.06,76885.537,149.0 -389,34,0,11,0,0,122,17,0,0,0,0,0,0,0,0,276,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,210,0,0.0,0.0,0.0,0,1,0,0,1.6335868398020643,0.0,0.057,1.0,86.339,2.555,14.487,16.563,65857.375,117.0 -390,34,0,63,0,0,0,0,0,0,0,26,0,0,0,0,79,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,216,0,0.0,0.0,0.0,0,1,193,194,1.5395167233464264,0.0,0.098,0.0,95.953,3.421,16.262,19.166,73676.158,141.0 -391,34,0,38,0,0,0,0,0,45,0,0,0,0,0,0,128,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,224,0,0.0,0.0,0.0,0,1,63,78,1.557692151425947,0.0,0.048,0.0,100.783,4.326,17.145,20.494,77617.301,150.0 -392,34,0,6,0,0,0,206,0,3,4,0,0,0,208,0,521,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,206,0,0.0,0.0,0.0,0,1,142,142,1.8173341907877771,0.0,0.01,0.0,94.033,1.053,14.583,16.803,70934.853,96.0 -393,34,0,0,0,0,0,83,0,2,0,0,0,7,0,0,75,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.68,0.0,201,0,0.0,0.0,0.0,0,1,1,1,1.5408680039025349,0.096,0.139,2.0,84.421,1.078,15.469,17.903,65487.565,110.0 -394,34,0,0,8,0,0,115,0,13,0,0,0,0,59,0,166,0,0,PORTLAND,PORTLAND,160,2.4,0.0,0.0,0.0,198,0,0.0,0.0,0.0,0,1,0,0,1.7196806886380227,0.045,0.029,2.0,64.876,0.647,14.213,16.162,51864.543,93.0 -395,34,0,18,0,0,8,11,0,16,3,11,0,9,8,0,132,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,210,0,0.0,0.0,0.0,0,1,66,82,1.5519678865790776,0.048,0.097,1.0,88.71,2.66,15.631,18.507,68619.21,132.0 -396,34,0,1,0,0,26,17,0,0,0,0,17,0,0,0,79,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,218,0,0.0,0.0,0.0,0,1,205,256,1.5509072477455836,0.048,0.048,1.0,94.832,4.728,17.904,21.52,74465.577,142.0 -397,34,0,0,0,3,111,230,0,14,0,0,0,0,0,0,168,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.23,0.0,187,0,0.0,0.0,0.0,0,1,19,19,1.7739257842282483,0.045,0.029,1.0,64.876,0.647,14.213,16.162,51864.543,93.0 -398,34,0,27,0,0,0,0,0,1,0,0,0,0,7,0,56,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,214,0,0.0,0.0,0.0,0,1,0,0,1.5520053190332923,0.048,0.048,1.0,88.69,2.524,19.65,23.979,72108.611,133.0 -399,34,0,52,0,0,0,55,0,44,0,0,0,0,0,0,192,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.0,0.0,202,0,0.0,0.0,0.0,0,1,0,0,1.5504431516316504,0.096,0.097,1.0,82.659,1.178,16.6,19.714,65518.616,122.0 -400,34,0,0,41,0,0,32,0,2,0,28,0,0,0,1,121,0,0,PORTLAND,PORTLAND,0,2.4,15.0,9.77,0.0,196,0,0.0,0.0,0.0,0,1,93,113,1.5467781216991852,0.033,0.0,2.0,52.975,0.638,14.894,16.936,44743.497,87.0 -401,34,0,0,0,0,0,0,0,0,0,0,0,0,297,0,226,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,185,0,0.0,0.0,0.0,0,1,16,16,1.4339853439193722,0.0,0.033,2.0,43.948,0.64,15.551,18.028,39664.639,84.0 -402,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,193,2,0.0,0.0,0.0,0,1,0,0,1.5377298376331856,0.0,0.106,1.0,72.781,0.946,16.382,19.093,58798.861,110.0 -403,34,0,0,0,0,0,0,0,0,0,0,10,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,208,0,0.0,0.0,0.0,0,1,0,0,1.5520264641245636,0.0,0.096,1.0,85.822,1.238,23.289,28.094,72906.05,114.0 -404,34,0,0,0,0,30,0,0,0,0,0,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,2.4,11.81,9.55,0.0,203,0,0.0,0.0,0.0,0,1,13,13,1.5348510301466656,0.048,0.048,1.0,74.13,2.486,23.946,29.893,66574.621,122.0 -405,34,0,0,0,0,27,0,0,0,0,0,0,0,0,0,53,0,0,PORTLAND,PORTLAND,0,2.4,11.73,9.55,0.0,189,0,0.0,0.0,0.0,0,1,0,0,1.5638502547555064,0.05,0.097,2.0,85.822,1.238,23.289,28.094,72906.05,114.0 -406,34,0,0,11,291,0,6,0,0,0,0,0,0,0,0,247,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,181,0,0.0,0.0,0.0,0,1,23,23,1.4089828582762003,0.098,0.145,2.0,63.469,0.983,24.145,28.434,58817.828,91.0 -407,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,181,0,0.0,0.0,0.0,0,1,23,23,2.7804181644194044,0.143,0.19,1.0,61.92,1.012,22.738,26.547,56618.749,82.0 -408,34,0,42,0,0,0,27,0,5,14,0,11,0,0,0,192,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,242,0,0.0,0.0,0.0,0,1,0,0,1.5511968871830564,0.0,0.0,0.0,101.829,5.469,16.485,19.762,77818.452,164.0 -409,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,10.0,9.05,0.0,233,0,0.0,0.0,0.0,0,1,0,0,1.5509082691057388,0.0,0.0,1.0,97.573,5.391,20.573,25.246,78604.396,148.0 -410,34,0,0,0,1,0,40,0,0,0,0,0,0,0,0,53,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.46,0.0,229,0,0.0,0.0,0.0,0,1,0,0,1.5527345360237073,0.0,0.0,1.0,96.585,4.907,22.341,27.832,79626.392,149.0 -411,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,189,3,0.0,0.0,0.0,0,1,0,0,27.15434893538027,0.023,0.13,0.0,54.325,0.563,11.989,13.333,43301.583,60.0 -412,34,0,23,0,0,0,162,0,8,0,0,0,0,0,0,254,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,225,0,0.0,0.0,0.0,0,1,10,10,1.5527139739277347,0.0,0.0,1.0,95.774,2.936,23.323,28.502,79536.271,127.0 -413,34,0,65,0,0,0,27,0,1,1,0,21,0,0,0,95,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,0.0,217,0,0.0,0.0,0.0,0,1,226,287,1.5486221839779255,0.0,0.0,1.0,86.454,2.164,23.3,29.117,73965.482,130.0 -414,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,124,0,0.0,0.0,0.0,0,7,62,72,0.6735371972303735,0.041,0.887,2.0,13.541,0.938,11.722,17.573,19913.41,58.0 -415,35,0,11,0,0,0,39,0,0,3,0,0,5,0,0,83,0,0,PORTLAND,PORTLAND,0,0.0,12.0,7.27,0.0,130,0,0.0,0.0,0.0,0,7,0,0,6.22926007107599,0.098,0.956,0.0,17.103,0.995,11.971,17.667,22252.652,70.0 -416,35,0,12,0,4,30,38,0,12,0,4,0,5,0,0,159,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,74,0,0.0,0.0,0.0,0,7,0,0,84.73326249713818,0.0,1.179,0.0,11.183,0.213,6.69,11.517,14527.704,24.0 -417,35,0,0,0,0,0,41,2,0,2,0,0,0,0,0,75,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,142,0,0.0,0.0,0.0,0,7,770,1391,1.563180505754337,0.0,0.952,0.0,29.362,1.224,13.336,20.287,31775.68,80.0 -418,35,0,0,0,0,0,3,0,0,0,0,13,0,8,0,33,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,137,0,0.0,0.0,0.0,0,7,0,0,1.5554033914748713,0.0,1.0,2.0,23.296,1.254,14.75,22.402,29246.894,73.0 -419,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,134,0,0.0,0.0,0.0,0,7,0,0,3.037235941405667,0.047,999999.0,3.0,27.139,1.027,9.302,15.816,27491.361,76.0 -420,35,0,33,0,0,0,0,0,0,1,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,135,0,0.0,0.0,0.0,0,7,0,0,3.098568761054884,0.0,999999.0,2.0,34.648,0.976,13.263,22.108,36323.677,85.0 -421,35,0,16,1,0,0,6,0,0,36,0,0,0,0,0,77,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,152,0,0.0,0.0,0.0,0,7,0,0,18.300479073845043,0.292,1.244,2.0,26.741,0.874,8.937,15.161,26816.89,60.0 -422,35,0,0,12,40,1093,751,0,0,0,0,0,0,5,0,978,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,95,0,0.0,0.0,0.0,0,7,18,22,16.766906737079648,0.098,999999.0,1.0,19.357,0.388,2.428,4.311,15147.774,34.0 -423,35,0,0,0,0,0,78,0,0,0,0,39,0,0,0,97,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,120,0,0.0,0.0,0.0,0,7,0,0,3.01143836032716,0.0,999999.0,2.0,16.815,0.378,6.156,11.134,17887.408,62.0 -424,35,0,0,0,0,0,0,2,34,0,2,5,0,0,0,54,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,132,0,0.0,0.0,0.0,0,7,0,0,2.9999846378237143,0.096,999999.0,2.0,17.119,0.444,6.798,12.046,18665.754,75.0 -425,35,0,0,0,0,0,8,0,0,2,0,0,4,0,0,17,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,133,0,0.0,0.0,0.0,0,7,0,0,1.5296763327930865,0.049,1.001,1.0,22.769,1.314,12.4,18.928,26686.116,61.0 -426,35,0,0,0,0,0,13,0,0,14,0,8,0,0,1,46,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,141,0,0.0,0.0,0.0,0,7,0,0,3.084847619655973,0.197,1.149,1.0,25.033,1.2,8.579,13.557,24697.901,55.0 -427,35,0,0,0,78,0,0,0,0,0,0,0,0,0,0,54,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,138,0,0.0,0.0,0.0,0,7,0,0,3.1372017679082567,0.292,1.244,2.0,26.741,0.874,8.937,15.161,26816.89,60.0 -428,35,0,23,0,0,0,322,0,0,0,0,0,0,0,0,258,0,0,PORTLAND,PORTLAND,0,0.0,10.0,8.14,0.0,114,0,0.0,0.0,0.0,0,7,1,1,2.6901987780411964,0.0,1.025,1.0,13.734,0.671,9.147,14.432,18026.42,44.0 -429,35,0,0,0,0,0,5,0,0,0,0,7,159,0,0,186,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,129,0,0.0,0.0,0.0,0,7,0,0,3.1437573737591324,0.195,999999.0,3.0,36.083,1.443,11.639,19.832,35785.492,78.0 -430,35,0,1,0,0,0,88,0,0,3,0,8,0,0,0,83,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,126,0,0.0,0.0,0.0,0,7,0,0,3.1070392997252942,0.049,999999.0,1.0,27.105,0.998,8.598,14.558,26664.051,78.0 -431,35,0,0,0,0,0,0,0,0,0,0,0,16,0,0,9,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,118,0,0.0,0.0,0.0,0,7,2,2,1.596053590434559,0.196,999999.0,3.0,34.488,1.292,6.739,11.096,29173.809,71.0 -432,35,0,0,0,0,0,73,0,0,0,0,0,0,0,352,229,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,116,0,0.0,0.0,0.0,0,7,0,0,3.0999260632678194,0.215,999999.0,1.0,18.461,0.482,5.295,9.309,17772.709,55.0 -433,35,0,0,1098,0,0,8,0,0,0,0,2,0,0,0,1064,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,122,0,0.0,0.0,0.0,0,7,0,0,6.219562848799783,0.213,999999.0,1.0,18.461,0.482,5.295,9.309,17772.709,55.0 -434,35,0,27,0,0,0,0,0,0,0,4,2,9,0,0,25,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,123,0,0.0,0.0,0.0,0,7,0,0,4.619843065944305,0.099,999999.0,2.0,31.539,1.277,7.194,11.442,27508.047,75.0 -435,35,0,9,85,0,0,7,0,5,0,0,0,0,0,0,100,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,114,0,0.0,0.0,0.0,0,7,7,10,3.0960551943987444,0.193,999999.0,2.0,32.455,1.143,7.004,11.573,28177.927,69.0 -436,35,0,0,52,0,0,9,0,0,0,0,0,0,0,0,80,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,103,0,0.0,0.0,0.0,0,7,0,0,2.1514950118343057,0.215,999999.0,2.0,18.461,0.482,5.295,9.309,17772.709,55.0 -437,35,0,0,0,0,0,0,0,0,0,0,17,4,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,103,0,0.0,0.0,0.0,0,7,0,0,2.1486591193652886,0.246,999999.0,1.0,21.253,0.42,2.702,4.644,16573.879,62.0 -438,35,0,0,7,0,0,0,0,0,2,0,7,19,0,0,35,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,103,0,0.0,0.0,0.0,0,7,1,1,2.1141472697079022,0.146,999999.0,1.0,23.316,0.422,7.364,13.063,23282.301,65.0 -439,35,0,0,0,0,0,19,0,0,17,0,24,5,0,0,43,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,104,0,0.0,0.0,0.0,0,7,1,1,2.184874102766029,0.193,999999.0,1.0,32.455,1.143,7.004,11.573,28177.927,69.0 -440,35,0,0,29,0,0,177,0,13,5,0,22,2,0,43,208,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,122,0,0.0,0.0,0.0,0,7,14,14,17.249521999850813,0.244,1.196,0.0,24.752,0.822,8.999,14.809,25318.699,64.0 -441,35,0,0,0,0,0,0,0,0,0,0,23,0,0,0,28,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,114,0,0.0,0.0,0.0,0,7,0,0,10.761010066224417,0.197,999999.0,1.0,16.268,0.406,2.963,5.465,13909.532,45.0 -442,35,0,0,0,0,14,0,0,0,0,0,129,10,0,0,228,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,117,0,0.0,0.0,0.0,0,7,0,0,24.822385045579924,0.39,999999.0,2.0,22.755,0.344,1.161,1.92,15792.213,44.0 -443,35,0,0,0,0,0,38,0,5,0,0,11,0,0,0,58,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,93,0,0.0,0.0,0.0,0,7,0,0,1.7868621530366826,0.214,999999.0,4.0,32.699,0.322,3.58,6.23,24914.138,53.0 -444,35,0,0,17,0,0,18,0,2,0,0,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,92,0,0.0,0.0,0.0,0,7,0,0,1.9051087171195484,0.314,999999.0,4.0,32.489,0.326,2.815,4.928,23946.688,59.0 -445,35,0,0,0,0,0,2,0,0,0,0,58,0,0,15,108,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,95,0,0.0,0.0,0.0,0,7,0,0,8.66407046190648,0.245,999999.0,1.0,18.911,0.248,0.144,0.161,12206.018,39.0 -446,35,0,0,81,0,0,15,0,10,0,0,0,38,4,836,1040,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,103,0,0.0,0.0,0.0,0,7,0,0,11.542151290695042,0.0,1.179,0.0,11.183,0.213,6.69,11.517,14527.704,24.0 -447,35,0,0,0,0,0,11,0,0,0,0,0,4,0,0,11,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,88,0,0.0,0.0,0.0,0,7,0,0,4.160415386353442,0.148,999999.0,3.0,18.49,0.359,0.131,0.147,11927.279,44.0 -448,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,77,0,0.0,0.0,0.0,0,7,0,0,4.004814549051559,0.205,999999.0,6.0,17.974,0.153,0.128,0.143,11595.071,40.0 -449,36,0,0,0,0,0,0,0,0,10,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,132,0,0.0,0.0,0.0,0,7,0,0,0.5905916911912001,0.061,0.907,1.0,14.729,1.273,13.468,19.965,22204.646,69.0 -450,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,222,0,0.0,0.0,0.0,0,7,0,0,0.5290965466717529,0.0,0.697,1.0,40.121,3.127,25.268,35.853,48623.662,135.0 -451,36,0,22,0,0,0,7,0,0,0,0,0,0,0,0,43,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,224,0,0.0,0.0,0.0,0,7,0,0,1.5292715971624211,0.0,0.649,1.0,39.084,2.306,28.319,40.971,51234.885,130.0 -452,36,0,0,0,0,0,1,0,148,0,0,0,0,0,0,157,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,231,0,0.0,0.0,0.0,0,7,81,104,1.5521344577959872,0.0,0.611,1.0,33.931,2.258,29.077,42.005,48598.993,129.0 -453,36,0,0,0,0,0,0,0,0,11,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,228,0,0.0,0.0,0.0,0,7,7,9,1.5529465041677388,0.0,0.562,1.0,36.976,1.968,30.687,44.406,52084.456,127.0 -454,36,0,0,10,0,0,0,0,0,0,5,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,213,0,0.0,0.0,0.0,0,7,67,82,1.5351652766505324,0.048,0.698,1.0,33.596,2.899,27.499,39.879,47024.052,129.0 -455,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,207,0,0.0,0.0,0.0,0,7,2,3,0.5530042062723014,0.048,0.698,1.0,34.795,2.588,23.743,34.5,44348.845,124.0 -456,36,0,0,0,0,0,18,0,1,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,221,0,0.0,0.0,0.0,0,7,0,0,1.5499986699882993,0.049,0.66,1.0,36.638,1.926,29.539,42.666,50754.363,124.0 -457,36,0,0,0,0,0,0,0,0,35,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,217,0,0.0,0.0,0.0,0,7,32,39,1.5526264157375949,0.049,0.611,0.0,37.62,1.981,30.286,43.617,51992.115,124.0 -458,36,0,0,2,0,0,42,0,0,0,0,0,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,200,0,0.0,0.0,0.0,0,7,4,5,1.5357185895900076,0.0,0.746,1.0,32.585,2.228,24.237,35.156,43354.061,123.0 -459,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,194,0,0.0,0.0,0.0,0,7,0,0,0.595586867940238,0.0,0.715,1.0,29.817,2.565,23.764,34.578,41213.162,121.0 -460,36,0,4,0,0,1,9,0,0,0,53,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,208,0,0.0,0.0,0.0,0,7,0,0,1.551765152901137,0.0,0.708,1.0,37.306,1.92,28.542,41.239,50268.836,122.0 -461,36,0,0,0,0,0,4,0,2,14,0,0,0,0,0,30,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,210,0,0.0,0.0,0.0,0,7,99,136,1.5526038904186985,0.0,0.66,1.0,39.142,2.358,30.094,43.643,52982.155,120.0 -462,36,0,0,7,0,0,14,0,0,0,2,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,197,0,0.0,0.0,0.0,0,7,0,0,1.5549410912558628,0.048,0.756,1.0,34.25,2.027,24.549,35.59,44697.321,117.0 -463,36,0,16,0,0,0,5,0,0,11,0,0,0,0,0,64,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,194,0,0.0,0.0,0.0,0,7,89,123,1.5375037168283407,0.0,0.708,0.0,39.22,2.308,28.297,41.068,51384.285,117.0 -464,36,0,0,0,0,0,4,0,0,39,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,186,0,0.0,0.0,0.0,0,7,0,0,1.5380193470780454,0.097,0.843,0.0,29.849,2.189,24.508,35.94,42104.963,107.0 -465,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,180,0,0.0,0.0,0.0,0,7,0,0,0.5911181745514296,0.049,0.759,0.0,28.29,2.473,24.388,35.665,40931.347,110.0 -466,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,168,0,0.0,0.0,0.0,0,7,0,0,0.5708679573730354,0.097,0.804,2.0,28.525,1.785,24.905,36.49,41609.728,99.0 -467,36,0,0,0,0,0,0,0,0,0,21,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,175,0,0.0,0.0,0.0,0,7,0,0,1.5122510921408274,0.097,0.843,1.0,29.849,2.189,24.508,35.94,42104.963,107.0 -468,36,0,0,0,0,0,7,0,41,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,185,0,0.0,0.0,0.0,0,7,0,0,1.5637312139807744,0.05,0.805,0.0,32.377,2.432,25.156,36.508,44086.383,111.0 -469,36,0,0,0,0,0,0,0,0,0,0,27,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,186,0,0.0,0.0,0.0,0,7,0,0,1.5491856859926765,0.049,0.757,0.0,40.195,2.411,27.569,39.979,51311.677,104.0 -470,36,0,0,14,0,1,254,0,0,0,0,0,2,0,0,190,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,186,0,0.0,0.0,0.0,0,7,0,0,3.0921505526798057,0.096,0.853,0.0,40.659,1.486,25.932,38.296,50531.041,96.0 -471,36,0,2,0,0,6,9,0,12,0,3,0,0,3,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,171,0,0.0,0.0,0.0,0,7,44,53,1.5375756954219864,0.0,0.855,2.0,32.334,2.466,24.665,36.08,43784.975,96.0 -472,36,0,0,0,0,176,5,0,126,0,0,0,0,0,0,194,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,173,0,0.0,0.0,0.0,0,7,0,0,1.5463819127060303,0.0,0.806,1.0,31.549,1.995,22.536,32.91,41254.125,98.0 -473,36,0,19,12,0,0,113,0,0,0,0,0,3,0,0,78,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,178,0,0.0,0.0,0.0,0,7,74,91,3.118224547597544,0.0,0.952,0.0,44.056,1.665,23.647,35.717,51054.813,86.0 -474,36,0,0,0,0,1,28,0,0,3,1,1,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,189,0,0.0,0.0,0.0,0,7,58,68,6.1768701549808585,0.046,0.94,1.0,41.145,1.641,21.75,33.111,47524.059,84.0 -475,36,0,0,0,0,0,15,0,0,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,162,0,0.0,0.0,0.0,0,7,21,21,1.588075241273872,0.047,0.893,1.0,27.113,1.902,19.347,28.3,35464.149,101.0 -476,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,155,0,0.0,0.0,0.0,0,7,43,43,0.6723563906893335,0.1,0.853,0.0,31.491,2.213,25.618,37.795,44342.755,97.0 -477,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,152,0,0.0,0.0,0.0,0,7,0,0,2.321788928937216,0.098,0.903,0.0,21.992,1.948,19.169,28.271,32168.123,92.0 -478,36,0,0,1,0,2,9,0,0,1,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.0,10.0,8.14,0.0,177,0,0.0,0.0,0.0,0,7,0,0,3.102468097562304,0.0,0.991,1.0,41.808,1.687,20.945,32.659,47658.929,78.0 -479,36,0,0,0,0,0,0,0,5,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,168,0,0.0,0.0,0.0,0,7,0,0,3.1511560323753933,0.046,0.998,1.0,35.794,1.737,18.449,28.024,40843.488,78.0 -480,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,163,0,0.0,0.0,0.0,0,7,14,18,1.6253730282160623,0.05,0.904,1.0,29.457,1.176,15.66,23.55,33924.009,83.0 -481,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,159,0,0.0,0.0,0.0,0,7,0,0,1.955648007889235,0.048,0.95,1.0,28.579,1.184,16.109,23.922,33600.403,83.0 -482,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,161,0,0.0,0.0,0.0,0,7,0,0,2.8094865313246884,0.046,0.998,1.0,35.794,1.737,18.449,28.024,40843.488,78.0 -483,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,149,0,0.0,0.0,0.0,0,7,0,0,1.0766780288538875,0.0,0.952,2.0,29.362,1.224,13.336,20.287,31775.68,80.0 -484,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,151,0,0.0,0.0,0.0,0,7,0,0,1.7487933784647656,0.048,0.95,1.0,28.579,1.184,16.109,23.922,33600.403,83.0 -485,36,0,0,0,0,0,2,0,0,3,0,0,4,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,145,0,0.0,0.0,0.0,0,7,0,0,1.5970207636762883,0.049,1.005,1.0,21.154,1.138,14.953,22.342,27837.492,75.0 -486,36,0,0,0,0,0,0,0,0,0,0,0,0,65,0,65,206,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,142,0,0.0,0.0,0.0,0,7,12,12,1.7154113378302518,0.145,0.95,2.0,19.743,1.959,17.628,26.051,29308.027,80.0 -487,36,0,0,0,0,11,227,0,0,0,0,0,17,0,564,809,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,170,0,0.0,0.0,0.0,0,7,0,0,2.962089683129452,0.097,1.088,0.0,43.17,1.761,17.459,26.726,44733.026,84.0 -488,37,0,21,0,0,4,22,0,33,2,19,0,0,0,0,162,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,242,0,0.0,0.0,0.0,0,7,0,0,3.101617897571761,0.0,0.66,1.0,41.724,3.187,26.883,37.663,50807.685,102.0 -489,37,0,0,0,0,71,0,0,0,0,0,0,0,0,0,36,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,249,0,0.0,0.0,0.0,0,7,14,15,1.5558299647173122,0.097,0.514,0.0,34.435,2.602,25.873,35.898,45013.535,123.0 -490,37,0,3,0,0,1,4,0,2,0,0,0,2,0,0,11,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,278,0,0.0,0.0,0.0,0,7,0,0,1.550859981692053,0.048,0.316,0.0,52.587,5.643,30.616,42.207,60668.43,149.0 -491,37,0,46,0,0,0,8,0,0,0,0,0,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,270,0,0.0,0.0,0.0,0,7,12,13,1.5527605823930175,0.0,0.268,0.0,45.852,4.912,26.356,36.344,52605.432,146.0 -492,37,0,0,0,0,9,0,0,0,0,0,0,0,13,0,23,134,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,261,0,0.0,0.0,0.0,0,7,5,5,3.103974235038447,0.096,0.392,0.0,39.355,3.261,25.084,35.259,47753.039,112.0 -493,37,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,275,0,0.0,0.0,0.0,0,7,28,35,1.5519366345107757,0.0,0.366,1.0,44.473,3.98,27.906,38.413,53047.204,122.0 -494,37,0,0,0,0,0,3,0,0,3,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,265,0,0.0,0.0,0.0,0,7,34,44,1.5527400165137866,0.0,0.318,1.0,39.279,5.146,26.307,36.337,48394.093,118.0 -495,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,261,3,0.0,0.0,0.0,0,7,101,129,3.1038544418554985,0.097,0.466,2.0,33.926,3.832,27.215,38.043,46060.129,113.0 -496,37,0,0,0,0,34,0,0,4,0,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,262,0,0.0,0.0,0.0,0,7,6,6,1.55160491143139,0.0,0.367,1.0,42.623,3.976,27.193,37.605,51346.492,127.0 -497,37,0,0,0,0,0,29,0,0,0,0,0,1,0,0,17,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,255,0,0.0,0.0,0.0,0,7,38,41,3.103896873524321,0.096,0.514,0.0,35.088,4.296,27.562,38.549,47127.397,103.0 -498,37,0,0,61,0,1,32,0,0,0,0,0,0,0,0,104,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,260,0,0.0,0.0,0.0,0,7,141,177,1.55264618233984,0.0,0.415,0.0,41.232,3.643,26.782,37.104,50135.106,131.0 -499,37,0,0,0,0,1,4,0,1,0,0,0,1,0,0,11,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,253,0,0.0,0.0,0.0,0,7,38,50,3.1016344521880272,0.096,0.514,1.0,35.088,4.296,27.562,38.549,47127.397,103.0 -500,37,0,0,0,0,0,15,0,9,0,0,0,1,0,0,20,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,256,0,0.0,0.0,0.0,0,7,259,344,1.5418303101316786,0.049,0.464,0.0,41.012,3.123,26.204,36.331,49499.496,126.0 -501,37,0,0,0,0,8,15,0,0,0,0,2,0,2,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,253,0,0.0,0.0,0.0,0,7,45,59,3.1038791147874094,0.098,0.563,0.0,37.097,3.209,27.326,38.746,48539.273,107.0 -502,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,243,0,0.0,0.0,0.0,0,7,97,121,0.5425913397298703,0.097,0.648,1.0,42.346,2.558,27.44,38.617,51816.141,142.0 -503,38,0,0,0,0,0,20,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,299,0,0.0,0.0,0.0,0,7,0,0,1.661154750877662,0.0,0.248,2.0,70.41,6.364,22.138,30.428,64536.044,181.0 -504,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,290,0,0.0,0.0,0.0,0,7,51,65,1.718528737977584,0.098,0.308,1.0,58.684,5.852,25.02,33.763,59165.806,152.0 -505,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,286,0,0.0,0.0,0.0,0,7,0,0,1.2160901308762595,0.047,0.404,0.0,53.282,5.926,30.149,41.285,60522.87,174.0 -506,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,273,0,0.0,0.0,0.0,0,7,0,0,1.7473341782402774,0.049,0.502,2.0,51.074,5.155,29.846,41.213,59063.261,139.0 -507,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,259,0,0.0,0.0,0.0,0,7,0,0,0.5838303908941146,0.146,0.599,0.0,46.12,4.005,29.58,41.628,56158.612,146.0 -508,38,0,0,0,0,37,10,0,0,0,1,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,248,0,0.0,0.0,0.0,0,7,0,0,1.562710885834973,0.048,0.563,1.0,40.2,2.401,29.534,42.588,52984.482,131.0 -509,38,0,0,0,0,0,62,0,6,0,0,0,0,0,20,104,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,241,0,0.0,0.0,0.0,0,7,72,94,1.5167380463105165,0.048,0.601,1.0,40.074,2.474,26.554,37.506,49651.608,143.0 -510,38,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,291,0,0.0,0.0,0.0,0,7,0,0,1.4297459303273603,0.0,0.202,2.0,60.405,5.274,22.57,31.119,58575.162,173.0 -511,38,0,0,0,0,0,0,0,0,0,0,0,0,25,0,39,225,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,289,0,0.0,0.0,0.0,0,7,0,0,1.5256697308337923,0.075,0.286,0.0,64.107,5.974,23.493,32.262,61676.578,152.0 -512,38,0,0,12,0,0,4,0,10,0,0,0,0,5,0,37,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,282,0,0.0,0.0,0.0,0,7,5,5,1.5363536698075546,0.0,0.309,0.0,54.931,6.32,30.787,41.949,62003.011,162.0 -513,38,0,0,0,0,0,0,0,0,0,0,0,56,0,0,34,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,281,0,0.0,0.0,0.0,0,7,82,108,1.5343593467627232,0.0,0.309,3.0,54.931,6.32,30.787,41.949,62003.011,162.0 -514,38,0,13,0,0,0,2,0,0,21,2,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,282,0,0.0,0.0,0.0,0,7,35,42,1.5666430985703108,0.048,0.357,0.0,53.336,6.06,29.362,40.352,59960.149,160.0 -515,38,0,0,0,0,0,0,0,0,22,0,0,0,5,0,32,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,273,0,0.0,0.0,0.0,0,7,1,1,1.5649616375669213,0.0,0.405,2.0,51.562,5.414,29.483,40.539,58944.996,153.0 -516,38,0,0,0,0,2,15,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,274,0,0.0,0.0,0.0,0,7,0,0,1.5508218159665177,0.048,0.415,1.0,41.664,3.608,26.577,36.474,50007.901,125.0 -517,38,0,0,27,0,0,13,0,8,0,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,268,0,0.0,0.0,0.0,0,7,14,14,1.5527762407609424,0.049,0.454,1.0,49.399,4.707,28.008,38.617,56330.366,142.0 -518,38,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,266,0,0.0,0.0,0.0,0,7,36,44,1.5519561602938083,0.0,0.463,1.0,43.051,3.053,26.816,36.981,51220.559,134.0 -519,38,0,30,0,0,0,21,0,0,0,0,0,0,0,0,43,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,263,0,0.0,0.0,0.0,0,7,15,15,1.5402068528020665,0.098,0.503,1.0,45.917,4.043,27.142,37.525,53402.752,138.0 -520,38,0,0,0,18,0,0,0,0,0,0,0,12,0,0,38,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,260,0,0.0,0.0,0.0,0,7,0,0,1.547619640566623,0.097,0.512,0.0,40.604,2.736,25.545,35.502,48707.943,137.0 -521,38,0,0,0,0,2,8,0,0,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,257,0,0.0,0.0,0.0,0,7,0,0,1.518515676261614,0.098,0.551,0.0,42.358,2.536,27.876,39.108,52138.206,146.0 -522,39,0,17,0,0,0,3,0,0,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,285,0,0.0,0.0,0.0,0,7,9,9,1.3129848711541747,0.0,0.15,1.0,53.014,5.186,26.079,36.391,57219.468,173.0 -523,39,0,50,0,0,0,0,0,0,0,0,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,274,0,0.0,0.0,0.0,0,7,86,131,1.175071664211552,0.0,0.088,2.0,51.35,5.437,26.55,37.138,56632.574,169.0 -524,39,0,0,0,0,0,2,0,15,0,0,0,0,1,0,9,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,275,0,0.0,0.0,0.0,0,7,5,6,1.55197574983357,0.0,0.123,0.0,50.736,5.328,27.192,37.73,56618.68,163.0 -525,39,0,0,0,0,0,0,0,19,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,284,0,0.0,0.0,0.0,0,7,75,112,1.55770759508908,0.0,0.172,0.0,50.082,5.538,27.424,37.919,56320.952,158.0 -526,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,278,0,0.0,0.0,0.0,0,7,3,4,1.5428278532156063,0.05,0.22,1.0,50.647,5.816,26.651,36.596,55835.972,149.0 -527,39,0,29,0,0,0,0,0,34,0,0,0,0,0,0,72,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,269,0,0.0,0.0,0.0,0,7,0,0,4.137702740774821,0.048,0.171,1.0,49.296,5.636,27.573,38.168,55976.667,146.0 -528,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,9.99,8.14,0.0,272,0,0.0,0.0,0.0,0,7,120,134,1.5516822190037616,0.048,0.171,0.0,49.296,5.636,27.573,38.168,55976.667,146.0 -529,39,0,48,0,0,7,6,0,2,2,0,0,0,0,0,76,0,0,PORTLAND,PORTLAND,0,2.0,12.79,10.41,0.0,258,0,0.0,0.0,0.0,0,7,16,20,3.98184491815962,0.0,0.172,0.0,40.744,4.677,23.731,33.375,47436.081,145.0 -530,39,0,0,0,0,44,0,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,0.0,10.33,8.41,0.0,278,2,0.0,0.0,0.0,0,7,271,424,1.5520325483072104,0.0,0.357,1.0,52.702,5.802,27.445,37.349,57633.039,140.0 -531,39,0,0,0,0,0,0,0,0,0,0,3,0,32,0,92,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,269,0,0.0,0.0,0.0,0,7,32,46,1.5527782100980283,0.0,0.22,1.0,47.377,5.24,26.936,37.066,54043.443,137.0 -532,39,0,0,0,0,0,2,0,73,0,0,0,0,0,0,56,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,260,0,0.0,0.0,0.0,0,7,58,87,3.107761211997538,0.0,0.269,2.0,47.601,5.988,26.361,36.174,53616.088,107.0 -533,40,0,38,0,0,0,0,0,0,21,0,0,0,0,0,65,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,223,0,0.0,0.0,0.0,0,7,249,386,2.091631183524393,0.048,0.294,0.0,25.997,3.514,22.076,32.055,37153.608,122.0 -534,40,0,68,0,0,0,2,0,0,0,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,213,0,0.0,0.0,0.0,0,7,64,80,1.7223794467541025,0.0,0.342,0.0,26.02,3.658,22.847,33.325,37980.303,117.0 -535,40,0,0,0,0,0,10,0,0,158,0,0,0,0,0,209,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,245,0,0.0,0.0,0.0,0,7,50,61,3.820695387377384,0.0,0.205,0.0,34.61,4.638,23.481,33.124,43349.706,138.0 -536,40,0,67,0,0,0,44,0,17,0,0,0,2,0,0,84,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,233,0,0.0,0.0,0.0,0,7,31,37,3.696232830268968,0.049,0.308,1.0,32.839,2.957,22.772,32.319,41701.232,131.0 -537,40,0,0,0,0,0,8,0,0,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,223,0,0.0,0.0,0.0,0,7,92,114,3.1045067540046145,0.099,0.353,1.0,26.351,3.537,22.229,32.194,37468.669,127.0 -538,40,0,38,0,0,0,1,0,13,4,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,239,0,0.0,0.0,0.0,0,7,131,167,3.103662199161324,0.049,0.322,2.0,33.251,3.437,25.669,35.899,44255.779,123.0 -539,40,0,0,0,0,4,3,0,2,0,20,0,0,2,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,225,0,0.0,0.0,0.0,0,7,185,250,3.101871952021773,0.098,0.446,1.0,23.339,3.657,26.098,37.374,38855.971,109.0 -540,41,0,26,0,0,0,11,0,0,0,0,0,1,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,240,0,0.0,0.0,0.0,0,7,144,192,3.1046989764349577,0.0,0.406,0.0,35.865,3.464,26.288,37.491,46947.886,122.0 -541,41,0,86,0,0,0,7,0,0,151,0,1,0,0,0,291,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,222,0,0.0,0.0,0.0,0,7,188,263,3.104936964278215,0.098,0.495,0.0,34.744,3.34,26.451,37.963,46532.773,105.0 -542,41,0,33,0,0,8,1,0,4,0,0,11,0,56,0,56,268,69,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,239,2,0.0,0.0,0.0,0,7,103,132,3.1025170917545664,0.0,0.454,1.0,31.673,3.722,26.691,37.908,44532.172,110.0 -543,41,0,27,0,0,0,2,0,0,0,42,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,221,0,0.0,0.0,0.0,0,7,54,70,3.10254320159644,0.097,0.592,1.0,36.565,3.78,28.557,41.079,49691.653,91.0 -544,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,144,0,0.0,0.0,0.0,0,7,122,160,5.286686595288254,0.231,1.167,2.0,23.325,1.023,15.434,25.76,31414.535,43.0 -545,42,0,0,0,0,0,6,0,0,3,0,0,9,0,0,20,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,152,0,0.0,0.0,0.0,0,7,17,25,3.0359850370061783,0.097,1.033,1.0,22.603,1.929,17.574,28.096,32447.738,72.0 -546,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,160,0,0.0,0.0,0.0,0,7,13,21,3.0447013556746154,0.1,1.108,0.0,29.809,2.28,18.945,29.411,37900.792,70.0 -547,42,0,0,0,0,58,1,0,7,4,0,0,43,0,0,99,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,166,0,0.0,0.0,0.0,0,7,60,108,3.104972937432486,0.1,1.059,0.0,35.322,2.403,19.29,29.712,41621.96,70.0 -548,42,0,8,0,0,0,3,0,1,0,0,0,0,0,0,26,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,173,0,0.0,0.0,0.0,0,7,76,142,3.102310215074031,0.023,0.94,1.0,39.347,2.835,20.555,31.193,45146.149,75.0 -549,42,0,0,0,0,0,11,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,173,0,0.0,0.0,0.0,0,7,54,96,2.685009225175862,0.194,0.865,1.0,30.924,2.849,22.569,33.554,41265.551,51.0 -550,42,0,71,0,0,0,8,0,0,26,0,0,0,0,0,119,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.77,0.0,181,0,0.0,0.0,0.0,0,7,71,129,3.101721471376913,0.145,0.816,0.0,28.076,2.624,23.632,35.296,40557.518,64.0 -551,42,0,77,0,0,0,2,0,0,34,0,0,0,2,0,67,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,174,0,0.0,0.0,0.0,0,7,62,115,3.1045516498221257,0.097,0.865,0.0,31.995,2.098,19.428,29.234,39186.105,70.0 -552,42,0,0,0,0,38,0,0,0,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,170,0,0.0,0.0,0.0,0,7,46,81,3.122335047833616,0.0,0.838,1.0,18.033,1.724,14.054,21.913,25565.309,93.0 -553,42,0,26,0,0,2,0,0,0,33,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,172,0,0.0,0.0,0.0,0,7,49,87,3.104513458392752,0.145,0.915,0.0,36.428,2.47,20.983,31.979,43780.301,65.0 -554,42,0,0,0,0,165,1,0,20,0,0,0,0,0,0,139,0,0,PORTLAND,PORTLAND,0,2.0,7.0,5.7,0.0,166,0,0.0,0.0,0.0,0,7,25,36,3.0731941216621665,0.048,0.888,0.0,23.788,2.288,16.996,26.442,32146.993,69.0 -555,42,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,161,0,0.0,0.0,0.0,0,7,7,11,2.441693147270324,0.083,1.019,5.0,25.798,2.246,18.36,29.444,35355.03,45.0 -556,42,0,2,3,0,0,8,0,11,2,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,173,0,0.0,0.0,0.0,0,7,82,156,3.1044791783689245,0.097,0.963,0.0,33.65,2.691,20.564,31.897,41950.287,71.0 -557,42,0,0,1,0,226,17,0,0,0,0,0,0,0,0,187,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,161,0,0.0,0.0,0.0,0,7,41,54,2.9080939659735923,0.048,0.984,3.0,24.821,2.117,17.389,27.687,33604.993,50.0 -558,42,0,0,0,0,19,0,0,1,0,0,0,0,0,0,23,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,165,0,0.0,0.0,0.0,0,7,45,78,3.0580463298965306,0.049,0.985,0.0,25.491,2.067,18.021,28.733,34703.592,64.0 -559,42,0,0,0,0,21,1,0,0,0,0,1,0,0,0,22,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,168,0,0.0,0.0,0.0,0,7,77,145,3.0425514624139938,0.049,0.985,1.0,25.491,2.067,18.021,28.733,34703.592,64.0 -560,42,0,0,0,0,0,0,0,0,0,0,0,8,0,0,10,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,158,0,0.0,0.0,0.0,0,7,6,10,3.027462647963945,0.097,1.033,0.0,22.603,1.929,17.574,28.096,32447.738,72.0 -561,43,0,0,0,0,2845,0,0,0,0,0,0,0,0,0,1265,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,187,0,0.0,0.0,0.0,0,7,68,125,6.206734275042561,999999.0,999999.0,1.0,224.45,0.0,44.89,63.147,184061.667,3.0 -562,43,0,14,0,0,0,2,0,0,13,0,27,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,210,0,0.0,0.0,0.0,0,7,0,0,3.0975897099556238,0.049,0.739,1.0,35.626,2.764,24.37,35.257,45364.999,94.0 -563,43,0,0,0,0,57,1,0,1,0,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,201,1,0.0,0.0,0.0,0,7,31,42,3.101724448255376,0.0,0.788,1.0,39.809,2.628,25.45,37.087,49213.778,98.0 -564,43,0,36,0,0,1,29,0,0,0,0,6,1,0,0,79,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,230,0,0.0,0.0,0.0,0,7,7,7,3.108901737641503,0.049,0.649,1.0,40.454,4.034,27.283,38.955,50821.768,97.0 -565,43,0,0,0,0,10,18,0,1,4,0,0,0,4,0,66,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,236,0,0.0,0.0,0.0,0,7,128,190,3.1060752385961514,0.0,0.551,1.0,34.576,3.442,26.437,37.459,46101.985,99.0 -566,43,0,34,0,0,16,15,0,0,0,0,1,0,0,0,117,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,219,0,0.0,0.0,0.0,0,7,16,21,3.103756352761719,0.097,0.592,1.0,36.565,3.78,28.557,41.079,49691.653,91.0 -567,43,0,11,0,0,0,10,0,10,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,236,0,0.0,0.0,0.0,0,7,94,126,3.101160303436441,0.0,0.551,1.0,34.576,3.442,26.437,37.459,46101.985,99.0 -568,43,0,28,0,0,0,1,0,0,0,0,0,1,0,0,31,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,217,0,0.0,0.0,0.0,0,7,31,42,3.104592411509344,0.099,0.641,1.0,35.8,3.645,26.911,38.859,47781.681,98.0 -569,43,0,9,0,0,1,4,0,0,11,0,0,5,2,0,23,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,195,0,0.0,0.0,0.0,0,7,124,182,3.102443995850772,0.049,0.72,1.0,35.503,2.683,24.95,36.723,46225.138,87.0 -570,43,0,0,0,0,18,11,0,1,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,235,0,0.0,0.0,0.0,0,7,60,81,3.1051572490396997,0.049,0.6,0.0,37.038,3.703,27.537,39.091,48722.003,101.0 -571,43,0,49,0,0,0,1,0,0,3,0,0,1,0,0,96,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,212,0,0.0,0.0,0.0,0,7,100,127,3.119937108393489,0.098,0.69,0.0,35.946,3.65,24.878,35.924,45997.278,94.0 -572,43,0,94,0,0,1,2,0,0,22,0,1,10,0,0,140,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,188,0,0.0,0.0,0.0,0,7,158,243,3.0890473522857698,0.0,0.769,0.0,36.775,3.173,26.467,38.839,48392.522,83.0 -573,43,0,22,0,0,130,12,0,2,17,0,0,0,0,0,217,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,186,0,0.0,0.0,0.0,0,7,107,151,3.103988145569737,0.049,0.818,2.0,34.971,2.873,24.945,37.023,46075.917,84.0 -574,44,0,0,0,0,37,15,0,9,70,11,0,0,0,0,107,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,180,0,0.0,0.0,0.0,0,7,99,134,1.966958088649476,0.0,0.515,4.0,22.7,5.47,27.492,41.052,40801.588,70.0 -575,44,0,5,0,0,0,13,0,32,37,0,0,0,0,0,82,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,184,0,0.0,0.0,0.0,0,7,0,0,1.417196117888496,0.0,0.532,2.0,22.498,4.729,25.951,38.973,39341.523,81.0 -576,44,0,0,0,0,15,20,0,0,0,0,0,6,0,0,27,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,198,0,0.0,0.0,0.0,0,7,13,16,2.922990044654619,0.0,0.472,2.0,29.937,4.452,26.954,39.964,44736.564,85.0 -577,44,0,33,0,0,0,5,0,0,0,0,0,1,0,0,53,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,207,0,0.0,0.0,0.0,0,7,178,287,3.306129030766645,0.053,0.395,2.0,24.389,3.933,23.68,34.356,37596.466,109.0 -578,44,0,0,0,0,426,19,0,8,12,0,0,0,0,0,431,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,208,0,0.0,0.0,0.0,0,7,125,185,3.1039824544912995,0.148,0.496,1.0,21.693,3.927,27.475,39.346,39065.354,89.0 -579,44,0,0,0,0,74,3,0,0,7,0,0,0,0,0,62,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,179,0,0.0,0.0,0.0,0,7,66,94,2.5149343113752862,0.0,0.559,1.0,20.581,4.347,24.655,37.083,36904.85,83.0 -580,44,0,7,0,0,0,0,0,0,21,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,202,0,0.0,0.0,0.0,0,7,10,13,3.10338697127522,0.048,0.574,0.0,28.211,3.796,25.291,37.267,41905.927,96.0 -581,44,0,0,5,0,0,2,1,0,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,173,0,0.0,0.0,0.0,0,7,72,103,2.6256644751994003,0.097,0.768,0.0,29.737,3.07,25.784,38.252,43513.042,68.0 -582,44,0,2,0,0,12,4,0,0,0,0,0,1,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,179,0,0.0,0.0,0.0,0,7,52,71,3.3409057996927096,0.0,0.619,2.0,29.637,3.79,25.82,38.609,43677.461,80.0 -583,44,0,15,0,0,0,30,0,4,11,0,0,6,0,0,76,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,204,0,0.0,0.0,0.0,0,7,78,110,3.103864879279261,0.0,0.623,1.0,29.442,3.398,26.061,37.992,43157.807,85.0 -584,44,0,11,0,0,4,9,0,0,17,0,0,0,0,0,64,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.77,0.0,184,0,0.0,0.0,0.0,0,7,127,188,3.104725521895033,0.097,0.72,0.0,29.709,3.151,25.658,37.931,43290.117,69.0 -585,44,0,16,0,0,10,18,0,1,25,0,1,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,198,0,0.0,0.0,0.0,0,7,21,24,3.1039031618950035,0.0,0.671,1.0,35.344,3.278,23.969,34.931,44975.713,86.0 -586,44,0,0,3,0,73,2,0,22,61,0,0,0,0,0,162,0,0,PORTLAND,PORTLAND,0,2.0,12.0,6.82,0.0,182,0,0.0,0.0,0.0,0,7,96,139,3.1046873313440466,0.097,0.768,0.0,29.737,3.07,25.784,38.252,43513.042,68.0 -587,45,0,0,0,0,194,1,0,0,5,0,0,0,0,0,158,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,200,0,0.0,0.0,0.0,0,7,65,92,3.103864524979969,0.049,0.837,1.0,38.847,2.336,23.521,34.862,47173.785,94.0 -588,45,0,50,0,0,5,3,0,0,5,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,198,0,0.0,0.0,0.0,0,7,0,0,3.1028097454746613,0.0,0.886,1.0,37.942,2.505,21.389,31.941,44725.267,93.0 -589,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,193,0,0.0,0.0,0.0,0,7,29,37,3.105383459480652,0.048,0.934,0.0,39.982,2.398,21.008,31.366,45662.971,85.0 -590,45,0,8,0,0,41,30,0,0,0,0,0,217,1,0,352,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,191,0,0.0,0.0,0.0,0,7,8,11,3.1041613946789117,0.097,0.983,1.0,40.774,2.423,18.851,28.769,44507.777,77.0 -591,45,0,48,0,0,0,22,0,1,127,5,0,2,19,0,198,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,182,0,0.0,0.0,0.0,0,7,155,206,3.1042395844374475,0.0,1.081,2.0,40.052,1.689,19.217,30.153,44931.282,89.0 -592,45,0,149,0,0,1,371,0,9,6,30,0,1,9,153,515,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,174,0,0.0,0.0,0.0,0,7,96,126,6.233702079758423,0.099,1.18,2.0,38.129,1.41,20.401,32.465,45180.155,69.0 -593,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,180,0,0.0,0.0,0.0,0,7,350,463,3.104927580349875,0.0,0.956,2.0,40.515,2.745,20.646,31.504,46092.258,75.0 -594,46,0,5,0,0,68,0,0,0,10,0,0,0,0,0,75,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,180,0,0.0,0.0,0.0,0,7,123,132,3.107147023525972,0.0,1.011,0.0,38.748,2.23,18.96,29.153,43456.652,82.0 -595,46,0,32,0,0,16,26,0,2,2,0,3,0,0,0,134,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,175,0,0.0,0.0,0.0,0,7,64,104,3.08621674808886,0.049,1.06,1.0,38.426,2.274,17.552,27.075,41920.738,93.0 -596,46,0,14,0,0,0,1,0,0,1,0,0,0,7,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,162,0,0.0,0.0,0.0,0,7,33,52,3.102178953699258,0.149,1.158,0.0,30.465,1.818,16.659,26.379,36380.686,85.0 -597,46,0,64,0,0,0,37,0,0,3,0,8,0,72,0,204,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,171,0,0.0,0.0,0.0,0,7,44,70,3.1196356358873265,0.049,1.109,1.0,34.864,1.884,17.271,26.925,39544.829,83.0 -598,46,0,0,0,0,16,1,0,10,0,0,4,0,9,0,41,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,162,0,0.0,0.0,0.0,0,7,0,0,3.104283325620988,0.147,1.206,0.0,30.154,1.747,15.817,25.511,35625.687,89.0 -599,46,0,87,3,0,3,14,0,0,17,5,0,2,0,0,172,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,169,0,0.0,0.0,0.0,0,7,68,111,3.104218784309296,0.0,1.158,1.0,33.986,1.51,14.686,23.342,36689.72,92.0 -600,46,0,8,8,0,8,6,0,2,0,0,19,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,160,0,0.0,0.0,0.0,0,7,132,225,3.0996847215559544,0.097,999999.0,0.0,30.817,1.689,15.163,24.6,35466.76,95.0 -601,46,0,35,0,0,0,90,0,4,0,2,0,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,166,0,0.0,0.0,0.0,0,7,136,237,3.102492709692477,0.049,1.207,2.0,37.775,1.47,17.17,28.156,42195.345,90.0 -602,46,0,22,0,35,14,8,0,10,10,0,0,8,0,0,158,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,155,0,0.0,0.0,0.0,0,7,130,225,3.104607668950161,0.0,999999.0,2.0,38.152,1.42,16.908,28.036,42359.729,87.0 -603,47,0,0,0,0,11,1308,0,15,0,0,0,0,0,0,1677,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,227,0,0.0,0.0,0.0,0,7,38,60,3.099469484533392,0.0,0.66,1.0,41.724,3.187,26.883,37.663,50807.685,102.0 -604,47,0,9,0,0,8,11,0,0,1,0,0,0,0,2,23,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,225,0,0.0,0.0,0.0,0,7,17,23,3.110079827913023,0.0,0.698,1.0,38.12,3.27,23.809,33.901,46093.674,100.0 -605,47,0,0,0,0,0,17,0,0,0,0,0,0,0,0,14,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,217,0,0.0,0.0,0.0,0,7,132,187,3.1044344061480205,0.0,0.757,1.0,39.244,2.443,28.503,41.392,51607.516,107.0 -606,47,0,0,0,0,0,5,0,0,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,217,0,0.0,0.0,0.0,0,7,15,21,3.1044355560179078,0.049,0.747,1.0,38.302,2.691,23.266,33.016,45643.573,97.0 -607,47,0,0,0,0,58,0,0,1,0,0,0,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,210,0,0.0,0.0,0.0,0,7,238,350,3.104392293150846,0.0,0.757,1.0,39.244,2.443,28.503,41.392,51607.516,107.0 -608,47,0,36,0,0,0,1,0,2,0,0,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,208,0,0.0,0.0,0.0,0,7,63,91,3.1018928964382284,0.0,0.796,1.0,41.065,2.209,22.575,32.3,46953.595,92.0 -609,47,0,1,1,0,5,8,0,2,0,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,197,0,0.0,0.0,0.0,0,7,62,90,3.111474634854898,0.096,0.853,0.0,40.659,1.486,25.932,38.296,50531.041,96.0 -610,47,0,19,0,0,51,16,0,0,17,0,1,0,0,0,136,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,198,0,0.0,0.0,0.0,0,7,252,386,3.1229743761036253,0.0,0.845,1.0,39.371,1.667,24.523,36.722,48699.778,94.0 -611,48,0,24,52,0,5,87,0,0,7,18,236,62,0,209,909,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,9,0,0.0,0.0,0.0,0,7,82,120,240.8833347590012,0.016,999999.0,1.0,5.69,0.066,0.228,0.333,3854.782,3.0 -612,48,0,3,122,0,0,5,0,13,31,0,176,32,0,61,408,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,57,0,0.0,0.0,0.0,0,7,13,13,40.68055565355332,0.47,999999.0,4.0,17.149,0.612,0.326,0.367,11210.49,27.0 -613,48,0,0,60,25,0,98,0,0,7,0,823,107,0,116,1147,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,2,0,0.0,0.0,0.0,0,7,0,0,827.1022145853689,0.0,999999.0,1.0,1.409,0.009,0.007,0.007,906.483,4.0 -614,48,0,0,41,0,0,8,0,0,0,0,0,141,0,38,113,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,9,0,0.0,0.0,0.0,0,7,0,0,98.93849382408702,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -615,48,0,0,0,0,0,1,0,0,0,0,0,41,0,32,80,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,11,0,0.0,0.0,0.0,0,7,0,0,52.65004324916018,0.034,999999.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0 -616,49,0,0,0,0,0,33,0,0,6,0,0,82,0,19,172,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,51,0,0.0,0.0,0.0,0,7,0,0,23.340454273468527,0.134,999999.0,0.0,19.195,0.362,0.255,0.394,12537.32,21.0 -617,49,0,0,0,0,0,123,0,0,0,0,3,33,0,18,210,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,43,0,0.0,0.0,0.0,0,7,1,1,13.285918978244602,0.384,999999.0,3.0,11.763,0.374,0.011,0.011,7534.998,14.0 -618,49,0,0,1,0,0,4,0,0,6,0,58,8,0,0,107,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,63,0,0.0,0.0,0.0,0,7,0,0,8.319863894491379,0.134,999999.0,3.0,19.195,0.362,0.255,0.394,12537.32,21.0 -619,49,0,0,3,0,0,6,21,6,7,0,25,4,0,0,102,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,69,0,0.0,0.0,0.0,0,7,0,0,8.270076451787446,0.0,999999.0,2.0,18.799,0.368,2.309,4.096,14652.618,29.0 -620,49,0,0,22,0,0,26,0,0,14,0,101,10,0,0,119,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,80,0,0.0,0.0,0.0,0,7,2,2,10.704149343653093,0.098,999999.0,1.0,19.357,0.388,2.428,4.311,15147.774,34.0 -621,49,0,0,0,0,0,0,0,0,0,0,31,48,0,0,67,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,87,0,0.0,0.0,0.0,0,7,2,3,11.584662488121692,0.197,999999.0,2.0,16.268,0.406,2.963,5.465,13909.532,45.0 -622,49,0,0,902,42,117,121,0,24,62,0,140,177,2,67,925,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,66,0,0.0,0.0,0.0,0,7,0,0,94.436382372624,0.259,999999.0,2.0,15.187,0.508,0.0,0.0,9719.525,5.0 -623,49,0,0,13,0,0,19,0,14,15,10,109,481,0,441,1155,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,13,0,0.0,0.0,0.0,0,7,1,1,101.20789578312652,0.016,999999.0,0.0,5.69,0.066,0.228,0.333,3854.782,3.0 -624,49,0,0,0,0,0,0,0,0,0,0,220,86,0,0,209,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,35,0,0.0,0.0,0.0,0,7,0,0,21.34306702440366,0.403,999999.0,2.0,11.942,0.34,0.012,0.012,7650.256,12.0 -625,49,0,0,34,0,0,84,0,0,5,0,0,159,0,8,316,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,45,0,0.0,0.0,0.0,0,7,0,0,19.041171916712862,0.217,999999.0,4.0,24.737,0.372,0.173,0.206,15964.106,16.0 -626,49,0,39,70,0,0,107,0,0,3,0,80,239,0,22,535,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,20,0,0.0,0.0,0.0,0,7,0,0,61.189684647467736,0.0,999999.0,1.0,9.626,0.065,0.0,0.0,6160.515,1.0 -627,49,0,31,0,0,0,37,0,0,3,0,70,0,0,0,109,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,7,3,0.0,0.0,0.0,0,7,6,6,20.12842157115755,0.112,999999.0,3.0,1.409,0.009,0.007,0.007,906.483,4.0 -628,50,0,0,118,0,2,14,0,17,0,1,4,0,2,0,137,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,44,3,0.0,0.0,0.0,0,7,0,0,70.96241958271582,0.344,999999.0,4.0,1.922,0.011,1.595,2.989,3143.043,12.0 -629,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,160,0,0.0,0.0,0.0,0,7,219,387,1.0638054983803542,0.097,1.088,2.0,43.17,1.761,17.459,26.726,44733.026,84.0 -630,50,0,0,3,0,0,13,0,0,0,0,0,1,0,0,34,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,65,3,0.0,0.0,0.0,0,7,0,0,21.03264030675483,0.314,999999.0,6.0,2.586,0.201,2.117,3.87,4131.856,15.0 -631,50,0,0,0,0,1,11,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,93,3,0.0,0.0,0.0,0,7,77,134,5.118387179902207,0.257,999999.0,3.0,6.084,0.369,8.902,16.317,14336.769,32.0 -632,50,0,0,2,0,1,6,0,3,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,137,0,0.0,0.0,0.0,0,7,29,49,3.0727052334521905,0.096,999999.0,1.0,23.099,0.857,8.968,15.487,24694.863,83.0 -633,50,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,114,0,0.0,0.0,0.0,0,7,23,40,3.0196333810923672,0.114,999999.0,3.0,15.654,0.316,6.558,11.872,17616.657,63.0 -634,50,0,0,0,0,1,4,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,127,0,0.0,0.0,0.0,0,7,67,126,3.145561784737528,0.048,999999.0,2.0,17.054,0.345,8.05,14.306,20070.272,62.0 -635,50,0,0,744,0,0,0,0,0,0,0,0,1,0,0,495,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,163,0,0.0,0.0,0.0,0,7,46,80,3.5148878018413083,0.174,999999.0,2.0,45.623,1.637,20.045,31.906,49618.644,61.0 -636,50,0,0,0,0,0,0,0,57,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,154,0,0.0,0.0,0.0,0,7,0,0,5.32595220625175,0.143,1.225,1.0,39.781,1.47,18.196,29.404,44278.284,69.0 -637,50,0,37,0,0,1,6,0,0,8,0,12,0,1,0,77,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,144,0,0.0,0.0,0.0,0,7,11,11,3.0900321424644104,0.0,999999.0,0.0,38.152,1.42,16.908,28.036,42359.729,87.0 -638,50,0,36,0,0,5,20,0,0,0,0,28,20,0,1,65,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,149,0,0.0,0.0,0.0,0,7,13,24,2.997250481892081,0.0,999999.0,1.0,38.152,1.42,16.908,28.036,42359.729,87.0 -639,50,0,29,0,0,4,25,0,0,2,0,0,5,0,0,79,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,0.0,145,0,0.0,0.0,0.0,0,7,5,6,6.194679858554568,0.127,999999.0,1.0,26.165,0.556,11.621,20.835,30080.276,58.0 -640,50,0,0,0,0,0,2,0,26,0,7,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,135,0,0.0,0.0,0.0,0,7,73,140,3.014954901364939,0.096,999999.0,1.0,17.119,0.444,6.798,12.046,18665.754,75.0 -641,50,0,10,0,0,0,25,0,1,0,0,2,0,0,0,53,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,124,0,0.0,0.0,0.0,0,7,125,229,2.936784034970012,0.048,999999.0,0.0,17.054,0.345,8.05,14.306,20070.272,62.0 -642,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,82,3,0.0,0.0,0.0,0,7,46,78,2.151775682280141,0.313,999999.0,0.0,5.701,0.411,8.291,14.976,13233.344,28.0 -643,50,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,79,3,0.0,0.0,0.0,0,7,59,100,2.1422142783276863,0.361,999999.0,5.0,5.875,0.427,8.618,15.567,13722.345,28.0 -644,50,0,0,6,0,1,18,0,0,0,0,0,0,18,0,72,117,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,89,0,0.0,0.0,0.0,0,7,41,71,13.300496615773516,0.122,999999.0,0.0,17.754,0.389,3.587,6.687,15642.148,36.0 -645,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,44,3,0.0,0.0,0.0,0,7,151,283,2.6902348408590075,0.405,999999.0,2.0,1.953,0.049,1.825,3.335,3384.313,14.0 -646,50,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,0.0,74,3,0.0,0.0,0.0,0,7,10,17,2.752565034903808,0.313,999999.0,5.0,5.701,0.411,8.291,14.976,13233.344,28.0 -23327,2100,80826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0,0,0.0,0.0,0.0,0,0,0,0,817.3171311244508,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0 -23328,2101,14642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0,0,0.0,0.0,0.0,0,0,0,0,795.9022243467049,999999.0,999999.0,2.0,0.203,0.004,0.119,0.403,387.964,96.0 -23329,2102,1793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0,0,0.0,0.0,0.0,0,0,0,0,352.52958513498726,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -23330,2103,6630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0,0,0.0,0.0,0.0,0,0,0,0,162.38948874951694,0.0,999999.0,4.0,0.0,0.0,0.0,0.0,0.0,0.0 -23331,2104,6536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0,0,0.0,0.0,0.0,0,0,0,0,62.14536128465341,999999.0,999999.0,0.0,0.097,0.0,0.09,0.316,264.084,3.0 -23332,2105,3252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,0.0,0,0,0.0,0.0,0.0,0,0,0,0,264.87044263296264,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +MAZ,TAZ,EXTERNAL,EMP_AFS,EMP_CON,EMP_GOV,EMP_HCS,EMP_IFRPBS,EMP_NRM,EMP_OSV,EMP_RET,EMP_AER,EMP_MFG,EMP_WT,EMP_EDU,EMP_TWU,EMP_TOTAL,ENROLLGRADEKto8,ENROLLGRADE9to12,DIST_Kto8,DIST_9to12,COLLEGEENROLL,PRKCST_HR,PRKCST_DAY,PRKCST_MNTH,PRKSPACES,INTHMI,PARKATTRACT,TERMINALTIME,ESCOOACCTIME,EBIKEACCTIME,PNR_SPACES,DISTRICT9,TOTHHS,TOTPOP,ACRES,walk_dist_local_bus,walk_dist_premium_transit,empden,retempden,duden,popden,popempdenpermi,totint,exp_hourly,exp_daily,exp_monthly +1.0,1,0,120,2,35,0,671,3,2,191,0,0,0,0,0,1018,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,290,0,,,,0,1,0,0,1.6633769723569505,0.111,0.114,212.171,5.386,8.387,9.721,142010.866,290,2.358531895237281,13.838118540018549,11.293638007324256 +2.0,1,0,32,0,0,9,114,0,1,16,11,5,0,0,0,319,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.909,,300,0,,,,0,1,1,1,1.648408203165696,0.025,0.025,248.867,5.958,8.134,10.023,165689.228,300,2.341114725849612,13.735298040863643,11.21401945812155 +3.0,1,0,0,0,0,0,0,0,0,172,0,0,0,0,0,144,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,0,0,1.6929867345479397,0.0,0.0,200.985,4.795,9.947,12.403,136568.548,295,2.358749471013856,13.860000863601195,11.306403049445862 +4.0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,303,0,,,,0,1,0,0,1.6658739496278088,0.025,0.025,248.867,5.958,8.134,10.023,165689.228,303,2.3483845373958743,13.776523847625462,11.241897580315086 +5.0,1,0,5,0,0,0,586,0,5,1,7,0,18,0,0,378,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,281,0,,,,0,1,0,0,1.674021284577425,0.0,0.0,185.323,4.829,12.455,16.658,129267.743,281,2.342058854472129,13.749507421413291,11.185767954852986 +6.0,1,0,195,486,438,96,1574,13,175,66,1,134,807,32,100,7161,0,0,PORTLAND,PORTLAND,0,2.4,13.0,13.0,,292,0,,,,0,1,0,0,1.6715201601537917,0.0,0.0,177.345,4.56,12.639,16.549,124092.272,292,2.340672255895152,13.754118966071951,11.217171305677423 +7.0,1,0,0,0,0,0,30,0,0,0,0,0,0,0,906,969,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,260,0,,,,0,1,0,0,1.6182736818939645,0.048,0.151,184.132,4.853,9.589,12.108,125593.938,260,2.371995677391274,13.94841662959299,11.338366101751326 +8.0,1,0,5,0,0,0,0,0,0,13,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,275,0,,,,0,1,0,0,1.667942492330622,0.078,0.078,251.499,6.04,8.211,10.125,167439.813,275,2.3570853484162204,13.826147637183135,11.246795766716124 +9.0,1,0,147,11,9,6,368,0,4,4,0,0,0,2,0,625,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,264,0,,,,0,1,5,5,1.6054031542468417,0.097,0.103,206.557,4.91,6.758,8.32,137521.742,264,2.3709536540596448,13.926199159057274,11.333395061737654 +10.0,1,0,0,0,0,5,11,0,7,34,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,15.7029999999999,12.5,,274,0,,,,0,1,0,0,1.6441747428245528,0.078,0.078,251.499,6.04,8.211,10.125,167439.813,274,2.385061555761596,14.00948871655194,11.426937545947618 +11.0,1,0,4,0,0,0,35,0,0,6,0,0,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.4,15.0,13.6999999999999,,268,0,,,,0,1,0,0,1.6236077364165522,0.127,0.019,216.39,5.495,6.954,8.11,143679.42,268,2.37041433551208,13.93293380376606,11.35523125896682 +12.0,1,0,33,0,0,0,11,0,0,37,0,0,0,0,0,78,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,279,0,,,,0,1,0,0,1.6934901763611443,0.097,0.1,206.431,5.128,8.852,10.507,138840.328,279,2.385022533331483,14.010033950582056,11.426152994943838 +13.0,2,0,2,0,9,0,243,0,23,42,0,0,0,0,0,304,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,290,0,,,,0,1,0,0,1.675628107341847,0.027,0.027,239.057,6.004,11.303,13.72,161777.005,290,2.392867163350996,14.048173813719306,11.461728599855183 +14.0,2,0,243,0,0,0,257,0,34,39,0,0,0,0,0,283,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.7108046182456784,0.0,0.024,200.507,5.396,9.777,11.267,135534.871,305,2.363402576697306,13.853981553898866,11.303052431416472 +15.0,2,0,50,0,0,3,352,0,0,6,0,0,2,0,0,548,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,92,116,1.6459321623541463,0.0,0.0,169.13,4.345,9.47,11.166,115389.093,295,2.391096467784505,13.913879815429963,11.349764760247162 +16.0,2,0,0,0,0,1,204,0,27,0,0,0,13,2,0,274,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.6873564761917892,0.0,0.024,200.507,5.396,9.777,11.267,135534.871,305,2.3976115392184663,13.936878009735118,11.385212251129373 +17.0,2,0,0,3,0,26,1816,0,7,27,0,0,0,0,0,1371,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.2809999999999,,271,0,,,,0,1,0,0,1.6120043117579703,0.127,0.019,216.39,5.495,6.954,8.11,143679.42,271,2.37049821521876,13.919106236469831,11.346182256253488 +18.0,2,0,64,0,0,0,0,0,22,1,0,0,0,0,0,92,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,0,0,1.669718425748548,0.048,0.051,169.13,4.345,9.47,11.166,115389.093,280,2.385072448375588,13.991634576125596,11.413214324782055 +19.0,2,0,33,0,0,12,18,0,37,6,6,21,1,0,0,115,0,0,PORTLAND,PORTLAND,0,2.4,21.0,10.0,,271,0,,,,0,1,0,0,1.6112162900703186,0.0,0.152,190.39,4.749,6.558,7.558,126687.037,271,2.372266330489914,13.907174762986536,11.34319337553608 +20.0,2,0,6,0,0,0,219,0,5,5,10,0,4,0,0,342,0,0,PORTLAND,PORTLAND,0,2.4,10.0,12.818,,280,0,,,,0,1,0,0,1.6724770749212885,0.0,0.1,168.518,5.076,9.942,11.668,115319.101,280,2.3850969368375763,13.858958910579396,11.306566915594358 +21.0,3,0,0,0,0,0,0,0,0,5,0,0,0,0,0,13,0,0,PORTLAND,PORTLAND,0,2.4,9.75,9.045,,246,0,,,,0,1,0,0,1.166340658558528,0.0,0.0,101.829,5.469,17.432,21.122,78688.764,246,2.3581972980013006,13.699305911813832,11.248712357184752 +22.0,3,0,165,3,0,32,3574,0,8,5,0,0,2,0,2,4364,0,0,PORTLAND,PORTLAND,0,2.4,26.0,21.1649999999999,,271,0,,,,0,1,0,0,3.650661109061944,0.0,0.0,133.902,6.866,17.181,20.799,99008.573,271,2.368044162704384,13.844082523865229,11.33359267877241 +23.0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,3,,,,0,1,0,0,0.5326422455357305,0.084,0.148,125.048,6.118,24.035,29.251,98751.107,313,2.3938225295778053,13.800177378845389,11.347525112507345 +24.0,3,0,0,0,0,86,0,0,0,0,0,0,0,0,0,189,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,302,0,,,,0,1,119,126,0.7772867394426929,0.017,0.048,146.76,7.455,21.609,26.627,110967.498,302,2.396224472635326,13.811049446756384,11.35667449665611 +25.0,3,0,0,0,0,0,101,0,0,0,0,0,0,0,0,60,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.773,,285,0,,,,0,1,0,0,1.1400551553685587,0.0,0.031,134.421,6.939,19.68,24.276,101566.032,285,2.3711662216055105,13.822268624524693,11.32690899943325 +26.0,3,0,0,1,0,0,26,0,0,0,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,321,0,,,,0,1,1,1,1.3220287299372866,0.032,0.205,113.667,6.836,23.417,29.14,91396.506,321,2.388038691164468,13.769672081877424,11.314817875367371 +27.0,3,0,1,0,0,11,0,0,0,10,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,0,0,1.6717393482713658,0.0,0.0,177.678,5.947,13.839,16.355,124181.307,297,2.391656569696079,13.871045951557454,11.339068364709783 +28.0,3,0,0,0,198,3,166,0,0,0,0,11,18,0,0,515,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.773,,304,0,,,,0,1,0,0,1.6724402986393905,0.0,0.0,165.166,8.291,18.055,21.49,119459.976,304,2.393358961906286,13.887399924271769,11.350702811176674 +29.0,3,0,68,0,38,4,569,0,5,0,1,0,0,0,1,806,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,0,0,1.667603281728658,0.0,0.101,170.897,8.43,13.674,17.048,120284.629,316,2.3976540183381703,13.911691076304791,11.373540122606723 +30.0,3,0,11,0,0,32,18,0,10,0,0,0,0,0,11,48,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,2,2,1.6793523852455514,0.0,0.0,155.664,5.014,12.079,14.107,108653.565,293,2.391476310108987,13.858382517917006,11.326921680341966 +31.0,3,0,0,0,0,5,135,27,4,0,0,0,28,0,0,496,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,319,0,,,,0,1,0,0,1.5708424484498729,0.027,0.151,152.773,8.162,22.667,28.229,115840.997,319,2.3616283829649483,13.716325496916772,11.236618186312976 +32.0,3,0,27,0,0,0,1586,0,11,0,0,0,0,0,0,870,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,1.6866192139632936,0.0,0.0,158.064,6.323,15.039,17.615,112434.22,300,2.3931404076844816,13.879478691513572,11.34286091197452 +33.0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,324,3,,,,0,1,0,0,0.9350760684896252,0.0,0.138,145.171,8.809,19.981,25.41,109171.957,324,2.3565002707664697,13.67998244253195,11.20588308644874 +34.0,3,0,1,0,0,0,124,0,1,0,0,0,68,0,0,260,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,313,0,,,,0,1,0,0,1.6786298409512226,0.049,0.051,161.746,8.245,18.122,21.575,117325.92,313,2.397580176091956,13.928971300786811,11.412370693009915 +35.0,3,0,0,0,1019,0,0,0,95,0,0,0,0,0,0,1388,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,277,0,,,,0,1,0,0,1.6669725727203633,0.0,0.0,139.585,6.44,15.121,17.769,100706.584,277,2.362853839259953,13.841109727129908,11.34200113802414 +36.0,3,0,124,0,0,0,9,0,1,0,0,0,0,0,0,150,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,317,0,,,,0,1,0,0,1.5775658358927631,0.1,0.102,179.981,8.036,19.116,22.678,129702.178,317,2.39420797971465,13.901057329440103,11.389192429205432 +37.0,3,0,0,0,0,36,949,0,1,0,0,0,0,0,0,759,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.2809999999999,,260,0,,,,0,1,0,0,1.4300813615620849,0.0,0.0,127.317,4.741,13.758,15.799,91594.104,260,2.3585866849093886,13.767408057181653,11.289679168320196 +38.0,3,0,0,0,1,38,0,0,0,0,0,0,0,0,0,61,0,23,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,320,0,,,,0,1,39,39,1.228577635855726,0.049,0.129,145.842,7.585,21.643,27.159,110720.649,320,2.3883108025971325,13.85359443815286,11.35354919599995 +39.0,3,0,16,0,0,0,15,0,30,0,0,0,0,0,0,99,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.25,,297,0,,,,0,1,7,7,1.6012271136344274,0.0,0.031,134.421,6.939,19.68,24.276,101566.032,297,2.397521868398905,13.936999563210938,11.41802794452452 +40.0,3,0,12,0,5,6,337,0,0,12,0,0,2,0,12,325,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,3,3,1.185735481273081,0.056,0.12,127.459,6.244,22.255,27.384,99099.966,314,2.393933441743058,13.86613974444058,11.365420672145484 +41.0,3,0,26,0,0,0,84,0,0,0,0,0,7,0,0,178,0,0,PORTLAND,PORTLAND,0,2.4,12.0,13.182,,272,0,,,,0,1,0,0,1.606891271163332,0.083,0.094,106.19,2.171,9.6,10.831,74893.058,272,2.3730821556235218,13.75354309121516,11.238758844948068 +42.0,3,0,46,5,0,1,159,0,17,6,0,0,0,3,0,174,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,285,0,,,,0,1,26,26,1.6702659668977653,0.0,0.051,155.664,5.014,12.079,14.107,108653.565,285,2.384812883607814,13.832343572466824,11.30201504089464 +43.0,3,0,18,0,0,0,2,0,0,4,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.2809999999999,,269,0,,,,0,1,0,0,1.6125165242017716,0.048,0.11,148.194,3.565,9.475,10.97,101865.146,269,2.376456225578251,13.796363125093375,11.251783268363704 +44.0,3,0,0,3,0,0,38,0,95,3,0,0,0,0,0,147,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,277,0,,,,0,1,0,0,1.67243743223037,0.048,0.1,128.969,3.911,10.727,12.281,90400.271,277,2.38439099620663,13.81781000189769,11.29221437881952 +45.0,3,0,0,0,0,0,83,0,1,0,0,0,0,0,0,86,0,0,PORTLAND,PORTLAND,0,2.4,10.25,10.773,,259,0,,,,0,1,113,124,1.6296306290641254,0.0,0.104,129.509,3.933,10.788,12.351,90790.885,259,2.3445313096984464,13.746416426615069,11.201728748244305 +46.0,3,0,0,0,0,0,259,0,0,7,0,2,0,0,7,269,0,0,PORTLAND,PORTLAND,0,2.4,15.31,11.364,,268,0,,,,0,1,96,102,1.6529541198668205,0.0,0.052,118.296,4.248,12.586,14.511,84996.492,268,2.357983506582101,13.740032197279922,11.257013820400738 +47.0,3,0,6,1,0,0,36,0,7,0,0,0,0,3,0,56,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,32,34,1.6440680182969667,0.049,0.104,109.475,3.351,9.474,10.654,76882.9,243,2.3383078455820416,13.689395225354868,11.194153045635623 +48.0,3,0,100,0,0,0,11,0,15,0,0,0,0,0,0,267,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.6602172441801424,0.052,0.052,113.892,3.786,13.42,15.722,82952.854,249,2.3517601568558533,13.765125598287549,11.248450551549924 +49.0,3,0,116,0,0,0,12,0,23,2,14,0,0,0,0,163,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,230,0,,,,0,1,0,0,1.0123463442414415,0.09,0.108,107.344,3.496,14.031,16.402,79196.845,230,2.31430952690528,13.551913549105716,11.069410340108414 +50.0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,0.3556276246452546,0.109,0.127,97.633,3.395,14.424,16.86,73275.563,240,2.351077912470813,13.736494061802022,11.241076658079317 +51.0,3,0,13,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,9.0,7.326,,233,0,,,,0,1,0,0,1.2540853502904388,0.038,0.056,97.311,3.848,14.781,17.425,73431.056,233,2.343203594407333,13.60327045706495,11.165959997679323 +52.0,3,0,67,0,0,0,0,0,0,5,0,0,0,0,0,95,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,226,0,,,,0,1,39,41,1.29735696336274,0.109,0.127,97.633,3.395,14.424,16.86,73275.563,226,2.300842575452261,13.415001555025366,11.000558807013553 +53.0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,241,3,,,,0,1,0,0,34.69835040929281,0.045,0.195,80.298,0.913,7.944,8.733,56979.558,241,2.196468098477751,12.743378596161472,10.308535716848237 +54.0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,2.1356078845791697,0.0,0.193,133.938,3.785,6.808,7.425,90472.33,251,2.3417377532421155,13.603037803224186,11.051646256230123 +55.0,4,0,0,0,0,0,1,0,0,4,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.682,,261,0,,,,0,1,0,0,1.704578384257708,0.083,0.094,106.19,2.171,9.6,10.831,74893.058,261,2.3651226660944946,13.727045466581115,11.182204962200156 +56.0,4,0,0,0,0,0,91,306,0,0,0,0,2,0,0,391,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,256,0,,,,0,1,9,9,1.607878715073459,0.03,0.0,95.976,2.59,8.225,9.262,67352.454,256,2.3442050774237604,13.63727488055316,11.074433613850212 +57.0,4,0,9,126,995,37,84,82,0,0,0,2,0,0,0,750,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,0,0,1.5494571731129716,0.03,0.0,95.976,2.59,8.225,9.262,67352.454,261,2.366293127958889,13.740293142997034,11.196364865753171 +58.0,4,0,57,0,0,0,36,0,37,2,0,0,0,0,0,98,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,246,0,,,,0,1,6,6,1.5913459504670426,0.0,0.047,105.371,2.732,8.029,9.044,73225.926,246,2.3147612491090306,13.561537487547804,11.003849475091398 +59.0,4,0,26,0,0,0,26,0,0,0,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,254,0,,,,0,1,0,0,1.5494618764877872,0.0,0.03,104.552,2.722,8.077,9.074,72720.922,254,2.334452539758922,13.654562802010284,11.106874026286242 +60.0,4,0,37,0,0,6,7,0,0,0,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.176,,237,0,,,,0,1,9,9,1.561606728062414,0.049,0.096,91.493,1.874,8.792,9.91,64898.417,237,2.289501614020868,13.355917179470296,10.867085361996228 +61.0,4,0,80,0,304,0,76,0,36,17,0,0,0,0,0,559,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,241,0,,,,0,1,0,0,1.5673886283521714,0.097,0.138,105.852,2.732,10.177,11.461,75080.191,241,2.304864958260036,13.52570934139765,11.019037213060566 +62.0,4,0,0,0,113,0,0,0,0,0,0,0,0,0,0,149,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,222,3,,,,0,1,0,0,1.946609515069344,0.073,0.156,81.875,1.21,11.428,12.861,60630.998,222,2.260753043826562,13.232436902808375,10.77041427684862 +63.0,4,0,9,0,0,0,1,0,0,5,0,0,0,1,0,21,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,229,0,,,,0,1,22,22,1.494185619695788,0.073,0.156,81.875,1.21,11.428,12.861,60630.998,229,2.281467329960059,13.378985267389744,10.89657096732998 +64.0,4,0,0,0,0,263,0,0,0,3,0,0,0,0,0,281,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,216,0,,,,0,1,36,36,1.3053326591445602,0.01,0.0,94.825,1.343,14.503,16.585,71302.827,216,2.26350450258362,13.182333532202971,10.773319924587884 +65.0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,217,0,,,,0,1,22,22,1.286830301654319,0.01,0.0,94.825,1.343,14.503,16.585,71302.827,217,2.282981503354337,13.29971738335014,10.894858495467004 +66.0,5,0,0,0,0,0,4,0,40,0,0,0,0,1,0,48,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,279,0,,,,0,1,1,1,1.604382897687055,0.0,0.262,124.198,7.9,27.058,34.629,101649.299,279,1.791858448661909,10.553702154607205,8.610794873804366 +67.0,5,0,0,0,0,0,10,0,7,0,0,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,11.75,12.6,,293,0,,,,0,1,56,66,1.6453625802103908,0.0,0.262,124.198,7.9,27.058,34.629,101649.299,293,1.8884459526056905,11.066522744265294,9.094683489315525 +68.0,5,0,0,0,0,39,0,0,1,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,303,0,,,,0,1,0,0,1.7094608487349583,0.048,0.332,96.866,6.611,28.955,38.065,86355.88,303,2.006132752410897,11.754467938278024,9.659839483345838 +69.0,5,0,4,0,0,41,201,0,131,0,0,0,1,19,0,215,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.0,,309,0,,,,0,1,0,0,1.7236210700999297,0.097,0.194,107.665,7.188,22.243,28.7,87273.736,309,2.0317850381474334,11.83345561232033,9.734676427686733 +70.0,5,0,0,0,0,1,0,0,20,0,0,0,0,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,14.0,10.455,,308,0,,,,0,1,0,0,1.7388212687617306,0.0,0.242,103.86,8.153,25.244,32.797,87460.348,308,2.1482585089050974,12.494409099584734,10.27725117835133 +71.0,5,0,37,0,0,5,0,0,0,1,0,0,0,0,0,71,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,117,141,1.7129049524295037,0.0,0.292,97.295,7.605,25.291,33.023,83403.83,311,2.1569760138962377,12.545467408394758,10.322510939268774 +72.0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,0.8730649113923232,0.035,0.347,87.474,6.209,21.682,29.434,74821.197,306,2.11911484650513,12.251857506962413,10.082096992513431 +73.0,5,0,67,0,0,0,29,0,5,16,0,0,32,0,0,178,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,304,0,,,,0,1,7,8,1.5474925860330946,0.0,0.312,86.212,7.215,22.006,29.469,74035.646,304,2.154574159626557,12.34519206271333,10.165683038122491 +74.0,5,0,137,0,0,2,403,0,7,4,0,0,0,0,0,603,0,0,PORTLAND,PORTLAND,0,2.4,12.0,12.5,,310,0,,,,0,1,274,341,1.684945568356964,0.051,0.311,97.878,6.515,26.553,35.14,85131.612,310,2.175356692176912,12.491522353520866,10.28975401737971 +75.0,5,0,63,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,0,0,0.4163023335276991,0.0,0.319,95.703,6.068,24.817,32.566,82091.629,308,2.273252094370992,13.056062290804666,10.752308859970036 +76.0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,266,0,,,,0,1,18,18,3.086860877328012,0.098,0.433,28.573,0.982,31.638,43.604,46193.144,266,1.737659762910336,10.136763206411649,8.323123124494229 +77.0,5,0,12,0,0,186,38,0,0,0,0,0,0,0,0,161,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,263,0,,,,0,1,143,154,3.2419598423779163,0.0,0.335,45.223,1.166,25.611,35.41,51604.986,263,1.7586799318324724,10.339220697861103,8.448876078399548 +78.0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.162876608335356,0.0,0.242,103.86,8.153,25.244,32.797,87460.348,306,2.10411190066128,12.210870754336336,10.043367795711958 +79.0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,2,30,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,133,160,1.5390963751755764,0.035,0.347,87.474,6.209,21.682,29.434,74821.197,308,2.1338776763915246,12.324768058050164,10.13795855321814 +80.0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,288,0,,,,0,1,0,0,1.011005406562363,0.135,0.317,83.338,8.041,24.112,31.377,73417.55,288,1.8533899173801047,10.789553909959734,8.872637754706936 +81.0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,0.9908696847169876,0.135,0.317,83.338,8.041,24.112,31.377,73417.55,300,1.9688238122972903,11.475841194578283,9.43904026093976 +82.0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,303,0,,,,0,1,0,0,1.021717564604396,0.097,0.194,107.665,7.188,22.243,28.7,87273.736,303,1.9974447119886884,11.60732869408842,9.546258321503402 +83.0,6,0,4,0,0,0,44,0,0,0,0,0,0,0,0,76,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,93,93,1.0996451418744164,0.026,0.286,97.772,6.139,25.179,33.274,83869.519,311,2.314896243465225,13.323545004813097,10.95787137841105 +84.0,6,0,49,0,0,0,19,0,4,22,0,0,0,0,0,118,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,10,10,1.7156532189277267,0.0,0.234,118.321,7.965,22.481,28.933,94242.602,316,2.3429261058710464,13.485945641670527,11.083861876199178 +85.0,6,0,49,0,0,2,13,0,13,0,0,2,0,0,0,86,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,0,0,0.715088302194791,0.0,0.236,104.979,6.07,25.275,32.164,87771.683,314,2.381683598686846,13.732632464960249,11.28257276662782 +86.0,6,0,36,21,80,6,132,0,28,16,48,0,0,4,0,434,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,319,0,,,,0,1,0,0,1.5629639073673838,0.039,0.0,166.291,8.231,20.068,26.024,123081.768,319,2.129722367958191,12.498928340060386,10.20082123613177 +87.0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,12,12,1.6545935532394729,0.024,0.063,156.299,9.479,19.866,25.475,116335.36,309,2.079895321447,12.279404453626718,10.019818541002628 +88.0,6,0,30,0,0,92,10,0,1,0,0,0,0,0,0,145,0,0,PORTLAND,PORTLAND,0,2.4,12.5,12.25,,309,0,,,,0,1,0,0,1.677437686140967,0.098,0.192,107.665,7.188,22.243,28.7,87273.736,309,2.053480302959544,12.073510541501529,9.883688587980972 +89.0,6,0,0,0,1,0,14,0,0,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,321,0,,,,0,1,0,0,1.5992760164294604,0.01,0.0,142.044,8.448,20.353,26.366,107782.625,321,2.2194994050370336,13.081282985811884,10.680964327935031 +90.0,6,0,84,0,0,34,46,0,2,22,0,0,0,0,0,238,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,0,,,,0,1,47,47,1.6804430915809303,0.024,0.063,156.299,9.479,19.866,25.475,116335.36,313,2.187187366357886,12.857237281541536,10.527632344873624 +91.0,6,0,0,0,0,29,59,0,0,0,0,9,0,0,0,64,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,0,0,1.6844542344159832,0.049,0.143,129.241,8.518,25.479,33.329,104045.341,309,2.063150030771789,12.108646636211043,9.914927958994593 +92.0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,327,0,,,,0,1,0,0,1.5928270886837017,0.01,0.0,142.044,8.448,20.353,26.366,107782.625,327,2.3145389232404825,13.585047072477549,11.099236450089869 +93.0,6,0,237,1,0,3,2,0,2,11,0,0,1,0,0,245,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,318,0,,,,0,1,2,2,1.670256259968136,0.0,0.164,132.29,8.559,25.568,33.539,106130.605,318,2.21368808907156,12.96419865076748,10.62694930182558 +94.0,6,0,263,0,0,29,61,0,53,0,0,0,1,0,0,470,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,314,0,,,,0,1,0,0,1.671729185120347,0.0,0.29,97.326,7.572,25.187,32.886,83335.913,314,2.170856100784266,12.726961646537816,10.431841159313672 +95.0,6,0,332,0,0,0,89,0,0,0,0,0,0,0,0,525,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,326,0,,,,0,1,0,0,1.5641402358415044,0.0,0.14,144.9,8.864,20.106,25.57,109101.058,326,2.317679475731632,13.461069292912583,11.026111280911527 +96.0,6,0,39,9,0,172,42,0,0,0,0,0,0,0,0,314,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.182,,317,0,,,,0,1,0,0,1.6728477172187777,0.0,0.188,137.338,8.483,21.747,28.206,105948.29,317,2.301447011958225,13.340074644455642,10.925311525610288 +97.0,6,0,13,137,0,0,176,0,1,0,0,1,0,0,0,327,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.955,,313,0,,,,0,1,26,26,1.6711223807379183,0.0,0.241,131.182,8.398,22.96,30.209,103289.728,313,2.187480054149249,12.706632005094752,10.460402877012983 +98.0,6,0,1,0,0,0,459,0,0,8,5,0,0,0,0,591,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,328,0,,,,0,1,0,0,1.597578647153853,0.0,0.23,123.52,7.874,22.256,28.634,97379.012,328,2.3386744246017,13.575214872475229,11.118998576389446 +99.0,6,0,5,0,0,0,42,0,0,26,0,0,0,8,0,98,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,318,0,,,,0,1,0,0,1.6346702389462562,0.0,0.236,133.345,8.559,23.319,30.685,104978.875,318,2.316039929092171,13.435432597264866,11.008102584724927 +100.0,6,0,99,0,0,0,41,0,1,5,0,0,1,0,0,133,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,311,0,,,,0,1,26,26,1.66881824031794,0.051,0.311,97.878,6.515,26.553,35.14,85131.612,311,2.288273028799024,13.199161789646263,10.853981209183605 +101.0,6,0,0,0,0,0,20,0,0,0,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,11.0,11.1359999999999,,321,0,,,,0,1,0,0,1.670818161626772,0.0,0.181,149.854,8.442,21.81,27.61,113577.142,321,2.349415312818452,13.623863090600944,11.163931498115923 +102.0,6,0,66,0,0,0,0,0,12,4,0,0,0,0,0,91,0,0,PORTLAND,PORTLAND,0,2.4,11.795,10.0,,313,0,,,,0,1,9,9,1.5981282020729262,0.0,0.137,169.984,6.084,20.874,26.726,125894.27,313,2.1008647260031847,12.345729199897985,10.07013529750915 +103.0,6,0,10,0,0,46,101,0,2,5,17,0,1,1,0,166,0,0,PORTLAND,PORTLAND,0,2.4,11.0,10.0,,300,0,,,,0,1,0,0,1.692732612134282,0.0,0.189,135.402,5.062,25.708,33.076,107825.96,300,2.052530826700738,12.123309618689005,9.887064350526336 +104.0,6,0,0,0,0,0,50,0,31,0,0,0,0,150,0,324,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,78,78,1.6794597155162525,0.0,0.241,128.075,7.557,26.74,34.131,103811.769,300,2.023319704527088,11.942463735527312,9.762028701521023 +105.0,7,0,63,0,36,14,1183,0,9,11,209,0,8,24,0,1095,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.379,,311,0,,,,0,1,0,0,1.6716876523242366,0.024,0.011,227.537,6.617,11.501,13.926,154536.479,311,2.3359946765026,13.722383456401351,11.19692452166317 +106.0,7,0,7,485,591,0,1140,0,9,32,0,0,11,0,0,2709,0,0,PORTLAND,PORTLAND,0,2.4,14.0,13.955,,318,0,,,,0,1,0,0,1.5793027962664852,0.078,0.136,172.017,6.565,19.414,24.398,125705.774,318,2.3199471808788235,13.628882856944529,11.121687307518105 +107.0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,326,3,,,,0,1,0,0,0.8914068877352082,0.049,0.137,169.984,6.084,20.874,26.726,125894.27,326,2.211855311077085,12.991264908304329,10.602443720200284 +108.0,7,0,33,0,9,0,56,0,0,0,0,0,0,0,0,80,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,3,,,,0,1,0,0,1.6860095935479105,0.024,0.011,227.537,6.617,11.501,13.926,154536.479,315,2.342639371243245,13.754541686570036,11.221471818344147 +109.0,7,0,0,0,0,0,3,0,0,157,0,0,0,0,0,308,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,325,0,,,,0,1,0,0,1.5832840494152156,0.05,0.087,183.593,6.705,16.471,21.057,130976.032,325,2.32411402780425,13.6392472427026,11.136236604256943 +110.0,7,0,0,0,0,0,476,0,0,4,0,5,0,0,0,268,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,329,0,,,,0,1,168,215,0.8828961818100157,0.049,0.01,168.79,8.126,19.706,25.469,124325.257,329,2.3165470484755786,13.592181317163975,11.098007431539193 +111.0,7,0,2,2,0,3,440,0,33,33,0,0,0,12,7,547,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,318,0,,,,0,1,0,0,1.651704007801476,0.0,0.021,189.983,7.225,16.835,21.335,135243.666,318,2.347983669783522,13.757157536390626,11.22614129943482 +112.0,7,0,68,0,0,0,32,0,5,0,0,0,17,0,0,157,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,323,0,,,,0,1,25,30,1.5814956219532377,0.0,0.069,150.013,8.589,19.401,24.39,111618.264,323,2.3374936813629303,13.674507548599156,11.159242357033936 +113.0,7,0,1,0,0,0,3,0,0,13,0,0,0,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,325,0,,,,0,1,82,105,0.89650357146241,0.0,0.041,156.517,8.567,19.548,25.024,116185.9,325,2.319474642567501,13.61797006032865,11.125972762140776 +114.0,7,0,122,0,0,0,187,0,0,14,0,0,0,39,0,414,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.545,,315,0,,,,0,1,0,0,1.645333734336592,0.0,0.053,182.62,5.859,19.031,23.244,131752.737,315,2.3650706353672644,13.74086562405228,11.226358989062971 +115.0,7,0,2,0,0,0,212,0,12,58,0,17,0,0,0,254,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,329,0,,,,0,1,0,0,1.583049387948184,0.0,0.103,169.84,8.478,13.87,17.37,119814.46,329,2.3477297744249666,13.620597719705032,11.134722657303554 +116.0,7,0,165,0,0,0,30,0,4,10,0,0,0,0,0,95,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,327,0,,,,0,1,0,0,0.9253683943916644,0.0,0.09,157.576,8.509,17.841,22.247,115086.913,327,2.3425695086854383,13.609275819609824,11.148283461765562 +117.0,7,0,366,0,0,0,9,0,0,0,0,0,0,0,0,185,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.670504942506095,0.0,0.052,171.857,4.655,14.022,18.491,121823.0,305,2.245352356651208,13.191340695108144,10.760253175043388 +118.0,7,0,0,0,0,0,78,0,0,10,0,0,0,0,0,129,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,312,0,,,,0,1,183,237,1.5875659658798251,0.0,0.102,192.334,5.874,17.096,22.588,137550.421,312,2.214902202903833,13.01562733178994,10.616354709409364 +119.0,7,0,36,0,0,0,0,0,16,0,0,0,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,321,0,,,,0,1,0,0,0.8709465374150231,0.0,0.13,172.65,5.909,21.684,27.64,128185.681,321,2.1276160646563422,12.506035088845929,10.20220298438694 +120.0,8,0,4,171,863,0,0,0,0,0,0,0,0,0,0,1010,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,3,,,,0,1,0,0,2.210298984196536,0.041,0.325,121.556,1.304,2.818,3.795,80224.58,227,2.330621116728463,13.723365714590248,11.060825495507435 +121.0,8,0,6,0,26,0,0,0,0,0,0,0,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.4,16.0,11.955,,239,0,,,,0,1,0,0,1.5694319386879063,0.0,0.154,195.664,3.22,10.86,15.766,135315.177,239,2.366049695816753,14.103972870669946,11.380980337338723 +122.0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,237,0,,,,0,1,0,0,1.7951610750219291,0.0,0.234,147.813,2.233,6.226,8.723,100182.691,237,2.3310262654756,13.761217719224476,11.099709711629012 +123.0,8,0,10,0,6,0,366,0,105,0,0,0,0,0,0,354,0,0,PORTLAND,PORTLAND,0,2.4,25.0,11.818,,247,0,,,,0,1,0,0,1.5328716048983553,0.028,0.28,121.997,0.995,5.647,8.06,83236.391,247,2.3644160387532374,14.088324239788925,11.391333062210167 +124.0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.738420655813893,0.127,0.259,105.978,1.801,2.679,3.556,70102.008,240,2.3307516324279045,13.634675852298304,11.023865290984954 +125.0,8,0,8,18,281,12,722,0,24,0,0,1,1,0,10,1057,0,0,PORTLAND,PORTLAND,0,2.4,19.0,15.467,,254,0,,,,0,1,2,2,1.5366625848895676,0.0,0.155,185.421,4.89,9.662,12.201,126478.351,254,2.3623622940713487,13.939047095505,11.306925642618326 +126.0,8,0,0,0,0,0,0,0,6,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.1359999999999,,250,0,,,,0,1,0,0,1.6632248414140756,0.05,0.184,174.256,4.766,6.201,8.354,116870.206,250,2.330361288772202,13.640070542173309,11.028738121765844 +127.0,8,0,8,2,47,132,1767,0,34,0,0,0,16,81,3,1944,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,0,0,1.5632104372843776,0.098,0.137,213.89,5.801,4.618,5.62,140486.364,262,2.36309166707163,13.922130492508815,11.300652520968455 +128.0,8,0,25,14,0,231,248,0,1,0,0,0,0,0,0,296,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,244,0,,,,0,1,3,3,1.689582569742657,0.18,0.187,172.305,5.346,2.954,3.511,112522.483,244,2.3257785068964845,13.618452056654442,11.01944791390701 +129.0,8,0,50,0,0,1,166,0,10,0,0,8,0,3,0,159,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,1,1,1.5525437328056253,0.125,0.0,150.114,4.873,5.272,6.151,100009.489,259,2.3662303081877205,13.933283689019278,11.319449928083518 +130.0,8,0,39,0,0,0,51,0,3,0,8,0,0,0,0,88,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,1.6583492204224133,0.157,0.032,178.861,5.017,5.151,5.993,118306.574,251,2.3444751175321774,13.848013101326078,11.230544432151673 +131.0,8,0,6,0,0,0,14,0,0,0,0,0,0,92,0,222,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.55,,259,0,,,,0,1,0,0,1.553819463452673,0.125,0.0,150.114,4.873,5.272,6.151,100009.489,259,2.359586516271619,13.905997160940617,11.291599121580816 +132.0,8,0,2,0,0,0,2,0,0,0,34,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,233,3,,,,0,1,25,25,39.3041333461275,0.246,0.207,130.019,3.842,3.112,3.698,85578.847,233,2.272778148667544,13.301190180857756,10.744471111306789 +133.0,8,0,0,0,0,0,619,0,2,0,0,0,0,0,0,424,0,0,PORTLAND,PORTLAND,0,2.4,25.0,10.227,,263,0,,,,0,1,0,0,1.5242915652443612,0.049,0.043,190.39,4.749,6.558,7.558,126687.037,263,2.362203926652824,13.917929104314233,11.305141094776772 +134.0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,2.7880121279136434,0.26,0.223,87.125,3.247,1.119,1.176,56513.159,259,2.343686378171865,13.823301696275731,11.210407209593322 +135.0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,15.0,11.5909999999999,,263,0,,,,0,1,0,0,1.4118006245306958,0.0,0.15,144.857,3.545,6.84,7.612,97580.212,263,2.35974609459184,13.87172696994117,11.288042162035383 +136.0,9,0,0,0,0,0,27,0,0,0,176,0,0,0,0,255,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,284,0,,,,0,1,0,0,3.284074829132222,0.096,0.282,140.871,5.225,28.814,36.131,113281.416,284,1.981887875609944,11.666179133532616,9.508496894881857 +137.0,9,0,17,0,0,103,105,0,0,4,0,0,0,0,0,135,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,352,440,3.334793938458561,0.0,0.332,70.793,1.303,32.208,42.774,72682.512,274,1.9597161374749903,11.529984349192045,9.388218417116146 +138.0,9,0,8,7,0,10,70,0,0,0,0,0,0,48,0,111,136,118,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,0,,,,0,1,537,698,3.340609601024741,0.0,0.332,70.793,1.303,32.208,42.774,72682.512,269,1.8145138306431507,10.713541198930798,8.724364618833773 +139.0,9,0,11,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.617,,301,0,,,,0,1,40,43,1.6228551852691002,0.0,0.186,139.16,5.044,25.261,32.525,109878.093,301,1.991263380467509,11.708311574869994,9.546809484598606 +140.0,9,0,0,0,0,13,64,0,20,0,0,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.4,11.0,12.617,,286,0,,,,0,1,81,92,1.6595806329335807,0.0,0.341,110.452,4.57,28.031,36.511,94056.124,286,1.9565761176227423,11.583532121871498,9.444994522000592 +141.0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,9.25,12.0749999999999,,288,0,,,,0,1,14,15,1.6604339060726825,0.048,0.289,104.753,6.267,28.402,36.954,90692.555,288,1.92006899229477,11.380677444238504,9.281178868688755 +142.0,10,0,0,0,0,0,5,0,30,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,41,48,1.6658515200157962,0.0,0.0,221.726,5.841,17.12,23.523,156958.885,274,2.0961296303596098,12.387475403856,10.06892871662524 +143.0,10,0,49,0,0,0,8,0,12,0,90,0,0,0,0,82,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,283,0,,,,0,1,64,81,1.5798648213566877,0.0,0.152,147.949,3.836,21.036,27.44,112248.99,283,2.024137669004084,11.902786674070352,9.694602885425768 +144.0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,287,3,,,,0,1,0,0,0.8222435424614051,0.0,0.179,111.29,2.866,23.463,30.429,90700.046,287,1.9732017418128829,11.620441942133642,9.45566500724047 +145.0,10,0,0,0,79,0,21,0,8,0,1,0,0,6,0,62,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,288,0,,,,0,1,0,0,1.672790486419902,0.0,0.053,187.79,5.079,21.723,28.602,138491.021,288,2.12677354895821,12.511498426878871,10.175733020381514 +146.0,10,0,61,0,142,0,5,0,0,0,7,0,0,0,0,289,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,0,,,,0,1,10,10,1.5935505177889235,0.05,0.103,174.86,4.599,19.637,25.795,128419.675,292,2.045725446697253,12.021352638204856,9.7959517142566 +147.0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,294,3,,,,0,1,0,0,0.835633790661201,0.096,0.282,140.871,5.225,28.814,36.131,113281.416,294,2.015545058696268,11.873087495271957,9.6726977065591 +148.0,10,0,0,0,2,1,263,0,2,1,9,209,0,0,0,614,0,0,PORTLAND,PORTLAND,0,2.4,14.641,11.364,,294,0,,,,0,1,1,1,1.681316368037287,0.0,0.102,174.408,4.628,20.632,27.263,129069.538,294,2.2399411038519084,13.157789638332442,10.727527354934486 +149.0,10,0,56,0,0,0,0,0,0,2,0,0,0,0,0,52,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,0,0,1.5924103266506129,0.049,0.151,172.434,5.514,21.856,27.71,128092.084,300,2.0970292761709883,12.325495279638549,10.0509865626968 +150.0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,307,3,,,,0,1,0,0,0.8343126524947133,0.048,0.234,147.735,6.512,27.686,34.801,116823.093,307,2.025201399553628,11.892205704104034,9.699273002500592 +151.0,11,0,0,0,231,0,27,0,0,0,0,4,0,0,0,247,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,0,0,1.6576254631637035,0.0,0.0,193.94,4.654,25.375,35.478,146827.969,262,2.146513925604681,12.706169241636422,10.323075690828626 +152.0,11,0,9,0,0,0,1426,0,0,0,1,0,18,0,0,722,0,0,PORTLAND,PORTLAND,0,2.4,24.0,11.818,,267,0,,,,0,1,0,0,1.6524249709158023,0.0,0.0,221.726,5.841,17.12,23.523,156958.885,267,2.1233760347808666,12.55868644279118,10.205912830873846 +153.0,11,0,0,0,1209,24,5,0,1,0,0,0,0,36,0,1099,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,264,0,,,,0,1,0,0,1.6708709358279408,0.023,0.074,180.934,4.871,11.936,15.856,125946.083,264,2.340504491352299,13.758005595183082,11.183106730697414 +154.0,11,0,0,0,0,0,160,0,5,0,0,0,0,2,0,260,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,279,0,,,,0,1,0,0,1.679072996139129,0.0,0.025,220.857,6.01,13.901,19.542,153855.073,279,2.2391335351184365,13.155249288399814,10.69641307669874 +155.0,11,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,275,0,,,,0,1,0,0,1.6664205070105678,0.0,0.0,218.255,5.316,15.955,21.748,153602.078,275,2.342285044581537,13.757019632607427,11.187690834209423 +156.0,11,0,50,1,90,6,763,0,27,1,0,0,5,2,2,792,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,286,0,,,,0,1,0,0,1.667903012646084,0.0,0.025,213.341,5.766,15.783,21.163,150082.907,286,2.254810295549128,13.2466242271656,10.775682516353443 +157.0,11,0,0,7,2137,0,3,0,5,0,0,0,0,0,1,934,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.6726142716336034,0.0,0.102,156.408,4.131,12.221,17.468,111280.64,249,2.391740154294565,14.195611173245316,11.5130362148241 +158.0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,3,,,,0,1,0,0,1.7426317032958611,0.0,0.051,169.887,4.432,16.739,23.242,123602.928,251,2.357680332598028,13.99140925431908,11.348944297650354 +159.0,11,0,20,4,505,0,0,0,0,0,0,0,0,0,0,664,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,252,0,,,,0,1,0,0,1.548312582403614,0.0,0.151,192.656,3.34,10.576,15.371,133137.215,252,2.375337495504408,14.050626034765516,11.398839106857103 +160.0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,268,3,,,,0,1,0,0,1.7299828258852998,0.0,0.051,185.323,4.829,12.455,16.658,129267.743,268,2.356445242643764,13.850791981685306,11.2576305160799 +161.0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,257,3,,,,0,1,0,0,1.6569890732914174,0.023,0.074,180.934,4.871,11.936,15.856,125946.083,257,2.354572135752544,13.91208992815745,11.30669731297632 +162.0,11,0,0,1,255,0,15,0,0,0,0,0,0,0,0,623,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,1.6239156979379126,0.0,0.103,180.253,4.9,11.956,15.883,125527.318,259,2.373527194390265,13.983653547848364,11.344922004659583 +163.0,12,0,0,0,0,0,9,0,0,131,0,0,0,0,0,172,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,0,,,,0,1,134,183,1.6681094378051913,0.0,0.232,108.933,2.646,23.545,30.961,89532.139,255,1.8928953050367308,11.103346907160873,9.012033528175632 +164.0,12,0,0,0,0,31,1,0,0,0,0,0,0,0,0,21,10,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,132,179,1.6290648981420428,0.0,0.18,110.289,2.792,24.636,32.488,91377.586,261,1.9527100239597963,11.51279919365097,9.36226133906129 +165.0,12,0,5,0,0,1,3,0,1,2,0,0,3,0,0,26,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,241,0,,,,0,1,168,245,1.625728255469146,0.0,0.18,120.792,2.901,28.44,36.447,100632.981,241,1.8863205342916365,11.16043301824014,9.046397967708591 +166.0,12,0,0,0,0,4,5,0,0,0,0,0,0,0,3,23,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,232,0,,,,0,1,129,185,1.6575914360530517,0.0,0.232,89.999,1.477,31.031,40.24,83353.014,232,1.8137278097308336,10.702559166666331,8.685018685489776 +167.0,12,0,3,0,0,1,0,0,4,0,0,0,0,2,0,8,0,0,PORTLAND,PORTLAND,0,2.4,11.75,10.682,,250,0,,,,0,1,121,162,1.6454443027820127,0.0,0.23,109.224,2.653,23.607,31.043,89770.828,250,1.9244092490001168,11.356189382352484,9.21792340590899 +168.0,12,0,0,0,0,1,2,0,0,0,8,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,12.5,10.227,,239,0,,,,0,1,83,110,1.6741936695923785,0.0,0.307,45.087,1.02,26.71,35.018,51266.863,239,1.862908793733639,10.985163938879449,8.941438852265417 +169.0,13,0,0,0,0,0,1,0,0,5,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,75,86,1.6691068766827404,0.0,0.285,98.232,2.534,28.64,38.85,87732.553,253,1.759533098759523,10.359339935865236,8.433593158314554 +170.0,13,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,233,0,,,,0,1,288,334,1.664580647044706,0.052,0.284,45.626,0.973,26.674,35.505,51923.819,233,1.65980920110474,9.881264530894338,8.011679737109734 +171.0,13,0,0,0,0,0,25,0,0,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.227,,235,0,,,,0,1,283,332,1.6646419723996575,0.024,0.309,77.302,2.634,31.311,41.58,76084.665,235,1.7015916791861856,10.024168526867346,8.14873078242657 +172.0,14,0,0,0,38,0,0,0,0,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,247,0,,,,0,1,0,0,1.6746437060176609,0.0,0.052,170.195,2.085,24.945,35.487,131636.939,247,1.973396862490568,11.699489978168838,9.437924832057677 +173.0,14,0,0,0,132,0,31,0,2,0,0,0,1,392,0,756,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,0,0,1.6730766727762427,0.0,0.014,162.494,1.229,18.497,28.001,121917.258,253,1.999836078082684,11.867553395479383,9.562245949548032 +174.0,14,0,2,0,0,0,41,0,10,4,0,0,0,10,0,131,0,0,PORTLAND,PORTLAND,0,2.4,13.25,10.682,,271,0,,,,0,1,305,495,1.60240393758065,0.0,0.102,156.841,3.784,23.292,30.74,120051.917,271,1.993432069389613,11.797484340110016,9.579975718587264 +175.0,14,0,0,0,0,0,151,0,1,0,0,0,0,0,0,170,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,267,0,,,,0,1,0,0,1.6739794645260366,0.0,0.052,177.183,4.026,25.261,33.133,134602.003,267,2.056612534161254,12.17235769511536,9.88289675537508 +176.0,14,0,0,0,0,0,6,0,1,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,196,2.4,20.0,16.2809999999999,,251,0,,,,0,1,117,182,1.6960138061442938,0.0,0.0,160.024,1.207,17.831,26.992,119690.095,251,1.864681613337104,11.046022117004345,8.922720429513623 +177.0,14,0,9,0,0,3,56,0,0,0,0,0,0,0,0,136,0,0,PORTLAND,PORTLAND,0,2.4,12.9499999999999,10.542,,259,0,,,,0,1,0,0,1.673560068383579,0.0,0.0,188.235,4.411,23.39,32.472,141252.203,259,2.0898793665263904,12.379953606756354,10.044212420537594 +178.0,14,0,5,1,0,0,2139,61,0,2,0,0,84,0,0,1153,0,0,PORTLAND,PORTLAND,0,2.4,20.0,16.2809999999999,,256,0,,,,0,1,1,1,1.661970657283097,0.0,0.0,189.28,3.326,22.265,31.477,141284.673,256,2.1227842783763804,12.573212706089988,10.196676219407816 +179.0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,247,3,,,,0,1,0,0,0.8115878042538652,0.0,0.13,136.134,3.007,29.552,40.025,112741.627,247,1.8952796558391456,11.208312011718911,9.093557132103902 +180.0,14,0,0,0,0,2,5,0,0,0,0,0,0,0,1,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,112,170,1.5676870630090671,0.0,0.102,127.227,2.921,28.084,37.846,105646.812,253,1.8965439619722249,11.235165423858463,9.06857492554816 +181.0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,3,,,,0,1,9,9,0.8433578317200403,0.048,0.178,120.792,2.901,28.44,36.447,100632.981,262,1.9317471584102364,11.392167974769157,9.245897008645668 +182.0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,3,,,,0,1,0,0,0.8332883490291512,0.0,0.131,149.813,3.075,24.888,32.155,116459.261,274,1.973404175027457,11.63649750285658,9.46251765768156 +183.0,14,0,0,0,243,35,266,0,0,0,14,0,0,0,0,262,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,0,,,,0,1,0,0,1.6747949224009044,0.0,0.0,181.723,4.202,24.453,33.936,138021.928,255,2.04536233610504,12.121381089686023,9.802480765981471 +184.0,14,0,44,0,0,0,8,0,0,0,5,0,0,0,0,67,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,259,0,,,,0,1,0,0,1.6694404458544536,0.0,0.0,198.365,4.761,25.954,36.288,150177.558,259,2.04330601573338,12.077762258071212,9.770592546008602 +185.0,14,0,0,0,0,51,1,0,0,0,9,0,0,0,0,64,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,259,0,,,,0,1,87,125,1.662830966180963,0.0,0.0,198.365,4.761,25.954,36.288,150177.558,259,2.022153293207975,11.926899493875242,9.664066165331665 +186.0,14,0,29,0,0,34,185,0,10,0,0,0,0,0,0,242,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,262,0,,,,0,1,28,44,1.5943148357621986,0.049,0.151,145.671,3.045,25.455,32.89,114278.984,262,1.953038091864756,11.51066433018737,9.334517550551192 +187.0,15,0,288,130,0,18,386,0,7,0,0,0,0,0,0,1275,0,0,PORTLAND,PORTLAND,0,2.4,11.448,9.319,,163,3,,,,0,1,331,452,75.66006465862058,0.155,0.508,30.295,0.332,3.106,4.186,22067.947,163,1.8293154357533927,10.764347273231586,8.647571192069206 +188.0,15,0,21,0,0,1,11,0,1,0,0,0,0,0,4,27,0,0,PORTLAND,PORTLAND,0,2.4,13.0,8.182,,180,0,,,,0,1,118,154,3.7095640800324974,0.144,0.513,14.984,0.0,3.382,4.558,12506.89,180,1.7435451846953451,10.24594673339545,8.16074152115641 +189.0,15,0,0,0,0,15,69,0,1,0,0,0,0,0,0,138,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,3,,,,0,1,139,191,13.43172816978096,0.091,0.393,32.951,0.306,4.676,6.648,25343.425,197,1.819712439975232,10.716710535058112,8.575072788259948 +190.0,15,0,31,0,0,1,43,0,4,0,0,0,0,136,0,274,286,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,170,0,,,,0,1,114,149,20.12746735533598,999999.0,999999.0,9.145,0.0,9.733,12.711,13988.319,170,1.6963750280547758,10.037693843670253,8.021143288267883 +191.0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,171,0,,,,0,1,31,45,2.6666668522486834,0.16,0.311,24.534,0.33,15.482,26.322,32547.754,171,1.5590360547793944,9.207019391593516,7.39579350183164 +192.0,16,0,46,0,0,1,0,0,0,9,0,0,0,0,0,109,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,184,0,,,,0,1,220,226,1.676574855631108,0.0,0.012,96.806,0.616,20.564,31.8,82308.173,184,1.6141670193455748,9.599941440265107,7.665834565855446 +193.0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,168,3,,,,0,1,0,0,0.9330048948613664,0.102,0.141,82.004,0.647,21.989,34.268,74414.085,168,1.5874174742769234,9.333402455070466,7.56536808913737 +194.0,16,0,73,0,0,0,3,0,0,0,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,0,,,,0,1,0,0,1.6731481984549197,0.051,0.1,98.294,0.64,20.537,31.932,83345.052,197,1.6779790730661526,9.965253934748668,7.989567302506829 +195.0,16,0,0,0,0,6,0,0,0,0,0,0,0,5,0,7,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,180,3,,,,0,1,0,0,4.78031264150662,0.149,0.188,72.869,0.538,27.042,39.271,71769.129,180,1.682643826910893,9.945617888494048,8.024433269798214 +196.0,16,0,0,0,0,0,13,0,0,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,208,0,,,,0,1,0,0,1.656486802054587,0.051,0.051,96.059,0.59,21.055,32.33,82168.721,208,1.7385884549288173,10.29165566349996,8.28208986247722 +197.0,16,0,0,0,0,0,6,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,191,1,,,,0,1,353,407,15.577020063370796,0.221,0.26,21.625,0.398,28.673,41.113,40151.982,191,1.5535803797263756,9.152421094978704,7.413693940642594 +198.0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,161,0,,,,0,1,0,0,1.3356339815444211,0.102,0.141,82.004,0.647,21.989,34.268,74414.085,161,1.5484178443200134,9.080164116736,7.332739101574943 +199.0,16,0,0,0,0,119,2,0,92,0,0,0,0,0,0,147,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,158,0,,,,0,1,0,0,0.2619982053081672,0.166,0.205,41.538,0.785,19.303,30.295,45973.054,158,0.0,0.0,0.0 +200.0,17,0,24,0,2,0,0,0,0,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,0,0,1.6708244735297546,0.03,0.0,163.441,1.311,24.525,35.806,127517.872,228,1.7757810007635546,10.483749829190604,8.46103107758692 +201.0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,214,0,,,,0,1,160,170,1.6573313773551754,0.149,0.381,29.229,1.05,31.065,41.097,45008.85,214,1.540168334875028,9.065764860834848,7.414434657069028 +202.0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,0,0,3.341250588279187,999999.0,999999.0,0.267,0.0,9.629,10.699,7018.754,202,1.7089546917086489,10.09421522061299,8.179126775918718 +203.0,17,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,11.8119999999999,9.616,,206,3,,,,0,1,72,80,4.135859966362377,0.048,0.323,46.074,1.039,33.258,44.556,58003.18,206,1.827554484090098,10.80745122756986,8.746496663475792 +204.0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,0,,,,0,1,31,35,1.652670838373726,0.0,0.228,87.986,1.441,30.809,39.833,81804.168,227,1.829934336939282,10.811914090402968,8.759226372772753 +205.0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,224,1,,,,0,1,0,0,1.664774525748606,0.186,0.418,34.49,1.519,40.064,51.616,55107.862,224,1.5980377994508552,9.477955417330769,7.70358474325238 +206.0,17,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,217,1,,,,0,1,0,0,1.6568597211911542,0.186,0.418,34.49,1.519,40.064,51.616,55107.862,217,1.7850384154781165,10.534651306356348,8.54049370936091 +207.0,17,0,19,0,0,0,0,0,0,0,0,0,0,1,0,11,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,215,0,,,,0,1,0,0,1.6718329641279477,0.076,0.076,103.265,0.552,20.474,31.398,86184.874,215,1.773321035888913,10.457494126753236,8.448338196074731 +208.0,17,0,1,0,0,0,0,0,2,0,0,0,0,0,0,6,40,10,PORTLAND,PORTLAND,21609,2.4,0.0,0.0,,219,3,,,,0,1,0,0,4.816302464085464,0.051,0.051,140.409,0.792,20.604,31.413,109965.635,219,1.844403723673342,10.924697326159944,8.821630499090896 +209.0,17,0,0,0,86,0,48,0,0,0,0,0,0,0,0,163,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,27,45,1.76190750679946,0.0,0.0,135.169,1.024,18.438,28.106,104495.996,228,1.7651819843563157,10.438443644660646,8.404356360417735 +210.0,17,0,111,0,0,0,7,0,24,3,0,1,0,0,0,90,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,236,0,,,,0,1,1,2,1.6561043454917386,0.0,0.004,127.552,0.938,18.074,27.823,99439.945,236,1.805170375103734,10.67750991276485,8.629838291320029 +211.0,17,0,20,0,0,0,0,0,0,13,0,1,0,0,0,53,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.6713978245877117,0.0,0.02,159.993,1.321,23.855,34.803,124669.587,240,1.807306446078496,10.665706679328306,8.622723854434215 +212.0,17,0,0,0,0,0,26,0,3,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,228,0,,,,0,1,0,0,1.6756747016427287,0.0,0.0,158.323,1.401,23.43,34.18,123202.138,228,1.7977119008806457,10.60587238162568,8.577069990335396 +213.0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.25,,241,0,,,,0,1,0,0,1.6892052257207748,0.0,0.0,137.234,1.158,22.812,33.365,109183.283,241,1.8317999511796044,10.862471870914437,8.755704239500439 +214.0,17,0,0,2,1,4,12,0,0,0,0,0,0,108,0,130,0,610,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,0,0,1.6769304013877104,0.0,0.014,162.494,1.229,18.497,28.001,121917.258,243,1.8384214963413208,10.881648944716035,8.792183068648225 +215.0,17,0,0,0,0,0,256,0,0,0,0,0,1,0,0,206,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,239,0,,,,0,1,0,0,1.657046868260318,0.1,0.1,159.381,0.928,22.555,34.749,124243.626,239,1.933315598610425,11.448592024087173,9.242490337617644 +216.0,17,0,9,0,0,0,19,0,2,7,0,1,0,1,0,55,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,291,465,1.635339732196699,0.0,0.275,58.089,1.31,34.017,43.713,65153.468,210,1.7890738220224205,10.553333691051408,8.555236422922286 +217.0,18,0,0,0,0,21,0,0,0,0,0,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,246,0,,,,0,1,48,50,1.643688268449495,0.0,0.336,64.091,1.164,29.414,39.384,66223.711,246,1.69225038119356,9.872188406712043,8.090610612887899 +218.0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,209,2,,,,0,1,8,8,3.303685314301956,0.166,0.398,29.57,1.148,31.701,41.459,45457.994,209,1.3864624968754369,8.141324292579856,6.668188199596717 +219.0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,PORTLAND,PORTLAND,0,2.4,11.0,8.955,,222,0,,,,0,1,0,0,3.188872642550055,0.252,0.484,22.209,1.645,44.041,57.286,50876.961,222,1.521723237120592,8.95610922571773,7.331679756837804 +220.0,18,0,0,0,0,25,39,0,2,0,0,0,0,0,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,227,0,,,,0,1,433,482,1.6904121262961684,0.104,0.336,40.57,0.896,27.049,35.604,48751.239,227,1.591750461662436,9.282487846907594,7.611135245442925 +221.0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,220,0,,,,0,1,3,3,2.61762455852275,0.252,0.484,22.209,1.645,44.041,57.286,50876.961,220,1.511377261472367,8.784537834803128,7.205544461054115 +222.0,18,0,0,0,0,1,56,0,2,0,0,0,0,0,0,41,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,238,0,,,,0,1,269,282,1.6590830909826018,0.024,0.309,77.302,2.634,31.311,41.58,76084.665,238,1.6454965643731925,9.616940868440206,7.872321389814099 +223.0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,242,0,,,,0,1,0,0,1.8831266886867453,0.0,0.336,64.091,1.164,29.414,39.384,66223.711,242,1.641003389521805,9.576234000993114,7.855637600971487 +224.0,19,0,26,0,0,1,0,0,0,0,0,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,197,0,,,,0,1,252,580,1.64548665384616,0.027,0.022,82.029,0.678,22.665,35.137,74986.448,197,1.61581276225092,9.610860879013304,7.67003564673603 +225.0,19,0,0,0,23,0,0,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,107,115,1.682903436267006,0.027,0.027,105.829,0.989,19.139,29.611,86681.937,202,1.6741124906858602,9.972789801051396,7.983762141800032 +226.0,19,0,0,0,0,1,4,0,3,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,217,0,,,,0,1,0,0,1.6810609953140212,0.0,0.0,137.575,1.212,21.197,32.449,108815.085,217,1.741038529093378,10.311555691005136,8.294794584157605 +227.0,19,0,5,0,0,0,0,0,0,0,0,0,0,12,0,23,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,221,0,,,,0,1,44,100,1.696586347167039,0.0,0.0,115.606,0.941,18.607,28.545,92256.852,221,1.6928248152597078,10.027251559952182,8.051078742909631 +228.0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,175,0,,,,0,1,0,0,5.0335485948710215,0.0,0.0,76.586,0.663,18.665,29.103,67640.634,175,1.5508631299312992,9.159623717617135,7.358761871306889 +229.0,19,0,0,0,0,0,11,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,187,0,,,,0,1,0,0,1.677965745977898,0.0,0.0,76.586,0.663,18.665,29.103,67640.634,187,1.510093457146927,8.92335548517918,7.15668589509228 +230.0,19,0,98,0,0,0,0,0,0,7,0,0,0,0,0,98,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,202,0,,,,0,1,60,137,3.2854667121579637,0.0,0.0,76.724,0.717,19.697,30.54,68648.975,202,1.6471285457335898,9.794180557980116,7.820383026060559 +231.0,19,0,0,0,0,0,82,0,0,0,0,0,0,0,0,70,0,0,PORTLAND,PORTLAND,0,2.4,11.25,10.227,,213,0,,,,0,1,1,1,1.6867486656725346,0.0,0.0,110.339,1.032,19.254,29.789,89681.612,213,1.6611242749884465,9.896351299107724,7.921271884451301 +232.0,20,0,196,0,0,0,6,0,79,0,0,1,0,0,0,223,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,244,0,,,,0,1,148,211,1.5894686276373309,0.0,0.15,126.901,1.082,10.239,15.046,90845.912,244,2.3770096337150086,14.074285466309504,11.38479979514858 +233.0,20,0,0,0,0,0,27,0,0,0,0,0,0,0,0,28,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,249,0,,,,0,1,0,0,1.6470269114578355,0.0,0.1,156.408,4.131,12.221,17.468,111280.64,249,2.2244512086569075,13.18649698337156,10.672551720581405 +234.0,20,0,0,0,11,0,42,0,40,0,0,0,0,4506,0,3477,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,235,0,,,,0,1,0,0,1.5266085264403504,0.0,0.053,160.024,1.207,17.831,26.992,119690.095,235,1.8517641747778328,10.973189889074234,8.848924144205794 +235.0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,3,,,,0,1,0,0,1.7004609245090248,0.098,0.101,173.411,1.675,20.131,29.147,129636.944,240,1.8938405329005383,11.219394784277082,9.06978783367345 +236.0,20,0,3,0,333,0,6,0,1,0,0,0,0,0,0,413,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.853,,214,3,,,,0,1,0,0,4.011558032339163,0.0,0.0,112.751,0.832,15.11,23.117,86955.762,214,1.7400614081361168,10.346878830794417,8.290653138347599 +237.0,20,0,32,0,0,8,803,0,38,27,0,4,30,1,18,882,0,0,PORTLAND,PORTLAND,0,2.4,17.0,11.5909999999999,,224,3,,,,0,1,376,534,6.468540919032868,0.0,0.102,211.196,1.561,18.861,28.923,153676.143,224,1.8041377551082511,10.70828925871256,8.605973795263157 +238.0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,230,0,,,,0,1,0,0,1.7549946881265162,0.153,0.262,128.214,0.759,12.527,18.541,93923.126,230,1.909153491287972,11.31589946872746,9.121801442926152 +239.0,20,0,76,391,0,0,707,0,0,0,6,0,0,0,1,1328,0,0,PORTLAND,PORTLAND,0,2.4,17.0,13.839,,239,0,,,,0,1,16,20,1.610949408107777,0.122,0.125,186.296,1.666,20.218,29.534,138131.626,239,2.0369141103367534,12.080305777000817,9.766472721983613 +240.0,20,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,245,0,,,,0,1,0,0,1.6748015215303504,0.122,0.125,186.296,1.666,20.218,29.534,138131.626,245,2.068620207473997,12.280581784869469,9.92525998638996 +241.0,21,0,0,0,0,0,5,0,15,0,0,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,187,3,,,,0,1,273,406,14.387867616691215,0.013,0.0,77.189,1.176,18.177,28.341,67539.12,187,1.5309692405002062,9.094458073925836,7.255776313917071 +242.0,21,0,0,0,0,11,94,0,0,4,9,0,0,74,0,214,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,17,17,8.600230963540941,0.0,0.0,68.314,0.95,15.936,24.64,59490.611,188,1.5767962381318186,9.420736637896022,7.522359702145041 +243.0,21,0,5,1,0,9,662,0,97,11,0,0,15,0,2,657,0,0,PORTLAND,PORTLAND,0,2.4,13.0,10.583,,200,3,,,,0,1,398,599,8.354620703397911,0.013,0.0,77.189,1.176,18.177,28.341,67539.12,200,1.6630912486875542,9.911966305335213,7.914807085747047 +244.0,22,0,2,29,160,6,532,0,15,6,0,1,2,0,0,1202,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,235,0,,,,0,1,0,0,1.5194981316222578,0.0,0.203,125.031,1.35,7.869,11.431,87335.313,235,2.3714568625806662,14.068890316106108,11.351710826806135 +245.0,22,0,2,1,0,13,565,0,3,0,0,0,3,0,2,376,0,0,PORTLAND,PORTLAND,0,2.4,22.0,12.727,,228,0,,,,0,1,0,0,1.6746198805772308,0.0,0.272,108.817,0.892,5.806,8.186,74882.274,228,2.334252083139732,13.721701100416006,11.047765492320613 +246.0,22,0,0,0,0,0,171,0,0,0,0,0,0,0,0,270,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,201,0,,,,0,1,0,0,1.744144280295279,0.0,0.066,63.857,0.665,12.463,18.74,52862.548,201,1.686674727869495,10.069887283914724,8.041698382519094 +247.0,22,0,0,0,0,0,19,0,11,0,0,0,2,0,0,46,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,212,3,,,,0,1,171,259,3.0997638875987787,0.0,0.154,99.937,0.834,15.181,23.095,78740.689,212,1.734423619104264,10.314865960034508,8.25602501450863 +248.0,22,0,0,0,0,2,1358,0,9,0,0,0,2,0,0,1626,0,0,PORTLAND,PORTLAND,0,2.4,14.0,11.397,,215,3,,,,0,1,331,514,5.724296419821106,0.0,0.154,99.937,0.834,15.181,23.095,78740.689,215,1.803912691536259,10.724865822711816,8.602224485570558 +249.0,22,0,0,0,111,3,182,0,80,62,0,0,0,0,0,379,0,0,PORTLAND,PORTLAND,0,2.4,14.694,11.962,,215,0,,,,0,1,0,0,5.059776124904404,0.02,0.234,84.545,0.461,9.941,14.483,63377.939,215,1.8465466258346583,10.890056266381215,8.703356493819689 +250.0,22,0,0,0,114,21,482,0,26,0,0,1,0,4,0,552,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,213,0,,,,0,1,0,0,1.792039766948481,0.052,0.276,78.666,0.506,9.679,14.132,59391.03,213,1.913315956871089,11.248803431309884,9.037618596127862 +251.0,22,0,5,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.5909999999999,,226,0,,,,0,1,0,0,1.554736790546879,0.097,0.206,131.89,1.103,12.822,18.864,96483.07,226,1.94558040041054,11.545051664805351,9.292704978268636 +252.0,22,0,245,0,0,0,44,0,11,0,0,0,0,0,0,274,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,218,0,,,,0,1,0,0,1.6990615494543098,0.0,0.278,100.362,0.776,8.853,12.755,72394.845,218,2.0669057794342884,12.179644429379987,9.787905671586946 +253.0,22,0,0,0,0,0,12,0,0,0,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,228,0,,,,0,1,0,0,1.552696613431927,0.048,0.157,128.902,1.098,10.453,15.362,92328.567,228,2.147179715611188,12.79702248493992,10.307059217688744 +254.0,23,0,0,0,0,0,0,0,30,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,133,0,,,,0,1,0,0,0.8012864442808678,0.113,0.952,15.387,1.323,15.917,24.003,25209.671,133,1.8820393170641976,10.964640948808071,8.800945506437968 +255.0,23,0,34,0,0,4,42,0,2,0,0,7,0,0,1,102,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,213,0,,,,0,1,187,240,1.5464387185710842,0.0,0.551,45.244,4.796,23.418,33.62,50473.156,213,2.130423905581362,12.344046477343232,9.994812415591978 +256.0,23,0,0,0,0,0,9,0,0,5,0,1,0,0,0,30,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,219,0,,,,0,1,213,275,1.6103375924816294,0.0,0.649,37.946,2.829,23.789,33.854,45952.275,219,2.139335666058911,12.274473211803588,9.926454862736412 +257.0,23,0,0,0,0,0,144,0,0,148,0,0,22,0,0,302,0,0,PORTLAND,PORTLAND,0,2.4,16.0,13.025,,221,0,,,,0,1,0,0,1.491313334945546,0.0,0.598,40.397,4.098,24.879,35.448,48540.392,221,2.1549086800868418,12.314712155597917,9.965405361687678 +258.0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,0,0,1.04919895745097,0.0,0.649,37.946,2.829,23.789,33.854,45952.275,223,2.1281815138873768,12.231445969367018,9.8703780440003 +259.0,23,0,14,0,0,30,39,0,2,0,0,0,0,0,0,101,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,196,0,,,,0,1,210,271,1.549596987501666,0.048,0.552,42.976,4.416,23.822,34.317,49466.923,196,2.1136414556918943,12.27828766367778,9.919281834034962 +260.0,23,0,0,0,59,33,67,0,0,0,28,0,2,0,0,217,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,206,0,,,,0,1,0,0,1.5638572196582514,0.047,0.649,35.946,2.837,24.038,34.168,44873.157,206,2.1031938831883648,12.078598939782314,9.744287819273884 +261.0,23,0,0,19,0,0,2,0,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,202,0,,,,0,1,0,0,1.5348580593106815,0.048,0.601,38.103,3.049,23.722,34.08,46197.08,202,2.136866261578267,12.217964857213152,9.861943386586717 +262.0,23,0,0,0,107,0,0,0,0,0,0,0,0,0,0,115,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,209,0,,,,0,1,0,0,1.0001861573025963,0.047,0.649,35.946,2.837,24.038,34.168,44873.157,209,2.0957606940905538,12.04700549890802,9.715881846713849 +263.0,23,0,0,0,0,0,42,0,3,0,0,0,0,0,0,37,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,182,0,,,,0,1,0,0,1.5505664776320531,0.0,0.569,39.824,3.098,23.408,33.784,47108.987,182,2.0995576124793787,12.212635873865263,9.861322334527408 +264.0,23,0,0,0,0,0,0,0,0,0,0,0,2,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,190,0,,,,0,1,30,36,1.5599978138858808,0.0,0.667,33.748,2.608,22.532,32.222,42220.576,190,2.059511892893524,11.833962894378336,9.542831420231623 +265.0,23,0,0,0,0,0,12,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,0,0,1.5636897521094149,0.0,0.618,36.557,3.096,22.828,32.792,44383.149,188,2.1047325836768853,12.089402426969484,9.754450526671732 +266.0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,195,0,,,,0,1,0,0,0.9714175890231592,0.0,0.667,33.748,2.608,22.532,32.222,42220.576,195,2.0355130798926195,11.667669881924809,9.399758755126308 +267.0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,172,0,,,,0,1,0,0,1.556492490178779,0.097,0.664,35.726,2.641,21.608,31.044,42732.802,172,2.0576420748751074,11.800949110072116,9.517104873240372 +268.0,23,0,0,7,84,0,5,0,11,0,0,0,0,0,0,68,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,176,0,,,,0,1,135,171,1.540204825625615,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,176,2.044710643639568,11.741092524913793,9.4553451324188 +269.0,23,0,0,0,0,0,15,0,1,2,0,0,2,0,0,36,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,255,343,1.5391827275109544,0.049,0.614,32.101,3.202,22.91,32.982,41653.507,167,1.9845472525591208,11.586060470074727,9.35216847203878 +270.0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,8.37599999999999,6.818,,181,0,,,,0,1,0,0,0.9790022780477308,0.048,0.713,29.352,2.548,21.698,31.142,38716.448,181,2.025993709826929,11.624260880402542,9.353946829602208 +271.0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,10.9499999999999,6.591,,168,0,,,,0,1,0,0,0.966112405139751,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,168,1.9874398149790444,11.393740530956112,9.164301129665525 +272.0,23,0,0,133,0,0,0,0,0,0,77,0,0,0,0,94,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,163,0,,,,0,1,0,0,1.5516994147693337,0.096,0.758,29.602,2.545,20.792,29.886,38072.476,163,2.007725665905551,11.518025060962382,9.27198686225441 +273.0,23,0,0,1,0,1,5,0,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,153,0,,,,0,1,111,139,1.5607571319975708,0.146,0.808,22.236,1.841,21.667,31.346,34292.465,153,1.98496282869353,11.37948666307824,9.156539631948494 +274.0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,157,0,,,,0,1,0,0,0.8957433512363282,0.146,0.808,22.236,1.841,21.667,31.346,34292.465,157,1.9260845918693617,11.21465914596084,9.012490327471026 +275.0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,142,0,,,,0,1,0,0,2.002379237504298,0.145,0.856,20.406,1.68,17.558,26.162,29803.15,142,1.948312357552151,11.128634881458147,8.949290063226677 +276.0,24,0,37,0,0,1,2,0,16,0,0,0,0,0,0,54,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,198,0,,,,0,1,176,254,1.5616484587869042,0.0,0.405,36.902,3.156,26.052,36.865,47211.272,198,2.064622887356286,11.916523146674647,9.666892266258309 +277.0,24,0,0,2,0,0,6,0,15,1,0,0,0,0,0,49,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,85,119,1.552773534604741,0.0,0.502,46.735,4.599,24.869,35.706,52762.584,210,2.1504096831090425,12.443048476432478,10.09275591577264 +278.0,24,0,0,0,0,73,13,0,1,0,2,0,2,0,0,92,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,201,0,,,,0,1,116,164,1.5546700988682365,0.0,0.453,44.492,3.324,25.772,36.444,51798.889,201,2.091825729550346,12.097134764441977,9.80154031591901 +279.0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,185,3,,,,0,1,0,0,1.532054025587049,0.049,0.455,35.003,3.201,25.587,36.313,45642.066,185,2.035009055630342,11.796748315556696,9.548993589962064 +280.0,24,0,0,0,0,20,1,0,1,0,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,188,0,,,,0,1,114,165,1.530505205675374,0.0,0.406,33.81,3.065,26.681,37.684,45756.223,188,2.035879143827431,11.767954315188131,9.530387661042916 +281.0,24,0,8,0,0,6,3,0,3,0,0,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,193,0,,,,0,1,118,171,1.5366380372747794,0.048,0.503,41.378,3.302,23.826,34.376,48482.928,193,2.0540959328369834,11.923940905627685,9.63708693761402 +282.0,24,0,6,11,0,2,9,0,29,0,0,0,0,0,0,49,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,175,0,,,,0,1,114,159,1.565940688015175,0.0,0.471,30.08,2.882,25.317,36.091,42349.22,175,2.001230484368405,11.624849408062868,9.39214212320427 +283.0,24,0,17,0,0,0,8,0,0,8,0,0,0,9,0,44,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,179,0,,,,0,1,208,302,1.5466840420253771,0.0,0.52,34.12,3.371,23.345,33.682,43392.861,179,2.007047560815668,11.669111950002389,9.42855638729827 +284.0,25,0,0,0,0,42,38,0,2,1,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.09099999999999,,187,0,,,,0,1,173,252,3.795762831227481,0.242,0.278,32.054,2.464,25.551,35.398,43168.898,187,2.062812474608337,11.884523770216958,9.64415294060877 +285.0,25,0,50,0,0,0,0,0,4,0,0,0,0,0,0,79,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,177,0,,,,0,1,0,0,1.975582002737048,0.114,0.292,31.29,2.359,26.338,36.997,43703.9,177,2.04493055141224,11.804761628243208,9.561499500353971 +286.0,25,0,0,0,0,0,33,0,1,0,24,0,0,0,0,64,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,176,0,,,,0,1,167,246,1.444105868271445,0.0,0.422,31.7,2.886,26.082,37.026,43984.38,176,2.013433629117452,11.658460535095031,9.425928652767803 +287.0,25,0,0,0,6,0,434,0,0,204,0,0,0,0,0,311,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,169,0,,,,0,1,48,48,10.411092820727085,0.114,0.292,31.29,2.359,26.338,36.997,43703.9,169,2.002511955697249,11.531389187879268,9.338536305080156 +288.0,25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,152,3,,,,0,1,154,224,10.090644233217583,0.146,0.663,27.52,2.908,24.09,34.92,39961.608,152,1.8800343514381768,10.90668797258301,8.793730527386224 +289.0,25,0,0,0,1,83,241,4,4,0,0,0,10,0,0,295,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,139,0,,,,0,1,159,223,62.52125272196864,0.0,0.471,24.111,2.018,23.863,33.838,37087.119,139,1.7850923381853625,10.266148873292606,8.278244951309972 +290.0,26,0,0,1,0,0,43,0,1,0,0,0,0,0,31,76,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,254,435,1.5868087044464074,0.051,0.568,31.379,2.972,24.164,34.964,42459.931,167,1.978449294679568,11.497648343899776,9.283117077799602 +291.0,26,0,0,0,0,2,2,0,0,0,0,0,1,0,0,7,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,156,0,,,,0,1,161,276,1.5341001398924832,0.097,0.66,30.466,2.718,22.692,32.671,40408.081,156,1.9147154755962124,11.195590736057062,9.02591965791994 +292.0,26,0,13,0,0,2,1,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,159,0,,,,0,1,83,144,1.5457422691012468,0.097,0.614,29.399,2.936,23.673,34.241,40729.342,159,1.9560996741200145,11.442958828228733,9.22723852332737 +293.0,26,0,0,0,0,0,11,0,0,1,0,0,0,0,2,13,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,162,0,,,,0,1,264,452,1.551007740779258,0.144,0.71,24.499,2.645,21.908,31.518,35851.037,162,2.041358244743801,11.709700647339018,9.429501453285685 +294.0,26,0,0,0,0,14,1,0,2,0,0,0,0,10,0,31,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,154,0,,,,0,1,129,218,1.5539487102193152,0.195,0.759,23.256,2.725,21.633,31.261,34890.972,154,2.0270904621367736,11.61583831534587,9.349141567365 +295.0,26,0,0,0,0,77,29,0,0,0,0,0,0,3,0,76,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,135,0,,,,0,1,228,386,8.265948674648202,0.143,0.982,16.945,1.171,17.512,26.987,28115.93,135,1.851603921920129,10.83023075566596,8.726283434004095 +296.0,27,0,44,0,0,21,17,0,0,10,0,3,0,0,0,97,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,236,0,,,,0,1,218,340,3.1072209217897573,0.049,0.465,49.646,5.533,24.959,35.276,54349.865,236,2.1933119732265403,12.692642115592273,10.342796482177896 +297.0,27,0,0,0,0,1,5,0,0,26,0,0,0,0,0,36,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,225,3,,,,0,1,91,135,3.1426873979699685,0.0,0.369,45.405,5.213,24.641,34.736,51290.401,225,2.145819090122093,12.37663249057927,10.09062092649054 +298.0,27,0,8,0,0,4,14,0,0,19,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,282,0,,,,0,1,13,20,1.5526790474792944,0.0,0.323,68.682,5.719,29.678,39.887,69483.996,282,2.2582164816444408,13.03237558748616,10.659245865237144 +299.0,27,0,5,1,0,0,10,0,0,35,0,4,4,3,0,61,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,102,155,1.5519639258251905,0.0,0.369,56.153,4.894,29.025,39.541,61244.153,289,2.3345577280848926,13.358044207965143,10.910142875123809 +300.0,27,0,8,0,0,0,1,0,0,0,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,276,1,,,,0,1,33,49,1.5194578281496245,0.048,0.321,53.518,5.754,27.872,38.401,58828.121,276,2.2353340854966275,12.910949566175251,10.540027879495408 +301.0,27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,1,,,,0,1,27,41,1.5233156763729674,0.096,0.37,43.999,4.994,24.367,33.966,49897.606,261,2.2199858944613813,12.81530410203184,10.479767423902764 +302.0,27,0,29,0,0,0,7,0,6,7,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,258,1,,,,0,1,116,180,3.111282145293705,0.0,0.272,44.29,3.789,26.454,36.737,51857.178,258,2.24394057080861,12.960033838765815,10.580443222658335 +303.0,28,0,0,0,0,0,0,0,0,0,16,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,258,0,,,,0,1,0,0,1.5629789341202849,0.098,0.419,53.762,6.084,29.421,40.888,60575.902,258,2.236910265886052,12.777006345576458,10.430386250245832 +304.0,28,0,14,0,0,0,122,0,0,0,0,0,0,0,0,143,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,248,0,,,,0,1,203,294,1.5537645273577494,0.097,0.466,47.942,5.19,24.976,34.723,52905.523,248,2.188236347903082,12.63938729907641,10.288411226565872 +305.0,28,0,15,0,0,20,757,0,0,0,0,0,0,0,0,520,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,232,0,,,,0,1,0,0,1.5724335680081485,0.048,0.514,47.744,4.675,24.698,34.964,52932.878,232,2.1597439892538484,12.47970004809461,10.143913843130678 +306.0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,243,0,,,,0,1,0,0,1.0396841300881154,0.05,0.611,45.249,4.544,27.307,38.77,53772.248,243,2.2123868591632925,12.708367146882036,10.278144099553568 +307.0,28,0,0,0,0,0,19,0,0,9,1,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,238,0,,,,0,1,141,202,1.560517261160879,0.05,0.611,45.249,4.544,27.307,38.77,53772.248,238,2.228168239334164,12.73195056625974,10.324105928802924 +308.0,28,0,8,0,0,12,3,0,8,18,0,0,0,0,12,38,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,240,0,,,,0,1,0,0,1.5159762351004984,0.048,0.561,43.087,4.497,23.893,33.987,49327.143,240,2.182271498784825,12.471090240883818,10.120304778170132 +309.0,28,0,0,0,0,0,26,0,5,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,272,0,,,,0,1,0,0,1.550400250642004,0.049,0.37,50.672,4.833,28.106,39.052,57422.78,272,2.315075959573208,13.248221385562312,10.819971124365551 +310.0,28,0,0,1,0,1,4,0,10,1,0,1,0,0,0,17,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,294,0,,,,0,1,70,93,1.5527208808328758,0.048,0.371,60.701,5.018,28.794,39.182,63925.283,294,2.3279418783209933,13.30425525776509,10.90363725010485 +311.0,28,0,15,2,0,8,8,0,0,10,0,2,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,285,0,,,,0,1,1,1,1.5536910214596993,0.0,0.419,57.803,5.067,29.438,40.243,62749.492,285,2.3223509244380014,13.266670132248192,10.867170986868794 +312.0,28,0,0,0,0,0,0,0,5,13,0,8,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.4,12.284,10.0,,301,0,,,,0,1,0,0,1.5781580850888566,0.0,0.312,86.212,7.215,22.006,29.469,74035.646,301,2.154836063353491,12.322926373257433,10.129092053108726 +313.0,28,0,0,0,0,0,119,0,0,139,0,0,5,0,0,232,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,302,0,,,,0,1,0,0,1.5763620350945244,0.0,0.341,89.383,6.489,25.087,33.261,78491.97,302,2.270538431852408,13.028450697176238,10.72835488585772 +314.0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,299,0,,,,0,1,0,0,1.4131628473801323,0.097,0.345,73.621,6.61,22.831,30.98,66944.079,299,2.131093548170861,12.243700953643843,10.066671155561224 +315.0,28,0,18,0,0,19,73,0,6,18,0,0,0,0,0,198,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,0,0,1.5092662472782954,0.097,0.373,71.758,6.168,23.006,31.313,65965.169,295,2.2697110458820333,12.974430341916442,10.661334626570923 +316.0,28,0,9,1,0,2,19,0,2,321,0,0,2,0,2,322,0,0,PORTLAND,PORTLAND,0,2.4,18.0,14.653,,300,0,,,,0,1,223,327,1.5561632300737742,0.049,0.39,83.289,6.768,24.17,32.11,73855.89,300,2.2997376975178745,13.158465277507776,10.82763146132462 +317.0,28,0,0,2,0,0,17,0,0,3,0,0,0,18,0,45,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,0,0,1.5359520897702306,0.044,0.42,70.0,5.856,25.107,33.297,66110.285,297,2.3283761214205096,13.308742145375325,10.920943932110138 +318.0,28,0,40,0,0,39,410,0,5,13,0,0,0,24,0,731,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.546350060091467,0.049,0.371,72.097,5.302,25.567,34.101,67966.599,306,2.339576093087736,13.341955412704936,10.97916320161838 +319.0,28,0,0,0,0,0,9,0,0,0,0,4,12,0,0,16,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,0,,,,0,1,14,15,4.642829853614707,0.079,0.547,61.652,7.88,21.706,29.555,58372.332,292,2.1663446811668883,12.401402884023543,10.176730263866345 +320.0,28,0,43,318,0,0,12,0,10,41,0,0,0,0,0,304,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,304,0,,,,0,1,61,80,1.5498572800915795,0.0,0.37,71.401,5.314,26.896,35.698,68543.084,304,2.3324030764998107,13.32279868805018,10.932332387125918 +321.0,28,0,104,2,0,0,126,0,5,6,0,0,9,0,0,148,0,0,PORTLAND,PORTLAND,219,2.4,0.0,0.0,,301,0,,,,0,1,0,0,1.5571967404135325,0.0,0.419,61.231,5.343,24.823,33.627,60709.574,301,2.323324617822082,13.265252811267755,10.884267073831852 +322.0,28,0,0,0,0,0,443,0,3,0,0,0,3,0,0,420,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,291,0,,,,0,1,2,2,1.5463381105955756,0.0,0.468,55.389,5.718,27.044,36.456,58780.721,291,2.3055588452864435,13.160704282156043,10.79511752941164 +323.0,28,0,69,179,0,0,46,0,0,94,0,0,0,0,0,355,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,297,0,,,,0,1,1,1,1.5520138726547037,0.048,0.421,58.674,5.149,28.666,38.946,62476.723,297,2.319279656200904,13.2698494318263,10.882488364946306 +324.0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,0,0,1.9047007172891848,0.048,0.452,52.783,5.383,26.39,36.126,56901.764,293,2.295072419356339,13.179951619160532,10.788394372346854 +325.0,28,0,34,0,0,83,25,0,2,0,0,12,1,0,0,90,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,214,312,1.563498054406683,0.048,0.452,52.783,5.383,26.39,36.126,56901.764,289,2.298562095187997,13.144440823381837,10.762733992303884 +326.0,28,0,85,0,0,4,241,0,45,14,21,0,1,30,0,369,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,289,0,,,,0,1,0,0,1.551952779319557,0.0,0.468,51.935,5.254,31.678,43.968,61378.504,289,2.310462388190932,13.204246406696424,10.805964076388149 +327.0,28,0,0,0,0,1,18,0,0,0,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,283,0,,,,0,1,0,0,1.544594166203995,0.0,0.5,52.569,5.294,28.986,39.787,59108.09,283,2.2890050344019195,13.092987996292214,10.71064922273258 +328.0,28,0,56,0,0,0,74,0,0,0,0,0,0,22,0,155,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,51,68,1.5516037333001476,0.098,0.419,55.869,5.703,31.052,43.185,63394.938,280,2.300165262140633,13.158868461644849,10.738844929852494 +329.0,28,0,0,0,0,5,2,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,268,0,,,,0,1,25,35,1.550607630720991,0.146,0.468,57.152,5.168,30.975,43.123,64175.586,268,2.283650967230575,13.051315951918957,10.619668240412556 +330.0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,275,0,,,,0,1,0,0,2.889848336734495,0.149,0.518,57.219,5.021,29.399,41.316,63062.295,275,2.2639762851218297,13.01918606558793,10.604652112491577 +331.0,28,0,0,12,0,168,131,0,5,0,0,0,3,0,0,475,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,0,,,,0,1,146,212,3.1224849808070654,0.149,0.518,57.219,5.021,29.399,41.316,63062.295,269,2.276950132996461,13.03815285349507,10.601032781576391 +332.0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,256,0,,,,0,1,0,0,1.0016450265914063,0.098,0.564,47.599,4.379,28.108,39.699,55871.22,256,2.22753738460716,12.765342708133652,10.353735815235291 +333.0,28,0,0,1,0,0,10,0,3,112,0,0,0,0,0,151,0,0,PORTLAND,PORTLAND,0,2.4,14.0,12.045,,253,0,,,,0,1,111,157,1.55767630124524,0.098,0.564,47.599,4.379,28.108,39.699,55871.22,253,2.244195196491792,12.827440871738103,10.410025562965853 +334.0,28,0,0,0,0,0,15,0,0,0,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,256,0,,,,0,1,0,0,1.5433148394881215,0.048,0.561,43.087,4.497,23.893,33.987,49327.143,256,2.2738895008735005,13.00555748388112,10.56322332895918 +335.0,29,0,0,0,0,0,14,0,2,0,0,0,0,186,0,194,0,0,PORTLAND,PORTLAND,487,2.4,0.0,0.0,,248,3,,,,0,1,0,0,1.5743540512173049,0.031,0.205,83.895,5.98,28.593,37.995,78009.674,248,2.212609452719166,12.787210551119893,10.498845509986223 +336.0,29,0,0,3,968,0,12,0,2,0,0,0,0,0,5,936,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,13,13,15.53734546836105,0.049,0.271,44.29,3.789,26.454,36.737,51857.178,223,2.149267796399638,12.461894497235791,10.15298589311555 +337.0,29,0,9,0,0,11,23,11,36,25,0,0,0,0,0,196,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,251,0,,,,0,1,0,0,1.6018279622710538,0.0,0.272,44.29,3.789,26.454,36.737,51857.178,251,2.2456254516530647,12.954926883175585,10.593658519159012 +338.0,29,0,24,0,0,1,16,0,1,16,17,0,3,0,0,53,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,222,0,,,,0,1,315,427,3.170323412306015,0.0,0.32,46.801,5.017,25.549,35.768,52844.057,222,2.131865682842008,12.28213675499339,10.015267985773107 +339.0,29,0,0,0,0,0,5,0,17,0,0,18,0,5,0,33,0,0,PORTLAND,PORTLAND,0,2.4,18.0,13.182,,281,0,,,,0,1,69,90,1.55195166273976,0.0,0.272,52.279,5.514,24.848,33.715,55036.507,281,2.2696452508182494,13.157032838649512,10.76679935728575 +340.0,29,0,3,0,0,0,73,0,0,8,0,0,5,0,0,59,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,267,0,,,,0,1,146,193,1.5673252035022132,0.0,0.223,50.592,5.32,24.998,33.909,54080.842,267,2.2557662614216256,13.032858646023849,10.645457835624216 +341.0,29,0,9,0,0,0,28,0,3,1,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,272,0,,,,0,1,108,142,1.5542471823267747,0.0,0.223,61.077,5.386,23.207,31.025,58945.213,272,2.2780224430177203,13.1808775688577,10.812731433417929 +342.0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,255,3,,,,0,1,0,0,0.9303064429909071,0.0,0.174,67.817,5.269,23.204,30.908,63183.813,255,2.267881376678414,13.115172109861687,10.757115730252805 +343.0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,199,0,,,,0,1,0,0,1.5390636388494108,0.0,0.096,63.039,2.432,22.716,27.678,58058.647,199,2.1011648051500385,12.130548176333896,9.891978124942412 +344.0,30,0,0,0,0,1,116,0,5,1,0,0,2,0,4,147,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,167,0,,,,0,1,243,329,32.93314600333015,0.256,0.475,7.771,0.024,3.87,5.17,8282.704,167,1.9391915168561813,11.181465688168725,9.116283866419163 +345.0,30,0,0,0,712,161,0,0,0,0,0,0,0,0,0,874,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,223,260,1.5446287907541911,0.0,0.046,87.527,3.243,27.937,36.821,79583.315,223,2.1652180439456057,12.51670272777267,10.235228726274268 +346.0,30,0,4,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,223,0,,,,0,1,255,259,4.699753398737107,0.0,0.0,73.108,3.014,29.354,38.402,71366.215,223,2.166596937947109,12.52622202901238,10.249046367104832 +347.0,30,0,0,0,0,47,0,0,0,0,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.4,7.0,5.698,,210,0,,,,0,1,48,48,1.556524145951771,0.0,0.0,73.849,1.654,23.47,29.595,66204.252,210,2.129814307363468,12.282769924100934,10.045878831685997 +348.0,30,0,9,0,0,0,61,0,0,0,3,0,0,0,7,72,0,0,PORTLAND,PORTLAND,0,2.4,11.5,9.362,,195,2,,,,0,1,614,836,21.77615749833556,0.099,0.099,41.262,1.858,20.901,26.625,43447.678,195,2.080750740083542,11.99676362646182,9.80980490126992 +349.0,31,0,0,0,0,0,3,0,8,11,0,0,0,0,0,20,0,0,PORTLAND,PORTLAND,0,2.4,14.5,11.818,,307,0,,,,0,1,53,81,1.5521823368598904,0.0,0.321,84.419,5.665,27.892,37.075,77756.37,307,2.34492144614709,13.400089725903092,11.018596341870786 +350.0,31,0,0,1,0,0,51,0,4,9,0,0,2,5,0,50,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,300,0,,,,0,1,55,85,1.5519500809160618,0.049,0.322,66.787,5.253,29.214,39.101,67767.893,300,2.3408660574798708,13.370327767896867,10.958211572141302 +351.0,31,0,127,9,0,0,23,0,0,7,0,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,305,0,,,,0,1,0,0,1.5519748909330533,0.0,0.272,98.372,5.382,24.852,32.648,83852.742,305,2.3569061519100347,13.499406802916129,11.099323963253358 +352.0,31,0,41,323,0,0,36,0,14,3,0,0,0,0,0,262,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,293,0,,,,0,1,115,192,1.5510941195274268,0.048,0.273,78.494,5.215,28.104,37.467,74214.833,293,2.352074310092372,13.430844700703313,11.033777991254276 +353.0,31,0,8,0,0,0,622,0,0,16,0,0,1,0,0,473,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,309,0,,,,0,1,0,0,1.578656348830674,0.0,0.319,95.703,6.068,24.817,32.566,82091.629,309,2.3150723314833663,13.309820256199265,10.943732396674068 +354.0,31,0,0,0,0,0,0,0,0,145,0,0,0,0,0,203,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,0,,,,0,1,0,0,1.5610092270239049,0.013,0.257,97.89,5.742,26.23,33.954,84379.985,313,2.3397647305273144,13.448445291626207,11.060579267796644 +355.0,31,0,38,0,0,0,276,0,0,40,0,0,1,0,0,459,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,2,2,1.585610986366301,0.049,0.368,86.488,6.017,24.698,32.783,76333.294,308,2.356572952099264,13.522989396243668,11.133459238214847 +356.0,31,0,86,0,0,0,3,0,0,1,0,0,0,0,0,121,0,0,PORTLAND,PORTLAND,0,2.4,10.75,10.682,,312,0,,,,0,1,0,0,1.551592518628428,0.048,0.322,86.763,5.593,26.161,34.669,77716.156,312,2.350981717052713,13.456242671907052,11.063732835551312 +357.0,31,0,16,0,0,0,11,0,3,32,84,0,0,0,0,146,0,0,PORTLAND,PORTLAND,12,2.4,0.0,0.0,,317,0,,,,0,1,100,157,1.541545899312155,0.0,0.319,101.174,5.81,25.666,33.417,86137.977,317,2.368550777273306,13.600953312383895,11.184370833171377 +358.0,31,0,57,0,0,0,5,0,4,10,18,0,1,0,0,67,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,0,,,,0,1,0,0,1.5470384409372469,0.0,0.273,92.502,6.269,24.973,32.546,80031.068,315,2.3659474030724126,13.588366655653395,11.178291020215752 +359.0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,313,3,,,,0,1,0,0,0.951464236114134,0.0,0.124,122.436,6.091,22.334,27.76,96125.576,313,2.3930015000874265,13.763988459920204,11.325136376057472 +360.0,32,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,324,0,,,,0,1,3,4,1.5530047001566394,0.0,0.173,111.277,6.379,22.991,28.83,89668.631,324,2.3858870144751267,13.724090084513564,11.289917185415318 +361.0,32,0,0,0,5,110,0,0,0,0,0,1,0,0,0,99,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,298,0,,,,0,1,193,292,1.5749121720250994,0.03,0.094,122.967,6.481,21.636,26.888,95907.583,298,2.3705353434325267,13.752263010040528,11.31892639973444 +362.0,32,0,9,0,0,0,101,0,0,25,18,0,177,0,0,387,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.0,,318,0,,,,0,1,33,33,1.5770758299872727,0.0,0.222,104.905,5.859,26.0,33.132,88343.692,318,2.3771440608685896,13.67257211697316,11.24201092801292 +363.0,32,0,0,0,0,0,158,0,0,4,18,0,0,0,0,181,0,0,PORTLAND,PORTLAND,0,2.4,15.0,12.211,,291,0,,,,0,1,0,0,1.5382662860071974,0.08,0.144,118.823,5.94,23.436,29.024,94621.973,291,2.368912743471596,13.715995130452418,11.29470141174942 +364.0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,304,3,,,,0,1,0,0,0.9462062904760932,0.098,0.273,110.624,6.256,25.268,31.821,91164.347,304,2.365386514386017,13.69247183880004,11.269574385906983 +365.0,32,0,11,0,0,0,0,0,28,0,0,0,0,2,0,25,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,315,0,,,,0,1,0,0,1.5509529211856516,0.047,0.222,109.587,5.485,23.855,30.129,89418.289,315,2.3818161948385783,13.6876371927826,11.258706094089444 +366.0,32,0,26,0,0,0,2,0,0,11,0,0,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.4,12.625,10.2769999999999,,323,0,,,,0,1,105,161,1.558770187177282,0.0,0.274,98.571,6.54,25.128,32.601,83950.067,323,2.374229883837775,13.64154228262272,11.218376573685733 +367.0,32,0,2,2,0,0,66,0,0,0,0,0,0,1,4,36,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,280,0,,,,0,1,0,0,1.5461328481451704,0.048,0.096,99.167,4.972,22.5,28.356,81615.097,280,2.3133666523145227,13.382229527581162,11.015262038631612 +368.0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,292,3,,,,0,1,0,0,0.9711651523737806,0.079,0.127,93.429,4.649,22.16,28.08,77765.93,292,2.363648377063951,13.66365403256551,11.249737799210616 +369.0,32,0,0,0,0,0,66,0,0,0,4,0,0,0,0,112,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,306,0,,,,0,1,0,0,1.5520074520274487,0.078,0.174,91.583,5.42,24.995,32.649,79508.662,306,2.353364447136037,13.608497932902605,11.194875864148832 +370.0,32,0,84,0,0,0,5,0,0,0,0,0,0,0,0,58,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,316,0,,,,0,1,0,0,1.556922722746608,0.0,0.225,101.095,5.166,25.366,33.097,85883.016,316,2.372176518640549,13.631391578141422,11.20758529540202 +371.0,32,0,7,0,0,48,3,0,0,4,0,0,2,0,0,80,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,273,0,,,,0,1,93,140,1.5537199150397287,0.0,0.096,91.931,4.852,22.292,28.398,77010.636,273,2.305325049239473,13.35243029254642,10.964515688967698 +372.0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,284,3,,,,0,1,0,0,0.9620690136563372,0.03,0.126,88.964,4.85,23.578,30.034,76159.037,284,2.304470323899471,13.332760314718882,10.965546752233683 +373.0,32,0,46,0,0,0,0,0,7,2,0,0,2,0,0,94,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,6,9,1.552775014468333,0.078,0.174,91.583,5.42,24.995,32.649,79508.662,295,2.294931457183261,13.269002553299853,10.908575778258186 +374.0,32,0,17,0,0,11,12,0,2,1,1,0,10,0,0,74,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,308,0,,,,0,1,144,219,1.5519734983881008,0.0,0.224,82.972,5.442,28.659,37.719,77242.101,308,2.370706354218601,13.587117782379243,11.18221258573551 +375.0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,269,3,,,,0,1,0,0,0.9502467400885186,0.079,0.126,89.501,5.737,25.263,33.312,78600.453,269,2.2969177733482864,13.284147853558697,10.90535381496058 +376.0,32,0,33,0,0,11,22,0,6,14,0,0,0,0,0,100,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,261,0,,,,0,1,17,25,1.553398328080572,0.05,0.097,83.883,5.402,23.174,30.297,73075.271,261,2.277670986047603,13.205907588402006,10.832087867974057 +377.0,32,0,0,0,0,0,69,0,80,10,0,0,0,0,0,140,0,0,PORTLAND,PORTLAND,0,2.4,12.0,9.769,,285,0,,,,0,1,0,0,1.5453381405797944,0.049,0.176,67.453,4.938,23.105,30.362,62601.607,285,2.283871148937364,13.219290328727686,10.84128055403204 +378.0,32,0,41,0,0,23,37,0,0,8,4,0,19,0,0,195,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,295,0,,,,0,1,2,3,1.5594180772862207,0.05,0.225,75.566,6.056,26.929,35.657,71182.725,295,2.282198181314332,13.157767146660536,10.829171701625294 +379.0,33,0,30,0,0,0,99,0,0,0,43,3,0,0,0,248,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,257,0,,,,0,1,0,0,1.5661177692006762,0.0,0.024,107.662,5.357,17.784,21.772,82837.654,257,2.3620163533465552,13.70625793810916,11.273434621292523 +380.0,33,0,21,0,0,2,17,0,9,3,0,0,0,0,0,43,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,274,0,,,,0,1,111,114,1.5243610485025705,0.0,0.046,121.131,6.207,17.745,21.826,91492.416,274,2.3704015317387803,13.750012971450085,11.319110092062925 +381.0,33,0,28,0,0,104,2,0,0,0,0,0,0,0,0,134,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,270,0,,,,0,1,228,229,1.5571226820157338,0.0,0.0,98.839,4.84,20.214,25.285,79439.326,270,2.367106533917509,13.714139976588962,11.284042439015272 +382.0,33,0,5,0,0,245,188,0,0,0,46,0,0,0,0,234,0,0,PORTLAND,PORTLAND,0,2.4,13.0,11.9499999999999,,248,0,,,,0,1,0,0,1.5496175659885072,0.0,0.0,98.839,4.84,20.214,25.285,79439.326,248,2.3607754674845127,13.68907594618114,11.237897495528856 +383.0,33,0,0,0,0,73,113,0,0,2,0,0,0,0,11,224,0,0,PORTLAND,PORTLAND,0,2.4,13.0,9.773,,242,0,,,,0,1,192,196,1.5486986868258814,0.0,0.027,96.549,2.342,21.817,26.61,78822.051,242,2.281478066205424,13.213906708378849,10.84265597522196 +384.0,33,0,0,0,0,0,154,0,0,2,0,0,0,0,0,85,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,263,0,,,,0,1,1,1,1.558127366382286,0.0,0.048,101.162,5.093,21.288,26.636,81790.884,263,2.3077675562717177,13.359404052923155,10.97612608591992 +385.0,33,0,0,0,0,41,28,0,34,0,0,0,0,0,0,163,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,234,0,,,,0,1,78,79,1.551986772497011,0.0,0.027,96.549,2.342,21.817,26.61,78822.051,234,2.2571629880485844,13.089113651444594,10.717359210070974 +386.0,33,0,0,0,0,8,2,0,0,8,0,48,0,0,0,55,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,253,0,,,,0,1,50,50,1.5519309106125618,0.0,0.048,97.092,5.688,20.899,26.61,79168.925,253,2.287690981897996,13.271443925396632,10.885737055002547 +387.0,33,0,0,0,0,2,7,0,6,0,0,0,0,0,47,27,0,0,PORTLAND,PORTLAND,0,2.4,11.32,11.176,,231,0,,,,0,1,0,0,1.5261011418957369,0.0,0.028,86.199,3.714,26.45,34.114,77000.711,231,2.184796476788875,12.661618572045152,10.361555572826306 +388.0,33,0,0,0,0,0,15,0,15,0,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,248,0,,,,0,1,0,0,1.5489502808642452,0.0,0.047,87.073,5.033,22.007,28.286,73830.106,248,2.217046922920864,12.85298514139016,10.52946725657839 +389.0,34,0,10,0,0,112,15,0,0,0,0,0,0,0,0,286,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,193,194,1.6335868398020643,0.0,0.057,86.339,2.555,15.673,18.321,66982.748,210,2.2680964789167715,13.159170987221298,10.763294155037864 +390.0,34,0,42,0,0,0,0,0,0,0,12,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,216,0,,,,0,1,63,78,1.5395167233464264,0.0,0.098,95.953,3.421,15.152,17.86,72840.648,216,2.28083881979814,13.239663591096692,10.84396641884396 +391.0,34,0,45,0,0,0,0,0,24,0,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,224,0,,,,0,1,142,142,1.5576921514259472,0.0,0.048,100.783,4.326,15.422,18.489,76334.296,224,2.314399450161472,13.452260693805554,11.018434084393164 +392.0,34,0,8,0,0,0,314,0,6,4,0,0,0,231,0,552,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,206,0,,,,0,1,1,1,1.8173341907877771,0.0,0.01,94.033,1.053,14.63,16.73,70888.154,206,2.235538553783905,12.975503997782187,10.598284604103023 +393.0,34,0,0,0,0,0,78,0,2,0,0,0,11,0,0,63,0,0,PORTLAND,PORTLAND,0,2.4,12.75,10.682,,201,0,,,,0,1,0,0,1.5408680039025349,0.096,0.139,84.421,1.078,17.486,20.624,67228.93,201,2.2539389125316864,13.053832537358224,10.6518193026151 +394.0,34,0,0,9,0,0,136,0,12,0,0,0,0,54,0,171,0,0,PORTLAND,PORTLAND,160,2.4,0.0,0.0,,198,0,,,,0,1,66,82,1.7196806886380225,0.045,0.029,64.876,0.647,16.517,19.35,53904.6,198,2.217318834949198,12.84186969669924,10.469933287439163 +395.0,34,0,32,0,0,13,28,0,17,6,10,0,5,15,0,139,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,210,0,,,,0,1,205,256,1.5519678865790774,0.048,0.097,88.71,2.66,16.767,20.083,69627.65,210,2.274339662946609,13.196073186040625,10.809741575259002 +396.0,34,0,1,0,0,19,24,0,0,0,0,18,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,218,0,,,,0,1,19,19,1.5509072477455836,0.048,0.048,94.832,4.728,17.173,20.838,74028.906,218,2.291708902461936,13.297462548105544,10.886995687808342 +397.0,34,0,0,0,5,90,115,0,13,0,0,0,0,0,0,314,0,0,PORTLAND,PORTLAND,0,2.4,12.0,10.227,,187,0,,,,0,1,0,0,1.7739257842282483,0.045,0.029,64.876,0.647,16.517,19.35,53904.6,187,2.142981641450028,12.413457029996858,10.119164970726189 +398.0,34,0,20,0,0,0,0,0,0,1,0,0,0,12,0,23,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,214,0,,,,0,1,0,0,1.552005319033292,0.048,0.048,88.69,2.524,17.927,21.836,70736.987,214,2.216552410889416,12.836589272878964,10.506136637001482 +399.0,34,0,29,0,0,0,39,0,34,0,0,0,0,0,0,111,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.0,,202,0,,,,0,1,93,113,1.5504431516316504,0.096,0.097,82.659,1.178,17.996,21.616,66736.267,202,2.196761799631016,12.733248386812845,10.412934822164484 +400.0,34,0,0,61,0,0,44,0,3,0,37,0,0,0,1,113,0,0,PORTLAND,PORTLAND,0,2.4,15.0,9.773,,196,0,,,,0,1,16,16,1.5467781216991852,0.033,0.0,52.975,0.638,17.282,20.237,46855.778,196,2.170081187078904,12.583887406941791,10.257164077443354 +401.0,34,0,0,0,0,0,1,0,0,0,0,0,0,345,0,141,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,185,0,,,,0,1,0,0,1.433985343919372,0.0,0.033,43.948,0.64,16.849,19.445,40571.293,185,2.101422832787264,12.15025631344629,9.9044310595993 +402.0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,193,2,,,,0,1,0,0,1.5377298376331856,0.0,0.106,72.781,0.946,17.929,21.319,60223.547,193,2.1228863070388098,12.310311221326884,10.034223553393538 +403.0,34,0,0,0,0,0,0,0,0,0,0,6,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,208,0,,,,0,1,13,13,1.5520264641245636,0.0,0.096,85.822,1.238,23.081,27.902,72782.898,208,2.154874400503932,12.491406998291575,10.212347486111383 +404.0,34,0,0,0,0,17,0,0,0,0,0,0,0,0,0,15,0,0,PORTLAND,PORTLAND,0,2.4,11.8119999999999,9.545,,203,0,,,,0,1,0,0,1.5348510301466656,0.048,0.048,74.13,2.486,21.799,27.067,64766.468,203,2.1238486807735266,12.277727311647167,10.03446436362985 +405.0,34,0,0,0,0,54,0,0,0,0,0,0,0,0,0,44,0,0,PORTLAND,PORTLAND,0,2.4,11.726,9.545,,189,0,,,,0,1,23,23,1.5638502547555064,0.05,0.097,85.822,1.238,23.081,27.902,72782.898,189,2.1023654242223384,12.17194187541956,9.923255889224173 +406.0,34,0,0,15,401,0,6,0,0,0,0,0,0,0,0,349,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,181,0,,,,0,1,23,23,1.4089828582762003,0.098,0.145,63.469,0.983,24.491,29.126,59260.447,181,2.075943156109634,11.948960128632466,9.74698730354454 +407.0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,181,0,,,,0,1,0,0,2.780418164419406,0.143,0.19,61.92,1.012,22.894,26.528,56606.29,181,2.094854380692784,12.1304983464737,9.88149262690068 +408.0,34,0,48,0,0,0,72,0,2,18,0,5,0,0,0,129,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,242,0,,,,0,1,0,0,1.5511968871830564,0.0,0.0,101.829,5.469,17.432,21.122,78688.764,242,2.3504839733999656,13.644988252846003,11.201810921855644 +409.0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,10.0,9.045,,233,0,,,,0,1,0,0,1.5509082691057383,0.0,0.0,97.573,5.391,17.131,21.051,75919.761,233,2.3482956331080835,13.620806864213542,11.180811930618416 +410.0,34,0,0,0,0,0,35,0,0,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.4,10.0,10.455,,229,0,,,,0,1,0,0,1.5527345360237077,0.0,0.0,96.585,4.907,18.344,22.688,76334.623,229,2.238928157526592,12.976316716822678,10.61996374656891 +411.0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,189,3,,,,0,1,10,10,27.15434893538025,0.023,0.13,54.325,0.563,12.96,14.543,44076.037,189,2.021809663743524,11.725513653854076,9.523948487802368 +412.0,34,0,26,0,0,0,189,0,10,0,0,0,0,0,0,162,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,225,0,,,,0,1,226,287,1.5527139739277347,0.0,0.0,95.774,2.936,21.319,26.004,77937.372,225,2.2211781591987902,12.882635289084764,10.526867169242 +413.0,34,0,71,0,0,0,51,0,1,2,0,12,0,0,0,105,0,0,PORTLAND,PORTLAND,0,2.4,0.0,0.0,,217,0,,,,0,1,62,72,1.5486221839779255,0.0,0.0,86.454,2.164,23.487,29.519,74222.859,217,2.157430174192095,12.491059218845884,10.21902234022628 +414.0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,124,0,,,,0,7,0,0,0.6735371972303739,0.041,0.887,13.541,0.938,12.323,18.902,20763.533,124,1.843137167006392,10.743929603961094,8.61471077789878 +415.0,35,0,13,0,0,0,21,0,0,3,0,0,4,0,0,67,0,0,PORTLAND,PORTLAND,0,0.0,12.0,7.273,,130,0,,,,0,7,0,0,6.229260071075992,0.098,0.956,17.103,0.995,12.343,18.763,22954.451,130,1.739925746095018,10.12604023848405,8.119475862535797 +416.0,35,0,17,0,3,43,22,0,7,0,4,0,4,0,0,163,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,74,0,,,,0,7,770,1391,84.73326249713821,0.0,1.179,11.183,0.213,6.272,10.992,14192.0,74,0.0,0.0,0.0 +417.0,35,0,0,0,0,0,32,4,0,1,0,0,0,0,0,44,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,142,0,,,,0,7,0,0,1.563180505754337,0.0,0.952,29.362,1.224,12.242,18.503,30634.002,142,1.6556507945082857,9.65697843052372,7.732476318268198 +418.0,35,0,0,0,0,0,5,0,0,0,0,14,0,9,0,27,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,137,0,,,,0,7,0,0,1.5554033914748708,0.0,1.0,23.296,1.254,11.538,17.721,26251.237,137,1.7070646871354194,9.971798229056816,7.998839522391256 +419.0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,134,0,,,,0,7,0,0,3.037235941405667,0.047,999999.0,27.139,1.027,9.204,15.696,27414.294,134,0.0,0.0,0.0 +420.0,35,0,46,0,0,0,0,0,0,1,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,135,0,,,,0,7,0,0,3.0985687610548847,0.0,999999.0,34.648,0.976,9.632,15.683,32211.692,135,0.0,0.0,0.0 +421.0,35,0,30,2,0,0,9,0,0,18,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,18,22,18.300479073845032,0.292,1.244,26.741,0.874,3.484,5.246,20471.783,152,0.0,0.0,0.0 +422.0,35,0,1,24,24,818,976,0,0,0,0,0,0,3,0,2498,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,95,0,,,,0,7,0,0,16.766906737079655,0.098,999999.0,19.357,0.388,2.76,5.008,15593.826,95,0.0,0.0,0.0 +423.0,35,0,0,0,0,0,67,0,0,1,0,18,0,0,0,132,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,120,0,,,,0,7,0,0,3.01143836032716,0.0,999999.0,16.815,0.378,6.078,11.044,17829.621,120,0.0,0.0,0.0 +424.0,35,0,0,1,0,0,0,2,30,0,2,3,0,0,0,19,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,132,0,,,,0,7,0,0,2.9999846378237143,0.096,999999.0,17.119,0.444,7.125,12.857,19184.829,132,0.0,0.0,0.0 +425.0,35,0,0,0,0,0,6,0,0,2,0,0,2,0,0,21,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,133,0,,,,0,7,0,0,1.529676332793087,0.049,1.001,22.769,1.314,9.943,15.393,24423.633,133,1.6052725700056216,9.368149876798649,7.48898854722158 +426.0,35,0,0,0,0,0,15,0,0,18,0,9,0,0,0,32,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,141,0,,,,0,7,0,0,3.084847619655973,0.197,1.149,25.033,1.2,4.104,5.506,19545.372,141,0.0,0.0,0.0 +427.0,35,0,0,0,35,0,0,0,0,0,0,0,0,0,0,67,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,138,0,,,,0,7,1,1,3.137201767908256,0.292,1.244,26.741,0.874,3.484,5.246,20471.783,138,0.0,0.0,0.0 +428.0,35,0,12,0,0,0,259,0,0,0,0,0,0,0,0,339,0,0,PORTLAND,PORTLAND,0,0.0,10.0,8.14,,114,0,,,,0,7,0,0,2.690198778041195,0.0,1.025,13.734,0.671,8.944,14.409,18011.711,114,1.6835347404184655,9.80568198082699,7.855411836406133 +429.0,35,0,0,0,0,0,4,0,0,0,0,18,153,0,0,129,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,129,0,,,,0,7,0,0,3.1437573737591324,0.195,999999.0,36.083,1.443,7.028,11.0,30132.673,129,0.0,0.0,0.0 +430.0,35,0,2,0,0,0,46,0,0,3,0,8,0,0,0,44,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,126,0,,,,0,7,2,2,3.1070392997252942,0.049,999999.0,27.105,0.998,8.519,14.445,26591.993,126,0.0,0.0,0.0 +431.0,35,0,0,0,0,0,0,0,0,0,0,0,13,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,118,0,,,,0,7,0,0,1.596053590434559,0.196,999999.0,34.488,1.292,6.511,10.227,28618.181,118,0.0,0.0,0.0 +432.0,35,0,0,0,0,0,58,0,0,0,0,0,0,0,302,508,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,116,0,,,,0,7,0,0,3.0999260632678194,0.215,999999.0,18.461,0.482,5.199,9.102,17640.449,116,0.0,0.0,0.0 +433.0,35,0,0,1050,0,0,8,0,0,0,0,2,0,0,0,1011,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,122,0,,,,0,7,0,0,6.219562848799785,0.213,999999.0,18.461,0.482,5.199,9.102,17640.449,122,0.0,0.0,0.0 +434.0,35,0,20,0,0,0,0,0,0,0,3,1,11,0,0,53,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,123,0,,,,0,7,7,10,4.619843065944305,0.099,999999.0,31.539,1.277,7.979,12.776,28361.968,123,0.0,0.0,0.0 +435.0,35,0,4,41,0,0,7,0,6,0,0,0,0,0,0,59,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,0,0,3.0960551943987444,0.193,999999.0,32.455,1.143,7.453,12.248,28610.151,114,0.0,0.0,0.0 +436.0,35,0,0,78,0,0,8,0,0,0,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,0,0,2.1514950118343057,0.215,999999.0,18.461,0.482,5.199,9.102,17640.449,103,0.0,0.0,0.0 +437.0,35,0,0,0,0,0,0,0,0,0,0,15,2,0,0,14,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,1,1,2.1486591193652886,0.246,999999.0,21.253,0.42,4.815,8.469,19022.293,103,0.0,0.0,0.0 +438.0,35,0,0,12,0,0,0,0,0,4,0,11,24,0,0,60,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,1,1,2.1141472697079022,0.146,999999.0,23.316,0.422,6.511,11.667,22388.996,103,0.0,0.0,0.0 +439.0,35,0,0,0,0,0,42,0,0,13,0,24,10,0,0,90,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,104,0,,,,0,7,14,14,2.184874102766029,0.193,999999.0,32.455,1.143,7.453,12.248,28610.151,104,0.0,0.0,0.0 +440.0,35,0,0,33,0,0,79,0,14,6,0,22,2,0,37,189,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,122,0,,,,0,7,0,0,17.24952199985081,0.244,1.196,24.752,0.822,2.767,3.839,18297.824,122,0.0,0.0,0.0 +441.0,35,0,0,0,0,0,0,0,0,0,0,16,0,0,0,28,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,0,0,10.761010066224417,0.197,999999.0,16.268,0.406,3.954,7.296,15081.322,114,0.0,0.0,0.0 +442.0,35,0,0,0,0,13,0,0,0,0,0,292,22,0,0,191,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,117,0,,,,0,7,0,0,24.822385045579924,0.39,999999.0,22.755,0.344,1.669,2.995,16480.027,117,0.0,0.0,0.0 +443.0,35,0,0,0,0,0,28,0,3,0,0,12,0,0,0,64,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,93,0,,,,0,7,0,0,1.7868621530366826,0.214,999999.0,32.699,0.322,4.005,6.965,25384.803,93,0.0,0.0,0.0 +444.0,35,0,0,26,0,0,8,0,2,0,0,0,0,0,0,42,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,92,0,,,,0,7,0,0,1.9051087171195484,0.314,999999.0,32.489,0.326,2.803,4.916,23938.803,92,0.0,0.0,0.0 +445.0,35,0,0,0,0,0,3,0,0,0,0,43,0,0,20,124,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,95,0,,,,0,7,0,0,8.664070461906478,0.245,999999.0,18.911,0.248,4.577,8.169,17330.85,95,0.0,0.0,0.0 +446.0,35,0,0,42,0,0,18,0,9,0,0,0,55,6,976,476,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,103,0,,,,0,7,0,0,11.542151290695028,0.0,1.179,11.183,0.213,6.272,10.992,14192.0,103,0.0,0.0,0.0 +447.0,35,0,0,0,0,0,23,0,0,0,0,0,4,0,0,15,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,88,0,,,,0,7,0,0,4.160415386353441,0.148,999999.0,18.49,0.359,4.114,7.289,16498.271,88,0.0,0.0,0.0 +448.0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,77,0,,,,0,7,0,0,4.00481454905156,0.205,999999.0,17.974,0.153,4.068,7.26,16149.926,77,0.0,0.0,0.0 +449.0,36,0,0,0,0,0,0,0,0,8,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,132,0,,,,0,7,0,0,0.5905916911912001,0.061,0.907,14.729,1.273,14.175,21.358,23096.121,132,1.867638964260174,10.88021142691932,8.728336614892427 +450.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,222,0,,,,0,7,0,0,0.5290965466717529,0.0,0.697,40.121,3.127,26.118,36.982,49346.174,222,2.1932301428414704,12.596156660094286,10.15965222915555 +451.0,36,0,31,0,0,0,9,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,224,0,,,,0,7,81,104,1.529271597162421,0.0,0.649,39.084,2.306,26.997,38.033,49354.63,224,2.1535604393701795,12.377552680511627,9.976699790090624 +452.0,36,0,0,0,0,0,1,0,192,0,0,0,0,0,0,230,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,231,0,,,,0,7,7,9,1.5521344577959872,0.0,0.611,33.931,2.258,27.766,39.081,46727.682,231,2.121392985454836,12.35259942778084,9.927492095586713 +453.0,36,0,0,0,0,0,0,0,0,11,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,228,0,,,,0,7,67,82,1.5529465041677388,0.0,0.562,36.976,1.968,28.058,39.339,48841.652,228,2.105656051640473,12.215401802264944,9.813579445819949 +454.0,36,0,0,9,0,0,0,0,0,0,9,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,213,0,,,,0,7,2,3,1.535165276650532,0.048,0.698,33.596,2.899,25.949,36.734,45011.652,213,2.036059686402629,11.700595087216763,9.42389981622776 +455.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,207,0,,,,0,7,0,0,0.5530042062723014,0.048,0.698,34.795,2.588,22.553,31.956,42720.501,207,2.0772475200898537,11.929915714532966,9.613962647868238 +456.0,36,0,0,0,0,0,11,0,2,0,0,0,0,0,0,21,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,221,0,,,,0,7,32,39,1.549998669988299,0.049,0.66,36.638,1.926,26.706,37.467,47427.164,221,2.077503760075365,12.094028423191064,9.709844288482682 +457.0,36,0,0,0,0,0,0,0,0,26,0,0,0,0,0,39,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,4,5,1.5526264157375946,0.049,0.611,37.62,1.981,26.94,37.826,48285.43,217,2.045685154612585,11.852522058085029,9.514969157970466 +458.0,36,0,0,3,0,0,45,0,0,0,0,0,0,0,0,45,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,200,0,,,,0,7,0,0,1.5357185895900076,0.0,0.746,32.585,2.228,21.919,30.931,40650.455,200,2.003553961526411,11.49193611981016,9.252509630131362 +459.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,194,0,,,,0,7,0,0,0.5955868679402376,0.0,0.715,29.817,2.565,22.915,32.511,39890.081,194,2.032551093085629,11.651190978978718,9.385252365946169 +460.0,36,0,5,0,0,2,6,0,0,0,61,0,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,99,136,1.5517651529011365,0.0,0.708,37.306,1.92,25.897,36.65,47331.913,208,1.9743420336633404,11.488408536909356,9.234167520026896 +461.0,36,0,0,0,0,0,9,0,4,15,0,0,0,0,0,16,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,0,0,1.5526038904186985,0.0,0.66,39.142,2.358,25.526,35.987,48082.619,210,2.0109387119736466,11.69980883866038,9.382199270439514 +462.0,36,0,0,9,0,0,19,0,0,0,1,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,197,0,,,,0,7,89,123,1.5549410912558628,0.048,0.756,34.25,2.027,21.445,30.331,41331.519,197,1.935695101000133,11.25948463554481,9.046516028483444 +463.0,36,0,16,0,0,0,8,0,0,9,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,194,0,,,,0,7,0,0,1.5375037168283407,0.0,0.708,39.22,2.308,23.249,32.933,46177.669,194,1.9078352132604244,11.08344996077815,8.887819506534875 +464.0,36,0,0,0,0,0,2,0,0,49,0,0,0,0,0,45,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,0,0,1.538019347078046,0.097,0.843,29.849,2.189,21.002,30.032,38324.135,186,1.958877221795003,11.40433640414778,9.165776137043505 +465.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,180,0,,,,0,7,0,0,0.5911181745514296,0.049,0.759,28.29,2.473,21.453,30.679,37739.995,180,1.999529123631178,11.475750855871992,9.233479609910594 +466.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,168,0,,,,0,7,0,0,0.5708679573730354,0.097,0.804,28.525,1.785,21.77,31.336,38310.59,168,1.9426492413266376,11.326056357003306,9.100288145307772 +467.0,36,0,0,0,0,0,0,0,0,0,11,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,175,0,,,,0,7,0,0,1.5122510921408272,0.097,0.843,29.849,2.189,21.002,30.032,38324.135,175,1.9189773783047464,11.179015802572213,8.980316463209935 +468.0,36,0,0,0,0,0,7,0,41,0,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,185,0,,,,0,7,0,0,1.5637312139807744,0.05,0.805,32.377,2.432,21.593,30.622,40319.501,185,1.8968176238611176,11.02615561302566,8.859196641731186 +469.0,36,0,0,0,0,0,0,0,0,0,0,34,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,0,0,1.5491856859926765,0.049,0.757,40.195,2.411,24.673,35.01,48131.429,186,1.858207572437182,10.797893385488306,8.673296401086027 +470.0,36,0,0,8,0,0,110,0,0,0,0,0,1,0,0,209,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,44,53,3.0921505526798057,0.096,0.853,40.659,1.486,22.113,32.128,46583.696,186,1.755681041232042,10.187882735606706,8.167324577062267 +471.0,36,0,2,0,0,8,8,0,11,0,2,0,0,4,0,24,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,171,0,,,,0,7,0,0,1.5375756954219864,0.0,0.855,32.334,2.466,21.571,30.746,40371.675,171,1.8435366311121404,10.71996590261769,8.60806309300553 +472.0,36,0,0,0,0,97,7,0,136,0,0,0,1,0,0,229,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,74,91,1.5463819127060303,0.0,0.806,31.549,1.995,21.174,30.254,39554.05,173,1.820102942749107,10.573475396002918,8.484389927939464 +473.0,36,0,19,17,0,0,63,0,0,0,0,0,1,0,0,156,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,178,0,,,,0,7,58,68,3.1182245475975443,0.0,0.952,44.056,1.665,20.215,29.382,47000.263,178,1.6965443534029976,9.83829608299037,7.872783139094384 +474.0,36,0,0,0,0,2,13,0,0,4,0,1,0,0,0,35,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,189,0,,,,0,7,21,21,6.1768701549808585,0.046,0.94,41.145,1.641,19.023,27.734,44082.703,189,1.4903616524618803,8.636143296267633,6.905363998794948 +475.0,36,0,0,0,0,0,9,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,43,43,1.5880752412738717,0.047,0.893,27.113,1.902,17.109,25.325,33560.217,162,1.879780581319759,10.937166296877228,8.787006709965702 +476.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,155,0,,,,0,7,0,0,0.6723563906893335,0.1,0.853,31.491,2.213,20.794,29.898,39289.139,155,1.9247397919271951,11.206837642413426,9.005943330280758 +477.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,0,0,2.321788928937216,0.098,0.903,21.992,1.948,16.569,24.728,29900.793,152,1.854478447874628,10.790682865901871,8.66338964014388 +478.0,36,0,0,0,0,4,14,0,0,1,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.0,10.0,8.14,,177,0,,,,0,7,0,0,3.102468097562304,0.0,0.991,41.808,1.687,17.108,25.194,42881.149,177,1.5155722263673723,8.778934537456903,7.010137039065781 +479.0,36,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,168,0,,,,0,7,14,18,3.1511560323753933,0.046,0.998,35.794,1.737,16.808,24.316,38470.319,168,1.6572135804418615,9.60725860337526,7.704876892022904 +480.0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,163,0,,,,0,7,0,0,1.625373028216062,0.05,0.904,29.457,1.176,13.978,21.07,32337.307,163,1.7824845185424694,10.39081549910637,8.342334233733443 +481.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,159,0,,,,0,7,0,0,1.955648007889235,0.048,0.95,28.579,1.184,14.661,22.059,32408.319,159,1.8073847760025632,10.505027930621926,8.430326694982359 +482.0,36,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,161,0,,,,0,7,0,0,2.8094865313246875,0.046,0.998,35.794,1.737,16.808,24.316,38470.319,161,1.5795979865311338,9.1986611354289,7.369481384096227 +483.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,149,0,,,,0,7,0,0,1.0766780288538875,0.0,0.952,29.362,1.224,12.242,18.503,30634.002,149,1.718370144484463,10.023032939227967,8.039532124164934 +484.0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,151,0,,,,0,7,0,0,1.7487933784647656,0.048,0.95,28.579,1.184,14.661,22.059,32408.319,151,1.7558091651097578,10.210324589445182,8.184754596460854 +485.0,36,0,0,0,0,0,2,0,0,4,0,0,3,0,0,18,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,145,0,,,,0,7,12,12,1.5970207636762883,0.049,1.005,21.154,1.138,13.174,20.116,26413.149,145,1.8186530412084645,10.582273632811804,8.486561012373036 +486.0,36,0,0,0,0,0,0,0,0,0,0,0,0,75,0,76,206,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,142,0,,,,0,7,0,0,1.7154113378302516,0.145,0.95,19.743,1.959,16.325,24.408,28256.804,142,1.8161602144747333,10.577253031299335,8.486474297740646 +487.0,36,0,0,0,0,10,115,0,0,0,0,0,23,0,348,545,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,170,0,,,,0,7,0,0,2.9620896831294523,0.097,1.088,43.17,1.761,13.327,19.519,40120.624,170,1.4207551396577902,8.226538642899248,6.585591262409422 +488.0,37,0,36,0,0,10,33,0,25,1,26,0,0,0,0,111,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,242,0,,,,0,7,14,15,3.101617897571761,0.0,0.66,41.724,3.187,23.808,32.509,47509.474,242,1.9600104162032184,11.365335793187226,9.128581701663729 +489.0,37,0,0,0,0,77,0,0,0,0,0,0,0,0,0,45,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,249,0,,,,0,7,0,0,1.5558299647173122,0.097,0.514,34.435,2.602,28.269,39.096,47060.081,249,2.134045533717174,12.375411337338983,9.948211822450093 +490.0,37,0,2,0,0,1,3,0,2,0,0,0,1,0,0,10,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,278,0,,,,0,7,12,13,1.550859981692053,0.048,0.316,52.587,5.643,26.897,36.989,57328.865,278,2.1378223349741425,12.390870161789955,10.084183914023784 +491.0,37,0,26,0,0,0,10,0,0,0,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,270,0,,,,0,7,5,5,1.5527605823930175,0.0,0.268,45.852,4.912,28.359,39.589,54682.039,270,2.0716598671570035,12.021468364478512,9.78580158850224 +492.0,37,0,0,0,0,20,0,0,0,0,0,0,0,15,0,35,134,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,261,0,,,,0,7,28,35,3.103974235038447,0.096,0.392,39.355,3.261,26.922,37.732,49335.711,261,2.043708855587776,11.42991705364945,9.29273645462771 +493.0,37,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,275,0,,,,0,7,34,44,1.5519366345107757,0.0,0.366,44.473,3.98,26.271,36.312,51702.72,275,2.230021120747141,12.924161085997229,10.514772568050674 +494.0,37,0,0,0,0,0,3,0,0,1,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,265,0,,,,0,7,101,129,1.5527400165137863,0.0,0.318,39.279,5.146,27.661,38.437,49738.373,265,2.1082663368481604,12.232698645543987,9.910962711433818 +495.0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,261,3,,,,0,7,6,6,3.1038544418554985,0.097,0.466,33.926,3.832,29.478,41.4,48208.688,261,2.05363615009196,11.487310903162252,9.298117044725846 +496.0,37,0,0,0,0,37,0,0,7,0,0,0,0,0,0,27,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,262,0,,,,0,7,38,41,1.5516049114313903,0.0,0.367,42.623,3.976,26.629,36.973,50941.847,262,2.100608133902365,12.146414183916397,9.84574936813788 +497.0,37,0,0,0,0,0,40,0,0,0,0,0,1,0,0,30,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,255,0,,,,0,7,141,177,3.103896873524321,0.096,0.514,35.088,4.296,26.171,36.282,45676.406,255,2.0546932200959764,11.500290905958662,9.309514027108754 +498.0,37,0,0,39,0,1,25,0,0,0,0,0,0,0,0,48,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,260,0,,,,0,7,38,50,1.5526461823398396,0.0,0.415,41.232,3.643,27.663,38.148,50803.416,260,2.074075981549034,12.015735524676767,9.682708884846503 +499.0,37,0,0,0,0,1,5,0,1,0,0,0,1,0,0,15,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,253,0,,,,0,7,259,344,3.101634452188028,0.096,0.514,35.088,4.296,26.171,36.282,45676.406,253,2.029423931839472,11.353883484031552,9.184497788423366 +500.0,37,0,0,0,0,0,10,0,8,0,0,0,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,256,0,,,,0,7,45,59,1.541830310131679,0.049,0.464,41.012,3.123,27.537,37.979,50553.78,256,2.14485302335135,12.422010958473892,10.007913888226051 +501.0,37,0,0,0,0,11,8,0,0,0,0,1,0,1,0,30,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,253,0,,,,0,7,97,121,3.1038791147874103,0.098,0.563,37.097,3.209,24.853,34.401,45758.601,253,2.001127150374997,11.5892042606516,9.328237271628067 +502.0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,243,0,,,,0,7,0,0,0.5425913397298702,0.097,0.648,42.346,2.558,28.131,39.748,52540.083,243,2.201029977477463,12.630043865206536,10.209548675511632 +503.0,38,0,0,0,0,0,9,0,0,0,0,0,0,0,0,18,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,299,0,,,,0,7,51,65,1.6611547508776618,0.0,0.248,70.41,6.364,22.119,30.006,64265.744,299,2.087340092038593,12.132691154064414,9.964224714858892 +504.0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,290,0,,,,0,7,0,0,1.7185287379775844,0.098,0.308,58.684,5.852,23.562,32.088,58093.815,290,2.103704774415029,12.072717845287867,9.891254581122467 +505.0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,286,0,,,,0,7,0,0,1.2160901308762595,0.047,0.404,53.282,5.926,27.437,37.449,58067.27,286,2.2760136950110947,13.030641130548377,10.654563578035557 +506.0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,273,0,,,,0,7,0,0,1.7473341782402774,0.049,0.502,51.074,5.155,27.87,37.945,56971.799,273,2.2586686059620664,12.991561208525704,10.566808141144357 +507.0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,259,0,,,,0,7,0,0,0.5838303908941146,0.146,0.599,46.12,4.005,29.259,41.29,55942.585,259,2.221340745838815,12.726376989446152,10.319717284661978 +508.0,38,0,0,0,0,21,8,0,0,0,0,0,0,0,0,38,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,248,0,,,,0,7,72,94,1.5627108858349723,0.048,0.563,40.2,2.401,28.496,40.024,51343.716,248,2.153196211657657,12.508581066325924,10.078074604106863 +509.0,38,0,0,0,0,0,42,0,8,0,0,0,0,0,55,122,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,241,0,,,,0,7,0,0,1.516738046310516,0.048,0.601,40.074,2.474,27.715,39.019,50619.662,241,2.184300372408165,12.54468252529582,10.135990149890835 +510.0,38,0,0,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,291,0,,,,0,7,0,0,1.4297459303273603,0.0,0.202,60.405,5.274,22.978,31.669,58927.087,291,2.0577874807914065,11.930698781144244,9.784145142153829 +511.0,38,0,0,0,0,0,0,0,0,0,0,0,0,36,0,39,225,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,289,0,,,,0,7,5,5,1.525669730833792,0.075,0.286,64.107,5.974,21.105,28.681,59384.472,289,2.065598250101241,11.932829111867678,9.783090524261851 +512.0,38,0,0,11,0,0,5,0,15,0,0,0,0,13,0,46,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,282,0,,,,0,7,82,108,1.5363536698075542,0.0,0.309,54.931,6.32,25.719,34.948,57522.284,282,2.100396202931909,12.11920551346914,9.92342325515084 +513.0,38,0,0,0,0,0,0,0,0,0,0,0,66,0,0,81,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,281,0,,,,0,7,35,42,1.5343593467627232,0.0,0.309,54.931,6.32,25.719,34.948,57522.284,281,2.2310582454739394,12.752230144874282,10.43300780848586 +514.0,38,0,15,0,0,0,1,0,0,18,1,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,282,0,,,,0,7,1,1,1.566643098570311,0.048,0.357,53.336,6.06,26.079,35.749,57014.341,282,2.2658444942216542,13.001585976453413,10.594218010020676 +515.0,38,0,0,0,0,0,0,0,0,31,0,0,0,4,0,25,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,273,0,,,,0,7,0,0,1.5649616375669213,0.0,0.405,51.562,5.414,27.898,38.113,57392.067,273,2.257546400691307,12.97319590390465,10.562060939363615 +516.0,38,0,0,0,0,1,13,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,274,0,,,,0,7,14,14,1.5508218159665177,0.048,0.415,41.664,3.608,27.857,38.18,51100.124,274,2.218948437267294,12.86346948188548,10.42660666634658 +517.0,38,0,0,34,0,0,10,0,3,0,0,0,0,0,0,47,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,268,0,,,,0,7,36,44,1.5527762407609424,0.049,0.454,49.399,4.707,26.937,37.139,55384.119,268,2.24995602108599,12.930027443817243,10.493417090815504 +518.0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,266,0,,,,0,7,15,15,1.5519561602938083,0.0,0.463,43.051,3.053,27.516,38.021,51885.735,266,2.188087824214519,12.681517023754928,10.254835330058622 +519.0,38,0,31,0,0,0,28,0,0,0,0,0,0,0,0,53,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,263,0,,,,0,7,0,0,1.5402068528020665,0.098,0.503,45.917,4.043,29.011,40.182,55103.175,263,2.2295270214963607,12.819274708722158,10.367381748620009 +520.0,38,0,0,0,20,0,0,0,0,0,0,0,7,0,0,24,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,260,0,,,,0,7,0,0,1.547619640566623,0.097,0.512,40.604,2.736,28.195,39.038,50971.177,260,2.166222120930536,12.585472271514188,10.145365248668757 +521.0,38,0,0,0,0,5,11,0,0,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,257,0,,,,0,7,9,9,1.518515676261614,0.098,0.551,42.358,2.536,29.159,41.099,53412.799,257,2.201661740128744,12.655669650047932,10.212406731072525 +522.0,39,0,19,0,0,0,3,0,0,0,0,0,0,0,0,17,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,285,0,,,,0,7,86,131,1.3129848711541747,0.0,0.15,53.014,5.186,24.405,33.764,55538.121,285,1.8397303714177893,10.623120267504934,8.703981089234759 +523.0,39,0,76,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,274,0,,,,0,7,5,6,1.175071664211552,0.0,0.088,51.35,5.437,23.814,33.897,54558.077,274,1.8152894317224848,10.123384003728956,8.281823554847906 +524.0,39,0,0,0,0,0,2,0,14,0,0,0,0,1,0,17,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,275,0,,,,0,7,75,112,1.55197574983357,0.0,0.123,50.736,5.328,25.247,35.179,54986.135,275,1.822628907812473,10.177492096046803,8.313514322215822 +525.0,39,0,0,0,0,0,0,0,9,0,0,0,0,0,0,11,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,284,0,,,,0,7,3,4,1.55770759508908,0.0,0.172,50.082,5.538,26.488,36.734,55562.565,284,1.9427621083013868,11.228951518111831,9.185416869115718 +526.0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,278,0,,,,0,7,0,0,1.5428278532156068,0.05,0.22,50.647,5.816,26.296,36.261,55621.17,278,1.934555330157984,11.186199913971612,9.14445285643836 +527.0,39,0,13,0,0,0,0,0,50,0,0,0,0,0,0,83,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,269,0,,,,0,7,120,134,4.137702740774821,0.048,0.171,49.296,5.636,27.55,38.302,56062.498,269,1.802358322396344,10.074127772746104,8.22091239089207 +528.0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,9.99499999999999,8.13599999999999,,272,0,,,,0,7,16,20,1.5516822190037616,0.048,0.171,49.296,5.636,27.55,38.302,56062.498,272,1.9278548953080643,10.772397732337174,8.792031857496957 +529.0,39,0,26,0,0,4,7,0,3,4,0,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.0,12.787,10.409,,258,0,,,,0,7,271,424,3.981844918159621,0.0,0.172,40.744,4.677,25.005,36.044,49144.013,258,1.788668173390802,9.689329954690336,7.901563952596534 +530.0,39,0,0,0,0,21,0,0,0,0,0,0,0,0,0,53,0,0,PORTLAND,PORTLAND,0,0.0,10.33,8.409,,278,2,,,,0,7,32,46,1.5520325483072102,0.0,0.357,52.702,5.802,25.914,35.385,56375.971,278,2.0984315696658085,12.122737819504511,9.890300856759776 +531.0,39,0,0,0,0,0,1,0,0,0,0,6,0,60,0,43,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,269,0,,,,0,7,58,87,1.5527782100980283,0.0,0.22,47.377,5.24,26.154,36.225,53505.402,269,1.993941657504324,11.539579942096218,9.412199037097592 +532.0,39,0,0,0,0,1,1,0,91,0,0,0,0,0,0,37,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,260,0,,,,0,7,249,386,3.107761211997538,0.0,0.269,47.601,5.988,27.253,37.535,54486.971,260,1.8900335337192435,10.564610830656814,8.592447195112674 +533.0,40,0,17,0,0,0,0,0,0,14,0,0,0,0,0,46,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,223,0,,,,0,7,64,80,2.091631183524393,0.048,0.294,25.997,3.514,26.836,40.19,42360.282,223,1.6502917039035017,8.752313787323175,7.093140724283724 +534.0,40,0,64,0,0,0,1,0,0,0,0,0,0,0,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,213,0,,,,0,7,50,61,1.7223794467541025,0.0,0.342,26.02,3.658,26.919,40.493,42567.893,213,1.602616033406178,8.436470086823292,6.799405703318232 +535.0,40,0,0,0,0,0,9,0,0,221,0,0,0,0,0,131,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,245,0,,,,0,7,31,37,3.820695387377384,0.0,0.205,34.61,4.638,27.483,39.611,47501.528,245,1.7529519323374658,9.47738241481874,7.70879554711296 +536.0,40,0,73,0,0,0,54,0,8,0,0,0,2,0,0,112,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,233,0,,,,0,7,92,114,3.696232830268968,0.049,0.308,32.839,2.957,27.093,39.167,46084.195,233,1.70127475697244,9.108824992790638,7.40215908107041 +537.0,40,0,0,0,0,1,7,0,0,0,0,0,0,0,0,6,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,223,0,,,,0,7,131,167,3.1045067540046145,0.099,0.353,26.351,3.537,27.017,40.296,42654.314,223,1.682675045401288,8.942760604711017,7.220275032408217 +538.0,40,0,51,0,0,0,2,0,14,5,0,0,0,0,0,69,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,239,0,,,,0,7,185,250,3.1036621991613247,0.049,0.322,33.251,3.437,27.389,38.577,45969.481,239,1.7986973460893052,9.69083942087571,7.8658937637255875 +539.0,40,0,0,0,0,2,9,0,1,0,9,0,0,2,0,39,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,225,0,,,,0,7,144,192,3.101871952021774,0.098,0.446,23.339,3.657,29.921,42.858,42365.884,225,1.683868653383287,8.966133338065877,7.226619952705656 +540.0,41,0,42,0,0,0,15,0,0,0,0,0,2,0,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,240,0,,,,0,7,188,263,3.1046989764349573,0.0,0.406,35.865,3.464,27.205,38.525,47609.996,240,1.7834860204176388,9.896438357381369,7.996445571164977 +541.0,41,0,141,0,0,0,6,0,0,64,0,1,0,0,0,228,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,222,0,,,,0,7,103,132,3.104936964278215,0.098,0.495,34.744,3.34,29.332,41.837,49012.41,222,1.680749051388657,8.960279802685655,7.220195936356013 +542.0,41,0,23,0,0,6,1,0,2,0,0,16,0,21,0,73,268,69,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,239,2,,,,0,7,54,70,3.102517091754565,0.0,0.454,31.673,3.722,27.686,39.272,45404.962,239,1.941144059322828,10.784219176204996,8.711575458143647 +543.0,41,0,21,0,0,0,3,0,0,0,33,0,0,0,0,88,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,221,0,,,,0,7,122,160,3.10254320159644,0.097,0.592,36.565,3.78,28.009,39.818,48884.554,221,1.6724096115104183,9.21750836262928,7.418524570881849 +544.0,42,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,144,0,,,,0,7,17,25,5.286686595288255,0.231,1.167,23.325,1.023,12.605,21.908,28949.604,144,0.0,0.0,0.0 +545.0,42,0,0,0,0,0,4,0,0,5,0,0,4,0,0,14,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,152,0,,,,0,7,13,21,3.0359850370061783,0.097,1.033,22.603,1.929,15.123,24.576,30194.519,152,0.0,0.0,0.0 +546.0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,60,108,3.0447013556746154,0.1,1.108,29.809,2.28,18.769,29.368,37873.349,160,1.4323846004973864,7.775538461608953,6.2360784839421495 +547.0,42,0,0,0,0,39,1,0,15,4,0,0,38,0,0,94,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,166,0,,,,0,7,76,142,3.1049729374324864,0.1,1.059,35.322,2.403,19.75,30.382,42050.313,166,1.4723119471203996,8.038686618793863,6.447502984130294 +548.0,42,0,8,0,0,0,4,0,1,0,0,0,0,0,0,24,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,54,96,3.102310215074031,0.023,0.94,39.347,2.835,20.465,30.785,44884.988,173,1.4862906294767475,8.116134741392715,6.509619961550175 +549.0,42,0,0,0,0,0,11,0,0,0,0,0,0,0,0,9,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,71,129,2.685009225175862,0.194,0.865,30.924,2.849,23.72,35.326,42399.827,173,1.7559768430826177,8.997572970761087,7.237604598687024 +550.0,42,0,82,0,0,0,4,0,0,23,0,0,0,0,0,74,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.769,,181,0,,,,0,7,62,115,3.101721471376913,0.145,0.816,28.076,2.624,23.449,35.003,40369.998,181,1.7685314950661055,9.487943807414505,7.62040901630025 +551.0,42,0,43,0,0,0,4,0,0,50,0,0,0,2,0,59,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,174,0,,,,0,7,46,81,3.104551649822126,0.097,0.865,31.995,2.098,20.929,32.192,41079.561,174,1.711918597547903,9.4602710763186,7.590152655635648 +552.0,42,0,0,0,0,33,0,0,0,0,0,0,0,0,1,37,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,170,0,,,,0,7,49,87,3.122335047833615,0.0,0.838,18.033,1.724,14.491,23.361,26492.378,170,1.6546931372569538,9.109243119264102,7.306809687575012 +553.0,42,0,23,0,0,3,0,0,0,31,0,0,0,0,0,51,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,172,0,,,,0,7,25,36,3.104513458392751,0.145,0.915,36.428,2.47,21.573,32.536,44136.878,172,1.6631949931347694,9.190259679094568,7.372411144807263 +554.0,42,0,0,0,0,125,0,0,10,0,0,0,0,0,0,116,0,0,PORTLAND,PORTLAND,0,2.0,7.0,5.698,,166,0,,,,0,7,7,11,3.0731941216621665,0.048,0.888,23.788,2.288,17.389,27.861,33055.469,166,1.6398213296482902,9.036380725495606,7.248463476935156 +555.0,42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,161,0,,,,0,7,82,156,2.441693147270324,0.083,1.019,25.798,2.246,15.212,24.588,32247.172,161,0.0,0.0,0.0 +556.0,42,0,1,7,0,0,5,0,9,2,0,0,0,0,0,31,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,41,54,3.1044791783689245,0.097,0.963,33.65,2.691,18.936,29.093,40155.622,173,1.5315168708069384,8.367129317431141,6.710956761415366 +557.0,42,0,0,1,0,210,14,0,1,0,0,0,0,0,0,155,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,161,0,,,,0,7,45,78,2.9080939659735923,0.048,0.984,24.821,2.117,16.97,27.103,33231.036,161,0.0,0.0,0.0 +558.0,42,0,0,0,0,45,0,0,0,0,0,0,0,0,0,32,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,165,0,,,,0,7,77,145,3.0580463298965306,0.049,0.985,25.491,2.067,17.487,27.93,34189.667,165,1.6038764766020677,8.829083169052039,7.08211868742863 +559.0,42,0,0,0,0,8,2,0,1,0,0,1,0,0,0,12,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,168,0,,,,0,7,6,10,3.0425514624139938,0.049,0.985,25.491,2.067,17.487,27.93,34189.667,168,1.5561184391687215,8.563673317134917,6.869207557524425 +560.0,42,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,158,0,,,,0,7,68,125,3.0274626479639446,0.097,1.033,22.603,1.929,15.123,24.576,30194.519,158,0.0,0.0,0.0 +561.0,43,0,0,0,0,1767,0,0,0,0,0,0,0,0,0,1805,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,187,0,,,,0,7,0,0,6.206734275042561,999999.0,999999.0,224.45,0.0,13.209,14.176,152720.322,187,1.5203503508937677,8.363696957849964,6.688178116698043 +562.0,43,0,26,0,0,0,2,0,0,5,0,32,0,0,0,86,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,31,42,3.097589709955623,0.049,0.739,35.626,2.764,24.553,35.51,45527.317,210,1.727862556062733,9.56126874936184,7.6599092795243005 +563.0,43,0,0,0,0,73,1,0,1,0,0,0,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,201,1,,,,0,7,7,7,3.101724448255376,0.0,0.788,39.809,2.628,24.558,35.573,48244.719,201,1.6227286577557771,8.977723092198143,7.19040109564844 +564.0,43,0,33,0,0,1,15,0,0,0,0,9,2,0,0,79,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,230,0,,,,0,7,128,190,3.108901737641503,0.049,0.649,40.454,4.034,23.154,32.645,46783.723,230,1.8285837624829628,10.183603466711972,8.173608755908516 +565.0,43,0,0,0,0,20,33,0,1,5,0,0,0,4,0,36,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,236,0,,,,0,7,16,21,3.10607523859615,0.0,0.551,34.576,3.442,27.012,38.063,46488.889,236,1.932538888975449,10.73993276753981,8.677416590738511 +566.0,43,0,44,0,0,14,17,0,0,0,0,1,0,0,0,105,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,219,0,,,,0,7,94,126,3.103756352761719,0.097,0.592,36.565,3.78,28.009,39.818,48884.554,219,1.8287169680912247,10.069681220116214,8.102300869741624 +567.0,43,0,13,0,0,0,21,0,6,0,0,0,0,0,0,62,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,236,0,,,,0,7,31,42,3.101160303436441,0.0,0.551,34.576,3.442,27.012,38.063,46488.889,236,1.878280867343304,10.434092519491438,8.412059103296055 +568.0,43,0,16,0,0,0,0,0,0,0,0,0,2,0,0,30,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,124,182,3.1045924115093437,0.099,0.641,35.8,3.645,25.133,36.226,46096.96,217,1.8066703317764607,9.96935572124863,8.017409267035282 +569.0,43,0,12,0,0,2,3,0,0,20,0,0,3,1,0,40,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,195,0,,,,0,7,60,81,3.102443995850772,0.049,0.72,35.503,2.683,25.863,38.247,47199.938,195,1.7773961452448994,9.833830877703091,7.894969338545554 +570.0,43,0,0,0,0,11,5,0,0,0,0,0,0,0,0,29,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,235,0,,,,0,7,100,127,3.1051572490396997,0.049,0.6,37.038,3.703,26.204,36.984,47373.923,235,1.8575615904703568,10.34977463957236,8.309683108046611 +571.0,43,0,70,0,0,0,2,0,0,4,0,0,0,0,0,74,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,212,0,,,,0,7,158,243,3.119937108393489,0.098,0.69,35.946,3.65,26.132,38.016,47335.978,212,1.7911933668290072,9.89801595857357,7.958009656418176 +572.0,43,0,50,0,0,0,1,0,0,25,0,1,9,0,0,172,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,188,0,,,,0,7,107,151,3.0890473522857698,0.0,0.769,36.775,3.173,24.939,36.613,46967.864,188,1.6981748298013963,9.323162817474484,7.485358935463714 +573.0,43,0,30,0,0,47,18,0,1,19,0,0,0,0,0,216,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,186,0,,,,0,7,99,134,3.1039881455697373,0.049,0.818,34.971,2.873,22.263,33.068,43544.591,186,1.6366779418725863,8.986675871434894,7.214409468016476 +574.0,44,0,0,0,0,26,19,0,13,28,9,0,0,0,0,77,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,0,0,1.9669580886494769,0.0,0.515,22.7,5.47,32.246,49.154,45986.635,180,1.651278590459209,8.350997836949066,6.726923663601972 +575.0,44,0,5,0,0,0,25,0,17,15,0,0,0,0,0,103,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,184,0,,,,0,7,13,16,1.4171961178884962,0.0,0.532,22.498,4.729,29.97,46.088,43894.84,184,1.6852682720368073,8.565829514896516,6.897872024921143 +576.0,44,0,0,0,0,20,14,0,0,0,0,0,6,0,0,21,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,178,287,2.922990044654619,0.0,0.472,29.937,4.452,28.822,43.373,46918.42,198,1.6761661715941163,8.54429454606967,6.882377224888377 +577.0,44,0,28,0,0,0,2,0,0,0,0,0,1,0,0,25,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,207,0,,,,0,7,125,185,3.306129030766645,0.053,0.395,24.389,3.933,27.911,41.189,41969.594,207,1.6765510583428382,8.611911919533489,6.940290897180815 +578.0,44,0,0,0,0,330,15,0,8,10,0,0,0,0,0,182,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,66,94,3.1039824544913,0.148,0.496,21.693,3.927,31.488,45.173,42794.452,208,1.7220630529821352,8.85719317158125,7.135621410083364 +579.0,44,0,0,0,0,36,3,0,0,3,0,0,0,0,0,49,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,179,0,,,,0,7,10,13,2.514934311375287,0.0,0.559,20.581,4.347,28.781,44.408,41592.923,179,1.6910142485119155,8.629517803852972,6.947602526224788 +580.0,44,0,7,0,0,0,0,0,0,45,0,0,0,0,0,74,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,202,0,,,,0,7,72,103,3.1033869712752207,0.048,0.574,28.211,3.796,28.207,42.213,45071.227,202,1.7213514190461483,8.879863015802066,7.152150114742698 +581.0,44,0,0,3,0,0,1,2,0,0,0,0,0,0,0,8,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,173,0,,,,0,7,52,71,2.6256644751994003,0.097,0.768,29.737,3.07,26.209,38.865,43905.447,173,1.6692540276422874,8.51814888898161,6.853366431180701 +582.0,44,0,5,0,0,14,8,0,0,0,0,0,1,0,0,14,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,179,0,,,,0,7,78,110,3.340905799692709,0.0,0.619,29.637,3.79,26.21,39.7,44375.556,179,1.6846307577538795,8.596794016569886,6.919904066377377 +583.0,44,0,10,0,0,0,41,0,3,28,0,1,7,0,0,80,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,204,0,,,,0,7,127,188,3.103864879279261,0.0,0.623,29.442,3.398,27.625,40.393,44694.621,204,1.7053920934989035,9.168498484230923,7.371847567304127 +584.0,44,0,26,0,0,4,23,0,0,20,0,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,2.0,12.0,9.769,,184,0,,,,0,7,21,24,3.104725521895033,0.097,0.72,29.709,3.151,26.363,39.323,44180.873,184,1.7039623004691191,8.712274376444316,7.010635027670007 +585.0,44,0,17,0,0,8,15,0,0,18,0,2,0,0,0,93,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,96,139,3.1039031618950035,0.0,0.671,35.344,3.278,26.797,39.643,47991.879,198,1.7994405393368789,9.932167243863535,7.975931133865983 +586.0,44,0,0,3,0,28,2,0,45,89,0,0,0,0,0,209,0,0,PORTLAND,PORTLAND,0,2.0,12.0,6.818,,182,0,,,,0,7,65,92,3.1046873313440466,0.097,0.768,29.737,3.07,26.209,38.865,43905.447,182,1.8165147382905915,9.320717617834362,7.498630563873166 +587.0,45,0,0,0,0,207,1,0,0,2,0,0,0,0,0,156,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,200,0,,,,0,7,0,0,3.103864524979969,0.049,0.837,38.847,2.336,21.639,31.671,45131.579,200,1.5182019141239511,8.781760854744066,7.0175636782667565 +588.0,45,0,21,0,0,5,4,0,0,4,0,0,0,0,0,57,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,29,37,3.1028097454746613,0.0,0.886,37.942,2.505,20.83,30.546,43831.908,198,1.486282222314629,8.594067840579099,6.864399133836199 +589.0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,193,0,,,,0,7,8,11,3.10538345948065,0.048,0.934,39.982,2.398,19.673,28.75,43988.49,193,1.4802051898804287,8.569534262609467,6.848315209645727 +590.0,45,0,7,0,0,59,36,0,0,0,0,0,279,0,0,328,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,191,0,,,,0,7,155,206,3.104161394678912,0.097,0.983,40.774,2.423,18.664,27.446,43660.998,191,1.4475823058924402,8.381942353866556,6.696014789120977 +591.0,45,0,45,1,0,0,16,0,0,146,3,0,2,10,0,202,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,182,0,,,,0,7,96,126,3.1042395844374475,0.0,1.081,40.052,1.689,16.431,24.652,41410.274,182,1.4169904294866715,8.204682634252746,6.550938465767192 +592.0,45,0,126,0,0,1,241,0,9,6,32,0,1,3,125,395,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,174,0,,,,0,7,350,463,6.233702079758423,0.099,1.18,38.129,1.41,15.883,24.394,40014.459,174,1.3899982512103517,8.045251832576298,6.41817492462872 +593.0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,123,132,3.104927580349875,0.0,0.956,40.515,2.745,19.667,29.421,44759.322,180,1.4258946174546443,8.243905237046926,6.573008020218079 +594.0,46,0,8,0,0,63,1,0,0,19,0,0,0,0,0,143,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,180,0,,,,0,7,64,104,3.107147023525972,0.0,1.011,38.748,2.23,18.342,27.778,42576.621,180,1.399886023179564,8.092071302461024,6.449095504505963 +595.0,46,0,40,0,0,9,29,0,2,1,0,3,0,0,0,61,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,175,0,,,,0,7,33,52,3.0862167480888605,0.049,1.06,38.426,2.274,17.585,26.829,41762.999,175,1.3696613987916233,7.917742073895735,6.307134064571811 +596.0,46,0,15,0,0,0,1,0,0,1,0,0,0,8,0,24,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,44,70,3.102178953699258,0.149,1.158,30.465,1.818,15.548,24.669,35286.147,162,1.3268836959207897,7.632947795631625,6.107835704940355 +597.0,46,0,52,0,0,0,31,0,0,3,0,11,1,100,0,176,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,171,0,,,,0,7,0,0,3.1196356358873265,0.049,1.109,34.864,1.884,16.633,25.711,38767.597,171,1.3324036826257677,7.698391461121541,6.127738353817003 +598.0,46,0,0,0,0,10,3,0,9,0,0,6,0,9,0,44,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,162,0,,,,0,7,68,111,3.104283325620988,0.147,1.206,30.154,1.747,14.559,23.303,34212.77,162,1.2902726977186303,7.419823731482451,5.936149080114758 +599.0,46,0,72,2,0,5,11,0,0,8,6,0,2,0,0,150,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,169,0,,,,0,7,132,225,3.104218784309297,0.0,1.158,33.986,1.51,14.273,22.419,36098.998,169,1.3044983814087578,7.537265610074501,5.996477911640244 +600.0,46,0,12,19,0,6,4,0,4,0,0,12,0,0,0,33,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,136,237,3.0996847215559544,0.097,999999.0,30.817,1.689,13.542,21.885,33729.655,160,1.2681632435765864,7.326116321002375,5.824623590581536 +601.0,46,0,23,0,0,0,91,0,5,0,3,0,0,0,0,102,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,166,0,,,,0,7,130,225,3.102492709692477,0.049,1.207,37.775,1.47,13.695,21.43,37891.039,166,1.2534024783770652,7.237551565306152,5.750384145596274 +602.0,46,0,17,0,29,20,5,0,9,7,0,0,8,0,0,79,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,155,0,,,,0,7,38,60,3.104607668950161,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,155,1.240717139448693,7.164331891339524,5.691903875161527 +603.0,47,0,0,0,0,11,1772,0,17,0,0,0,0,0,0,1336,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,227,0,,,,0,7,17,23,3.099469484533392,0.0,0.66,41.724,3.187,23.808,32.509,47509.474,227,1.916928712378097,11.115948085896305,8.925520911051526 +604.0,47,0,17,0,0,6,8,0,0,2,0,0,0,0,2,38,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,225,0,,,,0,7,132,187,3.110079827913022,0.0,0.698,38.12,3.27,23.839,33.886,46083.849,225,1.7289646082593269,10.018111454232423,8.028339732003118 +605.0,47,0,0,0,0,0,22,0,0,0,0,0,0,0,0,19,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,15,21,3.10443440614802,0.0,0.757,39.244,2.443,26.07,37.016,48806.326,217,1.9172674712461728,11.100262697114609,8.906109545776399 +606.0,47,0,0,0,0,0,12,0,0,0,0,0,0,0,0,7,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,217,0,,,,0,7,238,350,3.104435556017908,0.049,0.747,38.302,2.691,22.716,32.039,45018.569,217,1.6625295367522963,9.631365532809554,7.71646490120532 +607.0,47,0,0,0,0,71,0,0,0,0,0,0,0,0,0,95,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,210,0,,,,0,7,63,91,3.104392293150846,0.0,0.757,39.244,2.443,26.07,37.016,48806.326,210,1.8786088257972755,10.871841327154248,8.717654945777575 +608.0,47,0,46,0,0,0,0,0,1,0,0,0,0,0,0,25,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,208,0,,,,0,7,62,90,3.1018928964382284,0.0,0.796,41.065,2.209,21.329,30.244,45638.016,208,1.6113947619840674,9.332772251283684,7.47270563103219 +609.0,47,0,2,0,0,11,10,0,1,0,0,0,0,0,0,34,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,197,0,,,,0,7,252,386,3.111474634854898,0.096,0.853,40.659,1.486,22.113,32.128,46583.696,197,1.836988961181236,10.654203790294533,8.546285716246755 +610.0,47,0,21,0,1,59,17,0,0,25,0,0,0,0,0,109,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,198,0,,,,0,7,82,120,3.1229743761036244,0.0,0.845,39.371,1.667,20.808,30.032,44418.089,198,1.5703944453246486,9.099328135210063,7.282474848657048 +611.0,48,0,38,35,0,12,167,0,0,8,18,138,119,0,196,770,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,9,0,,,,0,7,13,13,240.8833347590013,0.016,999999.0,5.69,0.066,0.036,0.036,3664.596,9,0.0,0.0,0.0 +612.0,48,0,5,114,0,0,3,0,7,17,0,127,41,0,67,339,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,57,0,,,,0,7,0,0,40.68055565355333,0.47,999999.0,17.149,0.612,0.217,0.217,11114.822,57,0.0,0.0,0.0 +613.0,48,0,0,41,47,0,55,0,0,4,0,406,96,0,196,1446,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,2,0,,,,0,7,0,0,827.1022145853676,0.0,999999.0,1.409,0.009,0.0,0.0,901.95,2,0.0,0.0,0.0 +614.0,48,0,0,35,0,0,18,0,0,0,0,0,56,0,38,234,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,9,0,,,,0,7,0,0,98.93849382408702,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,9,0.0,0.0,0.0 +615.0,48,0,0,0,0,0,1,0,0,0,0,0,55,0,14,38,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,11,0,,,,0,7,0,0,52.65004324916019,0.034,999999.0,0.0,0.0,0.0,0.0,0.0,11,0.0,0.0,0.0 +616.0,49,0,0,0,0,0,37,0,0,8,0,0,134,0,45,175,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,51,0,,,,0,7,1,1,23.34045427346855,0.134,999999.0,19.195,0.362,0.625,1.155,13024.033,51,0.0,0.0,0.0 +617.0,49,0,0,0,0,0,80,0,0,0,0,5,85,0,11,219,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,43,0,,,,0,7,0,0,13.285918978244595,0.384,999999.0,11.763,0.374,0.032,0.032,7548.673,43,0.0,0.0,0.0 +618.0,49,0,0,1,0,0,5,0,0,11,0,66,16,0,0,48,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,63,0,,,,0,7,0,0,8.319863894491377,0.134,999999.0,19.195,0.362,0.625,1.155,13024.033,63,0.0,0.0,0.0 +619.0,49,0,0,1,0,0,7,14,4,5,0,23,6,0,0,119,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,69,0,,,,0,7,2,2,8.270076451787448,0.0,999999.0,18.799,0.368,2.619,4.752,15072.434,69,0.0,0.0,0.0 +620.0,49,0,0,43,0,0,14,0,0,10,0,39,8,0,0,191,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,80,0,,,,0,7,2,3,10.704149343653093,0.098,999999.0,19.357,0.388,2.76,5.008,15593.826,80,0.0,0.0,0.0 +621.0,49,0,0,0,0,0,0,0,0,0,0,30,107,0,0,94,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,87,0,,,,0,7,0,0,11.584662488121692,0.197,999999.0,16.268,0.406,3.954,7.296,15081.322,87,0.0,0.0,0.0 +622.0,49,0,0,659,41,101,192,0,35,65,0,143,390,4,141,1910,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,66,0,,,,0,7,1,1,94.43638237262398,0.259,999999.0,15.187,0.508,0.016,0.016,9729.676,66,0.0,0.0,0.0 +623.0,49,0,0,9,0,0,34,0,19,21,12,128,281,0,371,697,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,13,0,,,,0,7,0,0,101.20789578312645,0.016,999999.0,5.69,0.066,0.036,0.036,3664.596,13,0.0,0.0,0.0 +624.0,49,0,0,0,0,0,0,0,0,0,0,209,230,0,0,298,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,35,0,,,,0,7,0,0,21.343067024403663,0.403,999999.0,11.942,0.34,0.012,0.012,7650.256,35,0.0,0.0,0.0 +625.0,49,0,0,24,0,0,77,0,0,6,0,0,141,0,11,138,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,45,0,,,,0,7,0,0,19.041171916712862,0.217,999999.0,24.737,0.372,0.041,0.05,15863.67,45,0.0,0.0,0.0 +626.0,49,0,21,66,0,0,58,0,0,4,0,70,206,0,29,553,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,20,0,,,,0,7,6,6,61.18968464746775,0.0,999999.0,9.626,0.065,0.098,0.098,6223.271,20,0.0,0.0,0.0 +627.0,49,0,27,0,0,0,60,0,0,4,0,57,0,0,0,88,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,7,3,,,,0,7,0,0,20.128421571157546,0.112,999999.0,1.409,0.009,0.0,0.0,901.95,7,0.0,0.0,0.0 +628.0,50,0,0,73,0,3,19,0,19,0,0,5,0,2,0,174,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,44,3,,,,0,7,219,387,70.96241958271582,0.344,999999.0,1.922,0.011,3.232,5.682,4866.648,44,0.0,0.0,0.0 +629.0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,160,0,,,,0,7,0,0,1.0638054983803549,0.097,1.088,43.17,1.761,13.327,19.519,40120.624,160,1.3955518161402702,8.076392144356397,6.458310650864529 +630.0,50,0,0,5,0,0,16,0,0,0,0,0,1,0,0,16,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,65,3,,,,0,7,77,134,21.03264030675483,0.314,999999.0,2.586,0.201,3.649,6.399,5750.268,65,0.0,0.0,0.0 +631.0,50,0,0,0,0,1,9,0,0,0,0,0,0,0,0,12,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,93,3,,,,0,7,29,49,5.118387179902207,0.257,999999.0,6.084,0.369,9.573,17.525,15109.794,93,0.0,0.0,0.0 +632.0,50,0,0,2,0,1,9,0,3,0,0,0,0,0,0,22,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,137,0,,,,0,7,23,40,3.0727052334521905,0.096,999999.0,23.099,0.857,8.877,15.288,24567.768,137,0.0,0.0,0.0 +633.0,50,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,114,0,,,,0,7,67,126,3.0196333810923672,0.114,999999.0,15.654,0.316,6.943,12.674,18129.494,114,0.0,0.0,0.0 +634.0,50,0,0,0,0,0,7,0,0,0,0,0,0,0,0,10,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,127,0,,,,0,7,46,80,3.145561784737528,0.048,999999.0,17.054,0.345,7.58,13.684,19672.188,127,0.0,0.0,0.0 +635.0,50,0,0,761,0,0,0,0,0,0,0,0,1,0,0,993,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,163,0,,,,0,7,0,0,3.514887801841308,0.174,999999.0,45.623,1.637,14.075,21.528,42976.452,163,1.3804364512007232,7.980622996455873,6.376391788566231 +636.0,50,0,0,0,0,0,0,0,97,0,0,0,0,0,0,76,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,154,0,,,,0,7,11,11,5.32595220625175,0.143,1.225,39.781,1.47,14.621,22.533,39880.772,154,1.3026154934833547,7.51770141083672,5.993894181697363 +637.0,50,0,23,0,0,4,5,0,0,8,0,17,0,1,0,79,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,144,0,,,,0,7,13,24,3.0900321424644104,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,144,1.1796684616278568,6.768594776341695,5.434819387976196 +638.0,50,0,51,1,0,5,19,0,0,0,0,26,7,0,0,134,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,149,0,,,,0,7,5,6,2.997250481892081,0.0,999999.0,38.152,1.42,11.463,18.397,36190.765,149,1.207161625653149,6.965387111356704,5.55364674701657 +639.0,50,0,33,0,0,5,30,0,0,2,0,0,2,0,0,71,0,0,PORTLAND,PORTLAND,0,2.0,0.0,0.0,,145,0,,,,0,7,73,140,6.194679858554569,0.127,999999.0,26.165,0.556,10.797,19.37,29142.753,145,1.1444917874351552,6.563530522920034,5.270327419409856 +640.0,50,0,0,0,0,0,2,0,56,0,3,0,0,0,0,63,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,135,0,,,,0,7,125,229,3.014954901364939,0.096,999999.0,17.119,0.444,7.125,12.857,19184.829,135,0.0,0.0,0.0 +641.0,50,0,26,0,0,0,32,0,0,0,0,3,0,0,0,55,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,124,0,,,,0,7,46,78,2.936784034970012,0.048,999999.0,17.054,0.345,7.58,13.684,19672.188,124,0.0,0.0,0.0 +642.0,50,0,0,0,0,0,1,0,0,0,0,0,1,0,0,3,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,82,3,,,,0,7,59,100,2.151775682280141,0.313,999999.0,5.701,0.411,8.477,15.474,13552.028,82,0.0,0.0,0.0 +643.0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,79,3,,,,0,7,41,71,2.1422142783276863,0.361,999999.0,5.875,0.427,8.074,14.583,13092.956,79,0.0,0.0,0.0 +644.0,50,0,0,11,0,2,20,0,0,0,0,0,0,10,0,70,117,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,89,0,,,,0,7,151,283,13.300496615773516,0.122,999999.0,17.754,0.389,4.953,9.24,17276.109,89,0.0,0.0,0.0 +645.0,50,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,44,3,,,,0,7,10,17,2.6902348408590075,0.405,999999.0,1.953,0.049,3.64,6.383,5335.344,44,0.0,0.0,0.0 +646.0,50,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,PORTLAND,PORTLAND,0,0.0,0.0,0.0,,74,3,,,,0,7,7,12,2.7525650349038084,0.313,999999.0,5.701,0.411,8.477,15.474,13552.028,74,0.0,0.0,0.0 +23327.0,2100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,,0,0,,,,0,0,0,0,817.3171311244512,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0 +23328.0,2101,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,,0,0,,,,0,0,0,0,795.9022243467048,999999.0,999999.0,0.203,0.004,0.206,0.818,653.22,0,0.0,0.0,0.0 +23329.0,2102,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,,0,0,,,,0,0,0,0,352.5295851349872,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0 +23330.0,2103,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,,0,0,,,,0,0,0,0,162.38948874951694,0.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0 +23331.0,2104,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,,0,0,,,,0,0,0,0,62.14536128465341,999999.0,999999.0,0.097,0.0,0.033,0.112,133.447,0,0.0,0.0,0.0 +23332.0,2105,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,,0,0,,,,0,0,0,0,264.87044263296264,999999.0,999999.0,0.0,0.0,0.0,0.0,0.0,0,0.0,0.0,0.0 diff --git a/resident/model_data/skats/.gitignore b/resident/model_data/skats/.gitignore new file mode 100644 index 0000000..2be2b8d --- /dev/null +++ b/resident/model_data/skats/.gitignore @@ -0,0 +1,2 @@ +data_full/ +!.gitignore \ No newline at end of file diff --git a/resident/model_data/skats/crop_skats_data.ipynb b/resident/model_data/skats/crop_skats_data.ipynb index 7ee8316..ed0bb0e 100644 --- a/resident/model_data/skats/crop_skats_data.ipynb +++ b/resident/model_data/skats/crop_skats_data.ipynb @@ -49,7 +49,8 @@ " \"transitSkims__MD.omx\",\n", " \"transitSkims__PM.omx\",\n", " \"transitSkims__EV.omx\",\n", - " \"walkSkim.omx\"\n", + " \"walkSkim.omx\",\n", + " \"fares.omx\"\n", "]\n", "maz_skim_file = \"maz_maz_walk.csv\"\n", "\n", diff --git a/resident/model_data/skats/data_cropped/autoSkims__AM.omx b/resident/model_data/skats/data_cropped/autoSkims__AM.omx index c095597..b579d27 100644 Binary files a/resident/model_data/skats/data_cropped/autoSkims__AM.omx and b/resident/model_data/skats/data_cropped/autoSkims__AM.omx differ diff --git a/resident/model_data/skats/data_cropped/autoSkims__EA.omx b/resident/model_data/skats/data_cropped/autoSkims__EA.omx index ed1c96d..2e583fa 100644 Binary files a/resident/model_data/skats/data_cropped/autoSkims__EA.omx and b/resident/model_data/skats/data_cropped/autoSkims__EA.omx differ diff --git a/resident/model_data/skats/data_cropped/autoSkims__EV.omx b/resident/model_data/skats/data_cropped/autoSkims__EV.omx index da2f576..57008ab 100644 Binary files a/resident/model_data/skats/data_cropped/autoSkims__EV.omx and b/resident/model_data/skats/data_cropped/autoSkims__EV.omx differ diff --git a/resident/model_data/skats/data_cropped/autoSkims__MD.omx b/resident/model_data/skats/data_cropped/autoSkims__MD.omx index d0172ca..9205904 100644 Binary files a/resident/model_data/skats/data_cropped/autoSkims__MD.omx and b/resident/model_data/skats/data_cropped/autoSkims__MD.omx differ diff --git a/resident/model_data/skats/data_cropped/autoSkims__PM.omx b/resident/model_data/skats/data_cropped/autoSkims__PM.omx index 2786414..a2bd40a 100644 Binary files a/resident/model_data/skats/data_cropped/autoSkims__PM.omx and b/resident/model_data/skats/data_cropped/autoSkims__PM.omx differ diff --git a/resident/model_data/skats/data_cropped/fares.omx b/resident/model_data/skats/data_cropped/fares.omx new file mode 100644 index 0000000..8a33e76 Binary files /dev/null and b/resident/model_data/skats/data_cropped/fares.omx differ diff --git a/resident/model_data/skats/data_cropped/land_use.csv b/resident/model_data/skats/data_cropped/land_use.csv index 3d65893..cc48cc2 100644 --- a/resident/model_data/skats/data_cropped/land_use.csv +++ b/resident/model_data/skats/data_cropped/land_use.csv @@ -4,422 +4,422 @@ MAZ,NO,CODE,NAME,USEIMAGEFILE,CATNO,CATNAME,XCOORD,YCOORD,IMAGEHEIGHT,USEIMAGEHE 3.0,3,External,,0,25,PedestrianZones,2289194.3365153484,148302.7583370771,10.0,0,0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,8000300000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,3.0,80003.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 4.0,4,External,,0,25,PedestrianZones,2291271.581903452,154353.91016505338,10.0,0,0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,8000400000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,4.0,80004.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 5.0,5,External,,0,25,PedestrianZones,2296989.0478226007,159609.11288222895,10.0,0,0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,9999.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,,,,0.0,0.0,0.0,0.0,0.0,,,0.0,0.0,8000500000,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,5.0,80005.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -7109.0,7109,,Block 2019,0,25,PedestrianZones,2299385.715266662,144483.72811863164,10.0,0,0,0.0,0.0,0.0,0.0,,11870.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2019.0,410470002002019.0,1000000US410470002002019,0.0,0.99,80103.0,0.0,85.0,44.9384939,-123.0423034,0.0,1.0,8006202019,80068.0,0.0,0.0,485.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,127738.6,1588.05,1.0,,,62.0,80062.0,2.0,1.0,161.0,0.0,160.0,0.0,0.0,262.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9324720956639445,0.0,999999.0,33.166,2.023,2.657,4.306,23982.317,85.0,0.0,0.0,0.0 +7109.0,7109,,Block 2019,0,25,PedestrianZones,2299385.715266662,144483.72811863164,10.0,0,0,0.0,0.0,0.0,0.0,,11870.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2019.0,410470002002019.0,1000000US410470002002019,0.0,0.99,80103.0,0.0,85.0,44.9384939,-123.0423034,0.0,1.0,8006202019,80068.0,0.0,0.0,485.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,127738.6,1588.05,1.0,,,62.0,80062.0,2.0,1.0,161.0,0.0,160.0,0.0,0.0,262.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9324720956639445,0.0,999999.0,33.166,2.023,2.657,4.306,23982.317,85.0,0.0,0.0,0.0 7144.0,7144,,Block 2008,0,25,PedestrianZones,2299391.5037302966,145237.76726098225,10.0,0,0,0.03,0.0,0.0,0.0,,0.0,15397.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2008.0,410470002002008.0,1000000US410470002002008,0.0,0.0,80103.0,0.0,108.0,44.945278,-123.0425307,0.0,1.0,8006102008,80068.0,0.0,0.0,540.0,0.0,0.03,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,165698.28,1638.79,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.803905688144883,0.449,999999.0,9.053,0.694,0.525,0.81,6312.313,108.0,0.0,0.0,0.0 -7145.0,7145,,Block 2006,0,25,PedestrianZones,2299568.942699481,145362.53185896427,10.0,0,0,1.03,0.0,0.0,0.0,,24345.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2006.0,410470002002006.0,1000000US410470002002006,0.0,0.0,80103.0,0.0,112.0,44.9464505,-123.040333,0.0,3.0,8006102006,80068.0,0.0,0.0,541.0,0.0,1.03,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,262003.23,2497.16,1.0,,,61.0,80061.0,2.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.01476113271166,0.304,999999.0,10.18,1.809,0.331,0.501,6835.545,112.0,0.0,0.0,0.0 +7145.0,7145,,Block 2006,0,25,PedestrianZones,2299568.942699481,145362.53185896427,10.0,0,0,1.03,0.0,0.0,0.0,,24345.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2006.0,410470002002006.0,1000000US410470002002006,0.0,0.0,80103.0,0.0,112.0,44.9464505,-123.040333,0.0,3.0,8006102006,80068.0,0.0,0.0,541.0,0.0,1.03,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,262003.23,2497.16,1.0,,,61.0,80061.0,2.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.01476113271166,0.304,999999.0,10.18,1.809,0.331,0.501,6835.545,112.0,0.0,0.0,0.0 7146.0,7146,,Block 2009,0,25,PedestrianZones,2299461.6110118404,145211.64744933636,10.0,0,0,0.67,0.0,0.0,0.0,,3308.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2009.0,410470002002009.0,1000000US410470002002009,0.0,0.0,80103.0,0.0,108.0,44.9450629,-123.0416323,0.0,1.0,8006102009,80068.0,0.0,0.0,542.0,0.0,0.67,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,35599.94,1003.56,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.8172614194023823,0.449,999999.0,9.053,0.694,0.525,0.81,6312.313,108.0,0.0,0.0,0.0 -7147.0,7147,,Block 2010,0,25,PedestrianZones,2299518.87813614,145188.27652351192,10.0,0,0,1.68,0.0,0.0,0.0,,12415.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2010.0,410470002002010.0,1000000US410470002002010,0.0,0.0,80103.0,0.0,109.0,44.9448689,-123.0408977,0.0,3.0,8006102010,80068.0,0.0,0.0,543.0,0.0,1.68,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,133611.8,1479.08,1.0,,,61.0,80061.0,2.0,16.0,16.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0673022034333437,0.488,999999.0,7.894,0.679,0.129,0.184,5169.909,109.0,0.0,0.0,0.0 -7148.0,7148,,Block 2022,0,25,PedestrianZones,2299640.8064625594,145140.207666604,10.0,0,0,0.0,0.0,0.0,0.0,,17555.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,39,0,0,6,0,0,0,0,0,0,55,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2022.0,410470002002022.0,1000000US410470002002022,0.0,0.0,80103.0,0.0,111.0,44.944471,-123.0393342,0.0,3.0,8006302022,80068.0,0.0,0.0,544.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,13.0,0.0,0.0,0.0,1.0,188937.23,1739.21,1.0,,,63.0,80063.0,2.0,53.0,53.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.337398066695442,0.202,999999.0,26.644,2.92,1.952,3.187,19092.218,111.0,5.23242888603152,0.5066075410794583,0.8549481157625523 -7149.0,7149,,Block 2040,0,25,PedestrianZones,2299497.952713111,144773.33469000095,10.0,0,0,0.0,0.0,0.0,0.0,,17194.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,8,7,15,0,0,23,0,291,29,0,0,12,0,30,348,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2040.0,410470002002040.0,1000000US410470002002040,0.0,0.07,80103.0,0.0,105.0,44.9411306,-123.0409974,0.0,3.0,8006302040,80068.0,0.0,0.0,545.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.389999999999999,0.5799999999999998,0.0,1.5,18.0,0.0,70.0,0.0,0.0,0.0,1.0,185034.78,1720.88,1.0,,,63.0,80063.0,2.0,244.0,263.0,0.0,19.0,0.0,0.0,33.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.247810207598636,0.179,999999.0,33.614,2.987,1.565,2.52,23126.257,105.0,5.249550966758071,0.507951560210424,0.8578584377694162 -7150.0,7150,,Block 2048,0,25,PedestrianZones,2299455.328590412,144660.86862536933,10.0,0,0,0.0,0.0,0.0,0.0,,14293.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,6,5,1,0,0,0,4,0,26,0,0,0,0,0,8,66,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2048.0,410470002002048.0,1000000US410470002002048,0.0,0.02,80103.0,0.0,94.0,44.940107,-123.0414924,0.0,3.0,8006302048,80068.0,0.0,0.0,546.0,0.0,0.0,0.0,0.0,,,,0,0.0,32.33,0.67,0.0,1.5,18.0,0.0,27.0,0.0,0.0,0.0,1.0,153818.81,1540.31,1.0,,,63.0,80063.0,2.0,194.0,198.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5311907613230966,0.179,999999.0,33.614,2.987,1.565,2.52,23126.257,94.0,5.247479893705191,0.5077417872565367,0.8578189593951051 -7151.0,7151,,Block 2046,0,25,PedestrianZones,2299622.3317258446,144724.80078062095,10.0,0,0,0.0,0.0,0.0,0.0,,18078.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,62,25,0,0,0,6,0,61,6,0,0,7,0,59,278,0,58,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2046.0,410470002002046.0,1000000US410470002002046,0.0,0.1,80103.0,0.0,106.0,44.9407293,-123.0394028,0.0,3.0,8006602046,80068.0,0.0,0.0,547.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.11,0.56,0.0,1.5,18.0,0.0,107.0,0.0,0.0,0.0,1.0,194551.15,1764.79,1.0,,,66.0,80066.0,2.0,230.0,255.0,0.0,25.0,0.0,0.0,45.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.46627597876602,0.178,999999.0,34.851,2.507,1.527,2.376,23825.164,106.0,5.242439313268517,0.5074310931374646,0.8574164891066904 -7152.0,7152,,Block 1008,0,25,PedestrianZones,2299919.1315709865,145878.78278914324,10.0,0,0,0.0,0.0,0.0,0.0,,24230.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,24,0,0,0,0,55,0,0,0,0,0,0,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1008.0,410470002001008.0,1000000US410470002001008,0.0,0.0,80103.0,0.0,121.0,44.951193,-123.0361028,0.0,3.0,8008501008,80068.0,0.0,0.0,548.0,0.22,0.22,0.0,1.0,NATURAL AREA,UNDEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,260755.62,2250.88,1.0,,,85.0,80085.0,2.0,73.0,73.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.986120156888335,0.185,999999.0,9.759,0.516,2.389,5.16,9548.602,121.0,0.0,0.0,0.0 -7153.0,7153,,Block 1007,0,25,PedestrianZones,2299862.689346799,145724.40127597863,10.0,0,0,0.0,0.0,0.0,0.0,,17711.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1007.0,410470002001007.0,1000000US410470002001007,0.0,0.0,80103.0,0.0,119.0,44.9497885,-123.0367564,0.0,3.0,8008501007,80068.0,0.0,0.0,549.0,0.5899999999999999,0.5899999999999999,0.0,1.0,NATURAL AREA,UNDEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,190601.74,1794.21,1.0,,,85.0,80085.0,2.0,23.0,23.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.37560991115982,0.356,999999.0,11.298,0.609,1.586,3.289,9335.949,119.0,0.0,0.0,0.0 -7154.0,7154,,Block 1025,0,25,PedestrianZones,2299802.8007668965,145553.88576614243,10.0,0,0,0.0,0.0,0.0,0.0,,32402.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,33,0,0,3,35,0,10,0,0,0,0,0,11,57,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1025.0,410470002001025.0,1000000US410470002001025,0.0,0.02,80103.0,0.0,118.0,44.9482378,-123.0374471,0.0,3.0,8008501025,80068.0,0.0,0.0,550.0,0.0,0.0,0.0,0.0,,,,0,0.0,23.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,348704.17,2443.48,1.0,,,85.0,80085.0,2.0,94.0,96.0,0.0,2.0,0.0,0.0,4.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.005139181779432,0.244,999999.0,13.793,1.972,1.347,2.653,10525.47,118.0,0.0,0.0,0.0 +7147.0,7147,,Block 2010,0,25,PedestrianZones,2299518.87813614,145188.27652351192,10.0,0,0,1.68,0.0,0.0,0.0,,12415.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2010.0,410470002002010.0,1000000US410470002002010,0.0,0.0,80103.0,0.0,109.0,44.9448689,-123.0408977,0.0,3.0,8006102010,80068.0,0.0,0.0,543.0,0.0,1.68,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,133611.8,1479.08,1.0,,,61.0,80061.0,2.0,16.0,16.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0673022034333437,0.488,999999.0,7.894,0.679,0.129,0.184,5169.909,109.0,0.0,0.0,0.0 +7148.0,7148,,Block 2022,0,25,PedestrianZones,2299640.8064625594,145140.207666604,10.0,0,0,0.0,0.0,0.0,0.0,,17555.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,40,0,0,8,0,0,0,0,0,0,75,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2022.0,410470002002022.0,1000000US410470002002022,0.0,0.0,80103.0,0.0,111.0,44.944471,-123.0393342,0.0,3.0,8006302022,80068.0,0.0,0.0,544.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,13.0,0.0,0.0,0.0,1.0,188937.23,1739.21,1.0,,,63.0,80063.0,2.0,53.0,53.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.337398066695442,0.202,999999.0,26.644,2.92,1.952,3.187,19092.218,111.0,0.2026584425258986,3.4537318680723645,0.9134122081265896 +7149.0,7149,,Block 2040,0,25,PedestrianZones,2299497.952713111,144773.33469000095,10.0,0,0,0.0,0.0,0.0,0.0,,17194.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,14,10,12,0,0,13,0,167,28,0,0,14,0,28,436,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2040.0,410470002002040.0,1000000US410470002002040,0.0,0.07,80103.0,0.0,105.0,44.9411306,-123.0409974,0.0,3.0,8006302040,80068.0,0.0,0.0,545.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.389999999999999,0.5799999999999998,0.0,1.5,18.0,0.0,70.0,0.0,0.0,0.0,1.0,185034.78,1720.88,1.0,,,63.0,80063.0,2.0,244.0,263.0,0.0,19.0,0.0,0.0,33.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.247810207598636,0.179,999999.0,33.614,2.987,1.565,2.52,23126.257,105.0,0.2024961487073235,3.4574209299045062,0.9141855739673226 +7150.0,7150,,Block 2048,0,25,PedestrianZones,2299455.328590412,144660.86862536933,10.0,0,0,0.0,0.0,0.0,0.0,,14293.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,4,5,1,0,0,0,5,0,27,0,0,0,1,0,7,61,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2048.0,410470002002048.0,1000000US410470002002048,0.0,0.02,80103.0,0.0,94.0,44.940107,-123.0414924,0.0,3.0,8006302048,80068.0,0.0,0.0,546.0,0.0,0.0,0.0,0.0,,,,0,0.0,32.33,0.67,0.0,1.5,18.0,0.0,27.0,0.0,0.0,0.0,1.0,153818.81,1540.31,1.0,,,63.0,80063.0,2.0,194.0,198.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5311907613230966,0.179,999999.0,33.614,2.987,1.565,2.52,23126.257,94.0,0.2023899667032701,3.45276666464526,0.9132944935680012 +7151.0,7151,,Block 2046,0,25,PedestrianZones,2299622.3317258446,144724.80078062095,10.0,0,0,0.0,0.0,0.0,0.0,,18078.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,84,29,0,0,0,4,0,60,12,0,0,8,0,56,246,0,54,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2046.0,410470002002046.0,1000000US410470002002046,0.0,0.1,80103.0,0.0,106.0,44.9407293,-123.0394028,0.0,3.0,8006602046,80068.0,0.0,0.0,547.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.11,0.56,0.0,1.5,18.0,0.0,107.0,0.0,0.0,0.0,1.0,194551.15,1764.79,1.0,,,66.0,80066.0,2.0,230.0,255.0,0.0,25.0,0.0,0.0,45.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.46627597876602,0.178,999999.0,34.851,2.507,1.527,2.376,23825.164,106.0,0.2030723058945856,3.4554017844741427,0.914640791118616 +7152.0,7152,,Block 1008,0,25,PedestrianZones,2299919.1315709865,145878.78278914324,10.0,0,0,0.0,0.0,0.0,0.0,,24230.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,17,0,0,0,0,32,0,0,0,0,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1008.0,410470002001008.0,1000000US410470002001008,0.0,0.0,80103.0,0.0,121.0,44.951193,-123.0361028,0.0,3.0,8008501008,80068.0,0.0,0.0,548.0,0.22,0.22,0.0,1.0,NATURAL AREA,UNDEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,260755.62,2250.88,1.0,,,85.0,80085.0,2.0,73.0,73.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.986120156888335,0.185,999999.0,9.759,0.516,2.389,5.16,9548.602,121.0,0.0,0.0,0.0 +7153.0,7153,,Block 1007,0,25,PedestrianZones,2299862.689346799,145724.40127597863,10.0,0,0,0.0,0.0,0.0,0.0,,17711.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1007.0,410470002001007.0,1000000US410470002001007,0.0,0.0,80103.0,0.0,119.0,44.9497885,-123.0367564,0.0,3.0,8008501007,80068.0,0.0,0.0,549.0,0.5899999999999999,0.5899999999999999,0.0,1.0,NATURAL AREA,UNDEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,190601.74,1794.21,1.0,,,85.0,80085.0,2.0,23.0,23.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.37560991115982,0.356,999999.0,11.298,0.609,1.586,3.289,9335.949,119.0,0.0,0.0,0.0 +7154.0,7154,,Block 1025,0,25,PedestrianZones,2299802.8007668965,145553.88576614243,10.0,0,0,0.0,0.0,0.0,0.0,,32402.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,29,0,0,2,16,0,5,0,0,0,0,0,16,115,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1025.0,410470002001025.0,1000000US410470002001025,0.0,0.02,80103.0,0.0,118.0,44.9482378,-123.0374471,0.0,3.0,8008501025,80068.0,0.0,0.0,550.0,0.0,0.0,0.0,0.0,,,,0,0.0,23.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,348704.17,2443.48,1.0,,,85.0,80085.0,2.0,94.0,96.0,0.0,2.0,0.0,0.0,4.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.005139181779432,0.244,999999.0,13.793,1.972,1.347,2.653,10525.47,118.0,0.0,0.0,0.0 7155.0,7155,,Block 2003,0,25,PedestrianZones,2299718.9617292583,145393.91080623047,10.0,0,0,0.0,0.0,0.0,0.0,,2222.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2003.0,410470002002003.0,1000000US410470002002003,0.0,0.0,80103.0,0.0,115.0,44.9468545,-123.0377033,0.0,1.0,8006102003,80068.0,0.0,0.0,551.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,23906.52,1402.07,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.5488177037128406,0.248,999999.0,14.5,2.095,0.84,1.485,10230.914,115.0,0.0,0.0,0.0 -7156.0,7156,,Block 2002,0,25,PedestrianZones,2299864.8714675168,145334.06897960452,10.0,0,0,0.0,0.0,0.0,0.0,,18467.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2002.0,410470002002002.0,1000000US410470002002002,0.0,0.67,80103.0,0.0,123.0,44.9462781,-123.0365734,0.0,1.0,8006402002,80068.0,0.0,0.0,552.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.38,0.75,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,198732.94,1771.69,1.0,,,64.0,80064.0,2.0,6.0,18.0,0.0,12.0,0.0,0.0,16.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.562276578540441,0.127,999999.0,32.894,2.31,1.996,3.666,23398.667,123.0,0.0,0.0,0.0 +7156.0,7156,,Block 2002,0,25,PedestrianZones,2299864.8714675168,145334.06897960452,10.0,0,0,0.0,0.0,0.0,0.0,,18467.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2002.0,410470002002002.0,1000000US410470002002002,0.0,0.67,80103.0,0.0,123.0,44.9462781,-123.0365734,0.0,1.0,8006402002,80068.0,0.0,0.0,552.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.38,0.75,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,198732.94,1771.69,1.0,,,64.0,80064.0,2.0,6.0,18.0,0.0,12.0,0.0,0.0,16.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.562276578540441,0.127,999999.0,32.894,2.31,1.996,3.666,23398.667,123.0,0.0,0.0,0.0 7157.0,7157,,Block 2012,0,25,PedestrianZones,2299618.9441942195,145292.0644254044,10.0,0,0,0.0,0.0,0.0,0.0,,1991.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2012.0,410470002002012.0,1000000US410470002002012,0.0,0.0,80103.0,0.0,109.0,44.9458308,-123.0396716,0.0,1.0,8006102012,80068.0,0.0,0.0,553.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,21417.82,959.34,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.4916850824365845,0.296,999999.0,12.599,2.016,0.741,1.184,8820.611,109.0,0.0,0.0,0.0 -7158.0,7158,,Block 2037,0,25,PedestrianZones,2299591.707141713,145018.90962549316,10.0,0,0,0.0,0.0,0.0,0.0,,16481.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2037.0,410470002002037.0,1000000US410470002002037,0.0,0.17,80103.0,0.0,111.0,44.9433661,-123.0399078,0.0,3.0,8006302037,80068.0,0.0,0.0,554.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.33,0.67,0.0,1.5,18.0,0.0,30.0,0.0,0.0,0.0,1.0,177368.42,1722.29,1.0,,,63.0,80063.0,2.0,20.0,24.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.071814944076562,0.277,999999.0,27.73,2.672,1.523,2.493,19342.768,111.0,5.240710393655956,0.5072967966650076,0.8562437887614782 -7159.0,7159,,Block 1024,0,25,PedestrianZones,2299989.280144991,145818.96523332296,10.0,0,0,0.0,0.0,0.0,0.0,,6279.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,5,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1024.0,410470002001024.0,1000000US410470002001024,0.0,0.0,80103.0,0.0,124.0,44.9506748,-123.0351905,0.0,3.0,8008501024,80068.0,0.0,0.0,555.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,67575.51,1208.27,1.0,,,85.0,80085.0,2.0,12.0,12.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.5513189456921126,0.174,999999.0,10.269,0.579,2.721,5.958,10385.253,124.0,0.0,0.0,0.0 -7160.0,7160,,Block 1013,0,25,PedestrianZones,2300124.3209018977,145863.51024030944,10.0,0,0,0.0,0.0,0.0,0.0,,10025.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,31,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1013.0,410470002001013.0,1000000US410470002001013,0.0,0.31,80103.0,0.0,132.0,44.9511136,-123.0334976,0.0,3.0,8008501013,80068.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.96,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107887.64,1314.94,1.0,,,85.0,80085.0,2.0,25.0,36.0,0.0,11.0,0.0,0.0,26.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4767571928248504,0.123,999999.0,9.321,0.51,2.856,5.988,9797.9,132.0,0.0,0.0,0.0 -7161.0,7161,,Block 2001,0,25,PedestrianZones,2299991.8716054694,145284.98025122483,10.0,0,0,0.0,0.0,0.0,0.0,,18039.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,7,0,0,0,0,0,0,120,3,0,0,3,0,0,99,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2001.0,410470002002001.0,1000000US410470002002001,0.0,0.0,80103.0,0.0,131.0,44.9458724,-123.0349453,0.0,3.0,8006402001,80068.0,0.0,0.0,557.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,1.0,194134.46,1762.33,1.0,,,64.0,80064.0,2.0,91.0,91.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.456710073233624,0.036,999999.0,33.106,2.191,2.112,4.042,23775.147,131.0,0.0,0.0,0.0 -7219.0,7219,,Block 5007,0,25,PedestrianZones,2301785.8743919795,143932.3109122941,10.0,0,0,0.0,0.0,0.0,0.0,,20298.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5007.0,410470009005007.0,1000000US410470009005007,0.0,0.52,80103.0,0.0,121.0,44.9342094,-123.0116897,0.0,2.0,8010905007,80082.0,0.0,0.0,628.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.33,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,218439.35,2204.47,1.0,,,109.0,80109.0,1.0,26.0,54.0,0.0,28.0,0.0,0.0,78.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.014672981424606,0.245,999999.0,9.85,0.072,3.548,8.414,11688.999,121.0,0.0,0.0,0.0 +7158.0,7158,,Block 2037,0,25,PedestrianZones,2299591.707141713,145018.90962549316,10.0,0,0,0.0,0.0,0.0,0.0,,16481.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,14,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2037.0,410470002002037.0,1000000US410470002002037,0.0,0.17,80103.0,0.0,111.0,44.9433661,-123.0399078,0.0,3.0,8006302037,80068.0,0.0,0.0,554.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.33,0.67,0.0,1.5,18.0,0.0,30.0,0.0,0.0,0.0,1.0,177368.42,1722.29,1.0,,,63.0,80063.0,2.0,20.0,24.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.071814944076562,0.277,999999.0,27.73,2.672,1.523,2.493,19342.768,111.0,0.2026529714316348,3.456945071438798,0.914092593738112 +7159.0,7159,,Block 1024,0,25,PedestrianZones,2299989.280144991,145818.96523332296,10.0,0,0,0.0,0.0,0.0,0.0,,6279.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,15,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1024.0,410470002001024.0,1000000US410470002001024,0.0,0.0,80103.0,0.0,124.0,44.9506748,-123.0351905,0.0,3.0,8008501024,80068.0,0.0,0.0,555.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,67575.51,1208.27,1.0,,,85.0,80085.0,2.0,12.0,12.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.5513189456921126,0.174,999999.0,10.269,0.579,2.721,5.958,10385.253,124.0,0.0,0.0,0.0 +7160.0,7160,,Block 1013,0,25,PedestrianZones,2300124.3209018977,145863.51024030944,10.0,0,0,0.0,0.0,0.0,0.0,,10025.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,28,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1013.0,410470002001013.0,1000000US410470002001013,0.0,0.31,80103.0,0.0,132.0,44.9511136,-123.0334976,0.0,3.0,8008501013,80068.0,0.0,0.0,556.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.96,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107887.64,1314.94,1.0,,,85.0,80085.0,2.0,25.0,36.0,0.0,11.0,0.0,0.0,26.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4767571928248504,0.123,999999.0,9.321,0.51,2.856,5.988,9797.9,132.0,0.0,0.0,0.0 +7161.0,7161,,Block 2001,0,25,PedestrianZones,2299991.8716054694,145284.98025122483,10.0,0,0,0.0,0.0,0.0,0.0,,18039.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,17,0,0,0,0,0,0,109,5,0,0,5,0,0,150,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2001.0,410470002002001.0,1000000US410470002002001,0.0,0.0,80103.0,0.0,131.0,44.9458724,-123.0349453,0.0,3.0,8006402001,80068.0,0.0,0.0,557.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,1.0,194134.46,1762.33,1.0,,,64.0,80064.0,2.0,91.0,91.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.456710073233624,0.036,999999.0,33.106,2.191,2.112,4.042,23775.147,131.0,0.0,0.0,0.0 +7219.0,7219,,Block 5007,0,25,PedestrianZones,2301785.8743919795,143932.3109122941,10.0,0,0,0.0,0.0,0.0,0.0,,20298.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5007.0,410470009005007.0,1000000US410470009005007,0.0,0.52,80103.0,0.0,121.0,44.9342094,-123.0116897,0.0,2.0,8010905007,80082.0,0.0,0.0,628.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.33,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,218439.35,2204.47,1.0,,,109.0,80109.0,1.0,26.0,54.0,0.0,28.0,0.0,0.0,78.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.014672981424606,0.245,999999.0,9.85,0.072,3.548,8.414,11688.999,121.0,0.0,0.0,0.0 7282.0,7282,,Block 3016,0,25,PedestrianZones,2301383.147000427,144903.8130109758,10.0,0,0,0.0,0.0,0.0,0.0,,12942.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3016.0,410470006003016.0,1000000US410470006003016,0.0,1.0,80103.0,0.0,144.0,44.9428353,-123.017173,0.0,1.0,8010403016,80082.0,0.0,0.0,820.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,139276.72,1498.24,1.0,,,104.0,80104.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.1973506112709766,0.068,999999.0,1.875,0.11,4.789,9.981,7587.841,144.0,0.0,0.0,0.0 7283.0,7283,,Block 6017,0,25,PedestrianZones,2301504.264197107,144364.6937985502,10.0,0,0,0.0,0.0,0.0,0.0,,12203.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6017.0,410470009006017.0,1000000US410470009006017,0.0,1.0,80103.0,0.0,147.0,44.9380199,-123.0154263,0.0,1.0,8010806017,80082.0,0.0,0.0,821.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131330.49,1439.39,1.0,,,108.0,80108.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,8.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.014930484995926,0.182,999999.0,3.703,0.158,4.952,10.236,8921.397,147.0,0.0,0.0,0.0 -7284.0,7284,,Block 1023,0,25,PedestrianZones,2302105.999504932,145878.23104925695,10.0,0,0,0.0,0.0,0.0,0.0,,17134.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1023.0,410470006001023.0,1000000US410470006001023,0.0,0.9,80103.0,0.0,93.0,44.9518024,-123.0084011,0.0,1.0,8009901023,80377.0,0.0,0.0,822.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,184393.9,1744.01,1.0,,,99.0,80099.0,1.0,2.0,21.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.233097629456422,0.195,999999.0,3.432,0.136,2.785,6.434,6313.815,93.0,0.0,0.0,0.0 +7284.0,7284,,Block 1023,0,25,PedestrianZones,2302105.999504932,145878.23104925695,10.0,0,0,0.0,0.0,0.0,0.0,,17134.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1023.0,410470006001023.0,1000000US410470006001023,0.0,0.9,80103.0,0.0,93.0,44.9518024,-123.0084011,0.0,1.0,8009901023,80377.0,0.0,0.0,822.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,184393.9,1744.01,1.0,,,99.0,80099.0,1.0,2.0,21.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.233097629456422,0.195,999999.0,3.432,0.136,2.785,6.434,6313.815,93.0,0.0,0.0,0.0 7285.0,7285,,Block 2023,0,25,PedestrianZones,2301995.411808063,145028.51121816025,10.0,0,0,0.0,0.0,0.0,0.0,,13259.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2023.0,410470006002023.0,1000000US410470006002023,0.0,1.0,80103.0,0.0,144.0,44.9441283,-123.0094675,0.0,1.0,8010002023,80082.0,0.0,0.0,823.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,142691.78,1515.03,1.0,,,100.0,80100.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,35.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2757496357834537,0.327,999999.0,1.879,0.022,3.474,7.965,6299.961,144.0,0.0,0.0,0.0 -7292.0,7292,,Block 2004,0,25,PedestrianZones,2301584.531970104,145414.6573671209,10.0,0,0,0.0,0.0,0.0,0.0,,30836.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,4,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2004.0,410470006002004.0,1000000US410470006002004,0.0,0.78,80103.0,0.0,140.0,44.9474867,-123.0148238,0.0,1.0,8010202004,80082.0,0.0,0.0,839.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.11,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,331854.79,2626.85,1.0,,,102.0,80102.0,1.0,9.0,40.0,0.0,31.0,0.0,0.0,79.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.618331004634782,0.132,999999.0,2.038,0.141,4.276,9.46,7358.968,140.0,0.0,0.0,0.0 -7296.0,7296,,Block 4007,0,25,PedestrianZones,2300603.743394645,144025.49472311116,10.0,0,0,0.0,0.0,0.0,0.0,,53542.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,18,0,0,22,0,19,18,0,11,0,0,0,6,0,0,126,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4007.0,410470009004007.0,1000000US410470009004007,0.0,0.2,80103.0,0.0,157.0,44.934716,-123.0266963,0.0,3.0,8011004007,80068.0,0.0,0.0,851.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.77,0.44,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,576206.19,3016.26,1.0,,,110.0,80110.0,1.0,110.0,137.0,0.0,27.0,0.0,0.0,62.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,13.227862297007526,0.178,999999.0,26.072,0.531,3.815,7.306,21361.722,157.0,0.0,0.0,0.0 -7297.0,7297,,Block 6014,0,25,PedestrianZones,2300815.1143601183,144395.99325112897,10.0,0,0,0.0,0.0,0.0,0.0,,14818.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6014.0,410470009006014.0,1000000US410470009006014,0.0,0.7399999999999999,80103.0,0.0,144.0,44.938108,-123.0241663,0.0,1.0,8010606014,80068.0,0.0,0.0,852.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.19,0.52,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,1.0,159464.53,1600.14,1.0,,,106.0,80106.0,1.0,10.0,38.0,0.0,28.0,0.0,0.0,54.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.660798559610796,0.136,999999.0,16.453,0.082,4.365,8.286,15833.15,144.0,0.0,0.0,0.0 -7323.0,7323,,Block 2023,0,25,PedestrianZones,2299767.6629099958,145088.03959794235,10.0,0,0,0.0,0.0,0.0,0.0,,18433.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2023.0,410470002002023.0,1000000US410470002002023,0.0,0.0,80103.0,0.0,121.0,44.9440376,-123.0377068,0.0,3.0,8006502023,80068.0,0.0,0.0,912.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,184.0,0.0,0.0,0.0,1.0,198374.13,1782.26,1.0,,,65.0,80065.0,2.0,23.0,23.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.554039416084136,0.16,999999.0,32.048,3.182,0.829,1.317,21353.907,121.0,5.227689002298091,0.5063541960206068,0.854718097629072 -7324.0,7324,,Block 2036,0,25,PedestrianZones,2299694.447100556,144908.10548160254,10.0,0,0,0.0,0.0,0.0,0.0,,36459.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,185,0,8,0,3,4,0,56,7,0,0,0,0,107,218,0,4,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2036.0,410470002002036.0,1000000US410470002002036,0.0,0.01,80103.0,0.0,111.0,44.9423985,-123.0385624,0.0,3.0,8006602036,80068.0,0.0,0.0,913.0,0.0,0.0,0.0,0.0,,,,0,0.0,50.5,0.75,0.0,1.5,18.0,1.95,745.0,0.0,0.0,0.0,1.0,392369.56,2633.14,1.0,,,66.0,80066.0,2.0,404.0,410.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.00755762471728,0.198,999999.0,34.347,2.758,1.788,2.878,23823.909,111.0,5.236879697673645,0.50700914570923,0.8561144196271322 -7325.0,7325,,Block 2034,0,25,PedestrianZones,2299895.734881055,145039.7032923838,10.0,0,0,0.0,0.0,0.0,0.0,,17642.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,38,0,0,0,0,2,0,128,0,0,0,10,0,298,479,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2034.0,410470002002034.0,1000000US410470002002034,0.0,0.0,80103.0,0.0,118.0,44.943639,-123.0360654,0.0,3.0,8006502034,80068.0,0.0,0.0,914.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,46.0,0.0,0.0,0.0,1.0,189861.77,1743.42,1.0,,,65.0,80065.0,2.0,327.0,327.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.35862265951492,0.135,999999.0,44.141,3.575,2.41,3.91,30752.379,118.0,5.218953561210248,0.5057157516891007,0.8541753724245865 -7326.0,7326,,Block 2035,0,25,PedestrianZones,2299847.21410966,144917.15194543716,10.0,0,0,0.0,0.0,0.0,0.0,,17843.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,36,93,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2035.0,410470002002035.0,1000000US410470002002035,0.0,0.0,80103.0,0.0,116.0,44.942523,-123.0366312,0.0,3.0,8006502035,80068.0,0.0,0.0,915.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,43.0,0.0,0.0,0.0,1.0,192025.88,1753.35,1.0,,,65.0,80065.0,2.0,84.0,84.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.408303760398542,0.111,999999.0,35.849,2.582,2.682,4.346,25724.807,116.0,5.225821612948422,0.5062434953021198,0.8553628877473933 -7327.0,7327,,Block 2044,0,25,PedestrianZones,2299798.208283968,144795.35079771696,10.0,0,0,0.0,0.0,0.0,0.0,,17933.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,35,0,0,0,0,0,0,9,0,0,0,0,0,11,42,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2044.0,410470002002044.0,1000000US410470002002044,0.0,0.06,80103.0,0.0,114.0,44.9414136,-123.0372034,0.0,3.0,8006602044,80068.0,0.0,0.0,916.0,0.0,0.0,0.0,0.0,,,,0,0.0,10.29,0.7099999999999999,0.0,1.5,18.0,0.0,65.0,0.0,0.0,0.0,1.0,192995.99,1757.52,1.0,,,66.0,80066.0,2.0,72.0,77.0,0.0,5.0,0.0,0.0,7.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.430574460877746,0.274,999999.0,38.776,2.65,1.686,2.646,26509.882,114.0,5.2298641028853,0.506532241773005,0.8561631991051631 -7328.0,7328,,Block 2045,0,25,PedestrianZones,2299750.817133409,144674.4775524292,10.0,0,0,0.0,0.0,0.0,0.0,,17896.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,2,126,9,0,0,0,0,0,140,0,0,0,48,0,25,399,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2045.0,410470002002045.0,1000000US410470002002045,0.0,0.07,80103.0,0.0,116.0,44.9403129,-123.0377555,0.0,3.0,8006702045,80068.0,0.0,0.0,917.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.639999999999999,0.55,0.0,1.5,18.0,0.0,84.0,0.0,0.0,0.0,1.0,192591.07,1755.9,1.0,,,67.0,80067.0,2.0,336.0,360.0,0.0,24.0,0.0,0.0,44.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.4212787356088254,0.196,999999.0,35.058,2.257,1.737,2.72,24178.391,116.0,5.232460329851617,0.5066785883256658,0.8566811731901134 -7329.0,7329,,Block 2049,0,25,PedestrianZones,2299706.187264642,144560.08367932757,10.0,0,0,0.0,0.0,0.0,0.0,,15802.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,3,16,2,0,0,12,5,0,55,14,0,0,20,0,33,147,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2049.0,410470002002049.0,1000000US410470002002049,0.0,0.04,80103.0,0.0,107.0,44.9392714,-123.0382752,0.0,3.0,8006702049,80068.0,0.0,0.0,918.0,0.0,0.0,0.0,0.0,,,,0,0.0,20.63,0.75,0.0,1.5,18.0,0.0,45.0,0.0,0.0,0.0,1.0,170057.07,1654.12,1.0,,,67.0,80067.0,2.0,165.0,171.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.903969787424264,0.041,999999.0,38.478,3.466,1.816,2.925,26498.387,107.0,5.230262279580929,0.5064264019852316,0.8565058649600903 -7330.0,7330,,Block 2033,0,25,PedestrianZones,2300021.7995465663,144991.5829742315,10.0,0,0,0.0,0.0,0.0,0.0,,17936.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,380,0,0,0,0,0,43,610,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2033.0,410470002002033.0,1000000US410470002002033,0.0,0.0,80103.0,0.0,128.0,44.9432418,-123.0344497,0.0,3.0,8006502033,80068.0,0.0,0.0,919.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,506.0,0.0,0.0,0.0,1.0,193026.1,1758.15,1.0,,,65.0,80065.0,2.0,432.0,432.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.431265581554627,0.044,999999.0,50.136,1.315,2.388,4.343,34866.733,128.0,5.203849888543658,0.5045876524978994,0.8529926287052271 -7331.0,7331,,Block 2000,0,25,PedestrianZones,2300152.9075682275,145334.458834213,10.0,0,0,0.0,0.0,0.0,0.0,,44395.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,15,14,2,0,0,17,0,99,0,0,0,15,0,2,258,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2000.0,410470002002000.0,1000000US410470002002000,0.0,0.2,80103.0,0.0,139.0,44.9463629,-123.0329253,0.0,3.0,8006902000,80068.0,0.0,0.0,920.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.48,0.63,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,1.0,477765.95,3334.52,1.0,,,69.0,80069.0,2.0,176.0,221.0,0.0,45.0,0.0,0.0,71.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.96798735319492,0.0,999999.0,30.913,1.372,2.579,5.322,23190.376,139.0,0.0,0.0,0.0 -7332.0,7332,,Block 2042,0,25,PedestrianZones,2299973.0812081224,144868.15914886407,10.0,0,0,0.0,0.0,0.0,0.0,,17969.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,19,0,0,0,132,10,0,173,0,0,0,3,0,4,261,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2042.0,410470002002042.0,1000000US410470002002042,0.0,0.0,80103.0,0.0,125.0,44.9421179,-123.0350176,0.0,3.0,8006802042,80068.0,0.0,0.0,921.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,58.0,0.0,0.0,0.0,1.0,193377.89,1758.96,1.0,,,68.0,80068.0,2.0,361.0,361.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.439341657288144,0.11,999999.0,45.269,2.337,2.215,3.613,31284.253,125.0,5.210810541362024,0.5051249580343151,0.8542014585877332 -7333.0,7333,,Block 2027,0,25,PedestrianZones,2300197.663134042,145063.98813776037,10.0,0,0,0.0,0.0,0.0,0.0,,18196.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,7,0,0,78,0,0,0.0,184.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2027.0,410470002002027.0,1000000US410470002002027,0.0,0.0,80103.0,0.0,146.0,44.9439427,-123.032251,0.0,3.0,8006802027,80068.0,0.0,0.0,922.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,195825.43,1770.91,1.0,,,68.0,80068.0,2.0,88.0,88.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.495529300143616,0.124,999999.0,37.797,1.191,2.081,3.931,26706.495,146.0,5.1740262545704825,0.5021397023597737,0.8498825858289768 -7334.0,7334,,Block 2032,0,25,PedestrianZones,2300148.0816725204,144940.6796209515,10.0,0,0,0.0,0.0,0.0,0.0,,18193.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,2,0,0,0,0,56,0,60,0,0,0,18,0,0,177,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2032.0,410470002002032.0,1000000US410470002002032,0.0,0.12,80103.0,0.0,140.0,44.9428196,-123.03283,0.0,3.0,8006802032,80068.0,0.0,0.0,923.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.16,0.57,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,195793.14,1769.81,1.0,,,68.0,80068.0,2.0,154.0,175.0,0.0,21.0,0.0,0.0,37.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.494788040464474,0.195,999999.0,39.914,2.499,2.535,4.812,28624.811,140.0,5.1848198722384735,0.5030784264936827,0.851499322204621 -7335.0,7335,,Block 2052,0,25,PedestrianZones,2300004.872286848,144574.899053131,10.0,0,0,0.0,0.0,0.0,0.0,,17506.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,283,0,0,0,0,0,0,0,0,0,293,0,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2052.0,410470002002052.0,1000000US410470002002052,0.0,0.0,80103.0,0.0,132.0,44.939489,-123.0344984,0.0,3.0,8006702052,80068.0,0.0,0.0,924.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,250.0,0.0,0.0,0.0,1.0,188398.16,1736.77,1.0,,,67.0,80067.0,2.0,219.0,219.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.325022886657953,0.039,999999.0,31.231,0.0,0.346,0.402,20244.51,132.0,5.198073086328763,0.5040150893314297,0.8535071399632181 -7336.0,7336,,Block 2041,0,25,PedestrianZones,2300100.253497025,144819.20234818157,10.0,0,0,0.0,0.0,0.0,0.0,,17490.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,14,0,10,0,0,1,0,32,0,0,0,0,0,0,60,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2041.0,410470002002041.0,1000000US410470002002041,0.0,0.14,80103.0,0.0,140.0,44.9417134,-123.0333875,0.0,3.0,8006802041,80068.0,0.0,0.0,925.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.85,0.77,0.0,0.0,0.0,0.0,145.0,0.0,0.0,0.0,1.0,188219.02,1736.9,1.0,,,68.0,80068.0,2.0,63.0,73.0,0.0,10.0,0.0,0.0,13.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.320910265931456,0.12,999999.0,57.275,2.248,2.352,3.84,39113.459,140.0,5.192979602858722,0.5037514982645191,0.8527349600822605 -7337.0,7337,,Block 2017,0,25,PedestrianZones,2299341.3794701262,144355.4171581421,10.0,0,0,0.0,0.0,0.0,0.0,,19909.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,1,0,37,0,0,0,1,0,0,66,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2017.0,410470002002017.0,1000000US410470002002017,0.0,0.02,80135.0,0.0,82.0,44.9373272,-123.0428137,0.0,3.0,8006202017,80068.0,0.0,0.0,926.0,0.0,0.0,0.0,0.0,,,,0,0.0,26.5,0.5,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,1.0,214251.88,1876.13,1.0,,,62.0,80062.0,2.0,53.0,54.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.9185419950991385,0.048,999999.0,36.733,2.129,4.267,7.017,28000.342,82.0,0.0,0.0,0.0 -7338.0,7338,,Block 3042,0,25,PedestrianZones,2299428.624415603,144225.74781270412,10.0,0,0,11.88,0.0,0.0,0.0,,65202.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,299,0,0,0,0,0,0,4,0,1,307,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3042.0,410470002003042.0,1000000US410470002003042,0.0,0.0,80135.0,0.0,86.0,44.9361855,-123.0416571,0.0,3.0,8007103042,80068.0,0.0,0.0,927.0,0.0,11.88,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,378.0,0.0,0.0,0.0,1.0,701694.24,4002.19,1.0,,,71.0,80071.0,2.0,298.0,298.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,16.108668920980868,0.042,999999.0,31.039,1.392,2.904,4.748,22904.008,86.0,0.0,0.0,0.0 -7339.0,7339,,Block 3040,0,25,PedestrianZones,2299664.21871542,144449.97533992174,10.0,0,0,0.0,0.0,0.0,0.0,,15726.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,5,2,0,0,0,173,0,0,15,0,0,0,0,0,2,228,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3040.0,410470002003040.0,1000000US410470002003040,0.0,0.0,80103.0,0.0,100.0,44.9382691,-123.0387629,0.0,3.0,8007203040,80068.0,0.0,0.0,928.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,41.0,0.0,0.0,0.0,1.0,169242.28,1648.59,1.0,,,72.0,80072.0,2.0,238.0,238.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.8852647006194383,0.119,999999.0,75.077,1.154,2.439,3.78,50468.699,100.0,5.226776813217188,0.5060532116496367,0.8560550782324527 -7340.0,7340,,Block 3046,0,25,PedestrianZones,2299622.874829328,144342.95036251497,10.0,0,0,1.05,0.0,0.0,0.0,,15176.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,65,0,0,0,0,13,0,2,0,0,0,5,0,1,108,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3046.0,410470002003046.0,1000000US410470002003046,0.0,0.0,80103.0,0.0,95.0,44.9372947,-123.0392439,0.0,3.0,8007303046,80068.0,0.0,0.0,929.0,0.0,1.05,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,2.23,262.0,0.0,0.0,0.0,1.0,163326.49,1633.65,1.0,,,73.0,80073.0,2.0,81.0,81.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.749456990083389,0.179,999999.0,33.063,1.897,2.633,4.237,23871.92,95.0,5.220182647984742,0.5054107061677829,0.8550616879809451 -7343.0,7343,,Block 3009,0,25,PedestrianZones,2300993.307286465,145006.39932087384,10.0,0,0,0.0,0.0,0.0,0.0,,100809.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,243,0,0,7,0,0,0,0,0,0,0,0,226,0,0,2107.0,0.0,2107.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3009.0,410470006003009.0,1000000US410470006003009,0.0,0.03,80103.0,0.0,141.0,44.9436486,-123.022151,0.0,3.0,8010303009,80082.0,0.0,0.0,938.0,0.0,0.0,0.0,0.0,,,,0,0.0,23.88,0.75,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,1.0,1084884.01,4413.34,1.0,,,103.0,80103.0,1.0,191.0,197.0,0.0,6.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.905487810104404,0.142,999999.0,8.917,0.525,4.93,10.021,12120.729,141.0,0.0,0.0,0.0 -7344.0,7344,,Block 1016,0,25,PedestrianZones,2301281.374524882,145828.3702317175,10.0,0,0,0.0,0.0,0.0,0.0,,26552.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,45,0,0,0,57,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1016.0,410470006001016.0,1000000US410470006001016,0.0,0.32,80103.0,0.0,152.0,44.951123,-123.0188272,0.0,3.0,8009801016,80082.0,0.0,0.0,939.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.92,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285745.05,3850.01,1.0,,,98.0,80098.0,1.0,57.0,84.0,0.0,27.0,0.0,0.0,62.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.559798024685314,0.241,999999.0,4.079,0.211,4.401,10.002,9011.416,152.0,0.0,0.0,0.0 -7351.0,7351,,Block 3038,0,25,PedestrianZones,2300141.699002919,146181.97483079557,10.0,0,0,0.0,0.0,0.0,0.0,,9902.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,26,0,5,0,0,0,0,0,2,26,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3038.0,410470003003038.0,1000000US410470003003038,0.0,0.07,80103.0,0.0,126.0,44.953983,-123.033404,0.0,3.0,8008903038,80068.0,0.0,0.0,999.0,0.0,0.0,0.0,0.0,,,,0,0.0,9.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106566.9,1306.11,1.0,,,89.0,80089.0,2.0,27.0,29.0,0.0,2.0,0.0,0.0,3.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.446437262203338,0.123,999999.0,5.838,0.219,2.718,5.279,7114.746,126.0,0.0,0.0,0.0 +7292.0,7292,,Block 2004,0,25,PedestrianZones,2301584.531970104,145414.6573671209,10.0,0,0,0.0,0.0,0.0,0.0,,30836.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,3,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2004.0,410470006002004.0,1000000US410470006002004,0.0,0.78,80103.0,0.0,140.0,44.9474867,-123.0148238,0.0,1.0,8010202004,80082.0,0.0,0.0,839.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.11,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,331854.79,2626.85,1.0,,,102.0,80102.0,1.0,9.0,40.0,0.0,31.0,0.0,0.0,79.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.618331004634782,0.132,999999.0,2.038,0.141,4.276,9.46,7358.968,140.0,0.0,0.0,0.0 +7296.0,7296,,Block 4007,0,25,PedestrianZones,2300603.743394645,144025.49472311116,10.0,0,0,0.0,0.0,0.0,0.0,,53542.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,11,0,0,25,0,17,10,0,12,0,0,0,5,0,0,133,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4007.0,410470009004007.0,1000000US410470009004007,0.0,0.2,80103.0,0.0,157.0,44.934716,-123.0266963,0.0,3.0,8011004007,80068.0,0.0,0.0,851.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.77,0.44,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,576206.19,3016.26,1.0,,,110.0,80110.0,1.0,110.0,137.0,0.0,27.0,0.0,0.0,62.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,13.227862297007526,0.178,999999.0,26.072,0.531,3.815,7.306,21361.722,157.0,0.0,0.0,0.0 +7297.0,7297,,Block 6014,0,25,PedestrianZones,2300815.1143601183,144395.99325112897,10.0,0,0,0.0,0.0,0.0,0.0,,14818.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6014.0,410470009006014.0,1000000US410470009006014,0.0,0.7399999999999999,80103.0,0.0,144.0,44.938108,-123.0241663,0.0,1.0,8010606014,80068.0,0.0,0.0,852.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.19,0.52,0.0,0.0,0.0,0.0,35.0,0.0,0.0,0.0,1.0,159464.53,1600.14,1.0,,,106.0,80106.0,1.0,10.0,38.0,0.0,28.0,0.0,0.0,54.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.660798559610796,0.136,999999.0,16.453,0.082,4.365,8.286,15833.15,144.0,0.2041845953959518,3.343854546267793,0.8971990523681491 +7323.0,7323,,Block 2023,0,25,PedestrianZones,2299767.6629099958,145088.03959794235,10.0,0,0,0.0,0.0,0.0,0.0,,18433.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,14,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2023.0,410470002002023.0,1000000US410470002002023,0.0,0.0,80103.0,0.0,121.0,44.9440376,-123.0377068,0.0,3.0,8006502023,80068.0,0.0,0.0,912.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,184.0,0.0,0.0,0.0,1.0,198374.13,1782.26,1.0,,,65.0,80065.0,2.0,23.0,23.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.554039416084136,0.16,999999.0,32.048,3.182,0.829,1.317,21353.907,121.0,0.2032485277066101,3.453807359539113,0.9141443471919972 +7324.0,7324,,Block 2036,0,25,PedestrianZones,2299694.447100556,144908.10548160254,10.0,0,0,0.0,0.0,0.0,0.0,,36459.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,231,0,8,0,6,7,0,114,3,0,0,0,0,89,318,0,2,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2036.0,410470002002036.0,1000000US410470002002036,0.0,0.01,80103.0,0.0,111.0,44.9423985,-123.0385624,0.0,3.0,8006602036,80068.0,0.0,0.0,913.0,0.0,0.0,0.0,0.0,,,,0,0.0,50.5,0.75,0.0,1.5,18.0,1.95,745.0,0.0,0.0,0.0,1.0,392369.56,2633.14,1.0,,,66.0,80066.0,2.0,404.0,410.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.00755762471728,0.198,999999.0,34.347,2.758,1.788,2.878,23823.909,111.0,0.202920928091497,3.455065174870909,0.9141878365584206 +7325.0,7325,,Block 2034,0,25,PedestrianZones,2299895.734881055,145039.7032923838,10.0,0,0,0.0,0.0,0.0,0.0,,17642.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,48,0,0,0,0,3,0,73,0,0,0,8,0,190,293,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2034.0,410470002002034.0,1000000US410470002002034,0.0,0.0,80103.0,0.0,118.0,44.943639,-123.0360654,0.0,3.0,8006502034,80068.0,0.0,0.0,914.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,46.0,0.0,0.0,0.0,1.0,189861.77,1743.42,1.0,,,65.0,80065.0,2.0,327.0,327.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.35862265951492,0.135,999999.0,44.141,3.575,2.41,3.91,30752.379,118.0,0.2039191476956266,3.450169249698045,0.914425286350784 +7326.0,7326,,Block 2035,0,25,PedestrianZones,2299847.21410966,144917.15194543716,10.0,0,0,0.0,0.0,0.0,0.0,,17843.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,35,112,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2035.0,410470002002035.0,1000000US410470002002035,0.0,0.0,80103.0,0.0,116.0,44.942523,-123.0366312,0.0,3.0,8006502035,80068.0,0.0,0.0,915.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,43.0,0.0,0.0,0.0,1.0,192025.88,1753.35,1.0,,,65.0,80065.0,2.0,84.0,84.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.408303760398542,0.111,999999.0,35.849,2.582,2.682,4.346,25724.807,116.0,0.2039367513363894,3.451777614094439,0.9149289316634598 +7327.0,7327,,Block 2044,0,25,PedestrianZones,2299798.208283968,144795.35079771696,10.0,0,0,0.0,0.0,0.0,0.0,,17933.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,44,0,0,0,0,0,0,6,0,0,0,0,0,13,42,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2044.0,410470002002044.0,1000000US410470002002044,0.0,0.06,80103.0,0.0,114.0,44.9414136,-123.0372034,0.0,3.0,8006602044,80068.0,0.0,0.0,916.0,0.0,0.0,0.0,0.0,,,,0,0.0,10.29,0.7099999999999999,0.0,1.5,18.0,0.0,65.0,0.0,0.0,0.0,1.0,192995.99,1757.52,1.0,,,66.0,80066.0,2.0,72.0,77.0,0.0,5.0,0.0,0.0,7.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.430574460877746,0.274,999999.0,38.776,2.65,1.686,2.646,26509.882,114.0,0.2038905350836636,3.452602527803024,0.9151581805592098 +7328.0,7328,,Block 2045,0,25,PedestrianZones,2299750.817133409,144674.4775524292,10.0,0,0,0.0,0.0,0.0,0.0,,17896.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,2,98,6,0,0,0,0,0,74,0,0,0,25,0,43,177,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2045.0,410470002002045.0,1000000US410470002002045,0.0,0.07,80103.0,0.0,116.0,44.9403129,-123.0377555,0.0,3.0,8006702045,80068.0,0.0,0.0,917.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.639999999999999,0.55,0.0,1.5,18.0,0.0,84.0,0.0,0.0,0.0,1.0,192591.07,1755.9,1.0,,,67.0,80067.0,2.0,336.0,360.0,0.0,24.0,0.0,0.0,44.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.4212787356088254,0.196,999999.0,35.058,2.257,1.737,2.72,24178.391,116.0,0.2037114010724809,3.4517103754312366,0.9148765771098 +7329.0,7329,,Block 2049,0,25,PedestrianZones,2299706.187264642,144560.08367932757,10.0,0,0,0.0,0.0,0.0,0.0,,15802.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,4,29,1,0,0,33,4,0,44,14,0,0,7,0,21,139,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2049.0,410470002002049.0,1000000US410470002002049,0.0,0.04,80103.0,0.0,107.0,44.9392714,-123.0382752,0.0,3.0,8006702049,80068.0,0.0,0.0,918.0,0.0,0.0,0.0,0.0,,,,0,0.0,20.63,0.75,0.0,1.5,18.0,0.0,45.0,0.0,0.0,0.0,1.0,170057.07,1654.12,1.0,,,67.0,80067.0,2.0,165.0,171.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.903969787424264,0.041,999999.0,38.478,3.466,1.816,2.925,26498.387,107.0,0.2034379215124477,3.446416393009,0.9136858227675 +7330.0,7330,,Block 2033,0,25,PedestrianZones,2300021.7995465663,144991.5829742315,10.0,0,0,0.0,0.0,0.0,0.0,,17936.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,551,0,0,0,0,0,83,450,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2033.0,410470002002033.0,1000000US410470002002033,0.0,0.0,80103.0,0.0,128.0,44.9432418,-123.0344497,0.0,3.0,8006502033,80068.0,0.0,0.0,919.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,506.0,0.0,0.0,0.0,1.0,193026.1,1758.15,1.0,,,65.0,80065.0,2.0,432.0,432.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.431265581554627,0.044,999999.0,50.136,1.315,2.388,4.343,34866.733,128.0,0.2046821984603977,3.44344236506773,0.9142398739602036 +7331.0,7331,,Block 2000,0,25,PedestrianZones,2300152.9075682275,145334.458834213,10.0,0,0,0.0,0.0,0.0,0.0,,44395.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,18,20,3,0,0,37,0,110,0,0,0,8,0,2,146,0,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2000.0,410470002002000.0,1000000US410470002002000,0.0,0.2,80103.0,0.0,139.0,44.9463629,-123.0329253,0.0,3.0,8006902000,80068.0,0.0,0.0,920.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.48,0.63,0.0,0.0,0.0,0.0,43.0,0.0,0.0,0.0,1.0,477765.95,3334.52,1.0,,,69.0,80069.0,2.0,176.0,221.0,0.0,45.0,0.0,0.0,71.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.96798735319492,0.0,999999.0,30.913,1.372,2.579,5.322,23190.376,139.0,0.0,0.0,0.0 +7332.0,7332,,Block 2042,0,25,PedestrianZones,2299973.0812081224,144868.15914886407,10.0,0,0,0.0,0.0,0.0,0.0,,17969.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,23,0,0,0,212,9,0,262,0,0,0,3,0,2,358,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2042.0,410470002002042.0,1000000US410470002002042,0.0,0.0,80103.0,0.0,125.0,44.9421179,-123.0350176,0.0,3.0,8006802042,80068.0,0.0,0.0,921.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,58.0,0.0,0.0,0.0,1.0,193377.89,1758.96,1.0,,,68.0,80068.0,2.0,361.0,361.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.439341657288144,0.11,999999.0,45.269,2.337,2.215,3.613,31284.253,125.0,0.204728900364016,3.445099918476388,0.914769808173095 +7333.0,7333,,Block 2027,0,25,PedestrianZones,2300197.663134042,145063.98813776037,10.0,0,0,0.0,0.0,0.0,0.0,,18196.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,40,0,0,0,0,0,0,8,0,0,71,0,0,0.0,184.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2027.0,410470002002027.0,1000000US410470002002027,0.0,0.0,80103.0,0.0,146.0,44.9439427,-123.032251,0.0,3.0,8006802027,80068.0,0.0,0.0,922.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,195825.43,1770.91,1.0,,,68.0,80068.0,2.0,88.0,88.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.495529300143616,0.124,999999.0,37.797,1.191,2.081,3.931,26706.495,146.0,0.2052441384619344,3.425881785418916,0.9121657410957196 +7334.0,7334,,Block 2032,0,25,PedestrianZones,2300148.0816725204,144940.6796209515,10.0,0,0,0.0,0.0,0.0,0.0,,18193.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,2,0,0,0,0,105,0,92,0,0,0,12,0,0,116,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2032.0,410470002002032.0,1000000US410470002002032,0.0,0.12,80103.0,0.0,140.0,44.9428196,-123.03283,0.0,3.0,8006802032,80068.0,0.0,0.0,923.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.16,0.57,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,195793.14,1769.81,1.0,,,68.0,80068.0,2.0,154.0,175.0,0.0,21.0,0.0,0.0,37.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.494788040464474,0.195,999999.0,39.914,2.499,2.535,4.812,28624.811,140.0,0.205448420401646,3.4322180805724383,0.9134974401552812 +7335.0,7335,,Block 2052,0,25,PedestrianZones,2300004.872286848,144574.899053131,10.0,0,0,0.0,0.0,0.0,0.0,,17506.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,199,0,0,0,0,0,0,0,0,0,320,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2052.0,410470002002052.0,1000000US410470002002052,0.0,0.0,80103.0,0.0,132.0,44.939489,-123.0344984,0.0,3.0,8006702052,80068.0,0.0,0.0,924.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,250.0,0.0,0.0,0.0,1.0,188398.16,1736.77,1.0,,,67.0,80067.0,2.0,219.0,219.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.325022886657953,0.039,999999.0,31.231,0.0,0.346,0.402,20244.51,132.0,0.2049964751724043,3.4328435278311336,0.913318742764468 +7336.0,7336,,Block 2041,0,25,PedestrianZones,2300100.253497025,144819.20234818157,10.0,0,0,0.0,0.0,0.0,0.0,,17490.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,7,0,11,0,0,0,0,43,0,0,0,0,0,0,82,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2041.0,410470002002041.0,1000000US410470002002041,0.0,0.14,80103.0,0.0,140.0,44.9417134,-123.0333875,0.0,3.0,8006802041,80068.0,0.0,0.0,925.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.85,0.77,0.0,0.0,0.0,0.0,145.0,0.0,0.0,0.0,1.0,188219.02,1736.9,1.0,,,68.0,80068.0,2.0,63.0,73.0,0.0,10.0,0.0,0.0,13.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.320910265931456,0.12,999999.0,57.275,2.248,2.352,3.84,39113.459,140.0,0.2054769197026686,3.4352717617798545,0.9141364022911366 +7337.0,7337,,Block 2017,0,25,PedestrianZones,2299341.3794701262,144355.4171581421,10.0,0,0,0.0,0.0,0.0,0.0,,19909.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,1,0,0,68,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2017.0,410470002002017.0,1000000US410470002002017,0.0,0.02,80135.0,0.0,82.0,44.9373272,-123.0428137,0.0,3.0,8006202017,80068.0,0.0,0.0,926.0,0.0,0.0,0.0,0.0,,,,0,0.0,26.5,0.5,0.0,0.0,0.0,0.0,14.0,0.0,0.0,0.0,1.0,214251.88,1876.13,1.0,,,62.0,80062.0,2.0,53.0,54.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.9185419950991385,0.048,999999.0,36.733,2.129,4.267,7.017,28000.342,82.0,0.0,0.0,0.0 +7338.0,7338,,Block 3042,0,25,PedestrianZones,2299428.624415603,144225.74781270412,10.0,0,0,11.88,0.0,0.0,0.0,,65202.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,261,0,0,0,0,0,0,3,0,1,230,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3042.0,410470002003042.0,1000000US410470002003042,0.0,0.0,80135.0,0.0,86.0,44.9361855,-123.0416571,0.0,3.0,8007103042,80068.0,0.0,0.0,927.0,0.0,11.88,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,378.0,0.0,0.0,0.0,1.0,701694.24,4002.19,1.0,,,71.0,80071.0,2.0,298.0,298.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,16.108668920980868,0.042,999999.0,31.039,1.392,2.904,4.748,22904.008,86.0,0.0,0.0,0.0 +7339.0,7339,,Block 3040,0,25,PedestrianZones,2299664.21871542,144449.97533992174,10.0,0,0,0.0,0.0,0.0,0.0,,15726.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,9,1,0,0,0,240,0,0,19,0,0,0,0,0,2,151,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3040.0,410470002003040.0,1000000US410470002003040,0.0,0.0,80103.0,0.0,100.0,44.9382691,-123.0387629,0.0,3.0,8007203040,80068.0,0.0,0.0,928.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,41.0,0.0,0.0,0.0,1.0,169242.28,1648.59,1.0,,,72.0,80072.0,2.0,238.0,238.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.8852647006194383,0.119,999999.0,75.077,1.154,2.439,3.78,50468.699,100.0,0.2030513722220365,3.439949068612969,0.9120960307795948 +7340.0,7340,,Block 3046,0,25,PedestrianZones,2299622.874829328,144342.95036251497,10.0,0,0,1.05,0.0,0.0,0.0,,15176.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,50,0,0,0,0,10,0,2,0,0,0,2,0,1,80,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3046.0,410470002003046.0,1000000US410470002003046,0.0,0.0,80103.0,0.0,95.0,44.9372947,-123.0392439,0.0,3.0,8007303046,80068.0,0.0,0.0,929.0,0.0,1.05,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,2.23,262.0,0.0,0.0,0.0,1.0,163326.49,1633.65,1.0,,,73.0,80073.0,2.0,81.0,81.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.749456990083389,0.179,999999.0,33.063,1.897,2.633,4.237,23871.92,95.0,0.2026124489821712,3.431515867312055,0.9100355137202618 +7343.0,7343,,Block 3009,0,25,PedestrianZones,2300993.307286465,145006.39932087384,10.0,0,0,0.0,0.0,0.0,0.0,,100809.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,277,0,0,3,0,0,0,0,0,0,0,0,171,0,0,2107.0,0.0,2107.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3009.0,410470006003009.0,1000000US410470006003009,0.0,0.03,80103.0,0.0,141.0,44.9436486,-123.022151,0.0,3.0,8010303009,80082.0,0.0,0.0,938.0,0.0,0.0,0.0,0.0,,,,0,0.0,23.88,0.75,0.0,0.0,0.0,0.0,7.0,0.0,0.0,0.0,1.0,1084884.01,4413.34,1.0,,,103.0,80103.0,1.0,191.0,197.0,0.0,6.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.905487810104404,0.142,999999.0,8.917,0.525,4.93,10.021,12120.729,141.0,0.0,0.0,0.0 +7344.0,7344,,Block 1016,0,25,PedestrianZones,2301281.374524882,145828.3702317175,10.0,0,0,0.0,0.0,0.0,0.0,,26552.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,19,0,0,0,77,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1016.0,410470006001016.0,1000000US410470006001016,0.0,0.32,80103.0,0.0,152.0,44.951123,-123.0188272,0.0,3.0,8009801016,80082.0,0.0,0.0,939.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.92,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285745.05,3850.01,1.0,,,98.0,80098.0,1.0,57.0,84.0,0.0,27.0,0.0,0.0,62.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.559798024685314,0.241,999999.0,4.079,0.211,4.401,10.002,9011.416,152.0,0.0,0.0,0.0 +7351.0,7351,,Block 3038,0,25,PedestrianZones,2300141.699002919,146181.97483079557,10.0,0,0,0.0,0.0,0.0,0.0,,9902.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,15,0,4,0,0,0,0,0,2,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3038.0,410470003003038.0,1000000US410470003003038,0.0,0.07,80103.0,0.0,126.0,44.953983,-123.033404,0.0,3.0,8008903038,80068.0,0.0,0.0,999.0,0.0,0.0,0.0,0.0,,,,0,0.0,9.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106566.9,1306.11,1.0,,,89.0,80089.0,2.0,27.0,29.0,0.0,2.0,0.0,0.0,3.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.446437262203338,0.123,999999.0,5.838,0.219,2.718,5.279,7114.746,126.0,0.0,0.0,0.0 7352.0,7352,,Block 1010,0,25,PedestrianZones,2300010.520942011,146124.53629489598,10.0,0,0,0.0,0.0,0.0,0.0,,10570.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1010.0,410470002001010.0,1000000US410470002001010,0.0,0.0,80103.0,0.0,121.0,44.9534294,-123.0350429,0.0,1.0,8008501010,80068.0,0.0,0.0,1000.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113753.29,1352.13,1.0,,,85.0,80085.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.611413804369367,0.303,999999.0,7.558,0.461,2.001,3.916,7343.394,121.0,0.0,0.0,0.0 7353.0,7353,,Block 1009,0,25,PedestrianZones,2299973.833485804,146029.5368364306,10.0,0,0,0.0,0.0,0.0,0.0,,10946.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1009.0,410470002001009.0,1000000US410470002001009,0.0,0.0,80103.0,0.0,120.0,44.9525645,-123.0354699,0.0,3.0,8008501009,80068.0,0.0,0.0,1001.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117796.9,1374.37,1.0,,,85.0,80085.0,2.0,27.0,27.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.704242413469592,0.243,999999.0,9.399,0.621,2.203,4.411,8838.618,120.0,0.0,0.0,0.0 -7354.0,7354,,Block 1000,0,25,PedestrianZones,2300126.272381516,146413.83499630715,10.0,0,0,0.0,0.0,0.0,0.0,,12182.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,50,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1000.0,410470002001000.0,1000000US410470002001000,0.0,0.05,80103.0,0.0,117.0,44.9560642,-123.0336916,0.0,3.0,8008501000,80068.0,0.0,0.0,1002.0,0.0,0.0,0.0,0.0,,,,0,0.0,9.25,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131099.85,1471.78,1.0,,,85.0,80085.0,2.0,37.0,39.0,0.0,2.0,0.0,0.0,4.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0096357038978785,0.24,999999.0,4.548,0.114,2.293,4.148,5565.433,117.0,0.0,0.0,0.0 -7355.0,7355,,Block 1002,0,25,PedestrianZones,2300082.959756724,146313.8910934086,10.0,0,0,0.0,0.0,0.0,0.0,,10975.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,60,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1002.0,410470002001002.0,1000000US410470002001002,0.0,0.0,80103.0,0.0,115.0,44.955153,-123.0342005,0.0,3.0,8008501002,80068.0,0.0,0.0,1003.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,118111.23,1375.52,1.0,,,85.0,80085.0,2.0,38.0,38.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7114582868103447,0.246,999999.0,5.975,0.124,2.618,4.841,6922.623,115.0,0.0,0.0,0.0 -7356.0,7356,,Block 1011,0,25,PedestrianZones,2300047.249642316,146218.42894240518,10.0,0,0,0.0,0.0,0.0,0.0,,10584.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,0,16,0,7,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1011.0,410470002001011.0,1000000US410470002001011,0.0,0.0,80103.0,0.0,114.0,44.9542843,-123.034615,0.0,3.0,8008501011,80068.0,0.0,0.0,1004.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113906.3,1351.05,1.0,,,85.0,80085.0,2.0,46.0,46.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6149266194983283,0.244,999999.0,6.301,0.191,2.351,4.414,6857.734,114.0,0.0,0.0,0.0 -7357.0,7357,,Block 3032,0,25,PedestrianZones,2300216.4268755475,146370.47721613146,10.0,0,0,0.0,0.0,0.0,0.0,,10025.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3032.0,410470003003032.0,1000000US410470003003032,0.0,0.5999999999999999,80103.0,0.0,133.0,44.9556997,-123.0325323,0.0,1.0,8008903032,80068.0,0.0,0.0,1005.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.38,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107886.13,1314.5,1.0,,,89.0,80089.0,2.0,12.0,30.0,0.0,18.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4767225872465164,0.125,999999.0,6.593,0.145,2.751,5.23,7567.022,133.0,0.0,0.0,0.0 -7358.0,7358,,Block 3039,0,25,PedestrianZones,2300105.7311847094,146087.4502070817,10.0,0,0,0.0,0.0,0.0,0.0,,9825.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,15,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3039.0,410470003003039.0,1000000US410470003003039,0.0,0.4799999999999999,80103.0,0.0,128.0,44.9531227,-123.0338221,0.0,3.0,8008903039,80068.0,0.0,0.0,1006.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105737.18,1300.71,1.0,,,89.0,80089.0,2.0,11.0,21.0,0.0,10.0,0.0,0.0,11.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.427389404809824,0.248,999999.0,7.282,0.437,2.283,4.528,7558.169,128.0,0.0,0.0,0.0 +7354.0,7354,,Block 1000,0,25,PedestrianZones,2300126.272381516,146413.83499630715,10.0,0,0,0.0,0.0,0.0,0.0,,12182.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,39,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1000.0,410470002001000.0,1000000US410470002001000,0.0,0.05,80103.0,0.0,117.0,44.9560642,-123.0336916,0.0,3.0,8008501000,80068.0,0.0,0.0,1002.0,0.0,0.0,0.0,0.0,,,,0,0.0,9.25,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131099.85,1471.78,1.0,,,85.0,80085.0,2.0,37.0,39.0,0.0,2.0,0.0,0.0,4.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0096357038978785,0.24,999999.0,4.548,0.114,2.293,4.148,5565.433,117.0,0.0,0.0,0.0 +7355.0,7355,,Block 1002,0,25,PedestrianZones,2300082.959756724,146313.8910934086,10.0,0,0,0.0,0.0,0.0,0.0,,10975.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,42,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1002.0,410470002001002.0,1000000US410470002001002,0.0,0.0,80103.0,0.0,115.0,44.955153,-123.0342005,0.0,3.0,8008501002,80068.0,0.0,0.0,1003.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,118111.23,1375.52,1.0,,,85.0,80085.0,2.0,38.0,38.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7114582868103447,0.246,999999.0,5.975,0.124,2.618,4.841,6922.623,115.0,0.0,0.0,0.0 +7356.0,7356,,Block 1011,0,25,PedestrianZones,2300047.249642316,146218.42894240518,10.0,0,0,0.0,0.0,0.0,0.0,,10584.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,17,0,6,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1011.0,410470002001011.0,1000000US410470002001011,0.0,0.0,80103.0,0.0,114.0,44.9542843,-123.034615,0.0,3.0,8008501011,80068.0,0.0,0.0,1004.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113906.3,1351.05,1.0,,,85.0,80085.0,2.0,46.0,46.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6149266194983283,0.244,999999.0,6.301,0.191,2.351,4.414,6857.734,114.0,0.0,0.0,0.0 +7357.0,7357,,Block 3032,0,25,PedestrianZones,2300216.4268755475,146370.47721613146,10.0,0,0,0.0,0.0,0.0,0.0,,10025.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3032.0,410470003003032.0,1000000US410470003003032,0.0,0.5999999999999999,80103.0,0.0,133.0,44.9556997,-123.0325323,0.0,1.0,8008903032,80068.0,0.0,0.0,1005.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.38,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107886.13,1314.5,1.0,,,89.0,80089.0,2.0,12.0,30.0,0.0,18.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4767225872465164,0.125,999999.0,6.593,0.145,2.751,5.23,7567.022,133.0,0.0,0.0,0.0 +7358.0,7358,,Block 3039,0,25,PedestrianZones,2300105.7311847094,146087.4502070817,10.0,0,0,0.0,0.0,0.0,0.0,,9825.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3039.0,410470003003039.0,1000000US410470003003039,0.0,0.4799999999999999,80103.0,0.0,128.0,44.9531227,-123.0338221,0.0,3.0,8008903039,80068.0,0.0,0.0,1006.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105737.18,1300.71,1.0,,,89.0,80089.0,2.0,11.0,21.0,0.0,10.0,0.0,0.0,11.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.427389404809824,0.248,999999.0,7.282,0.437,2.283,4.528,7558.169,128.0,0.0,0.0,0.0 7391.0,7391,,Block 2009,0,25,PedestrianZones,2301257.0041419407,145441.8251285341,10.0,0,0,0.0,0.0,0.0,0.0,,10933.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2009.0,410470006002009.0,1000000US410470006002009,0.0,0.93,80103.0,0.0,143.0,44.9476393,-123.0189832,0.0,1.0,8010202009,80082.0,0.0,0.0,1082.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117658.49,1378.85,1.0,,,102.0,80102.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,37.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7010649312432617,0.13,999999.0,2.122,0.146,4.203,9.116,7192.44,143.0,0.0,0.0,0.0 7392.0,7392,,Block 2014,0,25,PedestrianZones,2301201.069498261,145286.6919926678,10.0,0,0,0.0,0.0,0.0,0.0,,19887.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2014.0,410470006002014.0,1000000US410470006002014,0.0,0.97,80103.0,0.0,149.0,44.9462282,-123.0196303,0.0,1.0,8010202014,80082.0,0.0,0.0,1083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,214017.95,2068.44,1.0,,,102.0,80102.0,1.0,1.0,36.0,0.0,35.0,0.0,0.0,93.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.91317182677756,0.105,999999.0,9.881,0.026,4.034,8.222,11585.884,149.0,0.0,0.0,0.0 7393.0,7393,,Block 2010,0,25,PedestrianZones,2301346.235452728,145409.5864684892,10.0,0,0,0.0,0.0,0.0,0.0,,10675.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2010.0,410470006002010.0,1000000US410470006002010,0.0,1.0,80103.0,0.0,139.0,44.9473743,-123.0178402,0.0,1.0,8010202010,80082.0,0.0,0.0,1084.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114887.08,1367.75,1.0,,,102.0,80102.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,34.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.637442032654288,0.092,999999.0,2.185,0.164,4.18,9.272,7332.89,139.0,0.0,0.0,0.0 -7394.0,7394,,Block 3019,0,25,PedestrianZones,2301337.9837691598,144792.26918101552,10.0,0,0,0.0,0.0,0.0,0.0,,12251.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3019.0,410470006003019.0,1000000US410470006003019,0.0,0.93,80103.0,0.0,144.0,44.9418193,-123.017701,0.0,1.0,8010403019,80082.0,0.0,0.0,1085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131839.36,1449.41,1.0,,,104.0,80104.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.026612466576449,0.149,999999.0,2.597,0.094,4.994,9.793,7929.113,144.0,0.0,0.0,0.0 +7394.0,7394,,Block 3019,0,25,PedestrianZones,2301337.9837691598,144792.26918101552,10.0,0,0,0.0,0.0,0.0,0.0,,12251.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3019.0,410470006003019.0,1000000US410470006003019,0.0,0.93,80103.0,0.0,144.0,44.9418193,-123.017701,0.0,1.0,8010403019,80082.0,0.0,0.0,1085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131839.36,1449.41,1.0,,,104.0,80104.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.026612466576449,0.149,999999.0,2.597,0.094,4.994,9.793,7929.113,144.0,0.0,0.0,0.0 7395.0,7395,,Block 1017,0,25,PedestrianZones,2301447.115529624,145919.24815116203,10.0,0,0,0.0,0.0,0.0,0.0,,14419.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1017.0,410470006001017.0,1000000US410470006001017,0.0,0.95,80103.0,0.0,142.0,44.951987,-123.0167636,0.0,1.0,8009801017,80082.0,0.0,0.0,1086.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155174.4,1704.42,1.0,,,98.0,80098.0,1.0,1.0,22.0,0.0,21.0,0.0,0.0,48.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.562310865199891,0.268,999999.0,4.704,0.26,3.707,8.547,8480.937,142.0,0.0,0.0,0.0 -7396.0,7396,,Block 1018,0,25,PedestrianZones,2301602.4006519406,145858.96104403248,10.0,0,0,0.0,0.0,0.0,0.0,,12918.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1018.0,410470006001018.0,1000000US410470006001018,0.0,1.0,80103.0,0.0,128.0,44.9514882,-123.0147727,0.0,1.0,8009801018,80082.0,0.0,0.0,1087.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,139021.53,1580.49,1.0,,,98.0,80098.0,1.0,0.0,20.0,0.0,20.0,0.0,0.0,43.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.191492338971521,0.164,999999.0,4.453,0.195,3.58,8.145,8062.296,128.0,0.0,0.0,0.0 -7421.0,7421,,Block 2016,0,25,PedestrianZones,2299438.948702953,144555.59157857235,10.0,0,0,0.0,0.0,0.0,0.0,,8402.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,4,0,7,0,0,0,0,46,0,0,0,13,0,7,85,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2016.0,410470002002016.0,1000000US410470002002016,0.0,0.0,80103.0,0.0,85.0,44.9391554,-123.0416578,0.0,3.0,8006302016,80068.0,0.0,0.0,1163.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,10.0,0.0,0.0,0.0,1.0,90421.35,1364.72,1.0,,,63.0,80063.0,2.0,129.0,129.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0757867178548355,0.026,999999.0,34.207,2.156,2.581,4.108,24521.474,85.0,5.280854520855615,0.5109643412320686,0.8635004958803734 -7441.0,7441,,Block 2019,0,25,PedestrianZones,2301767.423031921,145304.33237544153,10.0,0,0,0.0,0.0,0.0,0.0,,23174.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2019.0,410470006002019.0,1000000US410470006002019,0.0,0.97,80103.0,0.0,153.0,44.9465455,-123.0124638,0.0,1.0,8010002019,80082.0,0.0,0.0,1204.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,249396.1,2126.45,1.0,,,100.0,80100.0,1.0,1.0,31.0,0.0,30.0,0.0,0.0,74.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.72534153205594,0.179,999999.0,1.965,0.171,4.086,9.112,7089.395,153.0,0.0,0.0,0.0 -7445.0,7445,,Block 1024,0,25,PedestrianZones,2301346.567080137,145690.72236164848,10.0,0,0,5.57,0.0,0.0,0.0,,46573.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1024.0,410470006001024.0,1000000US410470006001024,4.49,0.93,80103.0,0.0,151.0,44.9499032,-123.017947,0.0,1.0,8009801024,80082.0,0.0,0.0,1209.0,0.0,5.57,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.03,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,501208.89,2892.17,1.0,,,98.0,80098.0,1.0,2.0,27.0,0.0,25.0,0.0,0.0,61.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.50616265998216,0.143,999999.0,1.442,0.252,4.572,10.594,7703.425,151.0,0.0,0.0,0.0 -7447.0,7447,,Block 1029,0,25,PedestrianZones,2300237.5147472727,145525.4721640397,10.0,0,0,0.04,0.0,0.0,0.0,,20517.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,1,0,0,0,0,15,0,0,0,0,0,0,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1029.0,410470002001029.0,1000000US410470002001029,500.0,0.6099999999999999,80103.0,0.0,147.0,44.9481049,-123.0319295,0.0,1.0,8008401029,80068.0,0.0,0.0,1217.0,0.0,0.04,0.0,2.0,HISTORICAL AREA,DEVELOPED,,0,0.0,0.2399999999999999,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,220800.99,2959.42,1.0,,,84.0,80084.0,2.0,13.0,33.0,0.0,20.0,0.0,0.0,54.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.068888808579959,0.145,999999.0,17.114,0.292,4.039,7.951,16041.359,147.0,0.0,0.0,0.0 +7396.0,7396,,Block 1018,0,25,PedestrianZones,2301602.4006519406,145858.96104403248,10.0,0,0,0.0,0.0,0.0,0.0,,12918.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1018.0,410470006001018.0,1000000US410470006001018,0.0,1.0,80103.0,0.0,128.0,44.9514882,-123.0147727,0.0,1.0,8009801018,80082.0,0.0,0.0,1087.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,139021.53,1580.49,1.0,,,98.0,80098.0,1.0,0.0,20.0,0.0,20.0,0.0,0.0,43.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.191492338971521,0.164,999999.0,4.453,0.195,3.58,8.145,8062.296,128.0,0.0,0.0,0.0 +7421.0,7421,,Block 2016,0,25,PedestrianZones,2299438.948702953,144555.59157857235,10.0,0,0,0.0,0.0,0.0,0.0,,8402.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,6,0,5,0,0,0,0,24,0,0,0,14,0,11,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2016.0,410470002002016.0,1000000US410470002002016,0.0,0.0,80103.0,0.0,85.0,44.9391554,-123.0416578,0.0,3.0,8006302016,80068.0,0.0,0.0,1163.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,10.0,0.0,0.0,0.0,1.0,90421.35,1364.72,1.0,,,63.0,80063.0,2.0,129.0,129.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0757867178548355,0.026,999999.0,34.207,2.156,2.581,4.108,24521.474,85.0,0.2034070566801354,3.4680461440866823,0.9176016276163192 +7441.0,7441,,Block 2019,0,25,PedestrianZones,2301767.423031921,145304.33237544153,10.0,0,0,0.0,0.0,0.0,0.0,,23174.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2019.0,410470006002019.0,1000000US410470006002019,0.0,0.97,80103.0,0.0,153.0,44.9465455,-123.0124638,0.0,1.0,8010002019,80082.0,0.0,0.0,1204.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,249396.1,2126.45,1.0,,,100.0,80100.0,1.0,1.0,31.0,0.0,30.0,0.0,0.0,74.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.72534153205594,0.179,999999.0,1.965,0.171,4.086,9.112,7089.395,153.0,0.0,0.0,0.0 +7445.0,7445,,Block 1024,0,25,PedestrianZones,2301346.567080137,145690.72236164848,10.0,0,0,5.57,0.0,0.0,0.0,,46573.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1024.0,410470006001024.0,1000000US410470006001024,4.49,0.93,80103.0,0.0,151.0,44.9499032,-123.017947,0.0,1.0,8009801024,80082.0,0.0,0.0,1209.0,0.0,5.57,0.0,2.0,SPECIAL USE FACILITY,DEVELOPED,,0,0.0,0.03,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,501208.89,2892.17,1.0,,,98.0,80098.0,1.0,2.0,27.0,0.0,25.0,0.0,0.0,61.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.50616265998216,0.143,999999.0,1.442,0.252,4.572,10.594,7703.425,151.0,0.0,0.0,0.0 +7447.0,7447,,Block 1029,0,25,PedestrianZones,2300237.5147472727,145525.4721640397,10.0,0,0,0.04,0.0,0.0,0.0,,20517.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,1,0,0,0,0,15,0,0,0,0,0,0,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1029.0,410470002001029.0,1000000US410470002001029,500.0,0.6099999999999999,80103.0,0.0,147.0,44.9481049,-123.0319295,0.0,1.0,8008401029,80068.0,0.0,0.0,1217.0,0.0,0.04,0.0,2.0,HISTORICAL AREA,DEVELOPED,,0,0.0,0.2399999999999999,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,220800.99,2959.42,1.0,,,84.0,80084.0,2.0,13.0,33.0,0.0,20.0,0.0,0.0,54.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.068888808579959,0.145,999999.0,17.114,0.292,4.039,7.951,16041.359,147.0,0.0,0.0,0.0 7448.0,7448,,Block 1019,0,25,PedestrianZones,2300566.2988937227,145578.21184364313,10.0,0,0,0.0,0.0,0.0,0.0,,10723.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1019.0,410470002001019.0,1000000US410470002001019,0.0,1.0,80103.0,0.0,153.0,44.9486719,-123.0277859,0.0,1.0,8008401019,80082.0,0.0,0.0,1218.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115399.49,1352.94,1.0,,,84.0,80084.0,2.0,0.0,16.0,0.0,16.0,0.0,0.0,47.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.649205467605851,0.0,999999.0,23.156,0.228,4.091,8.208,20072.538,153.0,0.0,0.0,0.0 -7449.0,7449,,Block 3020,0,25,PedestrianZones,2300532.089175994,144791.24610988845,10.0,0,0,0.0,0.0,0.0,0.0,,16937.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,478,0,0,18,0,0,0,0,0,0,920,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3020.0,410470002003020.0,1000000US410470002003020,0.0,0.0,80103.0,0.0,120.0,44.9415836,-123.0279072,0.0,3.0,8008103020,80068.0,0.0,0.0,1219.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,231.0,0.0,0.0,0.0,1.0,182274.2,1701.66,1.0,,,81.0,80081.0,2.0,983.0,983.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.1844361445813405,0.2,999999.0,64.241,1.026,3.011,5.273,44488.942,120.0,5.117539369850235,0.4975242651280742,0.8446876930770462 -7450.0,7450,,Block 3024,0,25,PedestrianZones,2301072.159500883,144715.80946179,10.0,0,0,0.0,0.0,0.0,0.0,,15390.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,4,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3024.0,410470006003024.0,1000000US410470006003024,0.0,0.77,80103.0,0.0,145.0,44.9410569,-123.0210374,0.0,1.0,8010403024,80082.0,0.0,0.0,1221.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,165622.65,1762.08,1.0,,,104.0,80104.0,1.0,8.0,35.0,0.0,27.0,0.0,0.0,53.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.802169490294964,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,145.0,0.0,0.0,0.0 -7482.0,7482,,Block 6009,0,25,PedestrianZones,2300703.204007928,144439.8400863603,10.0,0,0,0.0,0.0,0.0,0.0,,16119.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,86,1,0,0,0,0,0,4,0,0,52,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6009.0,410470009006009.0,1000000US410470009006009,0.0,0.11,80103.0,0.0,134.0,44.9384709,-123.0256009,0.0,3.0,8010606009,80068.0,0.0,0.0,7802.0,0.0,0.0,0.0,0.0,,,,0,0.0,6.0,0.7299999999999999,0.0,0.0,0.0,0.0,123.0,0.0,0.0,0.0,1.0,173467.41,1664.38,1.0,,,106.0,80106.0,1.0,90.0,101.0,0.0,11.0,0.0,0.0,15.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.982260358463692,0.04,999999.0,47.833,0.532,3.625,7.036,35116.244,134.0,5.082331565837716,0.4940536582153486,0.839014004911987 -7485.0,7485,,Block 6024,0,25,PedestrianZones,2301192.694767505,144105.65276981585,10.0,0,0,0.0,0.0,0.0,0.0,,16329.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,31,0,0,0,0,10,0,0,0,0,0,0,0,0,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6024.0,410470009006024.0,1000000US410470009006024,0.0,0.2999999999999999,80103.0,0.0,170.0,44.9356025,-123.0192698,0.0,3.0,8010806024,80082.0,0.0,0.0,7805.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.88,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,175726.06,1678.61,1.0,,,108.0,80108.0,1.0,30.0,43.0,0.0,13.0,0.0,0.0,16.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.0341116224818645,0.153,999999.0,4.556,0.13,5.345,10.433,9593.309,170.0,0.0,0.0,0.0 -7489.0,7489,,Block 3030,0,25,PedestrianZones,2300608.461130253,144583.82890272807,10.0,0,0,0.0,0.0,0.0,0.0,,10876.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,120,0,0,6,0,0,0,0,0,0,61,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3030.0,410470002003030.0,1000000US410470002003030,0.0,0.31,80103.0,0.0,127.0,44.9397394,-123.0268578,0.0,3.0,8008003030,80068.0,0.0,0.0,7816.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.34,0.6099999999999999,0.0,0.0,0.0,0.0,65.0,0.0,0.0,0.0,1.0,117043.23,1486.67,1.0,,,80.0,80080.0,2.0,82.0,119.0,0.0,37.0,0.0,0.0,61.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.686940354996327,0.123,999999.0,44.552,0.677,3.562,6.682,32789.736,127.0,5.104497107453964,0.4962089108744707,0.8426156893241211 -7490.0,7490,,Block 3013,0,25,PedestrianZones,2301111.134355905,144855.90217465663,10.0,0,0,0.0,0.0,0.0,0.0,,19510.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3013.0,410470006003013.0,1000000US410470006003013,0.0,0.92,80103.0,0.0,144.0,44.942328,-123.0205992,0.0,1.0,8010403013,80082.0,0.0,0.0,7817.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,209958.83,2045.9,1.0,,,104.0,80104.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.819987282681121,0.211,999999.0,22.355,0.527,4.932,9.929,20662.071,144.0,0.0,0.0,0.0 -7504.0,7504,,Block 3034,0,25,PedestrianZones,2300273.079342173,146241.41405125847,10.0,0,0,0.0,0.0,0.0,0.0,,10420.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3034.0,410470003003034.0,1000000US410470003003034,0.0,0.87,80103.0,0.0,140.0,44.9545548,-123.0317633,0.0,1.0,8008903034,80068.0,0.0,0.0,7846.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.13,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112135.76,1339.59,1.0,,,89.0,80089.0,2.0,2.0,15.0,0.0,13.0,0.0,0.0,16.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5742805547556,0.121,999999.0,5.37,0.164,2.884,5.747,7115.356,140.0,0.0,0.0,0.0 +7449.0,7449,,Block 3020,0,25,PedestrianZones,2300532.089175994,144791.24610988845,10.0,0,0,0.0,0.0,0.0,0.0,,16937.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,585,0,0,20,0,0,0,0,0,0,1243,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3020.0,410470002003020.0,1000000US410470002003020,0.0,0.0,80103.0,0.0,120.0,44.9415836,-123.0279072,0.0,3.0,8008103020,80068.0,0.0,0.0,1219.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,231.0,0.0,0.0,0.0,1.0,182274.2,1701.66,1.0,,,81.0,80081.0,2.0,983.0,983.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.1844361445813405,0.2,999999.0,64.241,1.026,3.011,5.273,44488.942,120.0,0.2066125014856906,3.3919374342811843,0.9087668369766274 +7450.0,7450,,Block 3024,0,25,PedestrianZones,2301072.159500883,144715.80946179,10.0,0,0,0.0,0.0,0.0,0.0,,15390.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3024.0,410470006003024.0,1000000US410470006003024,0.0,0.77,80103.0,0.0,145.0,44.9410569,-123.0210374,0.0,1.0,8010403024,80082.0,0.0,0.0,1221.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,165622.65,1762.08,1.0,,,104.0,80104.0,1.0,8.0,35.0,0.0,27.0,0.0,0.0,53.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.802169490294964,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,145.0,0.0,0.0,0.0 +7482.0,7482,,Block 6009,0,25,PedestrianZones,2300703.204007928,144439.8400863603,10.0,0,0,0.0,0.0,0.0,0.0,,16119.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,81,1,0,0,0,0,0,1,0,0,116,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6009.0,410470009006009.0,1000000US410470009006009,0.0,0.11,80103.0,0.0,134.0,44.9384709,-123.0256009,0.0,3.0,8010606009,80068.0,0.0,0.0,7802.0,0.0,0.0,0.0,0.0,,,,0,0.0,6.0,0.7299999999999999,0.0,0.0,0.0,0.0,123.0,0.0,0.0,0.0,1.0,173467.41,1664.38,1.0,,,106.0,80106.0,1.0,90.0,101.0,0.0,11.0,0.0,0.0,15.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.982260358463692,0.04,999999.0,47.833,0.532,3.625,7.036,35116.244,134.0,0.2049607822376852,3.3585714470212524,0.9007994333985272 +7485.0,7485,,Block 6024,0,25,PedestrianZones,2301192.694767505,144105.65276981585,10.0,0,0,0.0,0.0,0.0,0.0,,16329.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,16,0,0,0,0,6,0,0,0,0,0,0,0,0,41,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6024.0,410470009006024.0,1000000US410470009006024,0.0,0.2999999999999999,80103.0,0.0,170.0,44.9356025,-123.0192698,0.0,3.0,8010806024,80082.0,0.0,0.0,7805.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.88,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,175726.06,1678.61,1.0,,,108.0,80108.0,1.0,30.0,43.0,0.0,13.0,0.0,0.0,16.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.0341116224818645,0.153,999999.0,4.556,0.13,5.345,10.433,9593.309,170.0,0.0,0.0,0.0 +7489.0,7489,,Block 3030,0,25,PedestrianZones,2300608.461130253,144583.82890272807,10.0,0,0,0.0,0.0,0.0,0.0,,10876.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,58,0,0,5,0,0,0,0,0,0,98,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3030.0,410470002003030.0,1000000US410470002003030,0.0,0.31,80103.0,0.0,127.0,44.9397394,-123.0268578,0.0,3.0,8008003030,80068.0,0.0,0.0,7816.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.34,0.6099999999999999,0.0,0.0,0.0,0.0,65.0,0.0,0.0,0.0,1.0,117043.23,1486.67,1.0,,,80.0,80080.0,2.0,82.0,119.0,0.0,37.0,0.0,0.0,61.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.686940354996327,0.123,999999.0,44.552,0.677,3.562,6.682,32789.736,127.0,0.2060034809160703,3.3784371431977025,0.9056436937368372 +7490.0,7490,,Block 3013,0,25,PedestrianZones,2301111.134355905,144855.90217465663,10.0,0,0,0.0,0.0,0.0,0.0,,19510.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3013.0,410470006003013.0,1000000US410470006003013,0.0,0.92,80103.0,0.0,144.0,44.942328,-123.0205992,0.0,1.0,8010403013,80082.0,0.0,0.0,7817.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,209958.83,2045.9,1.0,,,104.0,80104.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.819987282681121,0.211,999999.0,22.355,0.527,4.932,9.929,20662.071,144.0,0.0,0.0,0.0 +7504.0,7504,,Block 3034,0,25,PedestrianZones,2300273.079342173,146241.41405125847,10.0,0,0,0.0,0.0,0.0,0.0,,10420.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3034.0,410470003003034.0,1000000US410470003003034,0.0,0.87,80103.0,0.0,140.0,44.9545548,-123.0317633,0.0,1.0,8008903034,80068.0,0.0,0.0,7846.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.13,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112135.76,1339.59,1.0,,,89.0,80089.0,2.0,2.0,15.0,0.0,13.0,0.0,0.0,16.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5742805547556,0.121,999999.0,5.37,0.164,2.884,5.747,7115.356,140.0,0.0,0.0,0.0 7505.0,7505,,Block 3030,0,25,PedestrianZones,2300404.722379136,146297.1910456492,10.0,0,0,0.0,0.0,0.0,0.0,,10155.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3030.0,410470003003030.0,1000000US410470003003030,0.0,1.0,80103.0,0.0,155.0,44.9550936,-123.0301178,0.0,1.0,8008903030,80082.0,0.0,0.0,7847.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,109291.12,1320.0,1.0,,,89.0,80089.0,2.0,0.0,25.0,0.0,25.0,0.0,0.0,45.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.508976635643998,0.0,999999.0,6.21,0.22,3.68,7.439,8734.805,155.0,0.0,0.0,0.0 7506.0,7506,,Block 3024,0,25,PedestrianZones,2300359.608921414,146514.0889478618,10.0,0,0,0.0,0.0,0.0,0.0,,11184.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3024.0,410470003003024.0,1000000US410470003003024,0.0,1.0,80103.0,0.0,147.0,44.9570318,-123.0307754,0.0,1.0,8008803024,80417.0,0.0,0.0,7848.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,120364.1,1383.45,1.0,,,88.0,80088.0,1.0,0.0,38.0,0.0,38.0,0.0,0.0,71.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7631770299496274,0.138,999999.0,5.145,0.146,2.88,5.455,6784.034,147.0,0.0,0.0,0.0 7507.0,7507,,Block 4029,0,25,PedestrianZones,2300501.440078909,146258.12289234405,10.0,0,0,0.0,0.0,0.0,0.0,,10581.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4029.0,410470003004029.0,1000000US410470003004029,0.0,1.0,80103.0,0.0,169.0,44.9547694,-123.0288771,0.0,1.0,8009104029,80082.0,0.0,0.0,7849.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113875.09,1350.93,1.0,,,91.0,80091.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,28.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.614210086068724,0.065,999999.0,5.643,0.15,4.058,8.272,8905.542,169.0,0.0,0.0,0.0 -7508.0,7508,,Block 4040,0,25,PedestrianZones,2300391.03039936,145974.56449545285,10.0,0,0,0.0,0.0,0.0,0.0,,10564.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,6,0,0,0,0,10,0,3,0,0,0,12,0,0,27,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4040.0,410470003004040.0,1000000US410470003004040,0.0,0.0,80103.0,0.0,157.0,44.9521877,-123.0301632,0.0,3.0,8009004040,80082.0,0.0,0.0,7850.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,113691.92,1350.1,1.0,,,90.0,80090.0,1.0,46.0,46.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.610005033315712,0.124,999999.0,7.173,0.206,3.773,8.04,9736.281,157.0,0.0,0.0,0.0 -7509.0,7509,,Block 4037,0,25,PedestrianZones,2300594.951957921,146023.5921673494,10.0,0,0,0.0,0.0,0.0,0.0,,3207.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4037.0,410470003004037.0,1000000US410470003004037,0.0,0.4,80103.0,0.0,169.0,44.9526862,-123.0275995,0.0,3.0,8009104037,80082.0,0.0,0.0,7851.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,34512.27,920.49,1.0,,,91.0,80091.0,1.0,3.0,5.0,0.0,2.0,0.0,0.0,3.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.7922920589048569,0.124,999999.0,6.016,0.205,4.157,9.114,9682.938,169.0,0.0,0.0,0.0 -7510.0,7510,,Block 4003,0,25,PedestrianZones,2300691.1382064503,147028.32279330655,10.0,0,0,0.0,0.0,0.0,0.0,,10756.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4003.0,410470003004003.0,1000000US410470003004003,0.0,0.93,80103.0,0.0,131.0,44.9617507,-123.0267793,0.0,1.0,8009304003,80417.0,0.0,0.0,7852.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115755.78,1365.47,1.0,,,93.0,80093.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,33.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.657384743984064,0.056,999999.0,4.352,1.398,2.426,5.704,6436.347,131.0,0.0,0.0,0.0 +7508.0,7508,,Block 4040,0,25,PedestrianZones,2300391.03039936,145974.56449545285,10.0,0,0,0.0,0.0,0.0,0.0,,10564.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,10,0,0,0,0,14,0,2,0,0,0,12,0,0,45,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4040.0,410470003004040.0,1000000US410470003004040,0.0,0.0,80103.0,0.0,157.0,44.9521877,-123.0301632,0.0,3.0,8009004040,80082.0,0.0,0.0,7850.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,113691.92,1350.1,1.0,,,90.0,80090.0,1.0,46.0,46.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.610005033315712,0.124,999999.0,7.173,0.206,3.773,8.04,9736.281,157.0,0.0,0.0,0.0 +7509.0,7509,,Block 4037,0,25,PedestrianZones,2300594.951957921,146023.5921673494,10.0,0,0,0.0,0.0,0.0,0.0,,3207.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4037.0,410470003004037.0,1000000US410470003004037,0.0,0.4,80103.0,0.0,169.0,44.9526862,-123.0275995,0.0,3.0,8009104037,80082.0,0.0,0.0,7851.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,34512.27,920.49,1.0,,,91.0,80091.0,1.0,3.0,5.0,0.0,2.0,0.0,0.0,3.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.7922920589048569,0.124,999999.0,6.016,0.205,4.157,9.114,9682.938,169.0,0.0,0.0,0.0 +7510.0,7510,,Block 4003,0,25,PedestrianZones,2300691.1382064503,147028.32279330655,10.0,0,0,0.0,0.0,0.0,0.0,,10756.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4003.0,410470003004003.0,1000000US410470003004003,0.0,0.93,80103.0,0.0,131.0,44.9617507,-123.0267793,0.0,1.0,8009304003,80417.0,0.0,0.0,7852.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115755.78,1365.47,1.0,,,93.0,80093.0,1.0,1.0,14.0,0.0,13.0,0.0,0.0,33.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.657384743984064,0.056,999999.0,4.352,1.398,2.426,5.704,6436.347,131.0,0.0,0.0,0.0 7511.0,7511,,Block 4011,0,25,PedestrianZones,2300873.3791801957,146784.24401524733,10.0,0,0,0.0,0.0,0.0,0.0,,10815.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4011.0,410470003004011.0,1000000US410470003004011,0.0,1.0,80103.0,0.0,158.0,44.9596065,-123.0243737,0.0,1.0,8009304011,80417.0,0.0,0.0,7853.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116390.63,1367.6,1.0,,,93.0,80093.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,46.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.671958787662289,0.206,999999.0,3.112,0.225,3.922,9.314,7952.286,158.0,0.0,0.0,0.0 7535.0,7535,,Block 4001,0,25,PedestrianZones,2300880.4093342186,147018.93800813775,10.0,0,0,0.0,0.0,0.0,0.0,,11426.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4001.0,410470003004001.0,1000000US410470003004001,0.0,1.0,80103.0,0.0,135.0,44.9617195,-123.0243776,0.0,1.0,8009304001,80417.0,0.0,0.0,7921.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,122963.07,1558.57,1.0,,,93.0,80093.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,30.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8228410740693723,0.085,999999.0,4.163,1.491,3.024,7.202,7273.468,135.0,0.0,0.0,0.0 7536.0,7536,,Block 4014,0,25,PedestrianZones,2300869.278232303,146666.4357614087,10.0,0,0,0.0,0.0,0.0,0.0,,11740.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4014.0,410470003004014.0,1000000US410470003004014,0.0,1.0,80103.0,0.0,165.0,44.9585456,-123.024379,0.0,1.0,8009204014,80417.0,0.0,0.0,7922.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126346.97,1436.52,1.0,,,92.0,80092.0,1.0,0.0,17.0,0.0,17.0,0.0,0.0,44.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.90052478705218,0.275,999999.0,3.023,0.199,3.769,8.798,7565.523,165.0,0.0,0.0,0.0 7537.0,7537,,Block 4009,0,25,PedestrianZones,2300974.9866239456,146898.75319836527,10.0,0,0,0.0,0.0,0.0,0.0,,12088.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4009.0,410470003004009.0,1000000US410470003004009,0.0,1.0,80103.0,0.0,135.0,44.960665,-123.0231318,0.0,1.0,8009304009,80417.0,0.0,0.0,7923.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,130088.45,1455.56,1.0,,,93.0,80093.0,1.0,0.0,10.0,0.0,10.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.986417305237846,0.186,999999.0,2.076,0.107,3.767,9.353,7314.88,135.0,0.0,0.0,0.0 -7538.0,7538,,Block 4015,0,25,PedestrianZones,2300773.3829051675,146590.5491735098,10.0,0,0,0.0,0.0,0.0,0.0,,26485.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4015.0,410470003004015.0,1000000US410470003004015,0.0,0.97,80103.0,0.0,173.0,44.9578361,-123.0255639,0.0,1.0,8009204015,80417.0,0.0,0.0,7924.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285030.86,2489.82,1.0,,,92.0,80092.0,1.0,1.0,38.0,0.0,37.0,0.0,0.0,94.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.543402382088144,0.319,999999.0,3.455,0.176,4.185,9.463,8267.459,173.0,0.0,0.0,0.0 -7539.0,7539,,Block 4010,0,25,PedestrianZones,2300970.9033294343,146779.97299055918,10.0,0,0,0.0,0.0,0.0,0.0,,10884.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4010.0,410470003004010.0,1000000US410470003004010,0.0,0.5,80103.0,0.0,146.0,44.9595955,-123.0231365,0.0,3.0,8009304010,80417.0,0.0,0.0,7925.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4199999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117129.81,1372.22,1.0,,,93.0,80093.0,1.0,11.0,22.0,0.0,11.0,0.0,0.0,26.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.688928121972915,0.264,999999.0,4.43,0.228,3.49,8.402,8212.644,146.0,0.0,0.0,0.0 +7538.0,7538,,Block 4015,0,25,PedestrianZones,2300773.3829051675,146590.5491735098,10.0,0,0,0.0,0.0,0.0,0.0,,26485.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4015.0,410470003004015.0,1000000US410470003004015,0.0,0.97,80103.0,0.0,173.0,44.9578361,-123.0255639,0.0,1.0,8009204015,80417.0,0.0,0.0,7924.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285030.86,2489.82,1.0,,,92.0,80092.0,1.0,1.0,38.0,0.0,37.0,0.0,0.0,94.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.543402382088144,0.319,999999.0,3.455,0.176,4.185,9.463,8267.459,173.0,0.0,0.0,0.0 +7539.0,7539,,Block 4010,0,25,PedestrianZones,2300970.9033294343,146779.97299055918,10.0,0,0,0.0,0.0,0.0,0.0,,10884.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,23,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4010.0,410470003004010.0,1000000US410470003004010,0.0,0.5,80103.0,0.0,146.0,44.9595955,-123.0231365,0.0,3.0,8009304010,80417.0,0.0,0.0,7925.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4199999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117129.81,1372.22,1.0,,,93.0,80093.0,1.0,11.0,22.0,0.0,11.0,0.0,0.0,26.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.688928121972915,0.264,999999.0,4.43,0.228,3.49,8.402,8212.644,146.0,0.0,0.0,0.0 7540.0,7540,,Block 4013,0,25,PedestrianZones,2300965.225689586,146662.25996156648,10.0,0,0,0.0,0.0,0.0,0.0,,12276.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4013.0,410470003004013.0,1000000US410470003004013,0.0,1.0,80103.0,0.0,156.0,44.958535,-123.0231619,0.0,1.0,8009204013,80417.0,0.0,0.0,7926.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132112.78,1463.93,1.0,,,92.0,80092.0,1.0,0.0,16.0,0.0,16.0,0.0,0.0,37.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0328894963759603,0.254,999999.0,3.557,0.204,3.95,9.634,8442.349,156.0,0.0,0.0,0.0 7543.0,7543,,Block 4021,0,25,PedestrianZones,2300766.5495605897,146384.2330377767,10.0,0,0,0.0,0.0,0.0,0.0,,14489.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4021.0,410470003004021.0,1000000US410470003004021,0.0,1.0,80103.0,0.0,174.0,44.9559784,-123.0255687,0.0,1.0,8009204021,80082.0,0.0,0.0,7929.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155930.31,1598.15,1.0,,,92.0,80092.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5796642754616497,0.189,999999.0,3.137,0.14,4.432,9.444,8052.12,174.0,0.0,0.0,0.0 7544.0,7544,,Block 4020,0,25,PedestrianZones,2300725.650344355,146275.83275385358,10.0,0,0,0.0,0.0,0.0,0.0,,9783.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4020.0,410470003004020.0,1000000US410470003004020,0.0,1.0,80103.0,0.0,178.0,44.9549918,-123.0260439,0.0,1.0,8009104020,80082.0,0.0,0.0,7930.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105283.52,1306.18,1.0,,,91.0,80091.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,24.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.416974833144649,0.147,999999.0,4.355,0.121,4.422,9.652,8964.99,178.0,0.0,0.0,0.0 7545.0,7545,,Block 4025,0,25,PedestrianZones,2300822.8045236287,146239.65217376922,10.0,0,0,0.0,0.0,0.0,0.0,,9968.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4025.0,410470003004025.0,1000000US410470003004025,0.0,0.77,80103.0,0.0,173.0,44.9546937,-123.0247988,0.0,1.0,8009104025,80082.0,0.0,0.0,7931.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.13,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107276.57,1309.22,1.0,,,91.0,80091.0,1.0,3.0,13.0,0.0,10.0,0.0,0.0,23.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.462728937983489,0.085,999999.0,4.449,0.168,4.286,9.463,8903.53,173.0,0.0,0.0,0.0 -7546.0,7546,,Block 4026,0,25,PedestrianZones,2300776.318648566,146162.12531731243,10.0,0,0,0.0,0.0,0.0,0.0,,6640.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,1,0,5,13,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4026.0,410470003004026.0,1000000US410470003004026,0.0,0.33,80103.0,0.0,178.0,44.9539833,-123.025357,0.0,3.0,8009104026,80082.0,0.0,0.0,7932.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.43,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,71454.86,1184.77,1.0,,,91.0,80091.0,1.0,10.0,15.0,0.0,5.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6403764278676756,0.18,999999.0,4.997,0.147,4.367,9.452,9247.701,178.0,0.0,0.0,0.0 -7547.0,7547,,Block 4033,0,25,PedestrianZones,2300747.414435542,146051.57729660583,10.0,0,0,0.0,0.0,0.0,0.0,,10991.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,39,0,0,0.0,160.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4033.0,410470003004033.0,1000000US410470003004033,0.0,0.02,80103.0,0.0,179.0,44.9529808,-123.0256793,0.0,3.0,8009004033,80082.0,0.0,0.0,7933.0,0.0,0.0,0.0,0.0,,,,0,0.0,20.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,118281.41,1354.29,1.0,,,90.0,80090.0,1.0,40.0,41.0,0.0,1.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7153652183984227,0.128,999999.0,4.955,0.151,4.55,9.935,9529.892,179.0,0.0,0.0,0.0 +7546.0,7546,,Block 4026,0,25,PedestrianZones,2300776.318648566,146162.12531731243,10.0,0,0,0.0,0.0,0.0,0.0,,6640.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4026.0,410470003004026.0,1000000US410470003004026,0.0,0.33,80103.0,0.0,178.0,44.9539833,-123.025357,0.0,3.0,8009104026,80082.0,0.0,0.0,7932.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.43,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,71454.86,1184.77,1.0,,,91.0,80091.0,1.0,10.0,15.0,0.0,5.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6403764278676756,0.18,999999.0,4.997,0.147,4.367,9.452,9247.701,178.0,0.0,0.0,0.0 +7547.0,7547,,Block 4033,0,25,PedestrianZones,2300747.414435542,146051.57729660583,10.0,0,0,0.0,0.0,0.0,0.0,,10991.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,52,0,0,0.0,160.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4033.0,410470003004033.0,1000000US410470003004033,0.0,0.02,80103.0,0.0,179.0,44.9529808,-123.0256793,0.0,3.0,8009004033,80082.0,0.0,0.0,7933.0,0.0,0.0,0.0,0.0,,,,0,0.0,20.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,118281.41,1354.29,1.0,,,90.0,80090.0,1.0,40.0,41.0,0.0,1.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7153652183984227,0.128,999999.0,4.955,0.151,4.55,9.935,9529.892,179.0,0.0,0.0,0.0 7548.0,7548,,Block 2004,0,25,PedestrianZones,2300894.641867284,146231.50573660713,10.0,0,0,0.0,0.0,0.0,0.0,,2955.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2004.0,410470003002004.0,1000000US410470003002004,0.0,0.0,80103.0,0.0,169.0,44.9546406,-123.0238855,0.0,1.0,8009402004,80082.0,0.0,0.0,7934.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,31798.27,896.58,1.0,,,94.0,80094.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.7299871151938278,0.085,999999.0,4.449,0.168,4.286,9.463,8903.53,169.0,0.0,0.0,0.0 -7549.0,7549,,Block 4034,0,25,PedestrianZones,2300805.0596242677,146121.21049999955,10.0,0,0,0.0,0.0,0.0,0.0,,4041.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4034.0,410470003004034.0,1000000US410470003004034,0.0,0.33,80103.0,0.0,177.0,44.9536233,-123.0249767,0.0,3.0,8009004034,80082.0,0.0,0.0,7935.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.5,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,43487.84,1018.09,1.0,,,90.0,80090.0,1.0,6.0,9.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.998342494587378,0.083,999999.0,5.011,0.151,4.502,9.696,9412.812,177.0,0.0,0.0,0.0 -7550.0,7550,,Block 2007,0,25,PedestrianZones,2300898.031970805,146102.40376135823,10.0,0,0,0.0,0.0,0.0,0.0,,13749.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,15,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2007.0,410470003002007.0,1000000US410470003002007,0.0,0.14,80103.0,0.0,172.0,44.9534803,-123.0237915,0.0,3.0,8009402007,80082.0,0.0,0.0,7936.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147965.19,1556.31,1.0,,,94.0,80094.0,1.0,12.0,14.0,0.0,2.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.396810289189284,0.109,999999.0,4.623,0.193,4.492,9.914,9303.608,172.0,0.0,0.0,0.0 +7549.0,7549,,Block 4034,0,25,PedestrianZones,2300805.0596242677,146121.21049999955,10.0,0,0,0.0,0.0,0.0,0.0,,4041.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4034.0,410470003004034.0,1000000US410470003004034,0.0,0.33,80103.0,0.0,177.0,44.9536233,-123.0249767,0.0,3.0,8009004034,80082.0,0.0,0.0,7935.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.5,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,43487.84,1018.09,1.0,,,90.0,80090.0,1.0,6.0,9.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.998342494587378,0.083,999999.0,5.011,0.151,4.502,9.696,9412.812,177.0,0.0,0.0,0.0 +7550.0,7550,,Block 2007,0,25,PedestrianZones,2300898.031970805,146102.40376135823,10.0,0,0,0.0,0.0,0.0,0.0,,13749.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2007.0,410470003002007.0,1000000US410470003002007,0.0,0.14,80103.0,0.0,172.0,44.9534803,-123.0237915,0.0,3.0,8009402007,80082.0,0.0,0.0,7936.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147965.19,1556.31,1.0,,,94.0,80094.0,1.0,12.0,14.0,0.0,2.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.396810289189284,0.109,999999.0,4.623,0.193,4.492,9.914,9303.608,172.0,0.0,0.0,0.0 7551.0,7551,,Block 2008,0,25,PedestrianZones,2300860.529296527,146007.22257559057,10.0,0,0,0.0,0.0,0.0,0.0,,14090.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2008.0,410470003002008.0,1000000US410470003002008,0.0,1.0,80103.0,0.0,170.0,44.9526136,-123.0242289,0.0,1.0,8009402008,80082.0,0.0,0.0,7937.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,151628.62,1572.06,1.0,,,94.0,80094.0,1.0,0.0,18.0,0.0,18.0,0.0,0.0,37.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4809110112322723,0.044,999999.0,5.039,0.168,4.591,9.886,9552.353,170.0,0.0,0.0,0.0 7552.0,7552,,Block 4022,0,25,PedestrianZones,2300864.668737782,146523.13826805152,10.0,0,0,0.0,0.0,0.0,0.0,,14952.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4022.0,410470003004022.0,1000000US410470003004022,0.0,0.91,80103.0,0.0,168.0,44.9572554,-123.0243807,0.0,1.0,8009204022,80417.0,0.0,0.0,7938.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160908.48,1664.62,1.0,,,92.0,80092.0,1.0,2.0,22.0,0.0,20.0,0.0,0.0,48.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.693947141600415,0.215,999999.0,4.003,0.217,4.148,9.131,8406.063,168.0,0.0,0.0,0.0 -7555.0,7555,,Block 1020,0,25,PedestrianZones,2301006.369897993,146266.16679648557,10.0,0,0,0.0,0.0,0.0,0.0,,5000.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,33,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1020.0,410470003001020.0,1000000US410470003001020,0.0,0.0,80103.0,0.0,159.0,44.9549838,-123.0224839,0.0,3.0,8009701020,80082.0,0.0,0.0,7941.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,53811.61,1143.53,1.0,,,97.0,80097.0,1.0,24.0,24.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.2353433972704606,0.067,999999.0,4.399,0.188,4.242,9.501,8895.757,159.0,0.0,0.0,0.0 -7556.0,7556,,Block 2005,0,25,PedestrianZones,2301050.048345488,146124.43775447583,10.0,0,0,0.0,0.0,0.0,0.0,,6691.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2005.0,410470003002005.0,1000000US410470003002005,0.0,0.8599999999999999,80103.0,0.0,158.0,44.9537212,-123.0218745,0.0,1.0,8009502005,80082.0,0.0,0.0,7942.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,72005.2,1185.57,1.0,,,95.0,80095.0,1.0,1.0,7.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6530104133282602,0.097,999999.0,5.026,0.203,4.064,9.009,8982.032,158.0,0.0,0.0,0.0 -7625.0,7625,,Block 2012,0,25,PedestrianZones,2309542.392419792,139172.92907218385,10.0,0,0,0.0,0.0,0.0,0.0,,675033.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80295.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,81,0,4,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22012.0,410470027022012.0,1000000US410470027022012,0.0,0.2899999999999999,80309.0,0.0,18.0,44.8935247,-122.9116621,0.0,3.0,8009622012,80299.0,0.0,0.0,9213.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.91,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,7264626.63,11554.88,1.0,,,96.0,80096.0,1.0,96.0,135.0,0.0,39.0,0.0,0.0,105.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.7727321068629,999999.0,999999.0,0.6,0.0,0.234,0.63,786.699,18.0,0.0,0.0,0.0 -7635.0,7635,,Block 3002,0,25,PedestrianZones,2300273.086181231,147008.87607740084,10.0,0,0,0.0,0.0,0.0,0.0,,18499.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,11,0,0,0,0,4,0,2,0,0,0,0,0,15,40,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3002.0,410470003003002.0,1000000US410470003003002,0.0,0.09,80103.0,0.0,113.0,44.961458,-123.032068,0.0,3.0,8008803002,80417.0,0.0,0.0,9236.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.5,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,199078.36,1851.42,1.0,,,88.0,80088.0,1.0,30.0,33.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.570206157890099,0.189,999999.0,4.893,0.786,2.015,4.277,5868.721,113.0,0.0,0.0,0.0 -7638.0,7638,,Block 3010,0,25,PedestrianZones,2300162.062970241,146867.54049758133,10.0,0,0,0.0,0.0,0.0,0.0,,12363.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,14,0,0,27,0,8,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3010.0,410470003003010.0,1000000US410470003003010,0.0,0.0,80103.0,0.0,106.0,44.9601554,-123.0334185,0.0,3.0,8008603010,80417.0,0.0,0.0,9239.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133051.96,1463.18,1.0,,,86.0,80086.0,1.0,30.0,30.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0544499223709063,0.307,999999.0,4.498,0.125,2.073,3.894,5371.404,106.0,0.0,0.0,0.0 -7639.0,7639,,Block 3018,0,25,PedestrianZones,2300158.0454811426,146748.6052502355,10.0,0,0,0.0,0.0,0.0,0.0,,13908.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,2,0,0,0,0,0,46,0,0,0,0,0,0,49,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3018.0,410470003003018.0,1000000US410470003003018,0.0,0.0,80103.0,0.0,104.0,44.9590844,-123.0334221,0.0,3.0,8008603018,80417.0,0.0,0.0,9240.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,149672.21,1548.23,1.0,,,86.0,80086.0,1.0,48.0,48.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.435998035233736,0.238,999999.0,4.848,0.131,2.02,3.488,5335.009,104.0,0.0,0.0,0.0 +7555.0,7555,,Block 1020,0,25,PedestrianZones,2301006.369897993,146266.16679648557,10.0,0,0,0.0,0.0,0.0,0.0,,5000.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1020.0,410470003001020.0,1000000US410470003001020,0.0,0.0,80103.0,0.0,159.0,44.9549838,-123.0224839,0.0,3.0,8009701020,80082.0,0.0,0.0,7941.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,53811.61,1143.53,1.0,,,97.0,80097.0,1.0,24.0,24.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.2353433972704606,0.067,999999.0,4.399,0.188,4.242,9.501,8895.757,159.0,0.0,0.0,0.0 +7556.0,7556,,Block 2005,0,25,PedestrianZones,2301050.048345488,146124.43775447583,10.0,0,0,0.0,0.0,0.0,0.0,,6691.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2005.0,410470003002005.0,1000000US410470003002005,0.0,0.8599999999999999,80103.0,0.0,158.0,44.9537212,-123.0218745,0.0,1.0,8009502005,80082.0,0.0,0.0,7942.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,72005.2,1185.57,1.0,,,95.0,80095.0,1.0,1.0,7.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6530104133282602,0.097,999999.0,5.026,0.203,4.064,9.009,8982.032,158.0,0.0,0.0,0.0 +7625.0,7625,,Block 2012,0,25,PedestrianZones,2309542.392419792,139172.92907218385,10.0,0,0,0.0,0.0,0.0,0.0,,675033.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80295.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,103,0,2,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22012.0,410470027022012.0,1000000US410470027022012,0.0,0.2899999999999999,80309.0,0.0,18.0,44.8935247,-122.9116621,0.0,3.0,8009622012,80299.0,0.0,0.0,9213.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.91,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,7264626.63,11554.88,1.0,,,96.0,80096.0,1.0,96.0,135.0,0.0,39.0,0.0,0.0,105.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.7727321068629,999999.0,999999.0,0.6,0.0,0.234,0.63,786.699,18.0,0.0,0.0,0.0 +7635.0,7635,,Block 3002,0,25,PedestrianZones,2300273.086181231,147008.87607740084,10.0,0,0,0.0,0.0,0.0,0.0,,18499.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,7,0,0,0,0,5,0,4,0,0,0,0,0,11,25,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3002.0,410470003003002.0,1000000US410470003003002,0.0,0.09,80103.0,0.0,113.0,44.961458,-123.032068,0.0,3.0,8008803002,80417.0,0.0,0.0,9236.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.5,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,199078.36,1851.42,1.0,,,88.0,80088.0,1.0,30.0,33.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.570206157890099,0.189,999999.0,4.893,0.786,2.015,4.277,5868.721,113.0,0.0,0.0,0.0 +7638.0,7638,,Block 3010,0,25,PedestrianZones,2300162.062970241,146867.54049758133,10.0,0,0,0.0,0.0,0.0,0.0,,12363.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,10,0,0,28,0,11,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3010.0,410470003003010.0,1000000US410470003003010,0.0,0.0,80103.0,0.0,106.0,44.9601554,-123.0334185,0.0,3.0,8008603010,80417.0,0.0,0.0,9239.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133051.96,1463.18,1.0,,,86.0,80086.0,1.0,30.0,30.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0544499223709063,0.307,999999.0,4.498,0.125,2.073,3.894,5371.404,106.0,0.0,0.0,0.0 +7639.0,7639,,Block 3018,0,25,PedestrianZones,2300158.0454811426,146748.6052502355,10.0,0,0,0.0,0.0,0.0,0.0,,13908.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,6,0,0,0,0,0,37,0,0,0,0,0,0,48,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3018.0,410470003003018.0,1000000US410470003003018,0.0,0.0,80103.0,0.0,104.0,44.9590844,-123.0334221,0.0,3.0,8008603018,80417.0,0.0,0.0,9240.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,149672.21,1548.23,1.0,,,86.0,80086.0,1.0,48.0,48.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.435998035233736,0.238,999999.0,4.848,0.131,2.02,3.488,5335.009,104.0,0.0,0.0,0.0 7640.0,7640,,Block 3011,0,25,PedestrianZones,2300268.9790940573,146863.49948554352,10.0,0,0,0.0,0.0,0.0,0.0,,11587.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3011.0,410470003003011.0,1000000US410470003003011,0.0,0.9,80103.0,0.0,120.0,44.9601492,-123.0320623,0.0,1.0,8008803011,80417.0,0.0,0.0,9241.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,124695.93,1412.45,1.0,,,88.0,80088.0,1.0,1.0,10.0,0.0,9.0,0.0,0.0,10.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8626222387131626,0.239,999999.0,4.651,0.219,2.272,4.613,5928.965,120.0,0.0,0.0,0.0 -7641.0,7641,,Block 3016,0,25,PedestrianZones,2300289.897485494,146743.1175777422,10.0,0,0,0.0,0.0,0.0,0.0,,6571.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3016.0,410470003003016.0,1000000US410470003003016,0.0,0.5799999999999998,80103.0,0.0,124.0,44.9590722,-123.0317495,0.0,2.0,8008803016,80417.0,0.0,0.0,9242.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.63,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,70719.71,1169.28,1.0,,,88.0,80088.0,1.0,5.0,12.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6234998144496198,0.172,999999.0,4.28,0.128,2.268,4.159,5400.784,124.0,0.0,0.0,0.0 -7642.0,7642,,Block 3001,0,25,PedestrianZones,2300376.4189115926,147006.04822474893,10.0,0,0,0.0,0.0,0.0,0.0,,18288.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,503,0,3,0,0,0,0,0,0,513,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3001.0,410470003003001.0,1000000US410470003003001,0.0,0.8,80103.0,0.0,120.0,44.9614617,-123.0307578,0.0,1.0,8008803001,80417.0,0.0,0.0,9243.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.14,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,196815.76,1838.67,1.0,,,88.0,80088.0,1.0,5.0,25.0,0.0,20.0,0.0,0.0,35.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.518264048254959,0.189,999999.0,4.893,0.786,2.015,4.277,5868.721,120.0,0.0,0.0,0.0 +7641.0,7641,,Block 3016,0,25,PedestrianZones,2300289.897485494,146743.1175777422,10.0,0,0,0.0,0.0,0.0,0.0,,6571.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3016.0,410470003003016.0,1000000US410470003003016,0.0,0.5799999999999998,80103.0,0.0,124.0,44.9590722,-123.0317495,0.0,2.0,8008803016,80417.0,0.0,0.0,9242.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.63,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,70719.71,1169.28,1.0,,,88.0,80088.0,1.0,5.0,12.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.6234998144496198,0.172,999999.0,4.28,0.128,2.268,4.159,5400.784,124.0,0.0,0.0,0.0 +7642.0,7642,,Block 3001,0,25,PedestrianZones,2300376.4189115926,147006.04822474893,10.0,0,0,0.0,0.0,0.0,0.0,,18288.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,203,0,6,0,0,0,0,0,0,530,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3001.0,410470003003001.0,1000000US410470003003001,0.0,0.8,80103.0,0.0,120.0,44.9614617,-123.0307578,0.0,1.0,8008803001,80417.0,0.0,0.0,9243.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.14,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,196815.76,1838.67,1.0,,,88.0,80088.0,1.0,5.0,25.0,0.0,20.0,0.0,0.0,35.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.518264048254959,0.189,999999.0,4.893,0.786,2.015,4.277,5868.721,120.0,0.0,0.0,0.0 7645.0,7645,,Block 3015,0,25,PedestrianZones,2300367.679141623,146740.40742679432,10.0,0,0,0.0,0.0,0.0,0.0,,13214.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3015.0,410470003003015.0,1000000US410470003003015,0.0,1.0,80103.0,0.0,140.0,44.9590698,-123.030763,0.0,1.0,8008803015,80417.0,0.0,0.0,9246.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,142210.13,1516.71,1.0,,,88.0,80088.0,1.0,0.0,18.0,0.0,18.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.264692418239345,0.106,999999.0,4.018,0.131,2.53,4.952,5740.83,140.0,0.0,0.0,0.0 7646.0,7646,,Block 3014,0,25,PedestrianZones,2300477.3529064613,146737.3180492188,10.0,0,0,1.64,0.0,0.0,0.0,,14938.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3014.0,410470003003014.0,1000000US410470003003014,4.26,0.88,80103.0,0.0,149.0,44.9590729,-123.0293724,0.0,1.0,8008803014,80417.0,0.0,0.0,9247.0,0.0,1.64,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.13,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160754.25,1605.78,1.0,,,88.0,80088.0,1.0,1.0,8.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.690406518963252,0.0,999999.0,3.988,0.142,3.35,6.919,6980.754,149.0,0.0,0.0,0.0 7647.0,7647,,Block 4005,0,25,PedestrianZones,2300596.6047383305,146931.760469212,10.0,0,0,0.0,0.0,0.0,0.0,,8039.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4005.0,410470003004005.0,1000000US410470003004005,0.0,0.0,80103.0,0.0,141.0,44.9608555,-123.0279387,0.0,1.0,8009304005,80417.0,0.0,0.0,9248.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,86518.69,1278.16,1.0,,,93.0,80093.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.986194098698572,0.072,999999.0,3.193,0.115,2.782,6.111,5954.44,141.0,0.0,0.0,0.0 -7648.0,7648,,Block 4006,0,25,PedestrianZones,2300686.3498391667,146907.89611931337,10.0,0,0,0.0,0.0,0.0,0.0,,12284.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4006.0,410470003004006.0,1000000US410470003004006,0.0,0.91,80103.0,0.0,146.0,44.9606661,-123.0267922,0.0,1.0,8009304006,80417.0,0.0,0.0,9249.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132202.73,1448.3,1.0,,,93.0,80093.0,1.0,1.0,11.0,0.0,10.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0349544956061534,0.125,999999.0,4.277,1.523,3.138,7.276,7394.14,146.0,0.0,0.0,0.0 -7649.0,7649,,Block 3019,0,25,PedestrianZones,2300154.050303024,146628.8348004482,10.0,0,0,0.0,0.0,0.0,0.0,,12139.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,30,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3019.0,410470003003019.0,1000000US410470003003019,0.0,0.0,80103.0,0.0,112.0,44.958006,-123.0334251,0.0,3.0,8008603019,80417.0,0.0,0.0,9250.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,130638.92,1447.52,1.0,,,86.0,80086.0,1.0,22.0,22.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9990542415625048,0.202,999999.0,4.627,0.124,2.127,3.704,5331.74,112.0,0.0,0.0,0.0 -7650.0,7650,,Block 3025,0,25,PedestrianZones,2300256.004515341,146516.84956170915,10.0,0,0,0.0,0.0,0.0,0.0,,10627.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,19,0,10,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3025.0,410470003003025.0,1000000US410470003003025,0.0,0.13,80103.0,0.0,132.0,44.9570274,-123.032089,0.0,3.0,8008803025,80417.0,0.0,0.0,9251.0,0.0,0.0,0.0,0.0,,,,0,0.0,6.5,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114363.07,1359.03,1.0,,,88.0,80088.0,1.0,13.0,15.0,0.0,2.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.625412400131208,0.268,999999.0,5.093,0.121,2.392,4.204,5950.595,132.0,0.0,0.0,0.0 +7648.0,7648,,Block 4006,0,25,PedestrianZones,2300686.3498391667,146907.89611931337,10.0,0,0,0.0,0.0,0.0,0.0,,12284.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4006.0,410470003004006.0,1000000US410470003004006,0.0,0.91,80103.0,0.0,146.0,44.9606661,-123.0267922,0.0,1.0,8009304006,80417.0,0.0,0.0,9249.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132202.73,1448.3,1.0,,,93.0,80093.0,1.0,1.0,11.0,0.0,10.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0349544956061534,0.125,999999.0,4.277,1.523,3.138,7.276,7394.14,146.0,0.0,0.0,0.0 +7649.0,7649,,Block 3019,0,25,PedestrianZones,2300154.050303024,146628.8348004482,10.0,0,0,0.0,0.0,0.0,0.0,,12139.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3019.0,410470003003019.0,1000000US410470003003019,0.0,0.0,80103.0,0.0,112.0,44.958006,-123.0334251,0.0,3.0,8008603019,80417.0,0.0,0.0,9250.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,130638.92,1447.52,1.0,,,86.0,80086.0,1.0,22.0,22.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9990542415625048,0.202,999999.0,4.627,0.124,2.127,3.704,5331.74,112.0,0.0,0.0,0.0 +7650.0,7650,,Block 3025,0,25,PedestrianZones,2300256.004515341,146516.84956170915,10.0,0,0,0.0,0.0,0.0,0.0,,10627.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,15,0,4,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3025.0,410470003003025.0,1000000US410470003003025,0.0,0.13,80103.0,0.0,132.0,44.9570274,-123.032089,0.0,3.0,8008803025,80417.0,0.0,0.0,9251.0,0.0,0.0,0.0,0.0,,,,0,0.0,6.5,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114363.07,1359.03,1.0,,,88.0,80088.0,1.0,13.0,15.0,0.0,2.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.625412400131208,0.268,999999.0,5.093,0.121,2.392,4.204,5950.595,132.0,0.0,0.0,0.0 7651.0,7651,,Block 3021,0,25,PedestrianZones,2300362.77437912,146621.74756370613,10.0,0,0,0.0,0.0,0.0,0.0,,11403.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3021.0,410470003003021.0,1000000US410470003003021,0.0,1.0,80103.0,0.0,142.0,44.9580011,-123.0307781,0.0,1.0,8008803021,80417.0,0.0,0.0,9252.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,122711.61,1401.74,1.0,,,88.0,80088.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8170684805539365,0.071,999999.0,3.92,0.142,2.591,4.919,5656.847,142.0,0.0,0.0,0.0 -7652.0,7652,,Block 3027,0,25,PedestrianZones,2300250.524686913,146439.36252091455,10.0,0,0,0.0,0.0,0.0,0.0,,5037.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,29,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3027.0,410470003003027.0,1000000US410470003003027,0.0,0.0,80103.0,0.0,137.0,44.9563289,-123.0321277,0.0,3.0,8008903027,80417.0,0.0,0.0,9253.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,54208.73,997.26,1.0,,,89.0,80089.0,2.0,33.0,33.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.244460040375436,0.275,999999.0,5.093,0.121,2.392,4.204,5950.595,137.0,0.0,0.0,0.0 +7652.0,7652,,Block 3027,0,25,PedestrianZones,2300250.524686913,146439.36252091455,10.0,0,0,0.0,0.0,0.0,0.0,,5037.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,0,0,36,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3027.0,410470003003027.0,1000000US410470003003027,0.0,0.0,80103.0,0.0,137.0,44.9563289,-123.0321277,0.0,3.0,8008903027,80417.0,0.0,0.0,9253.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,54208.73,997.26,1.0,,,89.0,80089.0,2.0,33.0,33.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.244460040375436,0.275,999999.0,5.093,0.121,2.392,4.204,5950.595,137.0,0.0,0.0,0.0 7653.0,7653,,Block 3037,0,25,PedestrianZones,2300234.788603211,146145.93651577347,10.0,0,0,0.0,0.0,0.0,0.0,,10494.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3037.0,410470003003037.0,1000000US410470003003037,0.0,0.7199999999999999,80103.0,0.0,136.0,44.9536851,-123.0322105,0.0,1.0,8008903037,80068.0,0.0,0.0,9254.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.27,0.6999999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112932.58,1343.87,1.0,,,89.0,80089.0,2.0,8.0,29.0,0.0,21.0,0.0,0.0,30.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.592573083428377,0.123,999999.0,5.838,0.219,2.718,5.279,7114.746,136.0,0.0,0.0,0.0 7654.0,7654,,Block 3028,0,25,PedestrianZones,2300346.4763054457,146420.4670466208,10.0,0,0,0.0,0.0,0.0,0.0,,8520.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3028.0,410470003003028.0,1000000US410470003003028,0.0,0.0,80103.0,0.0,151.0,44.956186,-123.0309046,0.0,1.0,8008903028,80417.0,0.0,0.0,9255.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,91694.69,1222.77,1.0,,,89.0,80089.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.105018545477583,0.275,999999.0,5.093,0.121,2.392,4.204,5950.595,151.0,0.0,0.0,0.0 -7655.0,7655,,Block 3029,0,25,PedestrianZones,2300452.2375574075,146405.9708959824,10.0,0,0,0.0,0.0,0.0,0.0,,13886.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3029.0,410470003003029.0,1000000US410470003003029,0.0,0.67,80103.0,0.0,159.0,44.9560854,-123.0295591,0.0,1.0,8008903029,80417.0,0.0,0.0,9256.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2899999999999999,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,149436.9,1712.46,1.0,,,89.0,80089.0,2.0,9.0,27.0,0.0,18.0,0.0,0.0,31.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4305960288920865,0.0,999999.0,6.84,0.213,3.92,7.803,9371.405,159.0,0.0,0.0,0.0 -7656.0,7656,,Block 3043,0,25,PedestrianZones,2300161.695597036,145956.09180249288,10.0,0,0,0.0,0.0,0.0,0.0,,9945.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,6,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3043.0,410470003003043.0,1000000US410470003003043,0.0,0.0,80103.0,0.0,133.0,44.9519569,-123.033061,0.0,3.0,8008903043,80068.0,0.0,0.0,9257.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107023.17,1308.31,1.0,,,89.0,80089.0,2.0,9.0,9.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.456911630627016,0.123,999999.0,8.941,0.501,2.905,6.122,9640.063,133.0,0.0,0.0,0.0 -7657.0,7657,,Block 3041,0,25,PedestrianZones,2300293.5137267094,146013.0001333895,10.0,0,0,0.0,0.0,0.0,0.0,,10753.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,3,0,0,0,0,11,0,0,0,0,0,19,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3041.0,410470003003041.0,1000000US410470003003041,0.0,0.22,80103.0,0.0,147.0,44.952506,-123.0314138,0.0,3.0,8008903041,80068.0,0.0,0.0,9258.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.25,0.92,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,115718.35,1361.19,1.0,,,89.0,80089.0,2.0,39.0,50.0,0.0,11.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.656525500574046,0.061,999999.0,7.156,0.231,3.465,7.254,9222.487,147.0,0.0,0.0,0.0 -7658.0,7658,,Block 3022,0,25,PedestrianZones,2300473.259495448,146620.94880319948,10.0,0,0,0.0,0.0,0.0,0.0,,12269.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3022.0,410470003003022.0,1000000US410470003003022,0.0,0.89,80103.0,0.0,153.0,44.958025,-123.0293781,0.0,1.0,8008803022,80417.0,0.0,0.0,9259.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132035.15,1458.53,1.0,,,88.0,80088.0,1.0,2.0,19.0,0.0,17.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0311072775952885,0.033,999999.0,4.355,0.157,3.035,5.903,6565.588,153.0,0.0,0.0,0.0 +7655.0,7655,,Block 3029,0,25,PedestrianZones,2300452.2375574075,146405.9708959824,10.0,0,0,0.0,0.0,0.0,0.0,,13886.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3029.0,410470003003029.0,1000000US410470003003029,0.0,0.67,80103.0,0.0,159.0,44.9560854,-123.0295591,0.0,1.0,8008903029,80417.0,0.0,0.0,9256.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2899999999999999,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,149436.9,1712.46,1.0,,,89.0,80089.0,2.0,9.0,27.0,0.0,18.0,0.0,0.0,31.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4305960288920865,0.0,999999.0,6.84,0.213,3.92,7.803,9371.405,159.0,0.0,0.0,0.0 +7656.0,7656,,Block 3043,0,25,PedestrianZones,2300161.695597036,145956.09180249288,10.0,0,0,0.0,0.0,0.0,0.0,,9945.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,3,0,0,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3043.0,410470003003043.0,1000000US410470003003043,0.0,0.0,80103.0,0.0,133.0,44.9519569,-123.033061,0.0,3.0,8008903043,80068.0,0.0,0.0,9257.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107023.17,1308.31,1.0,,,89.0,80089.0,2.0,9.0,9.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.456911630627016,0.123,999999.0,8.941,0.501,2.905,6.122,9640.063,133.0,0.0,0.0,0.0 +7657.0,7657,,Block 3041,0,25,PedestrianZones,2300293.5137267094,146013.0001333895,10.0,0,0,0.0,0.0,0.0,0.0,,10753.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,4,0,0,0,0,5,0,0,0,0,0,16,0,0,19,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3041.0,410470003003041.0,1000000US410470003003041,0.0,0.22,80103.0,0.0,147.0,44.952506,-123.0314138,0.0,3.0,8008903041,80068.0,0.0,0.0,9258.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.25,0.92,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,115718.35,1361.19,1.0,,,89.0,80089.0,2.0,39.0,50.0,0.0,11.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.656525500574046,0.061,999999.0,7.156,0.231,3.465,7.254,9222.487,147.0,0.0,0.0,0.0 +7658.0,7658,,Block 3022,0,25,PedestrianZones,2300473.259495448,146620.94880319948,10.0,0,0,0.0,0.0,0.0,0.0,,12269.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3022.0,410470003003022.0,1000000US410470003003022,0.0,0.89,80103.0,0.0,153.0,44.958025,-123.0293781,0.0,1.0,8008803022,80417.0,0.0,0.0,9259.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132035.15,1458.53,1.0,,,88.0,80088.0,1.0,2.0,19.0,0.0,17.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0311072775952885,0.033,999999.0,4.355,0.157,3.035,5.903,6565.588,153.0,0.0,0.0,0.0 7659.0,7659,,Block 3023,0,25,PedestrianZones,2300465.779203182,146517.77331416644,10.0,0,0,0.0,0.0,0.0,0.0,,11583.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3023.0,410470003003023.0,1000000US410470003003023,0.0,1.0,80103.0,0.0,160.0,44.9570949,-123.0294319,0.0,1.0,8008803023,80417.0,0.0,0.0,9260.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,124652.81,1409.83,1.0,,,88.0,80088.0,1.0,0.0,31.0,0.0,31.0,0.0,0.0,53.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8616321162800977,0.054,999999.0,5.132,0.206,3.841,7.504,8087.259,160.0,0.0,0.0,0.0 -7660.0,7660,,Block 4017,0,25,PedestrianZones,2300599.230695396,146749.3810539866,10.0,0,0,0.0,0.0,0.0,0.0,,37621.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,1,54,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0.0,263.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4017.0,410470003004017.0,1000000US410470003004017,0.0,0.16,80103.0,0.0,158.0,44.9592157,-123.0278331,0.0,3.0,8009204017,80417.0,0.0,0.0,9261.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.3,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,404872.37,3346.24,1.0,,,92.0,80092.0,1.0,46.0,55.0,0.0,9.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.294582389758514,0.045,999999.0,4.137,0.138,3.105,6.078,6537.878,158.0,0.0,0.0,0.0 +7660.0,7660,,Block 4017,0,25,PedestrianZones,2300599.230695396,146749.3810539866,10.0,0,0,0.0,0.0,0.0,0.0,,37621.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0.0,263.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4017.0,410470003004017.0,1000000US410470003004017,0.0,0.16,80103.0,0.0,158.0,44.9592157,-123.0278331,0.0,3.0,8009204017,80417.0,0.0,0.0,9261.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.3,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,404872.37,3346.24,1.0,,,92.0,80092.0,1.0,46.0,55.0,0.0,9.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.294582389758514,0.045,999999.0,4.137,0.138,3.105,6.078,6537.878,158.0,0.0,0.0,0.0 7661.0,7661,,Block 4018,0,25,PedestrianZones,2300537.842890046,146352.46267427536,10.0,0,0,0.0,0.0,0.0,0.0,,10935.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4018.0,410470003004018.0,1000000US410470003004018,0.0,1.0,80103.0,0.0,167.0,44.9556282,-123.0284534,0.0,1.0,8009104018,80082.0,0.0,0.0,9262.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117679.36,1372.38,1.0,,,91.0,80091.0,1.0,0.0,35.0,0.0,35.0,0.0,0.0,86.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7015439069619798,0.067,999999.0,3.652,0.156,4.237,8.823,7984.003,167.0,0.0,0.0,0.0 -7662.0,7662,,Block 4030,0,25,PedestrianZones,2300465.6506992583,146164.77839169872,10.0,0,0,0.0,0.0,0.0,0.0,,10698.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,8,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4030.0,410470003004030.0,1000000US410470003004030,0.0,0.2,80103.0,0.0,170.0,44.9539197,-123.0292935,0.0,3.0,8009104030,80082.0,0.0,0.0,9263.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.67,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115127.49,1357.15,1.0,,,91.0,80091.0,1.0,16.0,20.0,0.0,4.0,0.0,0.0,6.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.642961154315427,0.125,999999.0,6.014,0.192,3.934,8.368,9204.469,170.0,0.0,0.0,0.0 +7662.0,7662,,Block 4030,0,25,PedestrianZones,2300465.6506992583,146164.77839169872,10.0,0,0,0.0,0.0,0.0,0.0,,10698.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4030.0,410470003004030.0,1000000US410470003004030,0.0,0.2,80103.0,0.0,170.0,44.9539197,-123.0292935,0.0,3.0,8009104030,80082.0,0.0,0.0,9263.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.67,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115127.49,1357.15,1.0,,,91.0,80091.0,1.0,16.0,20.0,0.0,4.0,0.0,0.0,6.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.642961154315427,0.125,999999.0,6.014,0.192,3.934,8.368,9204.469,170.0,0.0,0.0,0.0 7663.0,7663,,Block 4019,0,25,PedestrianZones,2300632.838246212,146314.02139436803,10.0,0,0,0.0,0.0,0.0,0.0,,9834.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4019.0,410470003004019.0,1000000US410470003004019,0.0,1.0,80103.0,0.0,176.0,44.9553092,-123.0272347,0.0,1.0,8009104019,80082.0,0.0,0.0,9264.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105830.31,1301.64,1.0,,,91.0,80091.0,1.0,0.0,7.0,0.0,7.0,0.0,0.0,13.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.429527498441579,0.128,999999.0,4.697,0.162,4.262,9.012,8773.359,176.0,0.0,0.0,0.0 7664.0,7664,,Block 4027,0,25,PedestrianZones,2300690.2491492704,146183.705000221,10.0,0,0,0.0,0.0,0.0,0.0,,10609.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4027.0,410470003004027.0,1000000US410470003004027,0.0,1.0,80103.0,0.0,184.0,44.9541532,-123.0264558,0.0,1.0,8009104027,80082.0,0.0,0.0,9265.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114174.5,1352.85,1.0,,,91.0,80091.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6210834483343626,0.18,999999.0,4.997,0.147,4.367,9.452,9247.701,184.0,0.0,0.0,0.0 -7665.0,7665,,Block 4032,0,25,PedestrianZones,2300651.4441438112,146090.650281156,10.0,0,0,0.0,0.0,0.0,0.0,,10035.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4032.0,410470003004032.0,1000000US410470003004032,0.0,0.63,80103.0,0.0,179.0,44.9533052,-123.0269105,0.0,1.0,8009104032,80082.0,0.0,0.0,9266.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4299999999999999,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107998.26,1347.27,1.0,,,91.0,80091.0,1.0,3.0,8.0,0.0,5.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.47929677418288,0.161,999999.0,6.442,0.144,4.563,10.069,10567.467,179.0,0.0,0.0,0.0 -7666.0,7666,,Block 4041,0,25,PedestrianZones,2300487.308498985,145938.40930185356,10.0,0,0,0.0,0.0,0.0,0.0,,10001.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0,0,102,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4041.0,410470003004041.0,1000000US410470003004041,0.0,0.0,80103.0,0.0,159.0,44.9518896,-123.0289293,0.0,3.0,8009004041,80082.0,0.0,0.0,9267.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107624.68,1313.0,1.0,,,90.0,80090.0,1.0,90.0,90.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4707205020272505,0.183,999999.0,6.34,0.186,4.031,8.56,9535.61,159.0,0.0,0.0,0.0 +7665.0,7665,,Block 4032,0,25,PedestrianZones,2300651.4441438112,146090.650281156,10.0,0,0,0.0,0.0,0.0,0.0,,10035.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,11,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4032.0,410470003004032.0,1000000US410470003004032,0.0,0.63,80103.0,0.0,179.0,44.9533052,-123.0269105,0.0,1.0,8009104032,80082.0,0.0,0.0,9266.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4299999999999999,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107998.26,1347.27,1.0,,,91.0,80091.0,1.0,3.0,8.0,0.0,5.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.47929677418288,0.161,999999.0,6.442,0.144,4.563,10.069,10567.467,179.0,0.0,0.0,0.0 +7666.0,7666,,Block 4041,0,25,PedestrianZones,2300487.308498985,145938.40930185356,10.0,0,0,0.0,0.0,0.0,0.0,,10001.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,70,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4041.0,410470003004041.0,1000000US410470003004041,0.0,0.0,80103.0,0.0,159.0,44.9518896,-123.0289293,0.0,3.0,8009004041,80082.0,0.0,0.0,9267.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107624.68,1313.0,1.0,,,90.0,80090.0,1.0,90.0,90.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4707205020272505,0.183,999999.0,6.34,0.186,4.031,8.56,9535.61,159.0,0.0,0.0,0.0 7670.0,7670,,Block 4002,0,25,PedestrianZones,2300786.248915334,147025.3216372844,10.0,0,0,0.0,0.0,0.0,0.0,,10432.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4002.0,410470003004002.0,1000000US410470003004002,0.0,1.0,80103.0,0.0,136.0,44.9617504,-123.0255731,0.0,1.0,8009304002,80417.0,0.0,0.0,9271.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112269.9,1344.16,1.0,,,93.0,80093.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,27.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.577359957528933,0.0,999999.0,4.174,1.376,2.565,6.23,6658.009,136.0,0.0,0.0,0.0 -7671.0,7671,,Block 4012,0,25,PedestrianZones,2300776.5883240583,146785.4159490655,10.0,0,0,0.0,0.0,0.0,0.0,,10511.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4012.0,410470003004012.0,1000000US410470003004012,0.0,0.81,80103.0,0.0,164.0,44.9595898,-123.0256004,0.0,1.0,8009304012,80417.0,0.0,0.0,9272.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113121.74,1345.2,1.0,,,93.0,80093.0,1.0,4.0,21.0,0.0,17.0,0.0,0.0,42.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.596915521592809,0.222,999999.0,3.349,0.163,4.047,8.971,7884.955,164.0,0.0,0.0,0.0 +7671.0,7671,,Block 4012,0,25,PedestrianZones,2300776.5883240583,146785.4159490655,10.0,0,0,0.0,0.0,0.0,0.0,,10511.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4012.0,410470003004012.0,1000000US410470003004012,0.0,0.81,80103.0,0.0,164.0,44.9595898,-123.0256004,0.0,1.0,8009304012,80417.0,0.0,0.0,9272.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113121.74,1345.2,1.0,,,93.0,80093.0,1.0,4.0,21.0,0.0,17.0,0.0,0.0,42.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.596915521592809,0.222,999999.0,3.349,0.163,4.047,8.971,7884.955,164.0,0.0,0.0,0.0 7673.0,7673,,Block 4000,0,25,PedestrianZones,2300980.6996746226,147017.87375726263,10.0,0,0,0.0,0.0,0.0,0.0,,11108.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4000.0,410470003004000.0,1000000US410470003004000,0.0,1.0,80103.0,0.0,128.0,44.9617381,-123.0231066,0.0,1.0,8009304000,80417.0,0.0,0.0,9274.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119538.91,1380.01,1.0,,,93.0,80093.0,1.0,0.0,3.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7442334340496,0.07,999999.0,3.48,1.504,2.852,7.048,6738.379,128.0,0.0,0.0,0.0 7721.0,7721,,Block 3003,0,25,PedestrianZones,2301752.21982346,144873.3939411664,10.0,0,0,0.0,0.0,0.0,0.0,,12588.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3003.0,410470006003003.0,1000000US410470006003003,0.0,1.0,80103.0,0.0,136.0,44.942665,-123.0124866,0.0,1.0,8010503003,80082.0,0.0,0.0,9332.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,135464.53,1717.13,1.0,,,105.0,80105.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.1098349603168813,0.145,999999.0,2.655,0.087,3.944,8.635,7225.2,136.0,0.0,0.0,0.0 -7740.0,7740,,Block 2003,0,25,PedestrianZones,2300946.0512446724,146187.0140842838,10.0,0,0,0.0,0.0,0.0,0.0,,11112.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,4,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2003.0,410470003002003.0,1000000US410470003002003,0.0,0.7199999999999999,80103.0,0.0,162.0,44.9542549,-123.0232167,0.0,1.0,8009402003,80082.0,0.0,0.0,9407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1799999999999999,0.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119584.53,1424.45,1.0,,,94.0,80094.0,1.0,5.0,18.0,0.0,13.0,0.0,0.0,28.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.745280516271955,0.109,999999.0,4.623,0.193,4.492,9.914,9303.608,162.0,0.0,0.0,0.0 -7744.0,7744,,Block 4004,0,25,PedestrianZones,2300595.466126713,147031.8029309629,10.0,0,0,0.0,0.0,0.0,0.0,,10809.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4004.0,410470003004004.0,1000000US410470003004004,0.0,0.53,80103.0,0.0,127.0,44.961755,-123.0279928,0.0,2.0,8009304004,80417.0,0.0,0.0,9420.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.45,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116318.83,1368.07,1.0,,,93.0,80093.0,1.0,9.0,19.0,0.0,10.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6703105708696424,0.0,999999.0,4.658,1.509,2.462,5.563,6541.86,127.0,0.0,0.0,0.0 +7740.0,7740,,Block 2003,0,25,PedestrianZones,2300946.0512446724,146187.0140842838,10.0,0,0,0.0,0.0,0.0,0.0,,11112.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,4,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2003.0,410470003002003.0,1000000US410470003002003,0.0,0.7199999999999999,80103.0,0.0,162.0,44.9542549,-123.0232167,0.0,1.0,8009402003,80082.0,0.0,0.0,9407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1799999999999999,0.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119584.53,1424.45,1.0,,,94.0,80094.0,1.0,5.0,18.0,0.0,13.0,0.0,0.0,28.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.745280516271955,0.109,999999.0,4.623,0.193,4.492,9.914,9303.608,162.0,0.0,0.0,0.0 +7744.0,7744,,Block 4004,0,25,PedestrianZones,2300595.466126713,147031.8029309629,10.0,0,0,0.0,0.0,0.0,0.0,,10809.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4004.0,410470003004004.0,1000000US410470003004004,0.0,0.53,80103.0,0.0,127.0,44.961755,-123.0279928,0.0,2.0,8009304004,80417.0,0.0,0.0,9420.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.45,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116318.83,1368.07,1.0,,,93.0,80093.0,1.0,9.0,19.0,0.0,10.0,0.0,0.0,20.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6703105708696424,0.0,999999.0,4.658,1.509,2.462,5.563,6541.86,127.0,0.0,0.0,0.0 7745.0,7745,,Block 3040,0,25,PedestrianZones,2300197.862602576,146050.90186240544,10.0,0,0,0.0,0.0,0.0,0.0,,10224.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3040.0,410470003003040.0,1000000US410470003003040,0.0,0.95,80103.0,0.0,135.0,44.9528199,-123.0326405,0.0,1.0,8008903040,80068.0,0.0,0.0,9421.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,110027.49,1328.08,1.0,,,89.0,80089.0,2.0,1.0,19.0,0.0,18.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5258813230103114,0.185,999999.0,8.132,0.512,2.854,5.637,8812.038,135.0,0.0,0.0,0.0 -7746.0,7746,,Block 4038,0,25,PedestrianZones,2300522.4448497263,146032.82473714696,10.0,0,0,0.0,0.0,0.0,0.0,,9940.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4038.0,410470003004038.0,1000000US410470003004038,0.0,0.78,80103.0,0.0,165.0,44.9527488,-123.0285217,0.0,1.0,8009104038,80082.0,0.0,0.0,9422.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.17,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106967.29,1308.18,1.0,,,91.0,80091.0,1.0,2.0,9.0,0.0,7.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.455628806730652,0.124,999999.0,6.016,0.205,4.157,9.114,9682.938,165.0,0.0,0.0,0.0 +7746.0,7746,,Block 4038,0,25,PedestrianZones,2300522.4448497263,146032.82473714696,10.0,0,0,0.0,0.0,0.0,0.0,,9940.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4038.0,410470003004038.0,1000000US410470003004038,0.0,0.78,80103.0,0.0,165.0,44.9527488,-123.0285217,0.0,1.0,8009104038,80082.0,0.0,0.0,9422.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.17,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106967.29,1308.18,1.0,,,91.0,80091.0,1.0,2.0,9.0,0.0,7.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.455628806730652,0.124,999999.0,6.016,0.205,4.157,9.114,9682.938,165.0,0.0,0.0,0.0 7786.0,7786,,Block 2022,0,25,PedestrianZones,2301900.766109793,145071.9335141002,10.0,0,0,0.0,0.0,0.0,0.0,,12463.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2022.0,410470006002022.0,1000000US410470006002022,0.0,1.0,80103.0,0.0,145.0,44.9444924,-123.0106834,0.0,1.0,8010002022,80082.0,0.0,0.0,9510.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,134124.73,1466.85,1.0,,,100.0,80100.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,29.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.079077480328716,0.257,999999.0,2.605,0.136,3.505,7.961,6762.494,145.0,0.0,0.0,0.0 7926.0,7926,,Block 1005,0,25,PedestrianZones,2299677.3554714783,145908.73795772434,10.0,0,0,0.0,0.0,0.0,0.0,,0.0,70521.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1005.0,410470002001005.0,1000000US410470002001005,0.0,0.0,80103.0,0.0,102.0,44.9513942,-123.0391773,0.0,1.0,8008701005,80068.0,0.0,0.0,15098.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,758930.91,7339.59,1.0,,,87.0,80087.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,17.422641038883054,0.253,999999.0,9.755,0.626,1.991,4.001,8803.519,102.0,0.0,0.0,0.0 7927.0,7927,,Block 3009,0,25,PedestrianZones,2299836.5669474835,146867.51510310423,10.0,0,0,0.0,0.0,0.0,0.0,,64078.0,113917.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3009.0,410470003003009.0,1000000US410470003003009,0.0,0.0,80103.0,0.0,60.0,44.9620172,-123.0371696,0.0,1.0,8008703009,80417.0,0.0,0.0,15099.0,0.0,11.18,0.0,1.0,SPECIAL USE FACILITY,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1915536.78,13439.06,1.0,,,87.0,80087.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,43.97463472480091,0.362,999999.0,5.032,0.122,1.575,2.601,4885.171,60.0,0.0,0.0,0.0 -7929.0,7929,,Block 3005,0,25,PedestrianZones,2300049.591243483,146632.7057474841,10.0,0,0,0.0,0.0,0.0,0.0,,11136.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3005.0,410470003003005.0,1000000US410470003003005,0.0,0.25,80103.0,0.0,92.0,44.9580113,-123.03475,0.0,3.0,8008603005,80417.0,0.0,0.0,15101.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.57,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119846.23,1386.62,1.0,,,86.0,80086.0,1.0,18.0,24.0,0.0,6.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.751288490240141,0.269,999999.0,4.44,0.106,1.953,3.361,4992.118,92.0,0.0,0.0,0.0 -7959.0,7959,,Block 6013,0,25,PedestrianZones,2300914.9787262287,144356.84200404017,10.0,0,0,0.0,0.0,0.0,0.0,,13098.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6013.0,410470009006013.0,1000000US410470009006013,0.0,0.97,80103.0,0.0,149.0,44.9377839,-123.0228861,0.0,1.0,8010606013,80068.0,0.0,0.0,15134.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.53,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,140957.62,1514.2,1.0,,,106.0,80106.0,1.0,1.0,30.0,0.0,29.0,0.0,0.0,55.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2359388105188462,0.218,999999.0,22.417,0.487,4.102,7.655,19245.713,149.0,0.0,0.0,0.0 -7960.0,7960,,Block 6012,0,25,PedestrianZones,2301071.6545911487,144293.131261574,10.0,0,0,0.0,0.0,0.0,0.0,,31234.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6012.0,410470009006012.0,1000000US410470009006012,0.0,0.5899999999999999,80103.0,0.0,162.0,44.9372548,-123.0208767,0.0,2.0,8010606012,80082.0,0.0,0.0,15135.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.3499999999999999,0.4899999999999999,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,336137.99,2420.19,1.0,,,106.0,80106.0,1.0,29.0,70.0,0.0,41.0,0.0,0.0,84.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.716659629313921,0.141,999999.0,6.757,0.115,5.361,10.518,11055.895,162.0,0.0,0.0,0.0 -7961.0,7961,,Block 6005,0,25,PedestrianZones,2301127.819982928,144467.4906101794,10.0,0,0,0.0,0.0,0.0,0.0,,29721.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6005.0,410470009006005.0,1000000US410470009006005,0.0,0.87,80103.0,0.0,160.0,44.938839,-123.0202343,0.0,1.0,8010606005,80082.0,0.0,0.0,15136.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,319856.68,2895.68,1.0,,,106.0,80106.0,1.0,4.0,30.0,0.0,26.0,0.0,0.0,44.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.342892524024358,0.085,999999.0,7.878,0.529,4.808,9.176,10914.675,160.0,0.0,0.0,0.0 +7929.0,7929,,Block 3005,0,25,PedestrianZones,2300049.591243483,146632.7057474841,10.0,0,0,0.0,0.0,0.0,0.0,,11136.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3005.0,410470003003005.0,1000000US410470003003005,0.0,0.25,80103.0,0.0,92.0,44.9580113,-123.03475,0.0,3.0,8008603005,80417.0,0.0,0.0,15101.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.57,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119846.23,1386.62,1.0,,,86.0,80086.0,1.0,18.0,24.0,0.0,6.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.751288490240141,0.269,999999.0,4.44,0.106,1.953,3.361,4992.118,92.0,0.0,0.0,0.0 +7959.0,7959,,Block 6013,0,25,PedestrianZones,2300914.9787262287,144356.84200404017,10.0,0,0,0.0,0.0,0.0,0.0,,13098.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6013.0,410470009006013.0,1000000US410470009006013,0.0,0.97,80103.0,0.0,149.0,44.9377839,-123.0228861,0.0,1.0,8010606013,80068.0,0.0,0.0,15134.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.53,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,140957.62,1514.2,1.0,,,106.0,80106.0,1.0,1.0,30.0,0.0,29.0,0.0,0.0,55.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2359388105188462,0.218,999999.0,22.417,0.487,4.102,7.655,19245.713,149.0,0.0,0.0,0.0 +7960.0,7960,,Block 6012,0,25,PedestrianZones,2301071.6545911487,144293.131261574,10.0,0,0,0.0,0.0,0.0,0.0,,31234.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6012.0,410470009006012.0,1000000US410470009006012,0.0,0.5899999999999999,80103.0,0.0,162.0,44.9372548,-123.0208767,0.0,2.0,8010606012,80082.0,0.0,0.0,15135.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.3499999999999999,0.4899999999999999,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,336137.99,2420.19,1.0,,,106.0,80106.0,1.0,29.0,70.0,0.0,41.0,0.0,0.0,84.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.716659629313921,0.141,999999.0,6.757,0.115,5.361,10.518,11055.895,162.0,0.0,0.0,0.0 +7961.0,7961,,Block 6005,0,25,PedestrianZones,2301127.819982928,144467.4906101794,10.0,0,0,0.0,0.0,0.0,0.0,,29721.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6005.0,410470009006005.0,1000000US410470009006005,0.0,0.87,80103.0,0.0,160.0,44.938839,-123.0202343,0.0,1.0,8010606005,80082.0,0.0,0.0,15136.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,319856.68,2895.68,1.0,,,106.0,80106.0,1.0,4.0,30.0,0.0,26.0,0.0,0.0,44.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.342892524024358,0.085,999999.0,7.878,0.529,4.808,9.176,10914.675,160.0,0.0,0.0,0.0 7965.0,7965,,Block 6011,0,25,PedestrianZones,2301237.6114868005,144229.2765325738,10.0,0,0,0.0,0.0,0.0,0.0,,14853.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6011.0,410470009006011.0,1000000US410470009006011,0.0,0.95,80103.0,0.0,167.0,44.936727,-123.0187498,0.0,1.0,8010806011,80082.0,0.0,0.0,15140.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,159853.81,1602.75,1.0,,,108.0,80108.0,1.0,1.0,20.0,0.0,19.0,0.0,0.0,31.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.669735352266689,0.211,999999.0,4.686,0.126,5.253,10.52,9731.41,167.0,0.0,0.0,0.0 -7990.0,7990,,Block 2005,0,25,PedestrianZones,2301453.4393600128,145498.81188539896,10.0,0,0,0.0,0.0,0.0,0.0,,28277.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2005.0,410470006002005.0,1000000US410470006002005,0.0,0.5899999999999999,80103.0,0.0,142.0,44.9482069,-123.0165175,0.0,2.0,8010202005,80082.0,0.0,0.0,15166.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.31,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,304315.81,2297.32,1.0,,,102.0,80102.0,1.0,9.0,22.0,0.0,13.0,0.0,0.0,29.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.986123622447123,0.067,999999.0,1.564,0.163,4.615,10.421,7670.173,142.0,0.0,0.0,0.0 -7991.0,7991,,Block 1031,0,25,PedestrianZones,2301571.5990925888,145641.53029989827,10.0,0,0,0.0,0.0,0.0,0.0,,49672.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,34,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1031.0,410470006001031.0,1000000US410470006001031,0.0,0.7299999999999999,80103.0,0.0,137.0,44.9495238,-123.0150771,0.0,1.0,8009801031,80082.0,0.0,0.0,15167.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,534565.86,3046.71,1.0,,,98.0,80098.0,1.0,28.0,102.0,0.0,74.0,0.0,0.0,174.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.271932575803444,0.133,999999.0,1.863,0.242,4.608,10.439,7873.571,137.0,0.0,0.0,0.0 -7993.0,7993,,Block 6027,0,25,PedestrianZones,2301444.357036276,144007.5705294975,10.0,0,0,0.0,0.0,0.0,0.0,,23329.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,59,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6027.0,410470009006027.0,1000000US410470009006027,0.0,0.2099999999999999,80103.0,0.0,156.0,44.9347908,-123.0160441,0.0,3.0,8010806027,80082.0,0.0,0.0,15169.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.38,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,251063.78,2071.84,1.0,,,108.0,80108.0,1.0,38.0,48.0,0.0,10.0,0.0,0.0,16.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.7636262370047,0.148,999999.0,3.401,0.102,4.838,10.403,8835.005,156.0,0.0,0.0,0.0 +7990.0,7990,,Block 2005,0,25,PedestrianZones,2301453.4393600128,145498.81188539896,10.0,0,0,0.0,0.0,0.0,0.0,,28277.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2005.0,410470006002005.0,1000000US410470006002005,0.0,0.5899999999999999,80103.0,0.0,142.0,44.9482069,-123.0165175,0.0,2.0,8010202005,80082.0,0.0,0.0,15166.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.31,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,304315.81,2297.32,1.0,,,102.0,80102.0,1.0,9.0,22.0,0.0,13.0,0.0,0.0,29.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.986123622447123,0.067,999999.0,1.564,0.163,4.615,10.421,7670.173,142.0,0.0,0.0,0.0 +7991.0,7991,,Block 1031,0,25,PedestrianZones,2301571.5990925888,145641.53029989827,10.0,0,0,0.0,0.0,0.0,0.0,,49672.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,13,24,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1031.0,410470006001031.0,1000000US410470006001031,0.0,0.7299999999999999,80103.0,0.0,137.0,44.9495238,-123.0150771,0.0,1.0,8009801031,80082.0,0.0,0.0,15167.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,534565.86,3046.71,1.0,,,98.0,80098.0,1.0,28.0,102.0,0.0,74.0,0.0,0.0,174.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.271932575803444,0.133,999999.0,1.863,0.242,4.608,10.439,7873.571,137.0,0.0,0.0,0.0 +7993.0,7993,,Block 6027,0,25,PedestrianZones,2301444.357036276,144007.5705294975,10.0,0,0,0.0,0.0,0.0,0.0,,23329.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,1,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,49,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6027.0,410470009006027.0,1000000US410470009006027,0.0,0.2099999999999999,80103.0,0.0,156.0,44.9347908,-123.0160441,0.0,3.0,8010806027,80082.0,0.0,0.0,15169.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.38,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,251063.78,2071.84,1.0,,,108.0,80108.0,1.0,38.0,48.0,0.0,10.0,0.0,0.0,16.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.7636262370047,0.148,999999.0,3.401,0.102,4.838,10.403,8835.005,156.0,0.0,0.0,0.0 8293.0,8293,,Block 2005,0,25,PedestrianZones,2299651.4877132,145423.00326157355,10.0,0,0,0.0,0.0,0.0,0.0,,8282.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2005.0,410470002002005.0,1000000US410470002002005,0.0,0.0,80103.0,0.0,111.0,44.9470177,-123.0393116,0.0,3.0,8006102005,80068.0,0.0,0.0,27876.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,89120.55,1262.11,1.0,,,61.0,80061.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.045924578762361,0.267,999999.0,14.676,2.056,1.228,2.135,10759.008,111.0,0.0,0.0,0.0 8294.0,8294,,Block 2011,0,25,PedestrianZones,2299570.336215656,145164.96625789016,10.0,0,0,0.0,0.0,0.0,0.0,,2102.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2011.0,410470002002011.0,1000000US410470002002011,0.0,0.0,80103.0,0.0,112.0,44.9446738,-123.0402366,0.0,1.0,8006102011,80068.0,0.0,0.0,27877.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,22623.28,965.19,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.5193586831039588,0.397,999999.0,7.523,0.529,0.4,0.617,5210.141,112.0,0.0,0.0,0.0 -8299.0,8299,,Block 3022,0,25,PedestrianZones,2300630.8041308997,144646.9451237882,10.0,0,0,0.0,0.0,0.0,0.0,,10314.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,53,0,0,0,0,0,0,2,0,0,0,0,0,0,62,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3022.0,410470002003022.0,1000000US410470002003022,0.0,0.0,80103.0,0.0,127.0,44.9403135,-123.0265998,0.0,3.0,8008003022,80068.0,0.0,0.0,27883.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,110995.07,1468.68,1.0,,,80.0,80080.0,2.0,49.0,49.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.548094043404603,0.118,999999.0,45.587,0.517,3.255,6.026,33032.105,127.0,5.101839273974993,0.4960182893538041,0.8423131176117735 +8299.0,8299,,Block 3022,0,25,PedestrianZones,2300630.8041308997,144646.9451237882,10.0,0,0,0.0,0.0,0.0,0.0,,10314.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,32,0,0,0,0,0,0,3,0,0,0,0,0,0,55,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3022.0,410470002003022.0,1000000US410470002003022,0.0,0.0,80103.0,0.0,127.0,44.9403135,-123.0265998,0.0,3.0,8008003022,80068.0,0.0,0.0,27883.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,0.0,1.0,110995.07,1468.68,1.0,,,80.0,80080.0,2.0,49.0,49.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.548094043404603,0.118,999999.0,45.587,0.517,3.255,6.026,33032.105,127.0,0.2060775506119679,3.378588256394685,0.90581605076202 8308.0,8308,,Block 3017,0,25,PedestrianZones,2300238.2123355805,146744.92458286195,10.0,0,0,0.0,0.0,0.0,0.0,,6456.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3017.0,410470003003017.0,1000000US410470003003017,0.0,1.0,80103.0,0.0,115.0,44.9590739,-123.032405,0.0,1.0,8008803017,80417.0,0.0,0.0,27892.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8299999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,69481.76,1163.51,1.0,,,88.0,80088.0,1.0,0.0,5.0,0.0,5.0,0.0,0.0,6.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.5950802332316578,0.238,999999.0,4.848,0.131,2.02,3.488,5335.009,115.0,0.0,0.0,0.0 -8395.0,8395,,Block 3042,0,25,PedestrianZones,2300256.008936468,145918.87173776244,10.0,0,0,0.0,0.0,0.0,0.0,,10378.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,8,0,35,0,0,0,0,0,0,30,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3042.0,410470003003042.0,1000000US410470003003042,0.0,0.5,80103.0,0.0,145.0,44.9516487,-123.0318515,0.0,3.0,8008903042,80068.0,0.0,0.0,28070.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.45,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111682.43,1337.33,1.0,,,89.0,80089.0,2.0,61.0,122.0,0.0,61.0,0.0,0.0,136.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.563873541489753,0.0,999999.0,8.141,0.258,3.663,7.637,10098.045,145.0,0.0,0.0,0.0 -8396.0,8396,,Block 1014,0,25,PedestrianZones,2300219.340889969,145826.08633717743,10.0,0,0,0.0,0.0,0.0,0.0,,10108.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,11,10,45,29,0,0,4,0,383,2,0,0,5,0,0,339,12,21,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1014.0,410470002001014.0,1000000US410470002001014,0.0,0.05,80103.0,0.0,144.0,44.9508038,-123.0322791,0.0,3.0,8008501014,80068.0,0.0,0.0,28071.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.78,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108783.14,1319.8,1.0,,,85.0,80085.0,2.0,529.0,555.0,0.0,26.0,0.0,0.0,68.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.497314982155794,0.042,999999.0,9.957,0.474,3.032,6.137,10300.347,144.0,0.0,0.0,0.0 +8395.0,8395,,Block 3042,0,25,PedestrianZones,2300256.008936468,145918.87173776244,10.0,0,0,0.0,0.0,0.0,0.0,,10378.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,4,0,44,0,0,0,0,0,0,36,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3042.0,410470003003042.0,1000000US410470003003042,0.0,0.5,80103.0,0.0,145.0,44.9516487,-123.0318515,0.0,3.0,8008903042,80068.0,0.0,0.0,28070.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.45,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111682.43,1337.33,1.0,,,89.0,80089.0,2.0,61.0,122.0,0.0,61.0,0.0,0.0,136.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.563873541489753,0.0,999999.0,8.141,0.258,3.663,7.637,10098.045,145.0,0.0,0.0,0.0 +8396.0,8396,,Block 1014,0,25,PedestrianZones,2300219.340889969,145826.08633717743,10.0,0,0,0.0,0.0,0.0,0.0,,10108.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,8,8,84,17,0,0,3,0,305,2,0,0,5,0,0,693,19,31,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1014.0,410470002001014.0,1000000US410470002001014,0.0,0.05,80103.0,0.0,144.0,44.9508038,-123.0322791,0.0,3.0,8008501014,80068.0,0.0,0.0,28071.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.78,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108783.14,1319.8,1.0,,,85.0,80085.0,2.0,529.0,555.0,0.0,26.0,0.0,0.0,68.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.497314982155794,0.042,999999.0,9.957,0.474,3.032,6.137,10300.347,144.0,0.0,0.0,0.0 8397.0,8397,,Block 4045,0,25,PedestrianZones,2300449.924003187,145844.4570703781,10.0,0,0,0.0,0.0,0.0,0.0,,9928.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4045.0,410470003004045.0,1000000US410470003004045,0.0,1.0,80103.0,0.0,159.0,44.951034,-123.0293656,0.0,1.0,8009004045,80082.0,0.0,0.0,28072.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106842.59,1303.34,1.0,,,90.0,80090.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.452766282627974,0.125,999999.0,7.319,0.212,3.794,7.751,9645.239,159.0,0.0,0.0,0.0 -8398.0,8398,,Block 1022,0,25,PedestrianZones,2300278.341373857,145691.03340896923,10.0,0,0,0.0,0.0,0.0,0.0,,11244.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,3,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1022.0,410470002001022.0,1000000US410470002001022,0.0,0.4299999999999999,80103.0,0.0,148.0,44.9496056,-123.0314781,0.0,3.0,8008401022,80068.0,0.0,0.0,28073.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,121004.87,1387.09,1.0,,,84.0,80084.0,2.0,12.0,21.0,0.0,9.0,0.0,0.0,23.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.777887164316911,0.064,999999.0,9.37,0.473,3.459,6.786,10339.585,148.0,0.0,0.0,0.0 +8398.0,8398,,Block 1022,0,25,PedestrianZones,2300278.341373857,145691.03340896923,10.0,0,0,0.0,0.0,0.0,0.0,,11244.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,6,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1022.0,410470002001022.0,1000000US410470002001022,0.0,0.4299999999999999,80103.0,0.0,148.0,44.9496056,-123.0314781,0.0,3.0,8008401022,80068.0,0.0,0.0,28073.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,121004.87,1387.09,1.0,,,84.0,80084.0,2.0,12.0,21.0,0.0,9.0,0.0,0.0,23.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.777887164316911,0.064,999999.0,9.37,0.473,3.459,6.786,10339.585,148.0,0.0,0.0,0.0 8399.0,8399,,Block 1016,0,25,PedestrianZones,2300411.9319460564,145751.11973260072,10.0,0,0,0.0,0.0,0.0,0.0,,9885.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1016.0,410470002001016.0,1000000US410470002001016,0.0,1.0,80103.0,0.0,156.0,44.9501838,-123.0298098,0.0,1.0,8008401016,80082.0,0.0,0.0,28074.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106382.93,1314.32,1.0,,,84.0,80084.0,2.0,0.0,14.0,0.0,14.0,0.0,0.0,36.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4422139022068605,0.123,999999.0,7.692,0.255,3.972,7.919,9990.636,156.0,0.0,0.0,0.0 8400.0,8400,,Block 1021,0,25,PedestrianZones,2300374.0510093253,145653.688246197,10.0,0,0,0.0,0.0,0.0,0.0,,11218.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1021.0,410470002001021.0,1000000US410470002001021,0.0,1.0,80103.0,0.0,153.0,44.9492967,-123.030251,0.0,1.0,8008401021,80068.0,0.0,0.0,28075.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,120729.79,1383.95,1.0,,,84.0,80084.0,2.0,0.0,12.0,0.0,12.0,0.0,0.0,29.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.771572266131872,0.124,999999.0,12.914,0.263,4.082,7.926,13337.944,153.0,0.0,0.0,0.0 -8401.0,8401,,Block 1034,0,25,PedestrianZones,2300331.716022715,145406.709459896,10.0,0,0,0.0,0.0,0.0,0.0,,21342.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1034.0,410470002001034.0,1000000US410470002001034,0.0,0.98,80103.0,0.0,153.0,44.9470632,-123.0306892,0.0,1.0,8008401034,80068.0,0.0,0.0,28076.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,1.0,229681.9,1962.16,1.0,,,84.0,80084.0,2.0,1.0,46.0,0.0,45.0,0.0,0.0,113.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.27276617142066,0.127,999999.0,26.424,0.214,3.633,7.056,21427.629,153.0,0.0,0.0,0.0 +8401.0,8401,,Block 1034,0,25,PedestrianZones,2300331.716022715,145406.709459896,10.0,0,0,0.0,0.0,0.0,0.0,,21342.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1034.0,410470002001034.0,1000000US410470002001034,0.0,0.98,80103.0,0.0,153.0,44.9470632,-123.0306892,0.0,1.0,8008401034,80068.0,0.0,0.0,28076.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,1.0,229681.9,1962.16,1.0,,,84.0,80084.0,2.0,1.0,46.0,0.0,45.0,0.0,0.0,113.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.27276617142066,0.127,999999.0,26.424,0.214,3.633,7.056,21427.629,153.0,0.0,0.0,0.0 8402.0,8402,,Block 4044,0,25,PedestrianZones,2300543.349108147,145808.36774927867,10.0,0,0,0.0,0.0,0.0,0.0,,10370.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4044.0,410470003004044.0,1000000US410470003004044,0.0,1.0,80103.0,0.0,161.0,44.9507357,-123.0281679,0.0,1.0,8009004044,80082.0,0.0,0.0,28077.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111596.1,1335.96,1.0,,,90.0,80090.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.561891735209873,0.182,999999.0,6.82,0.243,4.392,8.886,10052.375,161.0,0.0,0.0,0.0 8403.0,8403,,Block 1017,0,25,PedestrianZones,2300506.4225199814,145713.95995769196,10.0,0,0,0.0,0.0,0.0,0.0,,10260.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1017.0,410470002001017.0,1000000US410470002001017,0.0,1.0,80103.0,0.0,159.0,44.9498761,-123.0285982,0.0,1.0,8008401017,80082.0,0.0,0.0,28078.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,110410.77,1329.24,1.0,,,84.0,80084.0,2.0,0.0,11.0,0.0,11.0,0.0,0.0,27.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5346803457467657,0.121,999999.0,11.473,0.203,3.94,8.001,12463.476,159.0,0.0,0.0,0.0 8404.0,8404,,Block 4036,0,25,PedestrianZones,2300626.6351964446,145984.40563327816,10.0,0,0,0.0,0.0,0.0,0.0,,7005.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4036.0,410470003004036.0,1000000US410470003004036,0.0,1.0,80103.0,0.0,170.0,44.9523426,-123.0271827,0.0,1.0,8009004036,80082.0,0.0,0.0,28079.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,75388.86999999998,1170.21,1.0,,,90.0,80090.0,1.0,0.0,4.0,0.0,4.0,0.0,0.0,6.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.7306886958639964,0.168,999999.0,5.753,0.216,4.515,9.989,10074.817,170.0,0.0,0.0,0.0 -8405.0,8405,,Block 4043,0,25,PedestrianZones,2300656.6606186386,145816.51452513965,10.0,0,0,1.01,0.0,0.0,0.0,,20768.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,59,0,0,2,0,0,0,0,0,0,0,0,32,0,0,0.0,444.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4043.0,410470003004043.0,1000000US410470003004043,0.0,0.0,80103.0,0.0,164.0,44.9508409,-123.0267358,0.0,3.0,8009004043,80082.0,0.0,0.0,28080.0,0.0,1.01,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,223503.24,2003.09,1.0,,,90.0,80090.0,1.0,62.0,62.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.130923810617835,0.182,999999.0,6.82,0.243,4.392,8.886,10052.375,164.0,0.0,0.0,0.0 +8405.0,8405,,Block 4043,0,25,PedestrianZones,2300656.6606186386,145816.51452513965,10.0,0,0,1.01,0.0,0.0,0.0,,20768.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,67,0,0,2,0,0,0,0,0,0,0,0,90,0,0,0.0,444.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4043.0,410470003004043.0,1000000US410470003004043,0.0,0.0,80103.0,0.0,164.0,44.9508409,-123.0267358,0.0,3.0,8009004043,80082.0,0.0,0.0,28080.0,0.0,1.01,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,223503.24,2003.09,1.0,,,90.0,80090.0,1.0,62.0,62.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.130923810617835,0.182,999999.0,6.82,0.243,4.392,8.886,10052.375,164.0,0.0,0.0,0.0 8406.0,8406,,Block 1020,0,25,PedestrianZones,2300470.6671977327,145614.64826815386,10.0,0,0,0.0,0.0,0.0,0.0,,11980.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1020.0,410470002001020.0,1000000US410470002001020,0.0,1.0,80103.0,0.0,153.0,44.9489728,-123.0290117,0.0,1.0,8008401020,80082.0,0.0,0.0,28081.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128924.69,1436.86,1.0,,,84.0,80084.0,2.0,0.0,17.0,0.0,17.0,0.0,0.0,48.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9597009613794154,0.059,999999.0,14.343,0.284,4.105,8.113,14372.151,153.0,0.0,0.0,0.0 8407.0,8407,,Block 1031,0,25,PedestrianZones,2300432.3013338754,145512.6838471688,10.0,0,0,0.0,0.0,0.0,0.0,,11946.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1031.0,410470002001031.0,1000000US410470002001031,0.0,1.0,80103.0,0.0,151.0,44.9480448,-123.0294572,0.0,1.0,8008401031,80068.0,0.0,0.0,28082.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128559.52,1436.27,1.0,,,84.0,80084.0,2.0,0.0,22.0,0.0,22.0,0.0,0.0,58.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.951317887826667,0.085,999999.0,28.513,0.221,3.848,7.566,23090.177,151.0,0.0,0.0,0.0 -8408.0,8408,,Block 2029,0,25,PedestrianZones,2300392.8747400166,145188.27941665796,10.0,0,0,0.0,0.0,0.0,0.0,,31434.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,2,7,0,32,0,0,0,0,0,0,83,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2029.0,410470002002029.0,1000000US410470002002029,0.0,0.4099999999999999,80103.0,0.0,156.0,44.9451157,-123.0298279,0.0,3.0,8006902029,80068.0,0.0,0.0,28083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.89,0.6099999999999999,0.0,0.8,6.0,0.0,81.0,0.0,0.0,0.0,1.0,338290.32,2574.99,1.0,,,69.0,80069.0,2.0,85.0,143.0,0.0,58.0,0.0,0.0,95.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.7660703305987004,0.088,999999.0,33.831,0.037,3.08,5.699,25299.16,156.0,5.135153838731793,0.4987308680536494,0.8447527814718204 +8408.0,8408,,Block 2029,0,25,PedestrianZones,2300392.8747400166,145188.27941665796,10.0,0,0,0.0,0.0,0.0,0.0,,31434.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,2,5,0,65,0,0,0,0,0,0,74,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2029.0,410470002002029.0,1000000US410470002002029,0.0,0.4099999999999999,80103.0,0.0,156.0,44.9451157,-123.0298279,0.0,3.0,8006902029,80068.0,0.0,0.0,28083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.89,0.6099999999999999,0.0,0.8,6.0,0.0,81.0,0.0,0.0,0.0,1.0,338290.32,2574.99,1.0,,,69.0,80069.0,2.0,85.0,143.0,0.0,58.0,0.0,0.0,95.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.7660703305987004,0.088,999999.0,33.831,0.037,3.08,5.699,25299.16,156.0,0.2055343865715531,3.4130502509004605,0.9106668219934656 8409.0,8409,,Block 3004,0,25,PedestrianZones,2300676.093479879,145535.2559417648,10.0,0,0,0.0,0.0,0.0,0.0,,14842.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3004.0,410470002003004.0,1000000US410470002003004,0.0,1.0,80103.0,0.0,147.0,44.9483165,-123.0263782,0.0,1.0,8008303004,80082.0,0.0,0.0,28084.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8299999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,159727.99,1614.44,1.0,,,83.0,80083.0,2.0,0.0,10.0,0.0,10.0,0.0,0.0,12.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.666846739605457,0.083,999999.0,21.838,0.212,4.431,9.322,19942.545,147.0,0.0,0.0,0.0 -8410.0,8410,,Block 3010,0,25,PedestrianZones,2300597.6788383583,145340.21172475247,10.0,0,0,0.0,0.0,0.0,0.0,,13553.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3010.0,410470002003010.0,1000000US410470002003010,0.0,0.0,80103.0,0.0,149.0,44.94654,-123.0272941,0.0,1.0,8008203010,80082.0,0.0,0.0,28085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,0.0,1.0,145857.52,1704.39,1.0,,,82.0,80082.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3484248612503285,0.04,999999.0,31.891,0.089,4.015,8.136,25616.952,149.0,0.0,0.0,0.0 -8432.0,8432,,Block 1001,0,25,PedestrianZones,2300030.577506673,146435.2708474599,10.0,0,0,0.0,0.0,0.0,0.0,,6854.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1001.0,410470002001001.0,1000000US410470002001001,0.0,0.0,80103.0,0.0,104.0,44.95623,-123.0349124,0.0,3.0,8008501001,80068.0,0.0,0.0,28163.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,73758.99,1098.84,1.0,,,85.0,80085.0,2.0,22.0,22.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.693271811819275,0.338,999999.0,3.308,0.032,2.044,3.615,4430.353,104.0,0.0,0.0,0.0 -8433.0,8433,,Block 3033,0,25,PedestrianZones,2300178.7875536056,146276.57485773385,10.0,0,0,0.0,0.0,0.0,0.0,,10048.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3033.0,410470003003033.0,1000000US410470003003033,0.0,0.4299999999999999,80103.0,0.0,127.0,44.9548444,-123.0329718,0.0,3.0,8008903033,80068.0,0.0,0.0,28164.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108137.45,1315.99,1.0,,,89.0,80089.0,2.0,4.0,7.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4824921037557672,0.184,999999.0,6.565,0.236,2.741,5.372,7639.842,127.0,0.0,0.0,0.0 -8449.0,8449,,Block 3004,0,25,PedestrianZones,2299981.6747911894,146800.07778985897,10.0,0,0,0.0,0.0,0.0,0.0,,87199.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,64,3,0,23,0,0,24,0,0,0,0,0,0,99,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3004.0,410470003003004.0,1000000US410470003003004,0.0,0.28,80103.0,0.0,84.0,44.9594976,-123.035677,0.0,3.0,8008603004,80417.0,0.0,0.0,28189.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.37,0.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,938416.62,7718.43,1.0,,,86.0,80086.0,1.0,97.0,134.0,0.0,37.0,0.0,0.0,71.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,21.543062205680283,0.362,999999.0,5.032,0.122,1.575,2.601,4885.171,84.0,0.0,0.0,0.0 +8410.0,8410,,Block 3010,0,25,PedestrianZones,2300597.6788383583,145340.21172475247,10.0,0,0,0.0,0.0,0.0,0.0,,13553.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3010.0,410470002003010.0,1000000US410470002003010,0.0,0.0,80103.0,0.0,149.0,44.94654,-123.0272941,0.0,1.0,8008203010,80082.0,0.0,0.0,28085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0,0.0,0.0,0.0,1.0,145857.52,1704.39,1.0,,,82.0,80082.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3484248612503285,0.04,999999.0,31.891,0.089,4.015,8.136,25616.952,149.0,0.2101644867769889,3.484547553569385,0.9304798718026864 +8432.0,8432,,Block 1001,0,25,PedestrianZones,2300030.577506673,146435.2708474599,10.0,0,0,0.0,0.0,0.0,0.0,,6854.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1001.0,410470002001001.0,1000000US410470002001001,0.0,0.0,80103.0,0.0,104.0,44.95623,-123.0349124,0.0,3.0,8008501001,80068.0,0.0,0.0,28163.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,73758.99,1098.84,1.0,,,85.0,80085.0,2.0,22.0,22.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.693271811819275,0.338,999999.0,3.308,0.032,2.044,3.615,4430.353,104.0,0.0,0.0,0.0 +8433.0,8433,,Block 3033,0,25,PedestrianZones,2300178.7875536056,146276.57485773385,10.0,0,0,0.0,0.0,0.0,0.0,,10048.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3033.0,410470003003033.0,1000000US410470003003033,0.0,0.4299999999999999,80103.0,0.0,127.0,44.9548444,-123.0329718,0.0,3.0,8008903033,80068.0,0.0,0.0,28164.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108137.45,1315.99,1.0,,,89.0,80089.0,2.0,4.0,7.0,0.0,3.0,0.0,0.0,4.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4824921037557672,0.184,999999.0,6.565,0.236,2.741,5.372,7639.842,127.0,0.0,0.0,0.0 +8449.0,8449,,Block 3004,0,25,PedestrianZones,2299981.6747911894,146800.07778985897,10.0,0,0,0.0,0.0,0.0,0.0,,87199.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,0,64,7,0,21,0,0,13,0,0,0,0,0,0,55,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3004.0,410470003003004.0,1000000US410470003003004,0.0,0.28,80103.0,0.0,84.0,44.9594976,-123.035677,0.0,3.0,8008603004,80417.0,0.0,0.0,28189.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.37,0.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,938416.62,7718.43,1.0,,,86.0,80086.0,1.0,97.0,134.0,0.0,37.0,0.0,0.0,71.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,21.543062205680283,0.362,999999.0,5.032,0.122,1.575,2.601,4885.171,84.0,0.0,0.0,0.0 8508.0,8508,,Block 2002,0,25,PedestrianZones,2301069.524722008,146171.2809002939,10.0,0,0,0.0,0.0,0.0,0.0,,6375.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2002.0,410470003002002.0,1000000US410470003002002,0.0,0.7299999999999999,80103.0,0.0,160.0,44.954148,-123.0216463,0.0,1.0,8009502002,80082.0,0.0,0.0,34595.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,68603.62,1175.3,1.0,,,95.0,80095.0,1.0,3.0,11.0,0.0,8.0,0.0,0.0,19.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.5749209101739217,0.0,999999.0,4.883,0.18,4.003,8.886,8811.847,160.0,0.0,0.0,0.0 -8527.0,8527,,Block 3033,0,25,PedestrianZones,2300560.4476984986,144463.06961974618,10.0,0,0,0.0,0.0,0.0,0.0,,10181.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,48,0,0,30,0,0,0,4,0,0,90,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3033.0,410470002003033.0,1000000US410470002003033,0.0,0.0,80103.0,0.0,135.0,44.9386397,-123.027418,0.0,3.0,8008003033,80068.0,0.0,0.0,34614.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,109565.76,1452.26,1.0,,,80.0,80080.0,2.0,120.0,120.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.515281433136653,0.033,999999.0,59.144,0.624,2.545,4.888,40980.34,135.0,5.109188537388509,0.4965207388343912,0.8430754809571256 -8530.0,8530,,Block 3058,0,25,PedestrianZones,2299994.964131529,143791.7637034744,10.0,0,0,0.0,0.0,0.0,0.0,,16724.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,0,3459,0,84,0,0,0,6,0,0,5203,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3058.0,410470002003058.0,1000000US410470002003058,0.0,0.0,80135.0,0.0,115.0,44.932442,-123.0343127,0.0,3.0,8007603058,80068.0,0.0,0.0,34617.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,179985.07,2155.56,1.0,,,76.0,80076.0,2.0,4917.0,4917.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.131884936809231,0.046,999999.0,55.073,0.399,1.129,1.805,36401.862,115.0,0.0,0.0,0.0 -8581.0,8581,,Block 1016,0,25,PedestrianZones,2301440.1123580853,146499.18452997276,10.0,0,0,0.0,0.0,0.0,0.0,,30628.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,0,0,0,0,0,0,0,11,14,0,0,0,0,27,35,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1016.0,410470003001016.0,1000000US410470003001016,0.0,0.0,80103.0,0.0,119.0,44.9572015,-123.0170812,0.0,3.0,8009701016,80417.0,0.0,0.0,34669.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,329615.73,2371.59,1.0,,,97.0,80097.0,1.0,39.0,39.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.566929285139122,0.109,999999.0,5.458,0.175,3.063,7.469,8273.535,119.0,0.0,0.0,0.0 -8582.0,8582,,Block 1022,0,25,PedestrianZones,2301248.444228007,146352.02884546708,10.0,0,0,0.0,0.0,0.0,0.0,,40305.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,3,0,0,0,1,393,0,0,0,0,0,0,0,0,384,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1022.0,410470003001022.0,1000000US410470003001022,0.0,0.0,80103.0,0.0,148.0,44.9558241,-123.0194512,0.0,3.0,8009701022,80082.0,0.0,0.0,34670.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,433761.3,2696.58,1.0,,,97.0,80097.0,1.0,342.0,342.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.957780432413603,0.156,999999.0,4.927,0.19,3.874,8.93,8868.411,148.0,0.0,0.0,0.0 -8583.0,8583,,Block 1024,0,25,PedestrianZones,2301383.177861981,146237.18230278298,10.0,0,0,0.0,0.0,0.0,0.0,,32410.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1024.0,410470003001024.0,1000000US410470003001024,0.0,0.87,80103.0,0.0,141.0,44.9548288,-123.017699,0.0,1.0,8009701024,80082.0,0.0,0.0,34671.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,348789.45,3192.9,1.0,,,97.0,80097.0,1.0,5.0,38.0,0.0,33.0,0.0,0.0,94.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.007096974242112,0.222,999999.0,5.289,0.2,3.216,7.584,8238.756,141.0,0.0,0.0,0.0 -8584.0,8584,,Block 2000,0,25,PedestrianZones,2301227.013503636,145920.51439519878,10.0,0,0,0.0,0.0,0.0,0.0,,51505.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,171,0,0,0,71,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2000.0,410470003002000.0,1000000US410470003002000,0.0,0.33,80103.0,0.0,160.0,44.9519366,-123.0195522,0.0,3.0,8009502000,80082.0,0.0,0.0,34672.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.8399999999999999,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,554285.77,3502.77,1.0,,,95.0,80095.0,1.0,148.0,221.0,0.0,73.0,0.0,0.0,177.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.72463914763979,0.123,999999.0,5.649,0.23,4.028,8.987,9367.331,160.0,0.0,0.0,0.0 +8527.0,8527,,Block 3033,0,25,PedestrianZones,2300560.4476984986,144463.06961974618,10.0,0,0,0.0,0.0,0.0,0.0,,10181.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,39,0,0,19,0,0,0,10,0,0,84,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3033.0,410470002003033.0,1000000US410470002003033,0.0,0.0,80103.0,0.0,135.0,44.9386397,-123.027418,0.0,3.0,8008003033,80068.0,0.0,0.0,34614.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,109565.76,1452.26,1.0,,,80.0,80080.0,2.0,120.0,120.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.515281433136653,0.033,999999.0,59.144,0.624,2.545,4.888,40980.34,135.0,0.2057384490516664,3.377528307017953,0.905016512226578 +8530.0,8530,,Block 3058,0,25,PedestrianZones,2299994.964131529,143791.7637034744,10.0,0,0,0.0,0.0,0.0,0.0,,16724.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,0,4497,0,91,0,0,0,14,0,0,5223,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3058.0,410470002003058.0,1000000US410470002003058,0.0,0.0,80135.0,0.0,115.0,44.932442,-123.0343127,0.0,3.0,8007603058,80068.0,0.0,0.0,34617.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,179985.07,2155.56,1.0,,,76.0,80076.0,2.0,4917.0,4917.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.131884936809231,0.046,999999.0,55.073,0.399,1.129,1.805,36401.862,115.0,0.0,0.0,0.0 +8581.0,8581,,Block 1016,0,25,PedestrianZones,2301440.1123580853,146499.18452997276,10.0,0,0,0.0,0.0,0.0,0.0,,30628.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,0,0,0,0,0,0,0,9,8,0,0,0,0,24,33,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1016.0,410470003001016.0,1000000US410470003001016,0.0,0.0,80103.0,0.0,119.0,44.9572015,-123.0170812,0.0,3.0,8009701016,80417.0,0.0,0.0,34669.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,329615.73,2371.59,1.0,,,97.0,80097.0,1.0,39.0,39.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.566929285139122,0.109,999999.0,5.458,0.175,3.063,7.469,8273.535,119.0,0.0,0.0,0.0 +8582.0,8582,,Block 1022,0,25,PedestrianZones,2301248.444228007,146352.02884546708,10.0,0,0,0.0,0.0,0.0,0.0,,40305.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,2,0,0,0,1,339,0,0,0,0,0,0,0,0,288,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1022.0,410470003001022.0,1000000US410470003001022,0.0,0.0,80103.0,0.0,148.0,44.9558241,-123.0194512,0.0,3.0,8009701022,80082.0,0.0,0.0,34670.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,433761.3,2696.58,1.0,,,97.0,80097.0,1.0,342.0,342.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.957780432413603,0.156,999999.0,4.927,0.19,3.874,8.93,8868.411,148.0,0.0,0.0,0.0 +8583.0,8583,,Block 1024,0,25,PedestrianZones,2301383.177861981,146237.18230278298,10.0,0,0,0.0,0.0,0.0,0.0,,32410.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1024.0,410470003001024.0,1000000US410470003001024,0.0,0.87,80103.0,0.0,141.0,44.9548288,-123.017699,0.0,1.0,8009701024,80082.0,0.0,0.0,34671.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,348789.45,3192.9,1.0,,,97.0,80097.0,1.0,5.0,38.0,0.0,33.0,0.0,0.0,94.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.007096974242112,0.222,999999.0,5.289,0.2,3.216,7.584,8238.756,141.0,0.0,0.0,0.0 +8584.0,8584,,Block 2000,0,25,PedestrianZones,2301227.013503636,145920.51439519878,10.0,0,0,0.0,0.0,0.0,0.0,,51505.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,19,0,0,0,1,0,0,0,0,87,0,0,0,118,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2000.0,410470003002000.0,1000000US410470003002000,0.0,0.33,80103.0,0.0,160.0,44.9519366,-123.0195522,0.0,3.0,8009502000,80082.0,0.0,0.0,34672.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.8399999999999999,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,554285.77,3502.77,1.0,,,95.0,80095.0,1.0,148.0,221.0,0.0,73.0,0.0,0.0,177.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.72463914763979,0.123,999999.0,5.649,0.23,4.028,8.987,9367.331,160.0,0.0,0.0,0.0 8586.0,8586,,Block 2008,0,25,PedestrianZones,2301171.4644335983,145478.51725502283,10.0,0,0,0.0,0.0,0.0,0.0,,10073.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2008.0,410470006002008.0,1000000US410470006002008,0.0,1.0,80103.0,0.0,148.0,44.9479453,-123.0200811,0.0,1.0,8010202008,80082.0,0.0,0.0,34674.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108408.89,1346.23,1.0,,,102.0,80102.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.488723559328064,0.123,999999.0,2.958,0.157,4.298,9.34,7870.653,148.0,0.0,0.0,0.0 8587.0,8587,,Block 1023,0,25,PedestrianZones,2301373.127821564,146361.57361659585,10.0,0,0,0.0,0.0,0.0,0.0,,12372.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1023.0,410470003001023.0,1000000US410470003001023,0.0,1.0,80103.0,0.0,133.0,44.9559449,-123.0178755,0.0,1.0,8009701023,80082.0,0.0,0.0,34675.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133143.47,1544.46,1.0,,,97.0,80097.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,25.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0565507892214385,0.094,999999.0,5.253,0.176,3.074,7.466,8140.315,133.0,0.0,0.0,0.0 -8590.0,8590,,Block 1015,0,25,PedestrianZones,2301568.0794388875,146695.10908908249,10.0,0,0,0.0,0.0,0.0,0.0,,46989.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,2,0,10,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1015.0,410470003001015.0,1000000US410470003001015,0.0,0.1499999999999999,80103.0,0.0,98.0,44.9589997,-123.0155374,0.0,3.0,8009701015,80417.0,0.0,0.0,34678.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.75,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,505683.06,3462.17,1.0,,,97.0,80097.0,1.0,33.0,39.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.608875386339673,0.079,999999.0,6.375,0.195,2.676,7.126,8640.768,98.0,0.0,0.0,0.0 -8591.0,8591,,Block 1004,0,25,PedestrianZones,2301879.592823967,146292.84814876926,10.0,0,0,0.0,0.0,0.0,0.0,,18211.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,73,0,0,0,1,0,0,0,0,0,0,0,0,50,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1004.0,410470006001004.0,1000000US410470006001004,0.0,0.07,80103.0,0.0,87.0,44.9554686,-123.0114324,0.0,3.0,8009801004,80377.0,0.0,0.0,34679.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,195982.72,1844.44,1.0,,,98.0,80098.0,1.0,56.0,60.0,0.0,4.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.499140115611631,0.0,999999.0,3.388,0.158,1.348,3.207,4221.129,87.0,0.0,0.0,0.0 -8592.0,8592,,Block 1000,0,25,PedestrianZones,2301732.730168804,146994.18134184083,10.0,0,0,0.0,0.0,0.0,0.0,,25715.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1000.0,410470003001000.0,1000000US410470003001000,0.0,0.0,80103.0,0.0,60.0,44.9617359,-123.0135694,0.0,3.0,8010101000,80417.0,0.0,0.0,34680.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,276741.3,3725.15,1.0,,,101.0,80101.0,1.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.353100335543386,0.13,999999.0,5.381,0.08,2.48,6.664,7708.718,60.0,0.0,0.0,0.0 +8590.0,8590,,Block 1015,0,25,PedestrianZones,2301568.0794388875,146695.10908908249,10.0,0,0,0.0,0.0,0.0,0.0,,46989.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,1,0,8,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1015.0,410470003001015.0,1000000US410470003001015,0.0,0.1499999999999999,80103.0,0.0,98.0,44.9589997,-123.0155374,0.0,3.0,8009701015,80417.0,0.0,0.0,34678.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.75,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,505683.06,3462.17,1.0,,,97.0,80097.0,1.0,33.0,39.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.608875386339673,0.079,999999.0,6.375,0.195,2.676,7.126,8640.768,98.0,0.0,0.0,0.0 +8591.0,8591,,Block 1004,0,25,PedestrianZones,2301879.592823967,146292.84814876926,10.0,0,0,0.0,0.0,0.0,0.0,,18211.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,0,58,0,0,0,2,0,0,0,0,0,0,0,0,55,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1004.0,410470006001004.0,1000000US410470006001004,0.0,0.07,80103.0,0.0,87.0,44.9554686,-123.0114324,0.0,3.0,8009801004,80377.0,0.0,0.0,34679.0,0.0,0.0,0.0,0.0,,,,0,0.0,7.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,195982.72,1844.44,1.0,,,98.0,80098.0,1.0,56.0,60.0,0.0,4.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.499140115611631,0.0,999999.0,3.388,0.158,1.348,3.207,4221.129,87.0,0.0,0.0,0.0 +8592.0,8592,,Block 1000,0,25,PedestrianZones,2301732.730168804,146994.18134184083,10.0,0,0,0.0,0.0,0.0,0.0,,25715.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1000.0,410470003001000.0,1000000US410470003001000,0.0,0.0,80103.0,0.0,60.0,44.9617359,-123.0135694,0.0,3.0,8010101000,80417.0,0.0,0.0,34680.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,276741.3,3725.15,1.0,,,101.0,80101.0,1.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.353100335543386,0.13,999999.0,5.381,0.08,2.48,6.664,7708.718,60.0,0.0,0.0,0.0 8595.0,8595,,Block 1005,0,25,PedestrianZones,2301867.944950873,146137.033947547,10.0,0,0,0.0,0.0,0.0,0.0,,14061.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1005.0,410470006001005.0,1000000US410470006001005,0.0,1.0,80103.0,0.0,94.0,44.9540638,-123.0115186,0.0,1.0,8009801005,80377.0,0.0,0.0,34683.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,151325.45,1551.25,1.0,,,98.0,80098.0,1.0,0.0,18.0,0.0,18.0,0.0,0.0,38.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.473951256854254,0.0,999999.0,2.306,0.154,1.598,3.683,3833.36,94.0,0.0,0.0,0.0 -8596.0,8596,,Block 1009,0,25,PedestrianZones,2301830.5514240325,146034.61554639583,10.0,0,0,0.0,0.0,0.0,0.0,,8880.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1009.0,410470006001009.0,1000000US410470006001009,0.0,0.8599999999999999,80103.0,0.0,101.0,44.9531321,-123.0119519,0.0,1.0,8009801009,80082.0,0.0,0.0,34684.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,95565.65,1252.44,1.0,,,98.0,80098.0,1.0,2.0,14.0,0.0,12.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.193883460227005,0.0,999999.0,3.307,0.118,2.404,5.349,5540.283,101.0,0.0,0.0,0.0 -8597.0,8597,,Block 1010,0,25,PedestrianZones,2301751.0124397,146074.62862439078,10.0,0,0,0.0,0.0,0.0,0.0,,7774.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1010.0,410470006001010.0,1000000US410470006001010,0.0,0.69,80103.0,0.0,107.0,44.9534697,-123.0129752,0.0,1.0,8009801010,80082.0,0.0,0.0,34685.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.27,0.5999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,83658.52,1332.49,1.0,,,98.0,80098.0,1.0,4.0,13.0,0.0,9.0,0.0,0.0,15.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.920533630454637,0.063,999999.0,3.478,0.239,2.701,6.049,6097.613,107.0,0.0,0.0,0.0 +8596.0,8596,,Block 1009,0,25,PedestrianZones,2301830.5514240325,146034.61554639583,10.0,0,0,0.0,0.0,0.0,0.0,,8880.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1009.0,410470006001009.0,1000000US410470006001009,0.0,0.8599999999999999,80103.0,0.0,101.0,44.9531321,-123.0119519,0.0,1.0,8009801009,80082.0,0.0,0.0,34684.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,95565.65,1252.44,1.0,,,98.0,80098.0,1.0,2.0,14.0,0.0,12.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.193883460227005,0.0,999999.0,3.307,0.118,2.404,5.349,5540.283,101.0,0.0,0.0,0.0 +8597.0,8597,,Block 1010,0,25,PedestrianZones,2301751.0124397,146074.62862439078,10.0,0,0,0.0,0.0,0.0,0.0,,7774.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1010.0,410470006001010.0,1000000US410470006001010,0.0,0.69,80103.0,0.0,107.0,44.9534697,-123.0129752,0.0,1.0,8009801010,80082.0,0.0,0.0,34685.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.27,0.5999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,83658.52,1332.49,1.0,,,98.0,80098.0,1.0,4.0,13.0,0.0,9.0,0.0,0.0,15.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.920533630454637,0.063,999999.0,3.478,0.239,2.701,6.049,6097.613,107.0,0.0,0.0,0.0 8598.0,8598,,Block 1008,0,25,PedestrianZones,2301912.107981282,145956.04909861923,10.0,0,0,0.0,0.0,0.0,0.0,,17232.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1008.0,410470006001008.0,1000000US410470006001008,0.0,1.0,80103.0,0.0,95.0,44.9524482,-123.0108878,0.0,1.0,8009901008,80082.0,0.0,0.0,34686.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,185445.81,1766.01,1.0,,,99.0,80099.0,1.0,0.0,23.0,0.0,23.0,0.0,0.0,52.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.25724624971694,0.048,999999.0,3.975,0.262,2.885,6.595,6764.9,95.0,0.0,0.0,0.0 8768.0,8768,,Block 3008,0,25,PedestrianZones,2300094.86475894,146845.6756385743,10.0,0,0,0.0,0.0,0.0,0.0,,1334.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3008.0,410470003003008.0,1000000US410470003003008,0.0,0.0,80103.0,0.0,94.0,44.9599397,-123.0342611,0.0,1.0,8008603008,80417.0,0.0,0.0,51053.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,14355.44,540.81,1.0,,,86.0,80086.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.3295553667961763,0.303,999999.0,4.855,0.107,1.854,3.322,5232.978,94.0,0.0,0.0,0.0 8772.0,8772,,Block 1006,0,25,PedestrianZones,2302062.559493216,146052.7108284021,10.0,0,0,0.0,0.0,0.0,0.0,,13014.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1006.0,410470006001006.0,1000000US410470006001006,0.0,1.0,80103.0,0.0,85.0,44.9533597,-123.00902,0.0,1.0,8009901006,80377.0,0.0,0.0,51058.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,140048.62,1500.34,1.0,,,99.0,80099.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,32.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.215071091155133,0.127,999999.0,3.613,0.149,2.925,6.636,6559.208,85.0,0.0,0.0,0.0 8782.0,8782,,Block 3012,0,25,PedestrianZones,2300371.782651518,146860.4980043128,10.0,0,0,0.0,0.0,0.0,0.0,,11565.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3012.0,410470003003012.0,1000000US410470003003012,0.0,1.0,80103.0,0.0,131.0,44.9601512,-123.0307587,0.0,1.0,8008803012,80417.0,0.0,0.0,51081.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8299999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,124459.39,1413.18,1.0,,,88.0,80088.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,18.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8571920181567223,0.175,999999.0,4.016,0.1,2.705,5.605,6157.404,131.0,0.0,0.0,0.0 -8783.0,8783,,Block 3026,0,25,PedestrianZones,2300150.5534867244,146520.21877941897,10.0,0,0,0.0,0.0,0.0,0.0,,11625.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,79,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3026.0,410470003003026.0,1000000US410470003003026,0.0,0.03,80103.0,0.0,118.0,44.957028,-123.0334263,0.0,3.0,8008603026,80417.0,0.0,0.0,51082.0,0.0,0.0,0.0,0.0,,,,0,0.0,36.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,125100.73,1419.04,1.0,,,86.0,80086.0,1.0,72.0,74.0,0.0,2.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8719151455293765,0.24,999999.0,4.548,0.114,2.293,4.148,5565.433,118.0,0.0,0.0,0.0 -8784.0,8784,,Block 3031,0,25,PedestrianZones,2300309.955996918,146334.0427482354,10.0,0,0,0.0,0.0,0.0,0.0,,10030.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3031.0,410470003003031.0,1000000US410470003003031,0.0,0.8299999999999998,80103.0,0.0,145.0,44.9553983,-123.031333,0.0,1.0,8008903031,80082.0,0.0,0.0,51083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.11,0.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107936.31,1314.33,1.0,,,89.0,80089.0,2.0,4.0,24.0,0.0,20.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.477874545480468,0.06,999999.0,7.297,0.252,3.313,6.607,8898.875,145.0,0.0,0.0,0.0 +8783.0,8783,,Block 3026,0,25,PedestrianZones,2300150.5534867244,146520.21877941897,10.0,0,0,0.0,0.0,0.0,0.0,,11625.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,72,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3026.0,410470003003026.0,1000000US410470003003026,0.0,0.03,80103.0,0.0,118.0,44.957028,-123.0334263,0.0,3.0,8008603026,80417.0,0.0,0.0,51082.0,0.0,0.0,0.0,0.0,,,,0,0.0,36.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,125100.73,1419.04,1.0,,,86.0,80086.0,1.0,72.0,74.0,0.0,2.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8719151455293765,0.24,999999.0,4.548,0.114,2.293,4.148,5565.433,118.0,0.0,0.0,0.0 +8784.0,8784,,Block 3031,0,25,PedestrianZones,2300309.955996918,146334.0427482354,10.0,0,0,0.0,0.0,0.0,0.0,,10030.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3031.0,410470003003031.0,1000000US410470003003031,0.0,0.8299999999999998,80103.0,0.0,145.0,44.9553983,-123.031333,0.0,1.0,8008903031,80082.0,0.0,0.0,51083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.11,0.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107936.31,1314.33,1.0,,,89.0,80089.0,2.0,4.0,24.0,0.0,20.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.477874545480468,0.06,999999.0,7.297,0.252,3.313,6.607,8898.875,145.0,0.0,0.0,0.0 8785.0,8785,,Block 3036,0,25,PedestrianZones,2300331.322940973,146108.2885643398,10.0,0,0,0.0,0.0,0.0,0.0,,10969.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3036.0,410470003003036.0,1000000US410470003003036,0.0,0.4299999999999999,80103.0,0.0,147.0,44.9533737,-123.0309727,0.0,3.0,8008903036,80068.0,0.0,0.0,51084.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.2,0.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,118044.7,1374.73,1.0,,,89.0,80089.0,2.0,12.0,21.0,0.0,9.0,0.0,0.0,10.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7099309238929434,0.0,999999.0,6.556,0.185,3.453,7.219,8815.642,147.0,0.0,0.0,0.0 -8786.0,8786,,Block 4016,0,25,PedestrianZones,2300645.533948149,146536.77799978424,10.0,0,0,0.0,0.0,0.0,0.0,,57946.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4016.0,410470003004016.0,1000000US410470003004016,0.0,0.95,80103.0,0.0,177.0,44.9573164,-123.0271622,0.0,1.0,8009204016,80417.0,0.0,0.0,51085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,623601.9,3706.11,1.0,,,92.0,80092.0,1.0,4.0,76.0,0.0,72.0,0.0,0.0,179.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,14.315917058547235,0.235,999999.0,3.453,0.183,4.206,8.493,7645.234,177.0,0.0,0.0,0.0 +8786.0,8786,,Block 4016,0,25,PedestrianZones,2300645.533948149,146536.77799978424,10.0,0,0,0.0,0.0,0.0,0.0,,57946.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4016.0,410470003004016.0,1000000US410470003004016,0.0,0.95,80103.0,0.0,177.0,44.9573164,-123.0271622,0.0,1.0,8009204016,80417.0,0.0,0.0,51085.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,623601.9,3706.11,1.0,,,92.0,80092.0,1.0,4.0,76.0,0.0,72.0,0.0,0.0,179.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,14.315917058547235,0.235,999999.0,3.453,0.183,4.206,8.493,7645.234,177.0,0.0,0.0,0.0 8787.0,8787,,Block 4028,0,25,PedestrianZones,2300596.545182373,146220.60583029204,10.0,0,0,0.0,0.0,0.0,0.0,,9753.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4028.0,410470003004028.0,1000000US410470003004028,0.0,1.0,80103.0,0.0,181.0,44.9544587,-123.0276575,0.0,1.0,8009104028,80082.0,0.0,0.0,51086.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,104959.91,1296.0,1.0,,,91.0,80091.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.409545899878502,0.127,999999.0,3.84,0.138,4.323,9.235,8367.934,181.0,0.0,0.0,0.0 8789.0,8789,,Block 4008,0,25,PedestrianZones,2300879.367346098,146899.97881184137,10.0,0,0,0.0,0.0,0.0,0.0,,12017.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4008.0,410470003004008.0,1000000US410470003004008,0.0,1.0,80103.0,0.0,146.0,44.9606492,-123.0243437,0.0,1.0,8009304008,80417.0,0.0,0.0,51088.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,129321.24,1421.59,1.0,,,93.0,80093.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,49.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.968804568082183,0.089,999999.0,4.051,1.481,3.143,7.481,7380.431,146.0,0.0,0.0,0.0 -8808.0,8808,,Block 3004,0,25,PedestrianZones,2301665.445054422,144885.9005205556,10.0,0,0,0.0,0.0,0.0,0.0,,23663.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3004.0,410470006003004.0,1000000US410470006003004,0.0,0.92,80103.0,0.0,132.0,44.9427532,-123.0135905,0.0,1.0,8010503004,80082.0,0.0,0.0,51110.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,254654.16,2135.73,1.0,,,105.0,80105.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.846049818568767,0.128,999999.0,2.312,0.096,4.219,9.324,7446.7,132.0,0.0,0.0,0.0 -8809.0,8809,,Block 3011,0,25,PedestrianZones,2301766.209535124,144660.75898746317,10.0,0,0,0.0,0.0,0.0,0.0,,22714.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3011.0,410470006003011.0,1000000US410470006003011,0.0,0.96,80103.0,0.0,124.0,44.9407563,-123.0122256,0.0,1.0,8010503011,80082.0,0.0,0.0,51111.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,244442.01,2153.57,1.0,,,105.0,80105.0,1.0,2.0,48.0,0.0,46.0,0.0,0.0,98.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.611611452731792,0.037,999999.0,3.119,0.089,3.993,8.321,7321.613,124.0,0.0,0.0,0.0 -8810.0,8810,,Block 3012,0,25,PedestrianZones,2301862.7732692994,144663.9436200692,10.0,0,0,0.0,0.0,0.0,0.0,,19703.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3012.0,410470006003012.0,1000000US410470006003012,0.0,0.97,80103.0,0.0,120.0,44.940812,-123.0110039,0.0,1.0,8010503012,80082.0,0.0,0.0,51112.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,212041.64,2007.99,1.0,,,105.0,80105.0,1.0,1.0,38.0,0.0,37.0,0.0,0.0,75.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.867801952453951,0.108,999999.0,9.61,0.08,2.702,6.292,10177.123,120.0,0.0,0.0,0.0 -8813.0,8813,,Block 5008,0,25,PedestrianZones,2301647.2746523377,143992.15138963575,10.0,0,0,0.0,0.0,0.0,0.0,,57300.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,1,12,2,0,0,10,0,67,0,0,0,37,0,0,104,4,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5008.0,410470009005008.0,1000000US410470009005008,0.0,0.4,80103.0,0.0,142.0,44.9347089,-123.0134684,0.0,3.0,8010905008,80082.0,0.0,0.0,51115.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,616647.9,3142.65,1.0,,,109.0,80109.0,1.0,121.0,203.0,0.0,82.0,0.0,0.0,233.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,14.156275297771778,0.364,999999.0,2.617,0.097,4.699,10.403,8332.732,142.0,0.0,0.0,0.0 -8919.0,8919,,Block 3008,0,25,PedestrianZones,2301192.3032747637,145039.95538349796,10.0,0,0,0.0,0.0,0.0,0.0,,26310.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3008.0,410470006003008.0,1000000US410470006003008,0.0,0.98,80103.0,0.0,141.0,44.9440063,-123.0196439,0.0,1.0,8010403008,80082.0,0.0,0.0,51367.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,283140.29,2252.18,1.0,,,104.0,80104.0,1.0,1.0,66.0,0.0,65.0,0.0,0.0,150.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.50000082861439,0.128,999999.0,2.431,0.105,5.04,10.364,8188.494,141.0,0.0,0.0,0.0 +8808.0,8808,,Block 3004,0,25,PedestrianZones,2301665.445054422,144885.9005205556,10.0,0,0,0.0,0.0,0.0,0.0,,23663.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3004.0,410470006003004.0,1000000US410470006003004,0.0,0.92,80103.0,0.0,132.0,44.9427532,-123.0135905,0.0,1.0,8010503004,80082.0,0.0,0.0,51110.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,254654.16,2135.73,1.0,,,105.0,80105.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.846049818568767,0.128,999999.0,2.312,0.096,4.219,9.324,7446.7,132.0,0.0,0.0,0.0 +8809.0,8809,,Block 3011,0,25,PedestrianZones,2301766.209535124,144660.75898746317,10.0,0,0,0.0,0.0,0.0,0.0,,22714.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3011.0,410470006003011.0,1000000US410470006003011,0.0,0.96,80103.0,0.0,124.0,44.9407563,-123.0122256,0.0,1.0,8010503011,80082.0,0.0,0.0,51111.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,244442.01,2153.57,1.0,,,105.0,80105.0,1.0,2.0,48.0,0.0,46.0,0.0,0.0,98.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.611611452731792,0.037,999999.0,3.119,0.089,3.993,8.321,7321.613,124.0,0.0,0.0,0.0 +8810.0,8810,,Block 3012,0,25,PedestrianZones,2301862.7732692994,144663.9436200692,10.0,0,0,0.0,0.0,0.0,0.0,,19703.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3012.0,410470006003012.0,1000000US410470006003012,0.0,0.97,80103.0,0.0,120.0,44.940812,-123.0110039,0.0,1.0,8010503012,80082.0,0.0,0.0,51112.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,212041.64,2007.99,1.0,,,105.0,80105.0,1.0,1.0,38.0,0.0,37.0,0.0,0.0,75.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.867801952453951,0.108,999999.0,9.61,0.08,2.702,6.292,10177.123,120.0,0.0,0.0,0.0 +8813.0,8813,,Block 5008,0,25,PedestrianZones,2301647.2746523377,143992.15138963575,10.0,0,0,0.0,0.0,0.0,0.0,,57300.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,1,21,2,0,0,11,0,137,0,0,0,34,0,0,247,9,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5008.0,410470009005008.0,1000000US410470009005008,0.0,0.4,80103.0,0.0,142.0,44.9347089,-123.0134684,0.0,3.0,8010905008,80082.0,0.0,0.0,51115.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,616647.9,3142.65,1.0,,,109.0,80109.0,1.0,121.0,203.0,0.0,82.0,0.0,0.0,233.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,14.156275297771778,0.364,999999.0,2.617,0.097,4.699,10.403,8332.732,142.0,0.0,0.0,0.0 +8919.0,8919,,Block 3008,0,25,PedestrianZones,2301192.3032747637,145039.95538349796,10.0,0,0,0.0,0.0,0.0,0.0,,26310.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3008.0,410470006003008.0,1000000US410470006003008,0.0,0.98,80103.0,0.0,141.0,44.9440063,-123.0196439,0.0,1.0,8010403008,80082.0,0.0,0.0,51367.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,283140.29,2252.18,1.0,,,104.0,80104.0,1.0,1.0,66.0,0.0,65.0,0.0,0.0,150.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.50000082861439,0.128,999999.0,2.431,0.105,5.04,10.364,8188.494,141.0,0.0,0.0,0.0 8920.0,8920,,Block 3015,0,25,PedestrianZones,2301280.591254988,144946.36773339112,10.0,0,0,0.0,0.0,0.0,0.0,,14574.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3015.0,410470006003015.0,1000000US410470006003015,0.0,1.0,80103.0,0.0,143.0,44.9431893,-123.0184887,0.0,1.0,8010403015,80082.0,0.0,0.0,51368.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,156839.09,1584.87,1.0,,,104.0,80104.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,24.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6005269116043737,0.136,999999.0,2.447,0.092,4.76,9.972,7948.525,143.0,0.0,0.0,0.0 8921.0,8921,,Block 2016,0,25,PedestrianZones,2301510.545774644,145225.54502608403,10.0,0,0,0.0,0.0,0.0,0.0,,12072.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2016.0,410470006002016.0,1000000US410470006002016,0.0,1.0,80103.0,0.0,141.0,44.9457649,-123.0156864,0.0,1.0,8010202016,80082.0,0.0,0.0,51369.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,129914.71,1436.98,1.0,,,102.0,80102.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,29.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.982428748441153,0.0,999999.0,1.486,0.141,4.256,9.431,6986.696,141.0,0.0,0.0,0.0 -8922.0,8922,,Block 3006,0,25,PedestrianZones,2301427.743206879,145012.33147879227,10.0,0,0,0.0,0.0,0.0,0.0,,11129.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,33,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3006.0,410470006003006.0,1000000US410470006003006,0.0,0.19,80103.0,0.0,137.0,44.9438239,-123.016651,0.0,3.0,8010403006,80082.0,0.0,0.0,51370.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.63,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119771.81,1386.54,1.0,,,104.0,80104.0,1.0,50.0,62.0,0.0,12.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.74958005116205,0.0,999999.0,1.818,0.098,4.595,9.79,7429.612,137.0,0.0,0.0,0.0 -8923.0,8923,,Block 2028,0,25,PedestrianZones,2301468.627745389,145118.48473922914,10.0,0,0,0.0,0.0,0.0,0.0,,11755.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2028.0,410470006002028.0,1000000US410470006002028,0.0,0.81,80103.0,0.0,136.0,44.9447902,-123.0161751,0.0,1.0,8010202028,80082.0,0.0,0.0,51371.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126502.67,1432.69,1.0,,,102.0,80102.0,1.0,3.0,16.0,0.0,13.0,0.0,0.0,30.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.904099221761724,0.0,999999.0,1.671,0.101,4.296,9.356,7057.194,136.0,0.0,0.0,0.0 +8922.0,8922,,Block 3006,0,25,PedestrianZones,2301427.743206879,145012.33147879227,10.0,0,0,0.0,0.0,0.0,0.0,,11129.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3006.0,410470006003006.0,1000000US410470006003006,0.0,0.19,80103.0,0.0,137.0,44.9438239,-123.016651,0.0,3.0,8010403006,80082.0,0.0,0.0,51370.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.63,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119771.81,1386.54,1.0,,,104.0,80104.0,1.0,50.0,62.0,0.0,12.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.74958005116205,0.0,999999.0,1.818,0.098,4.595,9.79,7429.612,137.0,0.0,0.0,0.0 +8923.0,8923,,Block 2028,0,25,PedestrianZones,2301468.627745389,145118.48473922914,10.0,0,0,0.0,0.0,0.0,0.0,,11755.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2028.0,410470006002028.0,1000000US410470006002028,0.0,0.81,80103.0,0.0,136.0,44.9447902,-123.0161751,0.0,1.0,8010202028,80082.0,0.0,0.0,51371.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126502.67,1432.69,1.0,,,102.0,80102.0,1.0,3.0,16.0,0.0,13.0,0.0,0.0,30.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.904099221761724,0.0,999999.0,1.671,0.101,4.296,9.356,7057.194,136.0,0.0,0.0,0.0 8924.0,8924,,Block 2027,0,25,PedestrianZones,2301566.540558049,145084.56985774235,10.0,0,0,0.0,0.0,0.0,0.0,,11903.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2027.0,410470006002027.0,1000000US410470006002027,0.0,1.0,80103.0,0.0,140.0,44.9445126,-123.0149215,0.0,1.0,8010002027,80082.0,0.0,0.0,51372.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128101.61,1436.98,1.0,,,100.0,80100.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,30.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9408056942131555,0.062,999999.0,1.576,0.098,4.217,9.287,6952.501,140.0,0.0,0.0,0.0 8925.0,8925,,Block 3005,0,25,PedestrianZones,2301553.6306646606,144920.80627622665,10.0,0,0,0.0,0.0,0.0,0.0,,26528.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3005.0,410470006003005.0,1000000US410470006003005,0.0,1.0,80103.0,0.0,134.0,44.9430359,-123.0150205,0.0,1.0,8010503005,80082.0,0.0,0.0,51373.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,285489.53,2667.53,1.0,,,105.0,80105.0,1.0,0.0,27.0,0.0,27.0,0.0,0.0,53.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.553931914895142,0.131,999999.0,1.792,0.09,4.809,9.924,7498.429,134.0,0.0,0.0,0.0 8926.0,8926,,Block 3017,0,25,PedestrianZones,2301481.948912733,144866.23888801772,10.0,0,0,0.0,0.0,0.0,0.0,,13525.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3017.0,410470006003017.0,1000000US410470006003017,0.0,1.0,80103.0,0.0,141.0,44.942525,-123.0159068,0.0,1.0,8010503017,80082.0,0.0,0.0,51374.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,145562.58,1544.18,1.0,,,105.0,80105.0,1.0,0.0,16.0,0.0,16.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3416541131539206,0.131,999999.0,1.792,0.09,4.809,9.924,7498.429,141.0,0.0,0.0,0.0 8927.0,8927,,Block 2026,0,25,PedestrianZones,2301659.889051561,145055.3929598134,10.0,0,0,0.0,0.0,0.0,0.0,,9719.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2026.0,410470006002026.0,1000000US410470006002026,0.0,0.89,80103.0,0.0,138.0,44.9442762,-123.0137277,0.0,1.0,8010002026,80082.0,0.0,0.0,51375.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.07,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,104596.04,1316.64,1.0,,,100.0,80100.0,1.0,1.0,9.0,0.0,8.0,0.0,0.0,14.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.401192544650552,0.125,999999.0,1.177,0.043,4.341,9.587,6889.145,138.0,0.0,0.0,0.0 -8928.0,8928,,Block 3020,0,25,PedestrianZones,2301306.0699086976,144621.90830340775,10.0,0,0,0.0,0.0,0.0,0.0,,10852.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3020.0,410470006003020.0,1000000US410470006003020,0.0,0.67,80103.0,0.0,151.0,44.9402779,-123.0180379,0.0,1.0,8010403020,80082.0,0.0,0.0,51376.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.32,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116786.29,1790.58,1.0,,,104.0,80104.0,1.0,6.0,18.0,0.0,12.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.681041856915701,0.0,999999.0,6.244,0.098,4.989,9.997,10394.828,151.0,0.0,0.0,0.0 -8929.0,8929,,Block 6003,0,25,PedestrianZones,2301406.630183414,144394.11363687593,10.0,0,0,0.0,0.0,0.0,0.0,,26217.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6003.0,410470009006003.0,1000000US410470009006003,0.0,0.9,80103.0,0.0,155.0,44.9382571,-123.0166744,0.0,1.0,8010806003,80082.0,0.0,0.0,51377.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,282140.36,2544.54,1.0,,,108.0,80108.0,1.0,4.0,42.0,0.0,38.0,0.0,0.0,74.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.477045719340871,0.134,999999.0,4.403,0.15,4.91,10.152,9315.451,155.0,0.0,0.0,0.0 +8928.0,8928,,Block 3020,0,25,PedestrianZones,2301306.0699086976,144621.90830340775,10.0,0,0,0.0,0.0,0.0,0.0,,10852.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3020.0,410470006003020.0,1000000US410470006003020,0.0,0.67,80103.0,0.0,151.0,44.9402779,-123.0180379,0.0,1.0,8010403020,80082.0,0.0,0.0,51376.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.32,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116786.29,1790.58,1.0,,,104.0,80104.0,1.0,6.0,18.0,0.0,12.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.681041856915701,0.0,999999.0,6.244,0.098,4.989,9.997,10394.828,151.0,0.0,0.0,0.0 +8929.0,8929,,Block 6003,0,25,PedestrianZones,2301406.630183414,144394.11363687593,10.0,0,0,0.0,0.0,0.0,0.0,,26217.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6003.0,410470009006003.0,1000000US410470009006003,0.0,0.9,80103.0,0.0,155.0,44.9382571,-123.0166744,0.0,1.0,8010806003,80082.0,0.0,0.0,51377.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,282140.36,2544.54,1.0,,,108.0,80108.0,1.0,4.0,42.0,0.0,38.0,0.0,0.0,74.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.477045719340871,0.134,999999.0,4.403,0.15,4.91,10.152,9315.451,155.0,0.0,0.0,0.0 8930.0,8930,,Block 3022,0,25,PedestrianZones,2301500.6351860138,144642.82320198504,10.0,0,0,0.0,0.0,0.0,0.0,,26477.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3022.0,410470006003022.0,1000000US410470006003022,0.0,1.0,80103.0,0.0,137.0,44.9405206,-123.015582,0.0,1.0,8010503022,80082.0,0.0,0.0,51378.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,284936.7,2379.49,1.0,,,105.0,80105.0,1.0,0.0,66.0,0.0,66.0,0.0,0.0,147.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.541240860425728,0.242,999999.0,1.928,0.096,4.422,8.525,6690.194,137.0,0.0,0.0,0.0 -8931.0,8931,,Block 6004,0,25,PedestrianZones,2301319.559995856,144432.3172685548,10.0,0,0,0.0,0.0,0.0,0.0,,19657.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6004.0,410470009006004.0,1000000US410470009006004,0.0,0.75,80103.0,0.0,161.0,44.9385764,-123.0177922,0.0,1.0,8010806004,80082.0,0.0,0.0,51379.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,211548.11,1981.74,1.0,,,108.0,80108.0,1.0,7.0,28.0,0.0,21.0,0.0,0.0,34.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.856472151769752,0.083,999999.0,5.526,0.11,4.964,9.752,9777.743,161.0,0.0,0.0,0.0 +8931.0,8931,,Block 6004,0,25,PedestrianZones,2301319.559995856,144432.3172685548,10.0,0,0,0.0,0.0,0.0,0.0,,19657.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6004.0,410470009006004.0,1000000US410470009006004,0.0,0.75,80103.0,0.0,161.0,44.9385764,-123.0177922,0.0,1.0,8010806004,80082.0,0.0,0.0,51379.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,211548.11,1981.74,1.0,,,108.0,80108.0,1.0,7.0,28.0,0.0,21.0,0.0,0.0,34.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.856472151769752,0.083,999999.0,5.526,0.11,4.964,9.752,9777.743,161.0,0.0,0.0,0.0 8932.0,8932,,Block 1013,0,25,PedestrianZones,2301767.190816049,145878.53150268344,10.0,0,0,0.0,0.0,0.0,0.0,,9212.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1013.0,410470006001013.0,1000000US410470006001013,0.0,1.0,80103.0,0.0,117.0,44.9517104,-123.012693,0.0,1.0,8009801013,80082.0,0.0,0.0,51380.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,99140.03,1293.44,1.0,,,98.0,80098.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,22.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.2759398750322024,0.0,999999.0,3.666,0.268,3.318,7.629,7228.714,117.0,0.0,0.0,0.0 8933.0,8933,,Block 1012,0,25,PedestrianZones,2301798.7464904254,145956.31369964126,10.0,0,0,0.0,0.0,0.0,0.0,,8868.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1012.0,410470006001012.0,1000000US410470006001012,0.0,1.0,80103.0,0.0,109.0,44.9524188,-123.0123239,0.0,1.0,8009801012,80082.0,0.0,0.0,51381.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,95430.66,1237.22,1.0,,,98.0,80098.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,24.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1907846492381844,0.048,999999.0,3.975,0.262,2.885,6.595,6764.9,109.0,0.0,0.0,0.0 -8934.0,8934,,Block 1020,0,25,PedestrianZones,2301848.967538353,145802.21008478475,10.0,0,0,0.0,0.0,0.0,0.0,,17361.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,13,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1020.0,410470006001020.0,1000000US410470006001020,0.0,0.67,80103.0,0.0,115.0,44.9510467,-123.0116271,0.0,1.0,8009901020,80082.0,0.0,0.0,51382.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,186833.35,1786.12,1.0,,,99.0,80099.0,1.0,10.0,30.0,0.0,20.0,0.0,0.0,48.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.289099681489033,0.051,999999.0,3.514,0.26,3.364,7.776,7225.625,115.0,0.0,0.0,0.0 +8934.0,8934,,Block 1020,0,25,PedestrianZones,2301848.967538353,145802.21008478475,10.0,0,0,0.0,0.0,0.0,0.0,,17361.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1020.0,410470006001020.0,1000000US410470006001020,0.0,0.67,80103.0,0.0,115.0,44.9510467,-123.0116271,0.0,1.0,8009901020,80082.0,0.0,0.0,51382.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,186833.35,1786.12,1.0,,,99.0,80099.0,1.0,10.0,30.0,0.0,20.0,0.0,0.0,48.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.289099681489033,0.051,999999.0,3.514,0.26,3.364,7.776,7225.625,115.0,0.0,0.0,0.0 8935.0,8935,,Block 1021,0,25,PedestrianZones,2301948.2632297347,145762.57880927372,10.0,0,0,0.0,0.0,0.0,0.0,,17740.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1021.0,410470006001021.0,1000000US410470006001021,0.0,0.93,80103.0,0.0,110.0,44.950718,-123.0103537,0.0,1.0,8009901021,80082.0,0.0,0.0,51383.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,190911.61,1794.35,1.0,,,99.0,80099.0,1.0,1.0,15.0,0.0,14.0,0.0,0.0,30.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.382723651765978,0.127,999999.0,3.253,0.146,3.264,7.552,6915.478,110.0,0.0,0.0,0.0 8936.0,8936,,Block 1029,0,25,PedestrianZones,2301888.6679932345,145620.12069840677,10.0,0,0,0.0,0.0,0.0,0.0,,14933.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1029.0,410470006001029.0,1000000US410470006001029,0.0,1.0,80103.0,0.0,119.0,44.94942,-123.0110525,0.0,1.0,8009901029,80082.0,0.0,0.0,51384.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160703.73,1657.84,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.689246674550843,0.0,999999.0,1.911,0.226,4.074,9.341,7201.562,119.0,0.0,0.0,0.0 8937.0,8937,,Block 2002,0,25,PedestrianZones,2301841.02308546,145479.6070030883,10.0,0,0,0.0,0.0,0.0,0.0,,15633.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2002.0,410470006002002.0,1000000US410470006002002,0.0,1.0,80103.0,0.0,131.0,44.9481427,-123.0116006,0.0,1.0,8010002002,80082.0,0.0,0.0,51385.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,168238.59,1706.02,1.0,,,100.0,80100.0,1.0,0.0,16.0,0.0,16.0,0.0,0.0,42.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.862223255928187,0.064,999999.0,1.985,0.172,4.076,9.308,7227.372,131.0,0.0,0.0,0.0 -8938.0,8938,,Block 2020,0,25,PedestrianZones,2301703.068371009,145153.51312533751,10.0,0,0,0.0,0.0,0.0,0.0,,10502.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2020.0,410470006002020.0,1000000US410470006002020,0.0,0.6999999999999998,80103.0,0.0,144.0,44.9451709,-123.0132195,0.0,1.0,8010002020,80082.0,0.0,0.0,51386.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.23,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113020.88,1341.4,1.0,,,100.0,80100.0,1.0,3.0,10.0,0.0,7.0,0.0,0.0,13.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5946000219964853,0.124,999999.0,0.797,0.043,4.457,9.965,6887.952,144.0,0.0,0.0,0.0 +8938.0,8938,,Block 2020,0,25,PedestrianZones,2301703.068371009,145153.51312533751,10.0,0,0,0.0,0.0,0.0,0.0,,10502.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2020.0,410470006002020.0,1000000US410470006002020,0.0,0.6999999999999998,80103.0,0.0,144.0,44.9451709,-123.0132195,0.0,1.0,8010002020,80082.0,0.0,0.0,51386.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.23,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,113020.88,1341.4,1.0,,,100.0,80100.0,1.0,3.0,10.0,0.0,7.0,0.0,0.0,13.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5946000219964853,0.124,999999.0,0.797,0.043,4.457,9.965,6887.952,144.0,0.0,0.0,0.0 8939.0,8939,,Block 1034,0,25,PedestrianZones,2301994.7932231114,145603.99056389267,10.0,0,0,0.0,0.0,0.0,0.0,,9826.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1034.0,410470006001034.0,1000000US410470006001034,0.0,0.92,80103.0,0.0,119.0,44.9493045,-123.0097018,0.0,1.0,8009901034,80082.0,0.0,0.0,51387.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105740.61,1361.98,1.0,,,99.0,80099.0,1.0,1.0,12.0,0.0,11.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4274682022480247,0.064,999999.0,1.427,0.115,3.86,9.143,6764.897,119.0,0.0,0.0,0.0 -8940.0,8940,,Block 1033,0,25,PedestrianZones,2302186.035059848,145666.7422919869,10.0,0,0,0.0,0.0,0.0,0.0,,36834.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1033.0,410470006001033.0,1000000US410470006001033,0.0,0.93,80103.0,0.0,112.0,44.9499224,-123.0073041,0.0,1.0,8009901033,80082.0,0.0,0.0,51388.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,396404.73,2632.44,1.0,,,99.0,80099.0,1.0,3.0,44.0,0.0,41.0,0.0,0.0,91.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.100192406668326,0.242,999999.0,1.792,0.139,3.753,8.903,6844.999,112.0,0.0,0.0,0.0 -8942.0,8942,,Block 2021,0,25,PedestrianZones,2301799.4508145694,145111.3601935049,10.0,0,0,0.0,0.0,0.0,0.0,,11934.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2021.0,410470006002021.0,1000000US410470006002021,0.0,0.6099999999999999,80103.0,0.0,149.0,44.9448187,-123.0119821,0.0,1.0,8010002021,80082.0,0.0,0.0,51390.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.25,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128433.52,1426.74,1.0,,,100.0,80100.0,1.0,7.0,18.0,0.0,11.0,0.0,0.0,28.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9484253664746176,0.191,999999.0,1.898,0.043,3.634,8.197,6460.849,149.0,0.0,0.0,0.0 +8940.0,8940,,Block 1033,0,25,PedestrianZones,2302186.035059848,145666.7422919869,10.0,0,0,0.0,0.0,0.0,0.0,,36834.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1033.0,410470006001033.0,1000000US410470006001033,0.0,0.93,80103.0,0.0,112.0,44.9499224,-123.0073041,0.0,1.0,8009901033,80082.0,0.0,0.0,51388.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,396404.73,2632.44,1.0,,,99.0,80099.0,1.0,3.0,44.0,0.0,41.0,0.0,0.0,91.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.100192406668326,0.242,999999.0,1.792,0.139,3.753,8.903,6844.999,112.0,0.0,0.0,0.0 +8942.0,8942,,Block 2021,0,25,PedestrianZones,2301799.4508145694,145111.3601935049,10.0,0,0,0.0,0.0,0.0,0.0,,11934.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2021.0,410470006002021.0,1000000US410470006002021,0.0,0.6099999999999999,80103.0,0.0,149.0,44.9448187,-123.0119821,0.0,1.0,8010002021,80082.0,0.0,0.0,51390.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.25,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128433.52,1426.74,1.0,,,100.0,80100.0,1.0,7.0,18.0,0.0,11.0,0.0,0.0,28.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9484253664746176,0.191,999999.0,1.898,0.043,3.634,8.197,6460.849,149.0,0.0,0.0,0.0 8943.0,8943,,Block 3010,0,25,PedestrianZones,2301667.924090652,144659.86766590443,10.0,0,0,0.0,0.0,0.0,0.0,,22098.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3010.0,410470006003010.0,1000000US410470006003010,0.0,0.97,80103.0,0.0,126.0,44.9407208,-123.01347,0.0,1.0,8010503010,80082.0,0.0,0.0,51391.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,237816.44,2141.69,1.0,,,105.0,80105.0,1.0,1.0,34.0,0.0,33.0,0.0,0.0,70.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.459509510303078,0.014,999999.0,3.057,0.092,3.999,8.33,7287.65,126.0,0.0,0.0,0.0 8944.0,8944,,Block 2025,0,25,PedestrianZones,2301759.185554276,145018.87290796568,10.0,0,0,0.0,0.0,0.0,0.0,,11766.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2025.0,410470006002025.0,1000000US410470006002025,0.0,1.0,80103.0,0.0,144.0,44.9439755,-123.0124557,0.0,1.0,8010002025,80082.0,0.0,0.0,51392.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126625.58,1410.53,1.0,,,100.0,80100.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,25.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.9069208084389286,0.145,999999.0,2.655,0.087,3.944,8.635,7225.2,144.0,0.0,0.0,0.0 8945.0,8945,,Block 2024,0,25,PedestrianZones,2301870.512345809,144995.7962539475,10.0,0,0,0.0,0.0,0.0,0.0,,4764.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2024.0,410470006002024.0,1000000US410470006002024,0.0,1.0,80103.0,0.0,141.0,44.9437991,-123.0110366,0.0,1.0,8010002024,80082.0,0.0,0.0,51393.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,51271.36,995.56,1.0,,,100.0,80100.0,1.0,0.0,4.0,0.0,4.0,0.0,0.0,8.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.1770275056091408,0.224,999999.0,2.124,0.041,4.052,9.005,7122.914,141.0,0.0,0.0,0.0 8946.0,8946,,Block 6001,0,25,PedestrianZones,2301628.2641333286,144461.95561287555,10.0,0,0,0.0,0.0,0.0,0.0,,8449.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6001.0,410470009006001.0,1000000US410470009006001,0.0,0.95,80103.0,0.0,138.0,44.9389295,-123.0138943,0.0,1.0,8010806001,80082.0,0.0,0.0,51394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,90928.89,1456.08,1.0,,,108.0,80108.0,1.0,1.0,19.0,0.0,18.0,0.0,0.0,31.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0874381885534103,0.065,999999.0,4.084,0.12,4.555,9.45,8661.444,138.0,0.0,0.0,0.0 -8948.0,8948,,Block 3000,0,25,PedestrianZones,2302000.776215378,144811.90461657473,10.0,0,0,9.47,0.0,0.0,0.0,,101060.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,126,0,1,0,0,0,0,0,0,219,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3000.0,410470006003000.0,1000000US410470006003000,3.38,0.16,80103.0,0.0,127.0,44.9421814,-123.0093143,0.0,3.0,8010703000,80082.0,0.0,0.0,51396.0,0.0,9.47,0.0,2.0,CEMETERY,DEVELOPED,,0,0.0,2.53,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1087584.35,5035.37,1.0,,,107.0,80107.0,1.0,172.0,204.0,0.0,32.0,0.0,0.0,68.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.967479085191336,0.161,999999.0,11.247,0.026,2.32,5.632,10802.504,127.0,0.0,0.0,0.0 +8948.0,8948,,Block 3000,0,25,PedestrianZones,2302000.776215378,144811.90461657473,10.0,0,0,9.47,0.0,0.0,0.0,,101060.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,236,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3000.0,410470006003000.0,1000000US410470006003000,3.38,0.16,80103.0,0.0,127.0,44.9421814,-123.0093143,0.0,3.0,8010703000,80082.0,0.0,0.0,51396.0,0.0,9.47,0.0,2.0,CEMETERY,DEVELOPED,,0,0.0,2.53,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1087584.35,5035.37,1.0,,,107.0,80107.0,1.0,172.0,204.0,0.0,32.0,0.0,0.0,68.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.967479085191336,0.161,999999.0,11.247,0.026,2.32,5.632,10802.504,127.0,0.0,0.0,0.0 8950.0,8950,,Block 5001,0,25,PedestrianZones,2301908.8796972446,144494.931963039,10.0,0,0,0.0,0.0,0.0,0.0,,10033.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5001.0,410470009005001.0,1000000US410470009005001,0.0,1.0,80103.0,0.0,119.0,44.9393046,-123.0103534,0.0,1.0,8010905001,80082.0,0.0,0.0,51398.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,107970.23,1369.38,1.0,,,109.0,80109.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,33.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.478653263626077,0.082,999999.0,8.334,0.073,3.281,7.292,10000.752,119.0,0.0,0.0,0.0 -8951.0,8951,,Block 3001,0,25,PedestrianZones,2302057.658069172,144616.24597795945,10.0,0,0,0.0,0.0,0.0,0.0,,17255.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,1,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,4,158,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3001.0,410470006003001.0,1000000US410470006003001,0.0,0.11,80103.0,0.0,117.0,44.9404374,-123.0085169,0.0,3.0,8010703001,80082.0,0.0,0.0,51399.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.27,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,185698.0,1804.97,1.0,,,107.0,80107.0,1.0,137.0,154.0,0.0,17.0,0.0,0.0,26.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.263035607776538,0.009,999999.0,8.593,0.07,2.444,5.661,9122.353,117.0,0.0,0.0,0.0 -8952.0,8952,,Block 5000,0,25,PedestrianZones,2301985.1486567007,144488.7641334673,10.0,0,0,0.0,0.0,0.0,0.0,,12727.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5000.0,410470009005000.0,1000000US410470009005000,0.0,0.89,80103.0,0.0,121.0,44.9392704,-123.0093851,0.0,1.0,8010905000,80082.0,0.0,0.0,51400.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,136968.15,1606.47,1.0,,,109.0,80109.0,1.0,2.0,19.0,0.0,17.0,0.0,0.0,47.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.14435323164397,0.046,999999.0,8.654,0.072,2.835,6.372,9617.045,121.0,0.0,0.0,0.0 +8951.0,8951,,Block 3001,0,25,PedestrianZones,2302057.658069172,144616.24597795945,10.0,0,0,0.0,0.0,0.0,0.0,,17255.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,113,0,0,0,0,0,0,0,6,155,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3001.0,410470006003001.0,1000000US410470006003001,0.0,0.11,80103.0,0.0,117.0,44.9404374,-123.0085169,0.0,3.0,8010703001,80082.0,0.0,0.0,51399.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.27,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,185698.0,1804.97,1.0,,,107.0,80107.0,1.0,137.0,154.0,0.0,17.0,0.0,0.0,26.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.263035607776538,0.009,999999.0,8.593,0.07,2.444,5.661,9122.353,117.0,0.0,0.0,0.0 +8952.0,8952,,Block 5000,0,25,PedestrianZones,2301985.1486567007,144488.7641334673,10.0,0,0,0.0,0.0,0.0,0.0,,12727.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5000.0,410470009005000.0,1000000US410470009005000,0.0,0.89,80103.0,0.0,121.0,44.9392704,-123.0093851,0.0,1.0,8010905000,80082.0,0.0,0.0,51400.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,136968.15,1606.47,1.0,,,109.0,80109.0,1.0,2.0,19.0,0.0,17.0,0.0,0.0,47.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.14435323164397,0.046,999999.0,8.654,0.072,2.835,6.372,9617.045,121.0,0.0,0.0,0.0 8953.0,8953,,Block 6022,0,25,PedestrianZones,2301341.013002397,144183.01766143442,10.0,0,0,0.0,0.0,0.0,0.0,,12671.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6022.0,410470009006022.0,1000000US410470009006022,0.0,1.0,80103.0,0.0,168.0,44.93634,-123.0174221,0.0,1.0,8010806022,80082.0,0.0,0.0,51401.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.7099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,136364.81,1505.42,1.0,,,108.0,80108.0,1.0,0.0,17.0,0.0,17.0,0.0,0.0,24.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.130502450071876,0.201,999999.0,4.059,0.13,5.374,10.971,9619.604,168.0,0.0,0.0,0.0 8954.0,8954,,Block 6021,0,25,PedestrianZones,2301438.043198064,144159.95181731615,10.0,0,0,0.0,0.0,0.0,0.0,,12161.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6021.0,410470009006021.0,1000000US410470009006021,0.0,1.0,80103.0,0.0,150.0,44.9361597,-123.0161842,0.0,1.0,8010806021,80082.0,0.0,0.0,51402.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6999999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,130869.37,1665.1,1.0,,,108.0,80108.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,20.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.004344613176135,0.25,999999.0,4.083,0.167,4.552,9.341,8591.493,150.0,0.0,0.0,0.0 -8955.0,8955,,Block 6026,0,25,PedestrianZones,2301464.7666096305,144264.80920855288,10.0,0,0,0.0,0.0,0.0,0.0,,12843.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6026.0,410470009006026.0,1000000US410470009006026,0.0,0.94,80103.0,0.0,155.0,44.9371103,-123.0158871,0.0,1.0,8010806026,80082.0,0.0,0.0,51403.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.7399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,138217.56,1498.25,1.0,,,108.0,80108.0,1.0,1.0,18.0,0.0,17.0,0.0,0.0,23.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.173035805751721,0.198,999999.0,4.379,0.149,4.834,9.966,9180.858,155.0,0.0,0.0,0.0 +8955.0,8955,,Block 6026,0,25,PedestrianZones,2301464.7666096305,144264.80920855288,10.0,0,0,0.0,0.0,0.0,0.0,,12843.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6026.0,410470009006026.0,1000000US410470009006026,0.0,0.94,80103.0,0.0,155.0,44.9371103,-123.0158871,0.0,1.0,8010806026,80082.0,0.0,0.0,51403.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.7399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,138217.56,1498.25,1.0,,,108.0,80108.0,1.0,1.0,18.0,0.0,17.0,0.0,0.0,23.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.173035805751721,0.198,999999.0,4.379,0.149,4.834,9.966,9180.858,155.0,0.0,0.0,0.0 8956.0,8956,,Block 6018,0,25,PedestrianZones,2301569.7320053875,144260.77942380577,10.0,0,0,2.31,0.0,0.0,0.0,,15724.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6018.0,410470009006018.0,1000000US410470009006018,0.87,1.0,80103.0,0.0,141.0,44.9371035,-123.0145563,0.0,1.0,8010806018,80082.0,0.0,0.0,51404.0,0.0,2.31,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,169222.63,2023.81,1.0,,,108.0,80108.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,2.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.884813534045241,0.198,999999.0,4.379,0.149,4.834,9.966,9180.858,141.0,0.0,0.0,0.0 8957.0,8957,,Block 5005,0,25,PedestrianZones,2301812.1348747457,144179.1570024504,10.0,0,0,0.0,0.0,0.0,0.0,,12222.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5005.0,410470009005005.0,1000000US410470009005005,0.0,1.0,80103.0,0.0,121.0,44.9364372,-123.0114543,0.0,1.0,8010905005,80082.0,0.0,0.0,51405.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,131536.12,1789.61,1.0,,,109.0,80109.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,36.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0196511545764104,0.26,999999.0,9.635,0.111,3.242,7.699,11093.994,121.0,0.0,0.0,0.0 8960.0,8960,,Block 6020,0,25,PedestrianZones,2301526.560370876,144116.77988298333,10.0,0,0,0.0,0.0,0.0,0.0,,10833.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6020.0,410470009006020.0,1000000US410470009006020,0.0,1.0,80103.0,0.0,140.0,44.9357961,-123.0150462,0.0,1.0,8010806020,80082.0,0.0,0.0,51408.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116577.7,1383.26,1.0,,,108.0,80108.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,8.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.676253404058616,0.228,999999.0,3.57,0.155,4.607,9.769,8537.241,140.0,0.0,0.0,0.0 8983.0,8983,,Block 1003,0,25,PedestrianZones,2301982.365431644,146207.1042718836,10.0,0,0,0.0,0.0,0.0,0.0,,39805.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1003.0,410470006001003.0,1000000US410470006001003,0.0,1.0,80103.0,0.0,86.0,44.954726,-123.0100967,0.0,1.0,8009901003,80377.0,0.0,0.0,51687.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,428372.87,3012.04,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.83407925025076,0.041,999999.0,2.319,0.155,1.578,3.655,3823.512,86.0,0.0,0.0,0.0 -9000.0,9000,,Block 3006,0,25,PedestrianZones,2300045.198463208,146524.32619364344,10.0,0,0,0.0,0.0,0.0,0.0,,10656.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3006.0,410470003003006.0,1000000US410470003003006,0.0,0.2899999999999999,80103.0,0.0,104.0,44.9570352,-123.0347626,0.0,3.0,8008603006,80417.0,0.0,0.0,51793.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.0,0.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114678.25,1341.06,1.0,,,86.0,80086.0,1.0,10.0,14.0,0.0,4.0,0.0,0.0,5.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6326481093709595,0.278,999999.0,4.592,0.082,2.238,4.008,5504.29,104.0,0.0,0.0,0.0 -9014.0,9014,,Block 1015,0,25,PedestrianZones,2300317.082378676,145788.11025964134,10.0,0,0,0.0,0.0,0.0,0.0,,10480.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1015.0,410470002001015.0,1000000US410470002001015,0.0,0.12,80103.0,0.0,150.0,44.9504897,-123.0310259,0.0,3.0,8008401015,80068.0,0.0,0.0,51811.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.83,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112782.54,1349.83,1.0,,,84.0,80084.0,2.0,23.0,26.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5891286676221124,0.062,999999.0,8.0,0.255,3.742,7.552,9953.276,150.0,0.0,0.0,0.0 +9000.0,9000,,Block 3006,0,25,PedestrianZones,2300045.198463208,146524.32619364344,10.0,0,0,0.0,0.0,0.0,0.0,,10656.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3006.0,410470003003006.0,1000000US410470003003006,0.0,0.2899999999999999,80103.0,0.0,104.0,44.9570352,-123.0347626,0.0,3.0,8008603006,80417.0,0.0,0.0,51793.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.0,0.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114678.25,1341.06,1.0,,,86.0,80086.0,1.0,10.0,14.0,0.0,4.0,0.0,0.0,5.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6326481093709595,0.278,999999.0,4.592,0.082,2.238,4.008,5504.29,104.0,0.0,0.0,0.0 +9014.0,9014,,Block 1015,0,25,PedestrianZones,2300317.082378676,145788.11025964134,10.0,0,0,0.0,0.0,0.0,0.0,,10480.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1015.0,410470002001015.0,1000000US410470002001015,0.0,0.12,80103.0,0.0,150.0,44.9504897,-123.0310259,0.0,3.0,8008401015,80068.0,0.0,0.0,51811.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.83,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112782.54,1349.83,1.0,,,84.0,80084.0,2.0,23.0,26.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.5891286676221124,0.062,999999.0,8.0,0.255,3.742,7.552,9953.276,150.0,0.0,0.0,0.0 9015.0,9015,,Block 1018,0,25,PedestrianZones,2300602.8267854,145677.0223465486,10.0,0,0,0.0,0.0,0.0,0.0,,10413.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1018.0,410470002001018.0,1000000US410470002001018,0.0,1.0,80103.0,0.0,161.0,44.949571,-123.0273624,0.0,1.0,8008401018,80082.0,0.0,0.0,51812.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112063.7,1339.45,1.0,,,84.0,80084.0,2.0,0.0,3.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.572626317257169,0.121,999999.0,11.473,0.203,3.94,8.001,12463.476,161.0,0.0,0.0,0.0 -9016.0,9016,,Block 3026,0,25,PedestrianZones,2300279.8353308463,144609.17851005305,10.0,0,0,0.0,0.0,0.0,0.0,,10286.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,60,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3026.0,410470002003026.0,1000000US410470002003026,0.0,0.0,80103.0,0.0,132.0,44.9398749,-123.0310298,0.0,3.0,8008003026,80068.0,0.0,0.0,51813.0,0.0,2.07,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,1.0,110696.14,1386.35,1.0,,,80.0,80080.0,2.0,61.0,61.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.541231467202401,0.041,999999.0,61.335,0.729,2.218,3.675,41606.585,132.0,5.155981674319196,0.500735815585647,0.8495038996104892 -9017.0,9017,,Block 2020,0,25,PedestrianZones,2300880.470561197,145674.84890821332,10.0,0,0,0.0,0.0,0.0,0.0,,13668.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,10,0,0,0,30,0,17,0,0,0,0,0,2,62,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2020.0,410470003002020.0,1000000US410470003002020,0.0,0.09,80103.0,0.0,156.0,44.9496296,-123.0238447,0.0,3.0,8009502020,80082.0,0.0,0.0,51814.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.89,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147089.22,1539.32,1.0,,,95.0,80095.0,1.0,53.0,58.0,0.0,5.0,0.0,0.0,9.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3767008209516054,0.042,999999.0,9.483,0.257,4.11,8.872,11746.881,156.0,0.0,0.0,0.0 +9016.0,9016,,Block 3026,0,25,PedestrianZones,2300279.8353308463,144609.17851005305,10.0,0,0,0.0,0.0,0.0,0.0,,10286.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0,0,123,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3026.0,410470002003026.0,1000000US410470002003026,0.0,0.0,80103.0,0.0,132.0,44.9398749,-123.0310298,0.0,3.0,8008003026,80068.0,0.0,0.0,51813.0,0.0,2.07,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.0,0.0,0.0,0.0,1.0,110696.14,1386.35,1.0,,,80.0,80080.0,2.0,61.0,61.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.541231467202401,0.041,999999.0,61.335,0.729,2.218,3.675,41606.585,132.0,0.2064491295332315,3.4111641949851137,0.9115032326472292 +9017.0,9017,,Block 2020,0,25,PedestrianZones,2300880.470561197,145674.84890821332,10.0,0,0,0.0,0.0,0.0,0.0,,13668.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,11,0,0,0,19,0,10,0,0,0,0,0,1,53,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2020.0,410470003002020.0,1000000US410470003002020,0.0,0.09,80103.0,0.0,156.0,44.9496296,-123.0238447,0.0,3.0,8009502020,80082.0,0.0,0.0,51814.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.89,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147089.22,1539.32,1.0,,,95.0,80095.0,1.0,53.0,58.0,0.0,5.0,0.0,0.0,9.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3767008209516054,0.042,999999.0,9.483,0.257,4.11,8.872,11746.881,156.0,0.0,0.0,0.0 9037.0,9037,,Block 6010,0,25,PedestrianZones,2301269.360286008,144319.27448509724,10.0,0,0,0.0,0.0,0.0,0.0,,7331.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6010.0,410470009006010.0,1000000US410470009006010,0.0,1.0,80103.0,0.0,163.0,44.9375455,-123.0183833,0.0,1.0,8010806010,80082.0,0.0,0.0,51853.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,78892.14999999998,1190.12,1.0,,,108.0,80108.0,1.0,0.0,9.0,0.0,9.0,0.0,0.0,13.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.8111130301810123,0.211,999999.0,4.686,0.126,5.253,10.52,9731.41,163.0,0.0,0.0,0.0 -9047.0,9047,,Block 3009,0,25,PedestrianZones,2300636.933658272,145435.2300492307,10.0,0,0,0.0,0.0,0.0,0.0,,14930.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3009.0,410470002003009.0,1000000US410470002003009,0.0,0.7299999999999999,80103.0,0.0,147.0,44.9474057,-123.0268346,0.0,1.0,8008303009,80082.0,0.0,0.0,51866.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.32,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160678.82,1617.91,1.0,,,83.0,80083.0,2.0,7.0,26.0,0.0,19.0,0.0,0.0,22.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.688674960125781,0.04,999999.0,31.891,0.089,4.015,8.136,25616.952,147.0,0.0,0.0,0.0 +9047.0,9047,,Block 3009,0,25,PedestrianZones,2300636.933658272,145435.2300492307,10.0,0,0,0.0,0.0,0.0,0.0,,14930.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3009.0,410470002003009.0,1000000US410470002003009,0.0,0.7299999999999999,80103.0,0.0,147.0,44.9474057,-123.0268346,0.0,1.0,8008303009,80082.0,0.0,0.0,51866.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.32,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,160678.82,1617.91,1.0,,,83.0,80083.0,2.0,7.0,26.0,0.0,19.0,0.0,0.0,22.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.688674960125781,0.04,999999.0,31.891,0.089,4.015,8.136,25616.952,147.0,0.0,0.0,0.0 9048.0,9048,,Block 3003,0,25,PedestrianZones,2300714.710089424,145632.63058161535,10.0,0,0,0.0,0.0,0.0,0.0,,13939.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3003.0,410470002003003.0,1000000US410470002003003,0.0,1.0,80103.0,0.0,158.0,44.9492032,-123.0259276,0.0,1.0,8008303003,80082.0,0.0,0.0,51867.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,150009.77,1563.33,1.0,,,83.0,80083.0,2.0,0.0,14.0,0.0,14.0,0.0,0.0,17.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4437474947303715,0.0,999999.0,21.844,0.124,4.098,8.597,19482.547,158.0,0.0,0.0,0.0 -9049.0,9049,,Block 3029,0,25,PedestrianZones,2300584.083134851,144522.76279182892,10.0,0,0,0.0,0.0,0.0,0.0,,9904.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,98,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3029.0,410470002003029.0,1000000US410470002003029,0.0,0.4099999999999999,80103.0,0.0,127.0,44.9391833,-123.0271423,0.0,3.0,8008003029,80068.0,0.0,0.0,51868.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.91,0.64,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,106589.89,1444.66,1.0,,,80.0,80080.0,2.0,68.0,116.0,0.0,48.0,0.0,0.0,75.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4469649593588145,0.123,999999.0,44.552,0.677,3.562,6.682,32789.736,127.0,5.107116596901446,0.49639672873087,0.8429233010580242 +9049.0,9049,,Block 3029,0,25,PedestrianZones,2300584.083134851,144522.76279182892,10.0,0,0,0.0,0.0,0.0,0.0,,9904.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3029.0,410470002003029.0,1000000US410470002003029,0.0,0.4099999999999999,80103.0,0.0,127.0,44.9391833,-123.0271423,0.0,3.0,8008003029,80068.0,0.0,0.0,51868.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.91,0.64,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,106589.89,1444.66,1.0,,,80.0,80080.0,2.0,68.0,116.0,0.0,48.0,0.0,0.0,75.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4469649593588145,0.123,999999.0,44.552,0.677,3.562,6.682,32789.736,127.0,0.205918972729257,3.378258533730385,0.9054351075899552 9056.0,9056,,Block 3013,0,25,PedestrianZones,2300481.636223129,146857.9765228516,10.0,0,0,0.0,0.0,0.0,0.0,,13255.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3013.0,410470003003013.0,1000000US410470003003013,0.0,1.0,80103.0,0.0,144.0,44.9601594,-123.029366,0.0,1.0,8008803013,80417.0,0.0,0.0,51875.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,142644.81,1511.57,1.0,,,88.0,80088.0,1.0,0.0,15.0,0.0,15.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.27467135101856,0.083,999999.0,3.987,0.127,2.59,5.143,5842.853,144.0,0.0,0.0,0.0 -9057.0,9057,,Block 3044,0,25,PedestrianZones,2300069.4557052767,145992.9589355593,10.0,0,0,0.0,0.0,0.0,0.0,,10221.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,26,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3044.0,410470003003044.0,1000000US410470003003044,0.0,0.4199999999999999,80103.0,0.0,128.0,44.9522625,-123.034244,0.0,3.0,8008903044,80068.0,0.0,0.0,51876.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.22,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,109997.1,1326.4,1.0,,,89.0,80089.0,2.0,11.0,19.0,0.0,8.0,0.0,0.0,9.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.525183666360361,0.123,999999.0,8.941,0.501,2.905,6.122,9640.063,128.0,0.0,0.0,0.0 +9057.0,9057,,Block 3044,0,25,PedestrianZones,2300069.4557052767,145992.9589355593,10.0,0,0,0.0,0.0,0.0,0.0,,10221.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,10,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3044.0,410470003003044.0,1000000US410470003003044,0.0,0.4199999999999999,80103.0,0.0,128.0,44.9522625,-123.034244,0.0,3.0,8008903044,80068.0,0.0,0.0,51876.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.22,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,109997.1,1326.4,1.0,,,89.0,80089.0,2.0,11.0,19.0,0.0,8.0,0.0,0.0,9.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.525183666360361,0.123,999999.0,8.941,0.501,2.905,6.122,9640.063,128.0,0.0,0.0,0.0 9058.0,9058,,Block 4031,0,25,PedestrianZones,2300559.713945745,146127.2166461121,10.0,0,0,0.0,0.0,0.0,0.0,,9822.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4031.0,410470003004031.0,1000000US410470003004031,0.0,1.0,80103.0,0.0,171.0,44.9536083,-123.028087,0.0,1.0,8009104031,80082.0,0.0,0.0,51877.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,105702.35,1300.86,1.0,,,91.0,80091.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,27.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.426589846137522,0.186,999999.0,5.583,0.144,4.403,9.589,9709.992,171.0,0.0,0.0,0.0 -9059.0,9059,,Block 4007,0,25,PedestrianZones,2300780.884862791,146905.47756542175,10.0,0,0,0.0,0.0,0.0,0.0,,12366.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4007.0,410470003004007.0,1000000US410470003004007,0.0,0.8299999999999998,80103.0,0.0,149.0,44.9606709,-123.0255936,0.0,1.0,8009304007,80417.0,0.0,0.0,51878.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.12,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133080.04,1477.3,1.0,,,93.0,80093.0,1.0,2.0,12.0,0.0,10.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0550947256173924,0.089,999999.0,4.051,1.481,3.143,7.481,7380.431,149.0,0.0,0.0,0.0 -9069.0,9069,,Block 3003,0,25,PedestrianZones,2300167.243469696,147011.57940584983,10.0,0,0,0.0,0.0,0.0,0.0,,19396.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,3,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3003.0,410470003003003.0,1000000US410470003003003,0.0,0.0,80103.0,0.0,96.0,44.9614524,-123.0334101,0.0,3.0,8008603003,80417.0,0.0,0.0,51889.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,208739.05,1886.84,1.0,,,86.0,80086.0,1.0,16.0,16.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.791984904195317,0.348,999999.0,4.6,0.136,1.845,3.317,5066.688,96.0,0.0,0.0,0.0 -9074.0,9074,,Block 2011,0,25,PedestrianZones,2301445.4611149887,145370.28444244782,10.0,0,0,0.0,0.0,0.0,0.0,,12753.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2011.0,410470006002011.0,1000000US410470006002011,0.0,0.94,80103.0,0.0,135.0,44.9470486,-123.0165679,0.0,1.0,8010202011,80082.0,0.0,0.0,51900.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,137244.48,1474.6,1.0,,,102.0,80102.0,1.0,1.0,16.0,0.0,15.0,0.0,0.0,39.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.1506968873387318,0.132,999999.0,2.038,0.141,4.276,9.46,7358.968,135.0,0.0,0.0,0.0 -9075.0,9075,,Block 3021,0,25,PedestrianZones,2301379.591361945,144608.59871320127,10.0,0,0,0.0,0.0,0.0,0.0,,19029.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,22,3,0,0,0,0,0,0,0,0,0,2,0,17,50,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3021.0,410470006003021.0,1000000US410470006003021,0.0,0.23,80103.0,0.0,147.0,44.9401788,-123.0171015,0.0,3.0,8010503021,80082.0,0.0,0.0,51901.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.15,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,204791.03,1927.91,1.0,,,105.0,80105.0,1.0,43.0,56.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.701351028819628,0.06,999999.0,4.493,0.118,5.034,9.988,9267.936,147.0,0.0,0.0,0.0 +9059.0,9059,,Block 4007,0,25,PedestrianZones,2300780.884862791,146905.47756542175,10.0,0,0,0.0,0.0,0.0,0.0,,12366.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4007.0,410470003004007.0,1000000US410470003004007,0.0,0.8299999999999998,80103.0,0.0,149.0,44.9606709,-123.0255936,0.0,1.0,8009304007,80417.0,0.0,0.0,51878.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.12,0.5899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133080.04,1477.3,1.0,,,93.0,80093.0,1.0,2.0,12.0,0.0,10.0,0.0,0.0,17.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0550947256173924,0.089,999999.0,4.051,1.481,3.143,7.481,7380.431,149.0,0.0,0.0,0.0 +9069.0,9069,,Block 3003,0,25,PedestrianZones,2300167.243469696,147011.57940584983,10.0,0,0,0.0,0.0,0.0,0.0,,19396.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,12,0,0,0,0,0,0,1,0,0,0,0,0,3,14,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3003.0,410470003003003.0,1000000US410470003003003,0.0,0.0,80103.0,0.0,96.0,44.9614524,-123.0334101,0.0,3.0,8008603003,80417.0,0.0,0.0,51889.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,208739.05,1886.84,1.0,,,86.0,80086.0,1.0,16.0,16.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.791984904195317,0.348,999999.0,4.6,0.136,1.845,3.317,5066.688,96.0,0.0,0.0,0.0 +9074.0,9074,,Block 2011,0,25,PedestrianZones,2301445.4611149887,145370.28444244782,10.0,0,0,0.0,0.0,0.0,0.0,,12753.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2011.0,410470006002011.0,1000000US410470006002011,0.0,0.94,80103.0,0.0,135.0,44.9470486,-123.0165679,0.0,1.0,8010202011,80082.0,0.0,0.0,51900.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,137244.48,1474.6,1.0,,,102.0,80102.0,1.0,1.0,16.0,0.0,15.0,0.0,0.0,39.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.1506968873387318,0.132,999999.0,2.038,0.141,4.276,9.46,7358.968,135.0,0.0,0.0,0.0 +9075.0,9075,,Block 3021,0,25,PedestrianZones,2301379.591361945,144608.59871320127,10.0,0,0,0.0,0.0,0.0,0.0,,19029.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,36,3,0,0,0,0,0,0,0,0,0,2,0,11,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3021.0,410470006003021.0,1000000US410470006003021,0.0,0.23,80103.0,0.0,147.0,44.9401788,-123.0171015,0.0,3.0,8010503021,80082.0,0.0,0.0,51901.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.15,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,204791.03,1927.91,1.0,,,105.0,80105.0,1.0,43.0,56.0,0.0,13.0,0.0,0.0,20.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.701351028819628,0.06,999999.0,4.493,0.118,5.034,9.988,9267.936,147.0,0.0,0.0,0.0 9076.0,9076,,Block 3002,0,25,PedestrianZones,2301802.26292332,144871.81950775234,10.0,0,0,0.0,0.0,0.0,0.0,,7353.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3002.0,410470006003002.0,1000000US410470006003002,0.0,1.0,80103.0,0.0,136.0,44.9426649,-123.0118521,0.0,1.0,8010503002,80082.0,0.0,0.0,51902.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,79126.77,1555.55,1.0,,,105.0,80105.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,23.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.81649912099422,0.196,999999.0,2.39,0.087,4.183,9.22,7430.223,136.0,0.0,0.0,0.0 -9077.0,9077,,Block 6023,0,25,PedestrianZones,2301311.201579403,144066.13285903484,10.0,0,0,0.0,0.0,0.0,0.0,,17710.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6023.0,410470009006023.0,1000000US410470009006023,0.0,0.31,80103.0,0.0,168.0,44.9352802,-123.0177535,0.0,3.0,8010806023,80082.0,0.0,0.0,51903.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.48,0.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,190595.3,1730.75,1.0,,,108.0,80108.0,1.0,37.0,54.0,0.0,17.0,0.0,0.0,25.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.375462245325819,0.216,999999.0,4.994,0.161,4.575,8.731,8783.878,168.0,0.0,0.0,0.0 +9077.0,9077,,Block 6023,0,25,PedestrianZones,2301311.201579403,144066.13285903484,10.0,0,0,0.0,0.0,0.0,0.0,,17710.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6023.0,410470009006023.0,1000000US410470009006023,0.0,0.31,80103.0,0.0,168.0,44.9352802,-123.0177535,0.0,3.0,8010806023,80082.0,0.0,0.0,51903.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.48,0.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,190595.3,1730.75,1.0,,,108.0,80108.0,1.0,37.0,54.0,0.0,17.0,0.0,0.0,25.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.375462245325819,0.216,999999.0,4.994,0.161,4.575,8.731,8783.878,168.0,0.0,0.0,0.0 9235.0,9235,,Block 2020,0,25,PedestrianZones,2299305.1553022047,145084.885184749,10.0,0,0,0.06,0.0,0.0,0.0,,0.0,28975.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2020.0,410470002002020.0,1000000US410470002002020,0.0,0.0,80103.0,0.0,103.0,44.9438784,-123.0435634,0.0,1.0,8006102020,80068.0,0.0,0.0,52148.0,0.0,0.06,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,311830.81,2394.2,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.1586440521978405,0.544,999999.0,4.024,0.184,0.214,0.306,2771.006,103.0,0.0,0.0,0.0 9236.0,9236,,Block 2038,0,25,PedestrianZones,2299499.8754686727,144983.73109799283,10.0,0,0,0.0,0.0,0.0,0.0,,4991.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2038.0,410470002002038.0,1000000US410470002002038,0.0,0.0,80103.0,0.0,108.0,44.9430237,-123.0410568,0.0,1.0,8006102038,80068.0,0.0,0.0,52149.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,53715.73,1853.87,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.2331423876611805,0.32,999999.0,23.467,2.848,1.466,2.418,16566.462,108.0,0.0,0.0,0.0 -9237.0,9237,,Block 2047,0,25,PedestrianZones,2299578.449187359,144608.779927346,10.0,0,0,0.0,0.0,0.0,0.0,,16126.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,20,93,29,204,0,82,94,0,914,1,0,1,24,0,36,951,38,31,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2047.0,410470002002047.0,1000000US410470002002047,0.0,0.0,80103.0,0.0,98.0,44.9396733,-123.0399123,0.0,3.0,8006702047,80068.0,0.0,0.0,52150.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,2.93,416.0,0.0,0.0,0.0,1.0,173540.12,1672.26,1.0,,,67.0,80067.0,2.0,625.0,625.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.9839294061893966,0.106,999999.0,33.456,1.761,2.519,4.049,24003.461,98.0,5.240201710854547,0.5071917210370402,0.8573036745039511 -9238.0,9238,,Block 1026,0,25,PedestrianZones,2299933.45441278,145538.77022144044,10.0,0,0,0.0,0.0,0.0,0.0,,36967.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,287,0,0,10,0,0,0,1,0,20,401,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1026.0,410470002001026.0,1000000US410470002001026,0.0,0.0,80103.0,0.0,121.0,44.9481387,-123.0357862,0.0,3.0,8008501026,80068.0,0.0,0.0,52151.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,1.0,397831.25,3069.87,1.0,,,85.0,80085.0,2.0,302.0,302.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.13294083555258,0.267,999999.0,14.094,2.015,1.377,2.71,10755.075,121.0,0.0,0.0,0.0 -9239.0,9239,,Block 1023,0,25,PedestrianZones,2300088.7223087293,145673.07716233443,10.0,0,0,0.0,0.0,0.0,0.0,,60761.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,18,6,0,0,0,0,53,0,0,0,7,0,29,183,0,18,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1023.0,410470002001023.0,1000000US410470002001023,0.0,0.19,80103.0,0.0,138.0,44.9493906,-123.0338729,0.0,3.0,8008501023,80068.0,0.0,0.0,52152.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.55,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,653899.41,3624.58,1.0,,,85.0,80085.0,2.0,141.0,175.0,0.0,34.0,0.0,0.0,91.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.011451679915886,0.107,999999.0,10.568,0.584,3.056,6.485,10914.386,138.0,0.0,0.0,0.0 -9240.0,9240,,Block 1028,0,25,PedestrianZones,2300110.496844094,145527.84826520743,10.0,0,0,0.0,0.0,0.0,0.0,,7922.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,17,0,0,0,0,16,0,2,0,0,0,0,0,0,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1028.0,410470002001028.0,1000000US410470002001028,0.0,0.0,80103.0,0.0,138.0,44.9480905,-123.0335393,0.0,3.0,8008501028,80068.0,0.0,0.0,52153.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,85256.47999999998,1679.08,1.0,,,85.0,80085.0,2.0,35.0,35.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.957217810171767,0.04,999999.0,16.475,1.134,3.035,6.299,14575.404,138.0,0.0,0.0,0.0 -9241.0,9241,,Block 2025,0,25,PedestrianZones,2299942.8150037327,145162.51660353338,10.0,0,0,0.0,0.0,0.0,0.0,,17575.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2025.0,410470002002025.0,1000000US410470002002025,0.0,0.0,80103.0,0.0,128.0,44.944757,-123.035518,0.0,1.0,8006502025,80068.0,0.0,0.0,52154.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,15.0,1.59,1117.0,0.0,0.0,0.0,1.0,189140.47,1740.49,1.0,,,65.0,80065.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.342063989947293,0.056,999999.0,25.824,4.1,2.325,3.832,18979.48,128.0,5.205581097759759,0.5045816158811833,0.8523621615325014 -9242.0,9242,,Block 2026,0,25,PedestrianZones,2300070.3009949927,145113.96515162263,10.0,0,0,0.0,0.0,0.0,0.0,,18114.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,46,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2026.0,410470002002026.0,1000000US410470002002026,0.0,0.07,80103.0,0.0,137.0,44.9443563,-123.033884,0.0,3.0,8006502026,80068.0,0.0,0.0,52155.0,0.0,0.0,0.0,0.0,,,,0,0.0,8.83,0.67,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,194941.1,1765.64,1.0,,,65.0,80065.0,2.0,53.0,57.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.475227928886288,0.123,999999.0,40.167,2.636,2.223,3.997,28265.514,137.0,5.192215244044379,0.5035888004006791,0.8513296081345348 -9243.0,9243,,Block 2050,0,25,PedestrianZones,2299832.66523125,144511.64856727808,10.0,0,0,0.0,0.0,0.0,0.0,,15633.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,9,75,0,4,0,12,5,0,17,0,0,0,0,0,0,180,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2050.0,410470002002050.0,1000000US410470002002050,0.0,0.01,80103.0,0.0,117.0,44.9388714,-123.0366542,0.0,3.0,8006702050,80068.0,0.0,0.0,52156.0,0.0,0.0,0.0,0.0,,,,0,0.0,96.5,0.5,0.0,1.5,18.0,0.0,71.0,0.0,0.0,0.0,1.0,168241.69,1646.55,1.0,,,67.0,80067.0,2.0,193.0,194.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.862294436055076,0.127,999999.0,36.193,2.441,1.829,2.876,25004.185,117.0,5.215617319888309,0.5052814037544325,0.8550767135792182 -9244.0,9244,,Block 3041,0,25,PedestrianZones,2299536.081176075,144500.3266624253,10.0,0,0,0.0,0.0,0.0,0.0,,16499.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,119,0,0,0,0,0,0,0,0,0,0,0,0,0,88,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3041.0,410470002003041.0,1000000US410470002003041,0.0,0.0,80103.0,0.0,92.0,44.9386858,-123.0404057,0.0,3.0,8007203041,80068.0,0.0,0.0,52157.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,7.0,0.0,0.0,0.0,1.0,177562.24,1691.44,1.0,,,72.0,80072.0,2.0,134.0,134.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.076264500375428,0.107,999999.0,35.581,2.837,2.054,3.285,24873.987,92.0,5.236760291913928,0.5068438689807777,0.8569519455634607 -9258.0,9258,,Block 1026,0,25,PedestrianZones,2301203.996551137,146189.4019040201,10.0,0,0,0.0,0.0,0.0,0.0,,9410.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1026.0,410470003001026.0,1000000US410470003001026,0.0,0.81,80103.0,0.0,157.0,44.9543488,-123.01995,0.0,1.0,8009701026,80082.0,0.0,0.0,52195.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,101263.27,1316.89,1.0,,,97.0,80097.0,1.0,7.0,36.0,0.0,29.0,0.0,0.0,82.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.32468267616954,0.112,999999.0,4.54,0.184,4.037,9.224,8808.968,157.0,0.0,0.0,0.0 -9267.0,9267,,Block 1015,0,25,PedestrianZones,2301477.8910863204,145995.9157308395,10.0,0,0,0.0,0.0,0.0,0.0,,14854.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,3,0,0,0,0,0,10,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1015.0,410470006001015.0,1000000US410470006001015,0.0,0.4799999999999999,80103.0,0.0,137.0,44.9526852,-123.016404,0.0,3.0,8009801015,80082.0,0.0,0.0,52204.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,159855.79,1702.43,1.0,,,98.0,80098.0,1.0,16.0,31.0,0.0,15.0,0.0,0.0,32.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.66978068125405,0.268,999999.0,4.704,0.26,3.707,8.547,8480.937,137.0,0.0,0.0,0.0 -9271.0,9271,,Block 3047,0,25,PedestrianZones,2299678.9478758606,144124.39430891917,10.0,0,0,2.44,0.0,0.0,0.0,,64115.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,2,0,7,0,1352,0,0,0,0,0,0,5,0,0,1277,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3047.0,410470002003047.0,1000000US410470002003047,8.81,0.02,80135.0,0.0,102.0,44.9353447,-123.0384468,0.0,3.0,8007503047,80068.0,0.0,0.0,52216.0,0.0,2.44,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,52.33,0.8299999999999998,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,1.0,689992.06,3963.77,1.0,,,75.0,80075.0,2.0,942.0,957.0,0.0,15.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.840024058854732,0.141,999999.0,69.708,1.367,2.043,3.229,46679.696,102.0,0.0,0.0,0.0 -9276.0,9276,,Block 3060,0,25,PedestrianZones,2299763.266650693,143829.87148026656,10.0,0,0,0.96,0.0,0.0,0.0,,50457.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3060.0,410470002003060.0,1000000US410470002003060,0.0,0.0,80135.0,0.0,101.0,44.9327193,-123.0372618,0.0,1.0,8007603060,80068.0,0.0,0.0,52221.0,0.0,0.96,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,1.0,543004.88,3284.43,1.0,,,76.0,80076.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.465665753605077,0.167,999999.0,39.698,0.394,1.251,1.982,26675.041,101.0,0.0,0.0,0.0 -9277.0,9277,,Block 3036,0,25,PedestrianZones,2300044.705841668,144304.80374753423,10.0,0,0,0.0,0.0,0.0,0.0,,14868.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3036.0,410470002003036.0,1000000US410470002003036,0.0,0.0,80103.0,0.0,134.0,44.9370708,-123.0338866,0.0,3.0,8007903036,80068.0,0.0,0.0,52222.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,160005.84,1610.79,1.0,,,79.0,80079.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6732253887735538,0.184,999999.0,10.194,0.0,0.463,0.537,6868.315,134.0,5.175822487315277,0.5018588823519939,0.8502626117562595 -9285.0,9285,,Block 3038,0,25,PedestrianZones,2299898.5935417083,144315.0491544947,10.0,0,0,0.0,0.0,0.0,0.0,,14607.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,48,0,109,0,0,58,1,0,0,269,0,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3038.0,410470002003038.0,1000000US410470002003038,0.0,0.0,80103.0,0.0,128.0,44.9371217,-123.0357411,0.0,3.0,8007903038,80068.0,0.0,0.0,52236.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,157191.63,2425.34,1.0,,,79.0,80079.0,2.0,190.0,190.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6086201148630215,0.0,999999.0,48.0,1.794,2.345,3.689,33081.088,128.0,0.0,0.0,0.0 -9286.0,9286,,Block 2024,0,25,PedestrianZones,2299815.995369958,145210.17467686426,10.0,0,0,0.0,0.0,0.0,0.0,,17956.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,57,0,0,98,0,0,0.0,242.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2024.0,410470002002024.0,1000000US410470002002024,0.0,0.0,80103.0,0.0,121.0,44.9451499,-123.0371432,0.0,3.0,8006402024,80068.0,0.0,0.0,52238.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,1.0,193243.76,1758.72,1.0,,,64.0,80064.0,2.0,69.0,69.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.436262272204774,0.048,999999.0,34.092,2.405,2.078,3.818,24262.438,121.0,0.0,0.0,0.0 +9237.0,9237,,Block 2047,0,25,PedestrianZones,2299578.449187359,144608.779927346,10.0,0,0,0.0,0.0,0.0,0.0,,16126.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,11,72,28,104,0,95,41,0,520,0,0,0,15,0,44,929,99,52,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2047.0,410470002002047.0,1000000US410470002002047,0.0,0.0,80103.0,0.0,98.0,44.9396733,-123.0399123,0.0,3.0,8006702047,80068.0,0.0,0.0,52150.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,2.93,416.0,0.0,0.0,0.0,1.0,173540.12,1672.26,1.0,,,67.0,80067.0,2.0,625.0,625.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.9839294061893966,0.106,999999.0,33.456,1.761,2.519,4.049,24003.461,98.0,0.2028828452087509,3.4503158668851968,0.9135780101375852 +9238.0,9238,,Block 1026,0,25,PedestrianZones,2299933.45441278,145538.77022144044,10.0,0,0,0.0,0.0,0.0,0.0,,36967.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,349,0,0,10,0,0,0,1,0,39,237,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1026.0,410470002001026.0,1000000US410470002001026,0.0,0.0,80103.0,0.0,121.0,44.9481387,-123.0357862,0.0,3.0,8008501026,80068.0,0.0,0.0,52151.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.0,0.0,0.0,0.0,1.0,397831.25,3069.87,1.0,,,85.0,80085.0,2.0,302.0,302.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.13294083555258,0.267,999999.0,14.094,2.015,1.377,2.71,10755.075,121.0,0.0,0.0,0.0 +9239.0,9239,,Block 1023,0,25,PedestrianZones,2300088.7223087293,145673.07716233443,10.0,0,0,0.0,0.0,0.0,0.0,,60761.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,16,8,0,0,0,0,82,0,0,0,9,0,26,194,0,17,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1023.0,410470002001023.0,1000000US410470002001023,0.0,0.19,80103.0,0.0,138.0,44.9493906,-123.0338729,0.0,3.0,8008501023,80068.0,0.0,0.0,52152.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.55,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,653899.41,3624.58,1.0,,,85.0,80085.0,2.0,141.0,175.0,0.0,34.0,0.0,0.0,91.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.011451679915886,0.107,999999.0,10.568,0.584,3.056,6.485,10914.386,138.0,0.0,0.0,0.0 +9240.0,9240,,Block 1028,0,25,PedestrianZones,2300110.496844094,145527.84826520743,10.0,0,0,0.0,0.0,0.0,0.0,,7922.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,13,0,0,0,0,9,0,5,0,0,0,0,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1028.0,410470002001028.0,1000000US410470002001028,0.0,0.0,80103.0,0.0,138.0,44.9480905,-123.0335393,0.0,3.0,8008501028,80068.0,0.0,0.0,52153.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,85256.47999999998,1679.08,1.0,,,85.0,80085.0,2.0,35.0,35.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.957217810171767,0.04,999999.0,16.475,1.134,3.035,6.299,14575.404,138.0,0.0,0.0,0.0 +9241.0,9241,,Block 2025,0,25,PedestrianZones,2299942.8150037327,145162.51660353338,10.0,0,0,0.0,0.0,0.0,0.0,,17575.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2025.0,410470002002025.0,1000000US410470002002025,0.0,0.0,80103.0,0.0,128.0,44.944757,-123.035518,0.0,1.0,8006502025,80068.0,0.0,0.0,52154.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,15.0,1.59,1117.0,0.0,0.0,0.0,1.0,189140.47,1740.49,1.0,,,65.0,80065.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.342063989947293,0.056,999999.0,25.824,4.1,2.325,3.832,18979.48,128.0,0.2038684750465361,3.442207732520073,0.912884261147903 +9242.0,9242,,Block 2026,0,25,PedestrianZones,2300070.3009949927,145113.96515162263,10.0,0,0,0.0,0.0,0.0,0.0,,18114.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,28,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2026.0,410470002002026.0,1000000US410470002002026,0.0,0.07,80103.0,0.0,137.0,44.9443563,-123.033884,0.0,3.0,8006502026,80068.0,0.0,0.0,52155.0,0.0,0.0,0.0,0.0,,,,0,0.0,8.83,0.67,0.0,0.0,0.0,0.0,47.0,0.0,0.0,0.0,1.0,194941.1,1765.64,1.0,,,65.0,80065.0,2.0,53.0,57.0,0.0,4.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.475227928886288,0.123,999999.0,40.167,2.636,2.223,3.997,28265.514,137.0,0.2045563383434192,3.4365930813015773,0.912881642712332 +9243.0,9243,,Block 2050,0,25,PedestrianZones,2299832.66523125,144511.64856727808,10.0,0,0,0.0,0.0,0.0,0.0,,15633.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,6,42,0,6,0,17,7,0,18,0,0,0,0,0,0,154,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2050.0,410470002002050.0,1000000US410470002002050,0.0,0.01,80103.0,0.0,117.0,44.9388714,-123.0366542,0.0,3.0,8006702050,80068.0,0.0,0.0,52156.0,0.0,0.0,0.0,0.0,,,,0,0.0,96.5,0.5,0.0,1.5,18.0,0.0,71.0,0.0,0.0,0.0,1.0,168241.69,1646.55,1.0,,,67.0,80067.0,2.0,193.0,194.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.862294436055076,0.127,999999.0,36.193,2.441,1.829,2.876,25004.185,117.0,0.20398916271854,3.438955553539973,0.9131521189645252 +9244.0,9244,,Block 3041,0,25,PedestrianZones,2299536.081176075,144500.3266624253,10.0,0,0,0.0,0.0,0.0,0.0,,16499.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3041.0,410470002003041.0,1000000US410470002003041,0.0,0.0,80103.0,0.0,92.0,44.9386858,-123.0404057,0.0,3.0,8007203041,80068.0,0.0,0.0,52157.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,7.0,0.0,0.0,0.0,1.0,177562.24,1691.44,1.0,,,72.0,80072.0,2.0,134.0,134.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.076264500375428,0.107,999999.0,35.581,2.837,2.054,3.285,24873.987,92.0,0.2026221866915225,3.444490908159214,0.912266244950934 +9258.0,9258,,Block 1026,0,25,PedestrianZones,2301203.996551137,146189.4019040201,10.0,0,0,0.0,0.0,0.0,0.0,,9410.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,9,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1026.0,410470003001026.0,1000000US410470003001026,0.0,0.81,80103.0,0.0,157.0,44.9543488,-123.01995,0.0,1.0,8009701026,80082.0,0.0,0.0,52195.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,101263.27,1316.89,1.0,,,97.0,80097.0,1.0,7.0,36.0,0.0,29.0,0.0,0.0,82.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.32468267616954,0.112,999999.0,4.54,0.184,4.037,9.224,8808.968,157.0,0.0,0.0,0.0 +9267.0,9267,,Block 1015,0,25,PedestrianZones,2301477.8910863204,145995.9157308395,10.0,0,0,0.0,0.0,0.0,0.0,,14854.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,3,0,0,0,0,0,7,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1015.0,410470006001015.0,1000000US410470006001015,0.0,0.4799999999999999,80103.0,0.0,137.0,44.9526852,-123.016404,0.0,3.0,8009801015,80082.0,0.0,0.0,52204.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,159855.79,1702.43,1.0,,,98.0,80098.0,1.0,16.0,31.0,0.0,15.0,0.0,0.0,32.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.66978068125405,0.268,999999.0,4.704,0.26,3.707,8.547,8480.937,137.0,0.0,0.0,0.0 +9271.0,9271,,Block 3047,0,25,PedestrianZones,2299678.9478758606,144124.39430891917,10.0,0,0,2.44,0.0,0.0,0.0,,64115.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,1,0,6,0,1385,0,0,0,0,0,0,5,0,0,691,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3047.0,410470002003047.0,1000000US410470002003047,8.81,0.02,80135.0,0.0,102.0,44.9353447,-123.0384468,0.0,3.0,8007503047,80068.0,0.0,0.0,52216.0,0.0,2.44,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,52.33,0.8299999999999998,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,1.0,689992.06,3963.77,1.0,,,75.0,80075.0,2.0,942.0,957.0,0.0,15.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.840024058854732,0.141,999999.0,69.708,1.367,2.043,3.229,46679.696,102.0,0.0,0.0,0.0 +9276.0,9276,,Block 3060,0,25,PedestrianZones,2299763.266650693,143829.87148026656,10.0,0,0,0.96,0.0,0.0,0.0,,50457.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3060.0,410470002003060.0,1000000US410470002003060,0.0,0.0,80135.0,0.0,101.0,44.9327193,-123.0372618,0.0,1.0,8007603060,80068.0,0.0,0.0,52221.0,0.0,0.96,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.0,0.0,0.0,0.0,1.0,543004.88,3284.43,1.0,,,76.0,80076.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.465665753605077,0.167,999999.0,39.698,0.394,1.251,1.982,26675.041,101.0,0.2035755926875561,3.430336985424824,0.911427691110462 +9277.0,9277,,Block 3036,0,25,PedestrianZones,2300044.705841668,144304.80374753423,10.0,0,0,0.0,0.0,0.0,0.0,,14868.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3036.0,410470002003036.0,1000000US410470002003036,0.0,0.0,80103.0,0.0,134.0,44.9370708,-123.0338866,0.0,3.0,8007903036,80068.0,0.0,0.0,52222.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,160005.84,1610.79,1.0,,,79.0,80079.0,2.0,3.0,3.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6732253887735538,0.184,999999.0,10.194,0.0,0.463,0.537,6868.315,134.0,0.2039719325842968,3.409631050688896,0.9080229560706714 +9285.0,9285,,Block 3038,0,25,PedestrianZones,2299898.5935417083,144315.0491544947,10.0,0,0,0.0,0.0,0.0,0.0,,14607.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,84,0,108,0,0,68,1,0,0,313,0,1,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3038.0,410470002003038.0,1000000US410470002003038,0.0,0.0,80103.0,0.0,128.0,44.9371217,-123.0357411,0.0,3.0,8007903038,80068.0,0.0,0.0,52236.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,157191.63,2425.34,1.0,,,79.0,80079.0,2.0,190.0,190.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.6086201148630215,0.0,999999.0,48.0,1.794,2.345,3.689,33081.088,128.0,0.2031476827543136,3.4176696300907903,0.9082205511036644 +9286.0,9286,,Block 2024,0,25,PedestrianZones,2299815.995369958,145210.17467686426,10.0,0,0,0.0,0.0,0.0,0.0,,17956.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,59,0,0,102,0,0,0.0,242.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2024.0,410470002002024.0,1000000US410470002002024,0.0,0.0,80103.0,0.0,121.0,44.9451499,-123.0371432,0.0,3.0,8006402024,80068.0,0.0,0.0,52238.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.0,0.0,0.0,0.0,1.0,193243.76,1758.72,1.0,,,64.0,80064.0,2.0,69.0,69.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.436262272204774,0.048,999999.0,34.092,2.405,2.078,3.818,24262.438,121.0,0.2032550270125775,3.446284977337124,0.9127295628705454 9288.0,9288,,Block 1002,0,25,PedestrianZones,2302177.2182824262,145936.2977168148,10.0,0,0,0.0,0.0,0.0,0.0,,27697.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1002.0,410470006001002.0,1000000US410470006001002,0.0,0.88,80103.0,0.0,90.0,44.9523446,-123.0075218,0.0,1.0,8009901002,80377.0,0.0,0.0,52242.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.06,0.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,298064.35,2910.52,1.0,,,99.0,80099.0,1.0,4.0,32.0,0.0,28.0,0.0,0.0,64.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.842609987076379,0.195,999999.0,3.432,0.136,2.785,6.434,6313.815,90.0,0.0,0.0,0.0 9299.0,9299,,Block 1014,0,25,PedestrianZones,2301639.280826336,145931.72808177772,10.0,0,0,0.0,0.0,0.0,0.0,,13735.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1014.0,410470006001014.0,1000000US410470006001014,0.0,0.95,80103.0,0.0,121.0,44.9521531,-123.0143343,0.0,1.0,8009801014,80082.0,0.0,0.0,52262.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147809.69,1641.04,1.0,,,98.0,80098.0,1.0,1.0,21.0,0.0,20.0,0.0,0.0,48.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.39324067627652,0.122,999999.0,4.322,0.146,3.481,8.055,7921.317,121.0,0.0,0.0,0.0 -9361.0,9361,,Block 3050,0,25,PedestrianZones,2299318.3092068303,143952.14360748677,10.0,0,0,0.0,0.0,0.0,0.0,,15540.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,116,56,16,0,9,96,0,224,9,0,0,0,0,53,436,6,14,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3050.0,410470002003050.0,1000000US410470002003050,0.0,0.03,80135.0,0.0,79.0,44.9336933,-123.042945,0.0,3.0,8007103050,80068.0,0.0,0.0,52337.0,0.0,0.0,0.0,0.0,,,,0,0.0,33.6,0.87,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,167234.68,1633.63,1.0,,,71.0,80071.0,2.0,504.0,517.0,0.0,13.0,0.0,0.0,15.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.8391766554105615,0.037,999999.0,32.571,0.447,2.255,4.338,23621.843,79.0,0.0,0.0,0.0 -9363.0,9363,,Block 3049,0,25,PedestrianZones,2299450.087377436,143907.12042055893,10.0,0,0,0.0,0.0,0.0,0.0,,14194.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3049.0,410470002003049.0,1000000US410470002003049,0.0,0.57,80135.0,0.0,85.0,44.9333256,-123.0412584,0.0,2.0,8007403049,80068.0,0.0,0.0,52339.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.63,0.8399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152749.15,1550.09,1.0,,,74.0,80074.0,2.0,12.0,28.0,0.0,16.0,0.0,0.0,19.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.506634877532228,0.118,999999.0,34.405,0.399,2.083,3.859,24489.155,85.0,0.0,0.0,0.0 -9376.0,9376,,Block 3048,0,25,PedestrianZones,2299574.546831437,143856.39414132255,10.0,0,0,0.0,0.0,0.0,0.0,,14731.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3048.0,410470002003048.0,1000000US410470002003048,0.0,0.7199999999999999,80135.0,0.0,93.0,44.9329046,-123.0396621,0.0,1.0,8007403048,80068.0,0.0,0.0,52352.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.33,0.87,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,158527.57,1619.15,1.0,,,74.0,80074.0,2.0,5.0,18.0,0.0,13.0,0.0,0.0,15.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.639288927522809,0.137,999999.0,38.579,0.444,2.391,4.431,27526.741,93.0,0.0,0.0,0.0 -9379.0,9379,,Block 3039,0,25,PedestrianZones,2299788.9670022395,144401.7043202601,10.0,0,0,0.0,0.0,0.0,0.0,,16308.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,20,0,19,0,39,2,0,16,0,0,0,25,0,0,194,12,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3039.0,410470002003039.0,1000000US410470002003039,0.0,0.14,80103.0,0.0,113.0,44.9378702,-123.0371639,0.0,3.0,8007203039,80068.0,0.0,0.0,52355.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.61,0.75,0.0,1.5,18.0,0.0,50.0,0.0,0.0,0.0,1.0,175503.81,1677.9,1.0,,,72.0,80072.0,2.0,166.0,193.0,0.0,27.0,0.0,0.0,36.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.02900953473737,0.033,999999.0,60.761,1.271,2.026,3.178,40921.284,113.0,5.212634061790904,0.5049184399528399,0.8545521948908156 -9380.0,9380,,Block 3053,0,25,PedestrianZones,2299855.8554525934,144132.9986999479,10.0,0,0,0.4899999999999999,0.0,0.0,0.0,,43189.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,69,74,0,0,0,0,0,0,0,0,73,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3053.0,410470002003053.0,1000000US410470002003053,157.36,0.3499999999999999,80135.0,0.0,116.0,44.9354721,-123.0362099,0.0,3.0,8007903053,80068.0,0.0,0.0,52356.0,0.0,0.4899999999999999,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,1.1,0.5999999999999999,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,1.0,464791.91,3202.47,1.0,,,79.0,80079.0,2.0,113.0,175.0,0.0,62.0,0.0,0.0,103.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.670144707138132,0.117,999999.0,68.397,0.669,0.83,1.325,44621.746,116.0,0.0,0.0,0.0 -9381.0,9381,,Block 3052,0,25,PedestrianZones,2299863.897134002,143940.1493450763,10.0,0,0,2.8,0.0,0.0,0.0,,36028.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,198,0,0,0,0,0,0,0,0,162,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3052.0,410470002003052.0,1000000US410470002003052,0.0,0.0,80135.0,0.0,103.0,44.9337397,-123.0360314,0.0,3.0,8007603052,80068.0,0.0,0.0,52357.0,0.0,2.8,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,1.0,387729.76,2708.68,1.0,,,76.0,80076.0,2.0,134.0,134.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.901042550274276,0.067,999999.0,56.104,0.41,1.161,1.856,37094.441,103.0,0.0,0.0,0.0 -9382.0,9382,,Block 3037,0,25,PedestrianZones,2299989.9911030866,144240.88618443563,10.0,0,0,0.0,0.0,0.0,0.0,,22952.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3037.0,410470002003037.0,1000000US410470002003037,0.0,1.0,80103.0,0.0,125.0,44.9364804,-123.0345541,0.0,1.0,8007903037,80068.0,0.0,0.0,52358.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,247001.06,2877.55,1.0,,,79.0,80079.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.670359177259351,0.184,999999.0,10.194,0.0,0.463,0.537,6868.315,125.0,0.0,0.0,0.0 -9383.0,9383,,Block 3031,0,25,PedestrianZones,2300291.2242436446,144461.3825588729,10.0,0,0,0.0,0.0,0.0,0.0,,62942.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,334,0,0,1055,0,0,0,2,0,0,2496,0,15,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3031.0,410470002003031.0,1000000US410470002003031,0.97,0.0,80103.0,0.0,128.0,44.9385487,-123.0308269,0.0,3.0,8008003031,80068.0,0.0,0.0,52359.0,0.0,11.87,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,330.5,1.0,0.0,0.8,0.0,0.0,175.0,0.0,0.0,0.0,1.0,677368.08,3988.08,1.0,,,80.0,80080.0,2.0,661.0,663.0,0.0,2.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.550217733250468,0.061,999999.0,46.593,0.698,2.483,4.142,32470.105,128.0,5.157367966959003,0.5004474398630964,0.8482828029445856 -9384.0,9384,,Block 3032,0,25,PedestrianZones,2300086.917410169,144409.57180725492,10.0,0,0,0.0,0.0,0.0,0.0,,16397.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3032.0,410470002003032.0,1000000US410470002003032,0.0,0.0,80103.0,0.0,143.0,44.9380251,-123.0333937,0.0,3.0,8007903032,80068.0,0.0,0.0,52360.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,176458.62,1686.79,1.0,,,79.0,80079.0,2.0,11.0,11.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.050928892917254,0.158,999999.0,68.427,0.006,1.668,2.845,45614.308,143.0,5.1774578644998455,0.5021585972412225,0.8508882518503104 -9385.0,9385,,Block 2054,0,25,PedestrianZones,2300180.9331442146,144647.5795597357,10.0,0,0,0.0,0.0,0.0,0.0,,18459.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,25,0,5,6,0,5,0,0,0,5,0,0,30,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2054.0,410470002002054.0,1000000US410470002002054,0.0,0.0,80103.0,0.0,130.0,44.9401924,-123.0322976,0.0,3.0,8006802054,80068.0,0.0,0.0,52361.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.0,0.0,0.0,0.0,1.0,198651.0,1783.97,1.0,,,68.0,80068.0,2.0,57.0,57.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.560395427797621,0.044,999999.0,43.626,3.215,1.304,2.006,29204.772,130.0,5.17498189488555,0.5022773485821911,0.8513613126089828 -9386.0,9386,,Block 3061,0,25,PedestrianZones,2299938.3080386785,143707.7064613832,10.0,0,0,0.0,0.0,0.0,0.0,,10920.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,20,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3061.0,410470002003061.0,1000000US410470002003061,0.0,0.0,80135.0,0.0,118.0,44.9316699,-123.0349967,0.0,3.0,8007603061,80068.0,0.0,0.0,52362.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117522.06,1494.42,1.0,,,76.0,80076.0,2.0,41.0,41.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.697932937637546,0.096,999999.0,36.989,0.333,1.169,2.091,25011.317,118.0,0.0,0.0,0.0 -9387.0,9387,,Block 3054,0,25,PedestrianZones,2299978.4719024324,144091.37554035062,10.0,0,0,0.0,0.0,0.0,0.0,,11422.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3054.0,410470002003054.0,1000000US410470002003054,0.0,1.0,80103.0,0.0,117.0,44.9351323,-123.0346406,0.0,1.0,8007903054,80068.0,0.0,0.0,52363.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,122916.93,1426.83,1.0,,,79.0,80079.0,2.0,0.0,2.0,0.0,2.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8217819653664664,0.165,999999.0,50.785,0.0,0.671,1.003,33144.496,117.0,0.0,0.0,0.0 +9361.0,9361,,Block 3050,0,25,PedestrianZones,2299318.3092068303,143952.14360748677,10.0,0,0,0.0,0.0,0.0,0.0,,15540.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,124,72,17,0,3,71,0,239,6,0,0,1,0,36,837,8,16,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3050.0,410470002003050.0,1000000US410470002003050,0.0,0.03,80135.0,0.0,79.0,44.9336933,-123.042945,0.0,3.0,8007103050,80068.0,0.0,0.0,52337.0,0.0,0.0,0.0,0.0,,,,0,0.0,33.6,0.87,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,167234.68,1633.63,1.0,,,71.0,80071.0,2.0,504.0,517.0,0.0,13.0,0.0,0.0,15.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.8391766554105615,0.037,999999.0,32.571,0.447,2.255,4.338,23621.843,79.0,0.0,0.0,0.0 +9363.0,9363,,Block 3049,0,25,PedestrianZones,2299450.087377436,143907.12042055893,10.0,0,0,0.0,0.0,0.0,0.0,,14194.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3049.0,410470002003049.0,1000000US410470002003049,0.0,0.57,80135.0,0.0,85.0,44.9333256,-123.0412584,0.0,2.0,8007403049,80068.0,0.0,0.0,52339.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.63,0.8399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152749.15,1550.09,1.0,,,74.0,80074.0,2.0,12.0,28.0,0.0,16.0,0.0,0.0,19.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.506634877532228,0.118,999999.0,34.405,0.399,2.083,3.859,24489.155,85.0,0.0,0.0,0.0 +9376.0,9376,,Block 3048,0,25,PedestrianZones,2299574.546831437,143856.39414132255,10.0,0,0,0.0,0.0,0.0,0.0,,14731.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3048.0,410470002003048.0,1000000US410470002003048,0.0,0.7199999999999999,80135.0,0.0,93.0,44.9329046,-123.0396621,0.0,1.0,8007403048,80068.0,0.0,0.0,52352.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.33,0.87,0.0,0.0,0.0,0.0,5.0,0.0,0.0,0.0,1.0,158527.57,1619.15,1.0,,,74.0,80074.0,2.0,5.0,18.0,0.0,13.0,0.0,0.0,15.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.639288927522809,0.137,999999.0,38.579,0.444,2.391,4.431,27526.741,93.0,0.0,0.0,0.0 +9379.0,9379,,Block 3039,0,25,PedestrianZones,2299788.9670022395,144401.7043202601,10.0,0,0,0.0,0.0,0.0,0.0,,16308.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,10,0,28,0,64,1,0,13,0,0,0,24,0,0,177,16,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3039.0,410470002003039.0,1000000US410470002003039,0.0,0.14,80103.0,0.0,113.0,44.9378702,-123.0371639,0.0,3.0,8007203039,80068.0,0.0,0.0,52355.0,0.0,0.0,0.0,0.0,,,,0,0.0,4.61,0.75,0.0,1.5,18.0,0.0,50.0,0.0,0.0,0.0,1.0,175503.81,1677.9,1.0,,,72.0,80072.0,2.0,166.0,193.0,0.0,27.0,0.0,0.0,36.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.02900953473737,0.033,999999.0,60.761,1.271,2.026,3.178,40921.284,113.0,0.2034571667954957,3.432716999910365,0.9114016885698728 +9380.0,9380,,Block 3053,0,25,PedestrianZones,2299855.8554525934,144132.9986999479,10.0,0,0,0.4899999999999999,0.0,0.0,0.0,,43189.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,58,58,0,0,0,0,0,0,0,0,117,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3053.0,410470002003053.0,1000000US410470002003053,157.36,0.3499999999999999,80135.0,0.0,116.0,44.9354721,-123.0362099,0.0,3.0,8007903053,80068.0,0.0,0.0,52356.0,0.0,0.4899999999999999,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,1.1,0.5999999999999999,0.0,0.0,0.0,0.0,32.0,0.0,0.0,0.0,1.0,464791.91,3202.47,1.0,,,79.0,80079.0,2.0,113.0,175.0,0.0,62.0,0.0,0.0,103.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.670144707138132,0.117,999999.0,68.397,0.669,0.83,1.325,44621.746,116.0,0.2023680823391087,3.405508889556149,0.905063224373187 +9381.0,9381,,Block 3052,0,25,PedestrianZones,2299863.897134002,143940.1493450763,10.0,0,0,2.8,0.0,0.0,0.0,,36028.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,129,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3052.0,410470002003052.0,1000000US410470002003052,0.0,0.0,80135.0,0.0,103.0,44.9337397,-123.0360314,0.0,3.0,8007603052,80068.0,0.0,0.0,52357.0,0.0,2.8,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.0,0.0,1.0,387729.76,2708.68,1.0,,,76.0,80076.0,2.0,134.0,134.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,8.901042550274276,0.067,999999.0,56.104,0.41,1.161,1.856,37094.441,103.0,0.2025162477998882,3.403958835499553,0.90524088020002 +9382.0,9382,,Block 3037,0,25,PedestrianZones,2299989.9911030866,144240.88618443563,10.0,0,0,0.0,0.0,0.0,0.0,,22952.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3037.0,410470002003037.0,1000000US410470002003037,0.0,1.0,80103.0,0.0,125.0,44.9364804,-123.0345541,0.0,1.0,8007903037,80068.0,0.0,0.0,52358.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,19.0,0.0,0.0,0.0,1.0,247001.06,2877.55,1.0,,,79.0,80079.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.670359177259351,0.184,999999.0,10.194,0.0,0.463,0.537,6868.315,125.0,0.2033753601359847,3.411907968466856,0.9075772726982848 +9383.0,9383,,Block 3031,0,25,PedestrianZones,2300291.2242436446,144461.3825588729,10.0,0,0,0.0,0.0,0.0,0.0,,62942.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,541,0,0,1706,0,0,0,1,0,1,2151,0,18,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3031.0,410470002003031.0,1000000US410470002003031,0.97,0.0,80103.0,0.0,128.0,44.9385487,-123.0308269,0.0,3.0,8008003031,80068.0,0.0,0.0,52359.0,0.0,11.87,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,330.5,1.0,0.0,0.8,0.0,0.0,175.0,0.0,0.0,0.0,1.0,677368.08,3988.08,1.0,,,80.0,80080.0,2.0,661.0,663.0,0.0,2.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,15.550217733250468,0.061,999999.0,46.593,0.698,2.483,4.142,32470.105,128.0,0.2050007417633885,3.4057014772631686,0.9086508394214928 +9384.0,9384,,Block 3032,0,25,PedestrianZones,2300086.917410169,144409.57180725492,10.0,0,0,0.0,0.0,0.0,0.0,,16397.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3032.0,410470002003032.0,1000000US410470002003032,0.0,0.0,80103.0,0.0,143.0,44.9380251,-123.0333937,0.0,3.0,8007903032,80068.0,0.0,0.0,52360.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.0,0.0,0.0,0.0,1.0,176458.62,1686.79,1.0,,,79.0,80079.0,2.0,11.0,11.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.050928892917254,0.158,999999.0,68.427,0.006,1.668,2.845,45614.308,143.0,0.2046986937533556,3.415278674181814,0.9099588264095384 +9385.0,9385,,Block 2054,0,25,PedestrianZones,2300180.9331442146,144647.5795597357,10.0,0,0,0.0,0.0,0.0,0.0,,18459.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,22,0,3,3,0,5,0,0,0,12,0,0,33,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2054.0,410470002002054.0,1000000US410470002002054,0.0,0.0,80103.0,0.0,130.0,44.9401924,-123.0322976,0.0,3.0,8006802054,80068.0,0.0,0.0,52361.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.0,0.0,0.0,0.0,1.0,198651.0,1783.97,1.0,,,68.0,80068.0,2.0,57.0,57.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.560395427797621,0.044,999999.0,43.626,3.215,1.304,2.006,29204.772,130.0,0.2060510721659733,3.422873264885615,0.91293169373375 +9386.0,9386,,Block 3061,0,25,PedestrianZones,2299938.3080386785,143707.7064613832,10.0,0,0,0.0,0.0,0.0,0.0,,10920.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,27,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3061.0,410470002003061.0,1000000US410470002003061,0.0,0.0,80135.0,0.0,118.0,44.9316699,-123.0349967,0.0,3.0,8007603061,80068.0,0.0,0.0,52362.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117522.06,1494.42,1.0,,,76.0,80076.0,2.0,41.0,41.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.697932937637546,0.096,999999.0,36.989,0.333,1.169,2.091,25011.317,118.0,0.0,0.0,0.0 +9387.0,9387,,Block 3054,0,25,PedestrianZones,2299978.4719024324,144091.37554035062,10.0,0,0,0.0,0.0,0.0,0.0,,11422.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3054.0,410470002003054.0,1000000US410470002003054,0.0,1.0,80103.0,0.0,117.0,44.9351323,-123.0346406,0.0,1.0,8007903054,80068.0,0.0,0.0,52363.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,122916.93,1426.83,1.0,,,79.0,80079.0,2.0,0.0,2.0,0.0,2.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8217819653664664,0.165,999999.0,50.785,0.0,0.671,1.003,33144.496,117.0,0.2026127057781117,3.3947953285647148,0.903585986828544 9388.0,9388,,Block 3059,0,25,PedestrianZones,2300164.017667287,143760.93454450203,10.0,0,0,0.0,0.0,0.0,0.0,,17346.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3059.0,410470002003059.0,1000000US410470002003059,0.0,0.0,80135.0,0.0,128.0,44.9322124,-123.0321597,0.0,1.0,8007603059,80068.0,0.0,0.0,52364.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,186677.66,2148.8,1.0,,,76.0,80076.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.285525686693013,0.131,999999.0,35.81,0.006,0.866,1.654,23977.414,128.0,0.0,0.0,0.0 -9417.0,9417,,Block 2005,0,25,PedestrianZones,2308716.351850244,140369.02053032603,10.0,0,0,0.0,0.0,0.0,0.0,,1647939.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22005.0,410470027022005.0,1000000US410470027022005,0.0,0.95,80309.0,0.0,13.0,44.9040615,-122.9225695,0.0,1.0,8009622005,80299.0,0.0,0.0,52394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,17734898.1,22089.97,1.0,,,96.0,80096.0,1.0,6.0,130.0,0.0,124.0,0.0,0.0,351.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,407.1368784258924,999999.0,999999.0,0.02,0.0,0.305,0.862,564.331,13.0,0.0,0.0,0.0 +9417.0,9417,,Block 2005,0,25,PedestrianZones,2308716.351850244,140369.02053032603,10.0,0,0,0.0,0.0,0.0,0.0,,1647939.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22005.0,410470027022005.0,1000000US410470027022005,0.0,0.95,80309.0,0.0,13.0,44.9040615,-122.9225695,0.0,1.0,8009622005,80299.0,0.0,0.0,52394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,17734898.1,22089.97,1.0,,,96.0,80096.0,1.0,6.0,130.0,0.0,124.0,0.0,0.0,351.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,407.1368784258924,999999.0,999999.0,0.02,0.0,0.305,0.862,564.331,13.0,0.0,0.0,0.0 9427.0,9427,,Block 2006,0,25,PedestrianZones,2309342.3510305006,140629.18540239343,10.0,0,0,0.0,0.0,0.0,0.0,,83450.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22006.0,410470027022006.0,1000000US410470027022006,0.0,0.82,80309.0,0.0,18.0,44.9065704,-122.9147445,0.0,1.0,8009622006,80299.0,0.0,0.0,52407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,898078.91,5134.03,1.0,,,96.0,80096.0,1.0,2.0,11.0,0.0,9.0,0.0,0.0,23.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.617036635725515,999999.0,999999.0,0.049,0.0,0.437,1.116,745.015,18.0,0.0,0.0,0.0 9477.0,9477,,Block 1032,0,25,PedestrianZones,2302339.20009268,145675.15325242272,10.0,0,0,0.0,0.0,0.0,0.0,,12309.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1032.0,410470006001032.0,1000000US410470006001032,0.0,1.0,80103.0,0.0,113.0,44.9500408,-123.0053673,0.0,1.0,8009901032,80377.0,0.0,0.0,57882.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132462.83,1517.74,1.0,,,99.0,80099.0,1.0,0.0,12.0,0.0,12.0,0.0,0.0,22.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.040925373562052,0.017,999999.0,1.57,0.162,3.584,8.786,6627.93,113.0,0.0,0.0,0.0 9489.0,9489,,Block 1028,0,25,PedestrianZones,2301726.51868818,145785.894696486,10.0,0,0,0.0,0.0,0.0,0.0,,4778.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1028.0,410470006001028.0,1000000US410470006001028,0.0,1.0,80103.0,0.0,124.0,44.9508657,-123.0131717,0.0,1.0,8009801028,80082.0,0.0,0.0,57905.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,51416.12,1037.75,1.0,,,98.0,80098.0,1.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.1803506418326888,0.163,999999.0,2.869,0.183,3.778,8.71,7410.949,124.0,0.0,0.0,0.0 9498.0,9498,,Block 2021,0,25,PedestrianZones,2299176.261753756,144465.96931872176,10.0,0,0,0.79,0.0,0.0,0.0,,0.0,41462.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,5.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2021.0,410470002002021.0,1000000US410470002002021,0.0,0.0,80135.0,0.0,63.0,44.9416676,-123.0449529,0.0,1.0,8006102021,80068.0,0.0,0.0,57915.0,0.0,0.79,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,446210.83,8050.93,1.0,,,61.0,80061.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.24358197987899,0.511,999999.0,2.054,0.0,0.0,0.0,1314.583,63.0,0.0,0.0,0.0 9540.0,9540,,Block 2018,0,25,PedestrianZones,2309559.357502826,138564.14822679968,10.0,0,0,0.0,0.0,0.0,0.0,,87709.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80295.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22018.0,410470027022018.0,1000000US410470027022018,0.0,0.8299999999999998,80309.0,0.0,11.0,44.888053,-122.9112174,0.0,1.0,8009622018,80299.0,0.0,0.0,58030.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,943918.42,5332.61,1.0,,,96.0,80096.0,1.0,3.0,18.0,0.0,15.0,0.0,0.0,39.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.66936597008252,999999.0,999999.0,0.0,0.0,0.304,0.835,534.482,11.0,0.0,0.0,0.0 -9543.0,9543,,Block 6007,0,25,PedestrianZones,2300863.109714824,144517.66092709012,10.0,0,0,0.0,0.0,0.0,0.0,,15042.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6007.0,410470009006007.0,1000000US410470009006007,0.0,0.97,80103.0,0.0,143.0,44.9392159,-123.0236066,0.0,1.0,8010606007,80068.0,0.0,0.0,58069.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4799999999999999,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,161881.41,1614.23,1.0,,,106.0,80106.0,1.0,3.0,88.0,0.0,85.0,0.0,0.0,178.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.716282498228135,0.015,999999.0,38.363,0.47,3.597,6.823,28918.86,143.0,0.0,0.0,0.0 -9544.0,9544,,Block 6006,0,25,PedestrianZones,2301064.48434442,144413.9548329316,10.0,0,0,0.0,0.0,0.0,0.0,,24942.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6006.0,410470009006006.0,1000000US410470009006006,0.0,0.7099999999999999,80103.0,0.0,158.0,44.9379848,-123.019913,0.0,1.0,8010606006,80082.0,0.0,0.0,58070.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.28,0.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,268417.4,3198.31,1.0,,,106.0,80106.0,1.0,7.0,24.0,0.0,17.0,0.0,0.0,25.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.162010078860419,0.218,999999.0,22.417,0.487,4.102,7.655,19245.713,158.0,0.0,0.0,0.0 -9545.0,9545,,Block 3034,0,25,PedestrianZones,2300554.2946093767,144358.73381767803,10.0,0,0,0.0,0.0,0.0,0.0,,12535.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,370,0,0,0,0,0,0,0,0,0,196,2,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3034.0,410470002003034.0,1000000US410470002003034,0.0,0.0,80103.0,0.0,141.0,44.9376995,-123.0274546,0.0,3.0,8008003034,80068.0,0.0,0.0,58071.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,79.0,0.0,0.0,0.0,1.0,134903.94,1494.85,1.0,,,80.0,80080.0,2.0,359.0,359.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0969656096161136,0.039,999999.0,43.593,0.502,3.508,6.893,32311.314,141.0,5.102286251981695,0.4958037537244256,0.8418092628236888 +9543.0,9543,,Block 6007,0,25,PedestrianZones,2300863.109714824,144517.66092709012,10.0,0,0,0.0,0.0,0.0,0.0,,15042.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6007.0,410470009006007.0,1000000US410470009006007,0.0,0.97,80103.0,0.0,143.0,44.9392159,-123.0236066,0.0,1.0,8010606007,80068.0,0.0,0.0,58069.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4799999999999999,0.0,0.0,0.0,0.0,18.0,0.0,0.0,0.0,1.0,161881.41,1614.23,1.0,,,106.0,80106.0,1.0,3.0,88.0,0.0,85.0,0.0,0.0,178.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.716282498228135,0.015,999999.0,38.363,0.47,3.597,6.823,28918.86,143.0,0.2042659087023795,3.344101976136923,0.8973835898090081 +9544.0,9544,,Block 6006,0,25,PedestrianZones,2301064.48434442,144413.9548329316,10.0,0,0,0.0,0.0,0.0,0.0,,24942.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,8,0,0,0,0,0,2,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6006.0,410470009006006.0,1000000US410470009006006,0.0,0.7099999999999999,80103.0,0.0,158.0,44.9379848,-123.019913,0.0,1.0,8010606006,80082.0,0.0,0.0,58070.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.28,0.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,268417.4,3198.31,1.0,,,106.0,80106.0,1.0,7.0,24.0,0.0,17.0,0.0,0.0,25.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.162010078860419,0.218,999999.0,22.417,0.487,4.102,7.655,19245.713,158.0,0.0,0.0,0.0 +9545.0,9545,,Block 3034,0,25,PedestrianZones,2300554.2946093767,144358.73381767803,10.0,0,0,0.0,0.0,0.0,0.0,,12535.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,235,0,0,0,0,0,0,0,0,0,495,1,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3034.0,410470002003034.0,1000000US410470002003034,0.0,0.0,80103.0,0.0,141.0,44.9376995,-123.0274546,0.0,3.0,8008003034,80068.0,0.0,0.0,58071.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,79.0,0.0,0.0,0.0,1.0,134903.94,1494.85,1.0,,,80.0,80080.0,2.0,359.0,359.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0969656096161136,0.039,999999.0,43.593,0.502,3.508,6.893,32311.314,141.0,0.2051473949354841,3.368994128008373,0.9027278795189088 9547.0,9547,,Block 3064,0,25,PedestrianZones,2300105.526779003,143666.39625705505,10.0,0,0,0.0,0.0,0.0,0.0,,30135.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3064.0,410470002003064.0,1000000US410470002003064,0.0,0.0,80135.0,0.0,129.0,44.9313455,-123.0328629,0.0,1.0,8007603064,80068.0,0.0,0.0,58074.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,324302.73,2263.34,1.0,,,76.0,80076.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.444959665123545,0.14,999999.0,33.739,0.061,0.879,1.794,22741.465,129.0,0.0,0.0,0.0 -9548.0,9548,,Block 3062,0,25,PedestrianZones,2300294.3198663807,143695.73084003158,10.0,0,0,0.0,0.0,0.0,0.0,,13025.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,50,6,0,0,0,0,0,0,0,0,56,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3062.0,410470002003062.0,1000000US410470002003062,0.0,0.0,80135.0,0.0,138.0,44.9316626,-123.0304839,0.0,3.0,8007703062,80068.0,0.0,0.0,58075.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,140174.59,1497.23,1.0,,,77.0,80077.0,2.0,61.0,61.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.217962978124062,0.053,999999.0,44.275,0.114,0.884,2.09,29674.025,138.0,0.0,0.0,0.0 -9553.0,9553,,Block 6016,0,25,PedestrianZones,2300656.147134196,144318.47976794065,10.0,0,0,0.0,0.0,0.0,0.0,,16686.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,172,0,0,4,0,0,0,0,0,0,153,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6016.0,410470009006016.0,1000000US410470009006016,0.0,0.0,80103.0,0.0,145.0,44.9373661,-123.0261488,0.0,3.0,8010606016,80068.0,0.0,0.0,58081.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140.0,0.0,0.0,0.0,1.0,179573.36,1695.74,1.0,,,106.0,80106.0,1.0,419.0,419.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.122433518466191,0.098,999999.0,26.746,0.524,4.031,7.77,22090.473,145.0,5.086171628610492,0.494292661207746,0.8393192271667301 -9554.0,9554,,Block 4006,0,25,PedestrianZones,2300611.9529682174,144204.86594522488,10.0,0,0,0.0,0.0,0.0,0.0,,13666.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,4,50,0,0,0,316,0,0,0,0,0,0,0,0,0,474,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4006.0,410470009004006.0,1000000US410470009004006,0.0,0.0,80103.0,0.0,149.0,44.9363317,-123.0266634,0.0,3.0,8011004006,80068.0,0.0,0.0,58082.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,62.0,0.0,0.0,0.0,1.0,147073.46,1535.79,1.0,,,110.0,80110.0,1.0,345.0,345.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3763391810153784,0.113,999999.0,27.379,0.524,3.931,7.631,22406.661,149.0,5.0886984679352425,0.4943782095346026,0.839271881105548 -9555.0,9555,,Block 4005,0,25,PedestrianZones,2300720.781854764,144160.3179352529,10.0,0,0,0.0,0.0,0.0,0.0,,12980.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,94,0,89,0,0,0,0,0,0,0,0,0,282,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4005.0,410470009004005.0,1000000US410470009004005,0.0,0.0,80103.0,0.0,157.0,44.9359616,-123.0252676,0.0,3.0,8011004005,80068.0,0.0,0.0,58083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,319.0,0.0,0.0,0.0,1.0,139686.34,1521.6,1.0,,,110.0,80110.0,1.0,283.0,283.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.206754320779416,0.033,999999.0,23.382,0.477,4.139,7.84,19982.088,157.0,0.0,0.0,0.0 -9566.0,9566,,Block 2004,0,25,PedestrianZones,2299743.290477542,145430.64825868487,10.0,0,0,0.0,0.0,0.0,0.0,,4397.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2004.0,410470002002004.0,1000000US410470002002004,0.0,0.0,80103.0,0.0,118.0,44.9471125,-123.0381518,0.0,3.0,8006102004,80068.0,0.0,0.0,58104.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,47322.98,1059.63,1.0,,,61.0,80061.0,2.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.086385099439985,0.389,999999.0,9.344,0.612,0.426,0.667,6407.304,118.0,0.0,0.0,0.0 -9577.0,9577,,Block 2057,0,25,PedestrianZones,2299947.582585637,144431.29607162514,10.0,0,0,0.0,0.0,0.0,0.0,,7396.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2057.0,410470002002057.0,1000000US410470002002057,0.0,0.0,80103.0,0.0,135.0,44.9381811,-123.0351669,0.0,1.0,8006702057,80068.0,0.0,0.0,58115.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,79589.30999999998,1251.3,1.0,,,67.0,80067.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.827117539440176,0.143,999999.0,69.503,0.0,1.025,1.533,45462.993,135.0,5.197922597124033,0.5038110450647542,0.8531412633102073 -9601.0,9601,,Block 2053,0,25,PedestrianZones,2300052.969873708,144696.38181017313,10.0,0,0,0.0,0.0,0.0,0.0,,18407.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,70,2,0,0,0,0,0,0,0,0,0,114,0,0,217,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2053.0,410470002002053.0,1000000US410470002002053,0.0,0.01,80103.0,0.0,129.0,44.9405953,-123.0339376,0.0,3.0,8006802053,80068.0,0.0,0.0,58144.0,0.0,0.0,0.0,0.0,,,,0,0.0,96.5,0.5,0.0,0.0,0.0,0.0,60.0,0.0,0.0,0.0,1.0,198095.83,1780.55,1.0,,,68.0,80068.0,2.0,193.0,194.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.547650429286225,0.046,999999.0,40.794,2.114,1.979,3.227,28173.976,129.0,5.1963483530124295,0.5039798704290535,0.8533461088069643 +9548.0,9548,,Block 3062,0,25,PedestrianZones,2300294.3198663807,143695.73084003158,10.0,0,0,0.0,0.0,0.0,0.0,,13025.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,0,0,0,0,85,6,0,0,0,0,0,0,0,0,57,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3062.0,410470002003062.0,1000000US410470002003062,0.0,0.0,80135.0,0.0,138.0,44.9316626,-123.0304839,0.0,3.0,8007703062,80068.0,0.0,0.0,58075.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,140174.59,1497.23,1.0,,,77.0,80077.0,2.0,61.0,61.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.217962978124062,0.053,999999.0,44.275,0.114,0.884,2.09,29674.025,138.0,0.0,0.0,0.0 +9553.0,9553,,Block 6016,0,25,PedestrianZones,2300656.147134196,144318.47976794065,10.0,0,0,0.0,0.0,0.0,0.0,,16686.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,105,0,0,5,0,0,0,0,0,0,257,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6016.0,410470009006016.0,1000000US410470009006016,0.0,0.0,80103.0,0.0,145.0,44.9373661,-123.0261488,0.0,3.0,8010606016,80068.0,0.0,0.0,58081.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140.0,0.0,0.0,0.0,1.0,179573.36,1695.74,1.0,,,106.0,80106.0,1.0,419.0,419.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.122433518466191,0.098,999999.0,26.746,0.524,4.031,7.77,22090.473,145.0,0.204630258670604,3.3566987189695743,0.8999366875866964 +9554.0,9554,,Block 4006,0,25,PedestrianZones,2300611.9529682174,144204.86594522488,10.0,0,0,0.0,0.0,0.0,0.0,,13666.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,2,34,0,0,0,346,0,0,0,0,0,0,0,0,0,348,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4006.0,410470009004006.0,1000000US410470009004006,0.0,0.0,80103.0,0.0,149.0,44.9363317,-123.0266634,0.0,3.0,8011004006,80068.0,0.0,0.0,58082.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,62.0,0.0,0.0,0.0,1.0,147073.46,1535.79,1.0,,,110.0,80110.0,1.0,345.0,345.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3763391810153784,0.113,999999.0,27.379,0.524,3.931,7.631,22406.661,149.0,0.2040789840129429,3.3542128986053195,0.8986577024239982 +9555.0,9555,,Block 4005,0,25,PedestrianZones,2300720.781854764,144160.3179352529,10.0,0,0,0.0,0.0,0.0,0.0,,12980.0,0.0,4.0,410470009004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,161,0,73,0,0,0,0,0,0,0,0,0,280,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,4005.0,410470009004005.0,1000000US410470009004005,0.0,0.0,80103.0,0.0,157.0,44.9359616,-123.0252676,0.0,3.0,8011004005,80068.0,0.0,0.0,58083.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,319.0,0.0,0.0,0.0,1.0,139686.34,1521.6,1.0,,,110.0,80110.0,1.0,283.0,283.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.206754320779416,0.033,999999.0,23.382,0.477,4.139,7.84,19982.088,157.0,0.2035012492671106,3.340452424058453,0.8955140504332477 +9566.0,9566,,Block 2004,0,25,PedestrianZones,2299743.290477542,145430.64825868487,10.0,0,0,0.0,0.0,0.0,0.0,,4397.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2004.0,410470002002004.0,1000000US410470002002004,0.0,0.0,80103.0,0.0,118.0,44.9471125,-123.0381518,0.0,3.0,8006102004,80068.0,0.0,0.0,58104.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,47322.98,1059.63,1.0,,,61.0,80061.0,2.0,4.0,4.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.086385099439985,0.389,999999.0,9.344,0.612,0.426,0.667,6407.304,118.0,0.0,0.0,0.0 +9577.0,9577,,Block 2057,0,25,PedestrianZones,2299947.582585637,144431.29607162514,10.0,0,0,0.0,0.0,0.0,0.0,,7396.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2057.0,410470002002057.0,1000000US410470002002057,0.0,0.0,80103.0,0.0,135.0,44.9381811,-123.0351669,0.0,1.0,8006702057,80068.0,0.0,0.0,58115.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.0,0.0,0.0,0.0,1.0,79589.30999999998,1251.3,1.0,,,67.0,80067.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.827117539440176,0.143,999999.0,69.503,0.0,1.025,1.533,45462.993,135.0,0.2042106905722836,3.4268945538685407,0.9113939337354714 +9601.0,9601,,Block 2053,0,25,PedestrianZones,2300052.969873708,144696.38181017313,10.0,0,0,0.0,0.0,0.0,0.0,,18407.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,56,5,0,0,0,0,0,0,0,0,0,169,0,0,219,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2053.0,410470002002053.0,1000000US410470002002053,0.0,0.01,80103.0,0.0,129.0,44.9405953,-123.0339376,0.0,3.0,8006802053,80068.0,0.0,0.0,58144.0,0.0,0.0,0.0,0.0,,,,0,0.0,96.5,0.5,0.0,0.0,0.0,0.0,60.0,0.0,0.0,0.0,1.0,198095.83,1780.55,1.0,,,68.0,80068.0,2.0,193.0,194.0,0.0,1.0,0.0,0.0,2.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.547650429286225,0.046,999999.0,40.794,2.114,1.979,3.227,28173.976,129.0,0.2053806496622368,3.435405705960382,0.914174555332702 9622.0,9622,,Block 1007,0,25,PedestrianZones,2302008.2355696,145918.8009218777,10.0,0,0,0.0,0.0,0.0,0.0,,17551.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1007.0,410470006001007.0,1000000US410470006001007,0.0,1.0,80103.0,0.0,95.0,44.95214,-123.0096555,0.0,1.0,8009901007,80082.0,0.0,0.0,58194.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,188877.15,1786.03,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,45.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.336018984605468,0.127,999999.0,3.613,0.149,2.925,6.636,6559.208,95.0,0.0,0.0,0.0 -9630.0,9630,,Block 3057,0,25,PedestrianZones,2300185.7216457254,143867.06891863825,10.0,0,0,0.0,0.0,0.0,0.0,,53729.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,1,0,0,21,0,0,0,0,558,0,11,0,0,0,0,0,0,386,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3057.0,410470002003057.0,1000000US410470002003057,0.0,0.0,80135.0,0.0,127.0,44.9331732,-123.031927,0.0,3.0,8007703057,80068.0,0.0,0.0,58211.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,578212.85,3741.81,1.0,,,77.0,80077.0,2.0,434.0,434.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,13.273928910705024,0.17,999999.0,36.647,0.0,0.813,1.608,24483.206,127.0,0.0,0.0,0.0 -9631.0,9631,,Block 4046,0,25,PedestrianZones,2300353.921107076,145880.97941460102,10.0,0,0,0.0,0.0,0.0,0.0,,10895.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4046.0,410470003004046.0,1000000US410470003004046,0.0,0.0,80103.0,0.0,153.0,44.9513355,-123.0305962,0.0,3.0,8009004046,80068.0,0.0,0.0,58212.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117248.2,1373.93,1.0,,,90.0,80090.0,1.0,15.0,15.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6916460312091983,0.063,999999.0,7.566,0.237,3.738,7.746,9799.842,153.0,0.0,0.0,0.0 -9657.0,9657,,Block 3007,0,25,PedestrianZones,2300864.4428067342,145356.5307695749,10.0,0,0,0.0,0.0,0.0,0.0,,8338.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3007.0,410470002003007.0,1000000US410470002003007,0.0,0.78,80103.0,0.0,145.0,44.9467618,-123.0239217,0.0,1.0,8008303007,80082.0,0.0,0.0,59377.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.22,0.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,89731.88,1255.78,1.0,,,83.0,80083.0,2.0,2.0,9.0,0.0,7.0,0.0,0.0,9.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.059958673879028,0.133,999999.0,21.853,0.053,4.288,9.136,19833.239,145.0,0.0,0.0,0.0 +9630.0,9630,,Block 3057,0,25,PedestrianZones,2300185.7216457254,143867.06891863825,10.0,0,0,0.0,0.0,0.0,0.0,,53729.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,14,0,0,0,0,339,0,6,0,0,0,0,0,0,240,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3057.0,410470002003057.0,1000000US410470002003057,0.0,0.0,80135.0,0.0,127.0,44.9331732,-123.031927,0.0,3.0,8007703057,80068.0,0.0,0.0,58211.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,578212.85,3741.81,1.0,,,77.0,80077.0,2.0,434.0,434.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,13.273928910705024,0.17,999999.0,36.647,0.0,0.813,1.608,24483.206,127.0,0.0,0.0,0.0 +9631.0,9631,,Block 4046,0,25,PedestrianZones,2300353.921107076,145880.97941460102,10.0,0,0,0.0,0.0,0.0,0.0,,10895.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4046.0,410470003004046.0,1000000US410470003004046,0.0,0.0,80103.0,0.0,153.0,44.9513355,-123.0305962,0.0,3.0,8009004046,80068.0,0.0,0.0,58212.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,117248.2,1373.93,1.0,,,90.0,80090.0,1.0,15.0,15.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6916460312091983,0.063,999999.0,7.566,0.237,3.738,7.746,9799.842,153.0,0.0,0.0,0.0 +9657.0,9657,,Block 3007,0,25,PedestrianZones,2300864.4428067342,145356.5307695749,10.0,0,0,0.0,0.0,0.0,0.0,,8338.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3007.0,410470002003007.0,1000000US410470002003007,0.0,0.78,80103.0,0.0,145.0,44.9467618,-123.0239217,0.0,1.0,8008303007,80082.0,0.0,0.0,59377.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.22,0.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,89731.88,1255.78,1.0,,,83.0,80083.0,2.0,2.0,9.0,0.0,7.0,0.0,0.0,9.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.059958673879028,0.133,999999.0,21.853,0.053,4.288,9.136,19833.239,145.0,0.0,0.0,0.0 9672.0,9672,,Block 1003,0,25,PedestrianZones,2299991.9251455567,146349.94330205323,10.0,0,0,0.0,0.0,0.0,0.0,,9392.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1003.0,410470002001003.0,1000000US410470002001003,0.0,0.0,80103.0,0.0,101.0,44.9554516,-123.0353681,0.0,1.0,8008501003,80068.0,0.0,0.0,59410.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,101079.15,1235.85,1.0,,,85.0,80085.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.3204560141099035,0.361,999999.0,4.191,0.083,2.465,4.535,5584.623,101.0,0.0,0.0,0.0 -9682.0,9682,,Block 6000,0,25,PedestrianZones,2301675.97870163,144454.1943385967,10.0,0,0,0.0,0.0,0.0,0.0,,9026.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6000.0,410470009006000.0,1000000US410470009006000,0.0,0.88,80103.0,0.0,135.0,44.938873,-123.013287,0.0,1.0,8010806000,80082.0,0.0,0.0,59440.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,97140.26,1599.98,1.0,,,108.0,80108.0,1.0,2.0,16.0,0.0,14.0,0.0,0.0,24.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.2300315530410395,0.014,999999.0,3.057,0.092,3.999,8.33,7287.65,135.0,0.0,0.0,0.0 +9682.0,9682,,Block 6000,0,25,PedestrianZones,2301675.97870163,144454.1943385967,10.0,0,0,0.0,0.0,0.0,0.0,,9026.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6000.0,410470009006000.0,1000000US410470009006000,0.0,0.88,80103.0,0.0,135.0,44.938873,-123.013287,0.0,1.0,8010806000,80082.0,0.0,0.0,59440.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,97140.26,1599.98,1.0,,,108.0,80108.0,1.0,2.0,16.0,0.0,14.0,0.0,0.0,24.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.2300315530410395,0.014,999999.0,3.057,0.092,3.999,8.33,7287.65,135.0,0.0,0.0,0.0 9683.0,9683,,Block 6019,0,25,PedestrianZones,2301624.3986515687,144314.5959723326,10.0,0,0,0.0,0.0,0.0,0.0,,4653.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6019.0,410470009006019.0,1000000US410470009006019,0.0,0.0,80103.0,0.0,141.0,44.9376029,-123.0138852,0.0,1.0,8010806019,80082.0,0.0,0.0,59441.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,50075.66,961.83,1.0,,,108.0,80108.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.149577843843401,0.174,999999.0,9.146,0.137,3.937,8.552,11326.829,141.0,0.0,0.0,0.0 9689.0,9689,,Block 4024,0,25,PedestrianZones,2300868.6212674025,146361.79698663033,10.0,0,0,0.0,0.0,0.0,0.0,,16692.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4024.0,410470003004024.0,1000000US410470003004024,0.0,1.0,80103.0,0.0,165.0,44.9558053,-123.0242667,0.0,1.0,8009204024,80082.0,0.0,0.0,59460.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,179637.74,1695.26,1.0,,,92.0,80092.0,1.0,0.0,21.0,0.0,21.0,0.0,0.0,55.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.123911461260214,0.147,999999.0,4.327,0.155,4.139,9.44,8810.95,165.0,0.0,0.0,0.0 -9690.0,9690,,Block 4023,0,25,PedestrianZones,2300959.5490370705,146513.31730526924,10.0,0,0,0.0,0.0,0.0,0.0,,17021.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4023.0,410470003004023.0,1000000US410470003004023,0.0,1.0,80103.0,0.0,160.0,44.9571937,-123.0231748,0.0,1.0,8009204023,80417.0,0.0,0.0,59461.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,183171.17,1746.44,1.0,,,92.0,80092.0,1.0,0.0,23.0,0.0,23.0,0.0,0.0,51.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.205027646596314,0.157,999999.0,4.249,0.194,3.897,9.035,8501.704,160.0,0.0,0.0,0.0 -9695.0,9695,,Block 3000,0,25,PedestrianZones,2300487.1346364017,147002.54320926665,10.0,0,0,0.0,0.0,0.0,0.0,,20981.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,1,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,7,25,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3000.0,410470003003000.0,1000000US410470003003000,0.0,0.22,80103.0,0.0,131.0,44.9614613,-123.0293537,0.0,3.0,8008803000,80417.0,0.0,0.0,59477.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.88,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,225797.92,1942.1,1.0,,,88.0,80088.0,1.0,46.0,59.0,0.0,13.0,0.0,0.0,16.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.183602432886099,0.071,999999.0,3.345,0.111,2.863,6.233,6129.883,131.0,0.0,0.0,0.0 -9696.0,9696,,Block 3020,0,25,PedestrianZones,2300259.5443547457,146625.59111627995,10.0,0,0,0.0,0.0,0.0,0.0,,11505.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3020.0,410470003003020.0,1000000US410470003003020,0.0,0.2999999999999999,80103.0,0.0,125.0,44.9580066,-123.0320874,0.0,3.0,8008803020,80417.0,0.0,0.0,59478.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.0,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,123814.08,1405.68,1.0,,,88.0,80088.0,1.0,16.0,23.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8423775537029496,0.136,999999.0,4.648,0.144,2.187,3.891,5465.119,125.0,0.0,0.0,0.0 -9697.0,9697,,Block 3035,0,25,PedestrianZones,2300368.332139916,146202.62807287995,10.0,0,0,0.0,0.0,0.0,0.0,,10454.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3035.0,410470003003035.0,1000000US410470003003035,0.0,1.0,80103.0,0.0,155.0,44.9542327,-123.0305413,0.0,1.0,8008903035,80082.0,0.0,0.0,59479.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112501.8,1345.1,1.0,,,89.0,80089.0,2.0,0.0,31.0,0.0,31.0,0.0,0.0,54.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.582683686621765,0.061,999999.0,6.033,0.216,3.482,7.077,8390.538,155.0,0.0,0.0,0.0 -9698.0,9698,,Block 4039,0,25,PedestrianZones,2300429.2239759117,146069.15905445913,10.0,0,0,0.0,0.0,0.0,0.0,,10621.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,6,0,0,0,24,0,0,0,0,0,0,0,0,58,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4039.0,410470003004039.0,1000000US410470003004039,0.0,0.03,80103.0,0.0,160.0,44.9530493,-123.029717,0.0,3.0,8009104039,80082.0,0.0,0.0,59480.0,0.0,0.0,0.0,0.0,,,,0,0.0,16.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114306.12,1352.29,1.0,,,91.0,80091.0,1.0,33.0,34.0,0.0,1.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.624105026759222,0.064,999999.0,6.256,0.206,3.771,8.026,9140.402,160.0,0.0,0.0,0.0 +9690.0,9690,,Block 4023,0,25,PedestrianZones,2300959.5490370705,146513.31730526924,10.0,0,0,0.0,0.0,0.0,0.0,,17021.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4023.0,410470003004023.0,1000000US410470003004023,0.0,1.0,80103.0,0.0,160.0,44.9571937,-123.0231748,0.0,1.0,8009204023,80417.0,0.0,0.0,59461.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,183171.17,1746.44,1.0,,,92.0,80092.0,1.0,0.0,23.0,0.0,23.0,0.0,0.0,51.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.205027646596314,0.157,999999.0,4.249,0.194,3.897,9.035,8501.704,160.0,0.0,0.0,0.0 +9695.0,9695,,Block 3000,0,25,PedestrianZones,2300487.1346364017,147002.54320926665,10.0,0,0,0.0,0.0,0.0,0.0,,20981.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,8,58,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3000.0,410470003003000.0,1000000US410470003003000,0.0,0.22,80103.0,0.0,131.0,44.9614613,-123.0293537,0.0,3.0,8008803000,80417.0,0.0,0.0,59477.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.88,0.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,225797.92,1942.1,1.0,,,88.0,80088.0,1.0,46.0,59.0,0.0,13.0,0.0,0.0,16.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.183602432886099,0.071,999999.0,3.345,0.111,2.863,6.233,6129.883,131.0,0.0,0.0,0.0 +9696.0,9696,,Block 3020,0,25,PedestrianZones,2300259.5443547457,146625.59111627995,10.0,0,0,0.0,0.0,0.0,0.0,,11505.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3020.0,410470003003020.0,1000000US410470003003020,0.0,0.2999999999999999,80103.0,0.0,125.0,44.9580066,-123.0320874,0.0,3.0,8008803020,80417.0,0.0,0.0,59478.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.0,0.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,123814.08,1405.68,1.0,,,88.0,80088.0,1.0,16.0,23.0,0.0,7.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8423775537029496,0.136,999999.0,4.648,0.144,2.187,3.891,5465.119,125.0,0.0,0.0,0.0 +9697.0,9697,,Block 3035,0,25,PedestrianZones,2300368.332139916,146202.62807287995,10.0,0,0,0.0,0.0,0.0,0.0,,10454.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3035.0,410470003003035.0,1000000US410470003003035,0.0,1.0,80103.0,0.0,155.0,44.9542327,-123.0305413,0.0,1.0,8008903035,80082.0,0.0,0.0,59479.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,112501.8,1345.1,1.0,,,89.0,80089.0,2.0,0.0,31.0,0.0,31.0,0.0,0.0,54.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.582683686621765,0.061,999999.0,6.033,0.216,3.482,7.077,8390.538,155.0,0.0,0.0,0.0 +9698.0,9698,,Block 4039,0,25,PedestrianZones,2300429.2239759117,146069.15905445913,10.0,0,0,0.0,0.0,0.0,0.0,,10621.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,7,0,0,0,35,0,0,0,0,0,0,0,0,21,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4039.0,410470003004039.0,1000000US410470003004039,0.0,0.03,80103.0,0.0,160.0,44.9530493,-123.029717,0.0,3.0,8009104039,80082.0,0.0,0.0,59480.0,0.0,0.0,0.0,0.0,,,,0,0.0,16.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,114306.12,1352.29,1.0,,,91.0,80091.0,1.0,33.0,34.0,0.0,1.0,0.0,0.0,2.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.624105026759222,0.064,999999.0,6.256,0.206,3.771,8.026,9140.402,160.0,0.0,0.0,0.0 9741.0,9741,,Block 2011,0,25,PedestrianZones,2309674.5588122974,139834.10655641576,10.0,0,0,0.0,0.0,0.0,0.0,,23676.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22011.0,410470027022011.0,1000000US410470027022011,0.0,1.0,80309.0,0.0,19.0,44.8995077,-122.9102392,0.0,1.0,8009622011,80299.0,0.0,0.0,64111.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,254796.36,2131.64,1.0,,,96.0,80096.0,1.0,0.0,2.0,0.0,2.0,0.0,0.0,6.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.849314447878537,999999.0,999999.0,1.924,0.0,0.137,0.412,1495.215,19.0,0.0,0.0,0.0 -9742.0,9742,,Block 2007,0,25,PedestrianZones,2309608.823791732,139941.41041401334,10.0,0,0,0.0,0.0,0.0,0.0,,35230.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,0,0,0,27,0,0,0,0,4,0,0,0,0,0,0,0,0,37,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22007.0,410470027022007.0,1000000US410470027022007,0.0,0.0,80309.0,0.0,20.0,44.9004552,-122.9111117,0.0,3.0,8009622007,80299.0,0.0,0.0,64112.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,379136.82,2705.7,1.0,,,96.0,80096.0,1.0,27.0,27.0,0.0,0.0,0.0,0.0,0.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.70377597969494,999999.0,999999.0,1.924,0.0,0.137,0.412,1495.215,20.0,0.0,0.0,0.0 -9769.0,9769,,Block 2006,0,25,PedestrianZones,2301023.1475151745,146053.46519481103,10.0,0,0,0.0,0.0,0.0,0.0,,13015.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2006.0,410470003002006.0,1000000US410470003002006,0.0,0.67,80103.0,0.0,160.0,44.9530753,-123.0221872,0.0,1.0,8009502006,80082.0,0.0,0.0,64179.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2399999999999999,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,140067.1,1511.07,1.0,,,95.0,80095.0,1.0,9.0,27.0,0.0,18.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2154953135415028,0.097,999999.0,5.026,0.203,4.064,9.009,8982.032,160.0,0.0,0.0,0.0 -9770.0,9770,,Block 1021,0,25,PedestrianZones,2301100.4400224825,146276.79583619503,10.0,0,0,0.0,0.0,0.0,0.0,,18774.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,41,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1021.0,410470003001021.0,1000000US410470003001021,0.0,0.1799999999999999,80103.0,0.0,157.0,44.9551058,-123.0212964,0.0,3.0,8009701021,80082.0,0.0,0.0,64180.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.33,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,202031.72,2375.46,1.0,,,97.0,80097.0,1.0,28.0,34.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.638006035199375,0.113,999999.0,5.099,0.227,3.815,8.902,8961.139,157.0,0.0,0.0,0.0 +9742.0,9742,,Block 2007,0,25,PedestrianZones,2309608.823791732,139941.41041401334,10.0,0,0,0.0,0.0,0.0,0.0,,35230.0,0.0,2.0,410470027022000.0,0.0,0.0,Outside CL,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80294.0,0,0,1,0,0,21,0,0,0,0,4,0,0,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,22007.0,410470027022007.0,1000000US410470027022007,0.0,0.0,80309.0,0.0,20.0,44.9004552,-122.9111117,0.0,3.0,8009622007,80299.0,0.0,0.0,64112.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,379136.82,2705.7,1.0,,,96.0,80096.0,1.0,27.0,27.0,0.0,0.0,0.0,0.0,0.0,2702.0,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.70377597969494,999999.0,999999.0,1.924,0.0,0.137,0.412,1495.215,20.0,0.0,0.0,0.0 +9769.0,9769,,Block 2006,0,25,PedestrianZones,2301023.1475151745,146053.46519481103,10.0,0,0,0.0,0.0,0.0,0.0,,13015.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2006.0,410470003002006.0,1000000US410470003002006,0.0,0.67,80103.0,0.0,160.0,44.9530753,-123.0221872,0.0,1.0,8009502006,80082.0,0.0,0.0,64179.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2399999999999999,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,140067.1,1511.07,1.0,,,95.0,80095.0,1.0,9.0,27.0,0.0,18.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2154953135415028,0.097,999999.0,5.026,0.203,4.064,9.009,8982.032,160.0,0.0,0.0,0.0 +9770.0,9770,,Block 1021,0,25,PedestrianZones,2301100.4400224825,146276.79583619503,10.0,0,0,0.0,0.0,0.0,0.0,,18774.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,1021.0,410470003001021.0,1000000US410470003001021,0.0,0.1799999999999999,80103.0,0.0,157.0,44.9551058,-123.0212964,0.0,3.0,8009701021,80082.0,0.0,0.0,64180.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.33,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,202031.72,2375.46,1.0,,,97.0,80097.0,1.0,28.0,34.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.638006035199375,0.113,999999.0,5.099,0.227,3.815,8.902,8961.139,157.0,0.0,0.0,0.0 9771.0,9771,,Block 2001,0,25,PedestrianZones,2301175.4817228606,146103.1789057831,10.0,0,0,0.0,0.0,0.0,0.0,,11957.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2001.0,410470003002001.0,1000000US410470003002001,0.0,1.0,80103.0,0.0,159.0,44.9535652,-123.0202772,0.0,1.0,8009502001,80082.0,0.0,0.0,64181.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,128674.47,1430.75,1.0,,,95.0,80095.0,1.0,0.0,24.0,0.0,24.0,0.0,0.0,50.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.953956844824192,0.065,999999.0,4.708,0.258,4.168,9.416,9039.488,159.0,0.0,0.0,0.0 9772.0,9772,,Block 2009,0,25,PedestrianZones,2300986.5549299363,145958.8157964276,10.0,0,0,0.0,0.0,0.0,0.0,,13721.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2009.0,410470003002009.0,1000000US410470003002009,0.0,0.8599999999999999,80103.0,0.0,160.0,44.9522136,-123.0226133,0.0,1.0,8009502009,80082.0,0.0,0.0,64182.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.09,0.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,147659.25,1559.66,1.0,,,95.0,80095.0,1.0,3.0,21.0,0.0,18.0,0.0,0.0,32.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3897869947186607,0.035,999999.0,5.007,0.219,4.178,9.175,9076.546,160.0,0.0,0.0,0.0 -9773.0,9773,,Block 2011,0,25,PedestrianZones,2301136.3141212687,146011.82165651588,10.0,0,0,0.0,0.0,0.0,0.0,,11067.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2011.0,410470003002011.0,1000000US410470003002011,0.0,0.33,80103.0,0.0,156.0,44.9527325,-123.0207372,0.0,3.0,8009502011,80082.0,0.0,0.0,64183.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.08,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119101.62,1387.22,1.0,,,95.0,80095.0,1.0,14.0,21.0,0.0,7.0,0.0,0.0,13.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7341946557830483,0.128,999999.0,5.075,0.179,4.117,9.151,9104.631,156.0,0.0,0.0,0.0 -9774.0,9774,,Block 1025,0,25,PedestrianZones,2301308.4377450454,146246.2575824905,10.0,0,0,0.0,0.0,0.0,0.0,,4146.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1025.0,410470003001025.0,1000000US410470003001025,0.0,0.75,80103.0,0.0,144.0,44.9548895,-123.0186494,0.0,1.0,8009701025,80082.0,0.0,0.0,64184.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.17,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,44613.8,958.68,1.0,,,97.0,80097.0,1.0,2.0,8.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0241911071881311,0.156,999999.0,4.927,0.19,3.874,8.93,8868.411,144.0,0.0,0.0,0.0 -9821.0,9821,,Block 2030,0,25,PedestrianZones,2300327.081699028,145015.35692270767,10.0,0,0,0.0,0.0,0.0,0.0,,18975.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,12,26,0,79,0,0,0,1,0,0,109,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2030.0,410470002002030.0,1000000US410470002002030,0.0,0.5,80103.0,0.0,145.0,44.9435417,-123.0305926,0.0,2.0,8006802030,80068.0,0.0,0.0,64247.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5799999999999998,0.5999999999999999,0.0,0.0,0.0,0.0,53.0,0.0,0.0,0.0,1.0,204203.39,1807.2,1.0,,,68.0,80068.0,2.0,101.0,204.0,0.0,103.0,0.0,0.0,173.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.687860665949693,0.035,999999.0,43.442,0.994,2.676,4.996,31000.215,145.0,5.152536384732469,0.5004168106219254,0.8479547946467128 -9822.0,9822,,Block 2031,0,25,PedestrianZones,2300274.947638844,144890.77584439336,10.0,0,0,0.0,0.0,0.0,0.0,,17969.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2031.0,410470002002031.0,1000000US410470002002031,0.0,0.12,80103.0,0.0,139.0,44.9424065,-123.0312034,0.0,3.0,8006802031,80068.0,0.0,0.0,64248.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.5,0.75,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,1.0,193374.65,1759.04,1.0,,,68.0,80068.0,2.0,44.0,50.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.439267181380672,0.037,999999.0,59.416,1.497,2.757,4.967,41205.121,139.0,5.162952371232635,0.501354330643615,0.8496755887639108 -9823.0,9823,,Block 3017,0,25,PedestrianZones,2300455.981794786,144968.3051089726,10.0,0,0,0.0,0.0,0.0,0.0,,19931.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3017.0,410470002003017.0,1000000US410470002003017,0.0,0.0,80103.0,0.0,140.0,44.9431548,-123.0289414,0.0,3.0,8008103017,80068.0,0.0,0.0,64249.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,344.0,0.0,0.0,0.0,1.0,214496.01,1855.7,1.0,,,81.0,80081.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.9241464602679,0.042,999999.0,46.015,0.741,3.33,6.161,33392.634,140.0,5.130349260655647,0.4985248981706142,0.8454362906849945 -9824.0,9824,,Block 3025,0,25,PedestrianZones,2300330.561177739,144731.66689102203,10.0,0,0,0.0,0.0,0.0,0.0,,10667.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,730,0,0,0,0,0,0,0,0,0,793,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3025.0,410470002003025.0,1000000US410470002003025,0.0,0.0,80103.0,0.0,126.0,44.940991,-123.0304359,0.0,3.0,8008003025,80068.0,0.0,0.0,64250.0,0.0,1.92,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,1.0,114796.17,1389.18,1.0,,,80.0,80080.0,2.0,550.0,550.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.635355118023744,0.081,999999.0,54.053,2.029,2.254,3.881,37077.305,126.0,5.150977745224649,0.5003843905694658,0.848871645969455 -9825.0,9825,,Block 3018,0,25,PedestrianZones,2300531.695483472,145165.1253077645,10.0,0,0,0.02,0.0,0.0,0.0,,38737.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,1703,0,0,28,0,0,0,0,0,0,1183,0,9,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3018.0,410470002003018.0,1000000US410470002003018,0.0,0.0,80103.0,0.0,143.0,44.9449465,-123.0280604,0.0,3.0,8008203018,80082.0,0.0,0.0,64251.0,0.0,0.02,0.0,2.0,HISTORICAL AREA,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,133.0,0.0,0.0,0.0,1.0,416878.21,2683.96,1.0,,,82.0,80082.0,2.0,1450.0,1450.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.570198412373022,0.096,999999.0,62.023,0.641,2.632,4.298,42445.668,143.0,5.112236558374049,0.4967345275686725,0.8419951958678836 -9826.0,9826,,Block 3016,0,25,PedestrianZones,2300582.351935703,144916.82274397157,10.0,0,0,0.0,0.0,0.0,0.0,,18995.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,4,0,0,0,3193,0,0,2,0,0,0,0,0,0,2703,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3016.0,410470002003016.0,1000000US410470002003016,0.0,0.0,80103.0,0.0,129.0,44.9427273,-123.0273204,0.0,3.0,8008103016,80082.0,0.0,0.0,64252.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,0.0,0.0,31.0,0.0,0.0,0.0,1.0,204412.38,1819.62,1.0,,,81.0,80081.0,2.0,2457.0,2457.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.6926583417586665,0.036,999999.0,45.451,0.461,3.531,6.263,33096.938,129.0,5.108435851095345,0.4966290352848143,0.8428188425504354 -9827.0,9827,,Block 3024,0,25,PedestrianZones,2300414.582318245,144697.21048471477,10.0,0,0,0.0,0.0,0.0,0.0,,12877.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3024.0,410470002003024.0,1000000US410470002003024,0.0,0.0,80103.0,0.0,120.0,44.9407047,-123.0293582,0.0,1.0,8008003024,80068.0,0.0,0.0,64253.0,0.0,2.83,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.8,6.0,2.27,1445.0,0.0,0.0,0.0,1.0,138578.11,1502.52,1.0,,,80.0,80080.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.181312800808362,0.086,999999.0,57.475,0.86,3.46,6.281,40803.679,120.0,5.135992975729805,0.4990930050236082,0.8470644099579934 -9828.0,9828,,Block 3027,0,25,PedestrianZones,2300362.3406166336,144576.08000839772,10.0,0,0,0.0,0.0,0.0,0.0,,13640.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3027.0,410470002003027.0,1000000US410470002003027,0.0,0.0,80103.0,0.0,126.0,44.9396004,-123.0299717,0.0,1.0,8008003027,80068.0,0.0,0.0,64254.0,0.0,3.37,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,146792.38,1546.16,1.0,,,80.0,80080.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3698862972112287,0.061,999999.0,46.593,0.698,2.483,4.142,32470.105,126.0,5.141703217264146,0.4994947435217195,0.8477141054494353 -9829.0,9829,,Block 3023,0,25,PedestrianZones,2300503.1721607526,144661.46916241935,10.0,0,0,0.0,0.0,0.0,0.0,,12147.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,331,0,0,1,0,0,0,0,0,0,474,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3023.0,410470002003023.0,1000000US410470002003023,0.0,0.0,80103.0,0.0,122.0,44.9404082,-123.028222,0.0,3.0,8008003023,80068.0,0.0,0.0,64255.0,0.0,2.2,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,1.0,130725.24,1470.02,1.0,,,80.0,80080.0,2.0,403.0,403.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0010358510886705,0.08,999999.0,50.45,0.697,3.317,6.105,36195.494,122.0,5.1198512332253765,0.4976970478175885,0.8451019447870284 -9830.0,9830,,Block 2015,0,25,PedestrianZones,2300787.592358128,145819.85350314877,10.0,0,0,0.0,0.0,0.0,0.0,,14358.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,26,0,0,0,0,0,0,0,0,46,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2015.0,410470003002015.0,1000000US410470003002015,0.0,0.14,80103.0,0.0,164.0,44.9509077,-123.0250786,0.0,3.0,8009402015,80082.0,0.0,0.0,64256.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.32,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,154522.36,1590.13,1.0,,,94.0,80094.0,1.0,73.0,85.0,0.0,12.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.547342137785809,0.042,999999.0,3.913,0.169,4.671,9.747,8742.198,164.0,0.0,0.0,0.0 -9831.0,9831,,Block 2021,0,25,PedestrianZones,2300751.4712620904,145725.6856254638,10.0,0,0,0.0,0.0,0.0,0.0,,13613.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2021.0,410470003002021.0,1000000US410470003002021,0.0,0.94,80103.0,0.0,162.0,44.9500506,-123.0254988,0.0,1.0,8009402021,80082.0,0.0,0.0,64257.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,146497.05,1553.9,1.0,,,94.0,80094.0,1.0,1.0,16.0,0.0,15.0,0.0,0.0,30.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.363106491641818,0.099,999999.0,11.397,0.138,4.335,8.981,13041.607,162.0,0.0,0.0,0.0 -9832.0,9832,,Block 2013,0,25,PedestrianZones,2300952.99284122,145863.70923175444,10.0,0,0,0.0,0.0,0.0,0.0,,13818.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0,0,49,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2013.0,410470003002013.0,1000000US410470003002013,0.0,0.23,80103.0,0.0,165.0,44.9513487,-123.0230008,0.0,3.0,8009502013,80082.0,0.0,0.0,64258.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.71,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,148702.68,1557.7,1.0,,,95.0,80095.0,1.0,41.0,53.0,0.0,12.0,0.0,0.0,24.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.413740722674959,0.102,999999.0,5.141,0.153,4.316,9.293,9237.895,165.0,0.0,0.0,0.0 +9773.0,9773,,Block 2011,0,25,PedestrianZones,2301136.3141212687,146011.82165651588,10.0,0,0,0.0,0.0,0.0,0.0,,11067.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,18,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2011.0,410470003002011.0,1000000US410470003002011,0.0,0.33,80103.0,0.0,156.0,44.9527325,-123.0207372,0.0,3.0,8009502011,80082.0,0.0,0.0,64183.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.08,0.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119101.62,1387.22,1.0,,,95.0,80095.0,1.0,14.0,21.0,0.0,7.0,0.0,0.0,13.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7341946557830483,0.128,999999.0,5.075,0.179,4.117,9.151,9104.631,156.0,0.0,0.0,0.0 +9774.0,9774,,Block 1025,0,25,PedestrianZones,2301308.4377450454,146246.2575824905,10.0,0,0,0.0,0.0,0.0,0.0,,4146.0,0.0,1.0,410470003001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80518.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1025.0,410470003001025.0,1000000US410470003001025,0.0,0.75,80103.0,0.0,144.0,44.9548895,-123.0186494,0.0,1.0,8009701025,80082.0,0.0,0.0,64184.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.17,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,44613.8,958.68,1.0,,,97.0,80097.0,1.0,2.0,8.0,0.0,6.0,0.0,0.0,12.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0241911071881311,0.156,999999.0,4.927,0.19,3.874,8.93,8868.411,144.0,0.0,0.0,0.0 +9821.0,9821,,Block 2030,0,25,PedestrianZones,2300327.081699028,145015.35692270767,10.0,0,0,0.0,0.0,0.0,0.0,,18975.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,12,22,0,67,0,0,0,1,0,0,73,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2030.0,410470002002030.0,1000000US410470002002030,0.0,0.5,80103.0,0.0,145.0,44.9435417,-123.0305926,0.0,2.0,8006802030,80068.0,0.0,0.0,64247.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5799999999999998,0.5999999999999999,0.0,0.0,0.0,0.0,53.0,0.0,0.0,0.0,1.0,204203.39,1807.2,1.0,,,68.0,80068.0,2.0,101.0,204.0,0.0,103.0,0.0,0.0,173.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.687860665949693,0.035,999999.0,43.442,0.994,2.676,4.996,31000.215,145.0,0.2058809242413754,3.414572094378836,0.911309584641199 +9822.0,9822,,Block 2031,0,25,PedestrianZones,2300274.947638844,144890.77584439336,10.0,0,0,0.0,0.0,0.0,0.0,,17969.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2031.0,410470002002031.0,1000000US410470002002031,0.0,0.12,80103.0,0.0,139.0,44.9424065,-123.0312034,0.0,3.0,8006802031,80068.0,0.0,0.0,64248.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.5,0.75,0.0,0.0,0.0,0.0,52.0,0.0,0.0,0.0,1.0,193374.65,1759.04,1.0,,,68.0,80068.0,2.0,44.0,50.0,0.0,6.0,0.0,0.0,8.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.439267181380672,0.037,999999.0,59.416,1.497,2.757,4.967,41205.121,139.0,0.2062311724459685,3.420588167575668,0.912741531360015 +9823.0,9823,,Block 3017,0,25,PedestrianZones,2300455.981794786,144968.3051089726,10.0,0,0,0.0,0.0,0.0,0.0,,19931.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3017.0,410470002003017.0,1000000US410470002003017,0.0,0.0,80103.0,0.0,140.0,44.9431548,-123.0289414,0.0,3.0,8008103017,80068.0,0.0,0.0,64249.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,344.0,0.0,0.0,0.0,1.0,214496.01,1855.7,1.0,,,81.0,80081.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.9241464602679,0.042,999999.0,46.015,0.741,3.33,6.161,33392.634,140.0,0.2060395764408707,3.401325946622117,0.9094197403769088 +9824.0,9824,,Block 3025,0,25,PedestrianZones,2300330.561177739,144731.66689102203,10.0,0,0,0.0,0.0,0.0,0.0,,10667.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,734,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3025.0,410470002003025.0,1000000US410470002003025,0.0,0.0,80103.0,0.0,126.0,44.940991,-123.0304359,0.0,3.0,8008003025,80068.0,0.0,0.0,64250.0,0.0,1.92,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,1.0,114796.17,1389.18,1.0,,,80.0,80080.0,2.0,550.0,550.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.635355118023744,0.081,999999.0,54.053,2.029,2.254,3.881,37077.305,126.0,0.2066552460211101,3.411449231123316,0.9118762251225256 +9825.0,9825,,Block 3018,0,25,PedestrianZones,2300531.695483472,145165.1253077645,10.0,0,0,0.02,0.0,0.0,0.0,,38737.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,2181,0,0,32,0,0,0,1,0,0,1943,0,5,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3018.0,410470002003018.0,1000000US410470002003018,0.0,0.0,80103.0,0.0,143.0,44.9449465,-123.0280604,0.0,3.0,8008203018,80082.0,0.0,0.0,64251.0,0.0,0.02,0.0,2.0,HISTORICAL AREA,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,133.0,0.0,0.0,0.0,1.0,416878.21,2683.96,1.0,,,82.0,80082.0,2.0,1450.0,1450.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.570198412373022,0.096,999999.0,62.023,0.641,2.632,4.298,42445.668,143.0,0.206132398647855,3.4084801075824336,0.9109333996467394 +9826.0,9826,,Block 3016,0,25,PedestrianZones,2300582.351935703,144916.82274397157,10.0,0,0,0.0,0.0,0.0,0.0,,18995.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,3,0,0,0,3645,0,0,2,0,0,0,0,0,0,2039,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3016.0,410470002003016.0,1000000US410470002003016,0.0,0.0,80103.0,0.0,129.0,44.9427273,-123.0273204,0.0,3.0,8008103016,80082.0,0.0,0.0,64252.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,0.0,0.0,31.0,0.0,0.0,0.0,1.0,204412.38,1819.62,1.0,,,81.0,80081.0,2.0,2457.0,2457.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.6926583417586665,0.036,999999.0,45.451,0.461,3.531,6.263,33096.938,129.0,0.2060293085768361,3.387190876148669,0.9071822959724988 +9827.0,9827,,Block 3024,0,25,PedestrianZones,2300414.582318245,144697.21048471477,10.0,0,0,0.0,0.0,0.0,0.0,,12877.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3024.0,410470002003024.0,1000000US410470002003024,0.0,0.0,80103.0,0.0,120.0,44.9407047,-123.0293582,0.0,1.0,8008003024,80068.0,0.0,0.0,64253.0,0.0,2.83,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.8,6.0,2.27,1445.0,0.0,0.0,0.0,1.0,138578.11,1502.52,1.0,,,80.0,80080.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.181312800808362,0.086,999999.0,57.475,0.86,3.46,6.281,40803.679,120.0,0.2066381030769182,3.4015803346292253,0.910333897538964 +9828.0,9828,,Block 3027,0,25,PedestrianZones,2300362.3406166336,144576.08000839772,10.0,0,0,0.0,0.0,0.0,0.0,,13640.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3027.0,410470002003027.0,1000000US410470002003027,0.0,0.0,80103.0,0.0,126.0,44.9396004,-123.0299717,0.0,1.0,8008003027,80068.0,0.0,0.0,64254.0,0.0,3.37,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,146792.38,1546.16,1.0,,,80.0,80080.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3698862972112287,0.061,999999.0,46.593,0.698,2.483,4.142,32470.105,126.0,0.2064017281480498,3.401620857330685,0.9099104508664312 +9829.0,9829,,Block 3023,0,25,PedestrianZones,2300503.1721607526,144661.46916241935,10.0,0,0,0.0,0.0,0.0,0.0,,12147.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,327,0,0,0,0,0,0,0,0,0,530,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3023.0,410470002003023.0,1000000US410470002003023,0.0,0.0,80103.0,0.0,122.0,44.9404082,-123.028222,0.0,3.0,8008003023,80068.0,0.0,0.0,64255.0,0.0,2.2,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.0,0.0,0.0,0.0,1.0,130725.24,1470.02,1.0,,,80.0,80080.0,2.0,403.0,403.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.0010358510886705,0.08,999999.0,50.45,0.697,3.317,6.105,36195.494,122.0,0.2065929275057554,3.3906388184867184,0.9085260085047993 +9830.0,9830,,Block 2015,0,25,PedestrianZones,2300787.592358128,145819.85350314877,10.0,0,0,0.0,0.0,0.0,0.0,,14358.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,45,0,0,0,0,0,0,0,0,58,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2015.0,410470003002015.0,1000000US410470003002015,0.0,0.14,80103.0,0.0,164.0,44.9509077,-123.0250786,0.0,3.0,8009402015,80082.0,0.0,0.0,64256.0,0.0,0.0,0.0,0.0,,,,0,0.0,3.32,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,154522.36,1590.13,1.0,,,94.0,80094.0,1.0,73.0,85.0,0.0,12.0,0.0,0.0,22.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.547342137785809,0.042,999999.0,3.913,0.169,4.671,9.747,8742.198,164.0,0.0,0.0,0.0 +9831.0,9831,,Block 2021,0,25,PedestrianZones,2300751.4712620904,145725.6856254638,10.0,0,0,0.0,0.0,0.0,0.0,,13613.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2021.0,410470003002021.0,1000000US410470003002021,0.0,0.94,80103.0,0.0,162.0,44.9500506,-123.0254988,0.0,1.0,8009402021,80082.0,0.0,0.0,64257.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,146497.05,1553.9,1.0,,,94.0,80094.0,1.0,1.0,16.0,0.0,15.0,0.0,0.0,30.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.363106491641818,0.099,999999.0,11.397,0.138,4.335,8.981,13041.607,162.0,0.0,0.0,0.0 +9832.0,9832,,Block 2013,0,25,PedestrianZones,2300952.99284122,145863.70923175444,10.0,0,0,0.0,0.0,0.0,0.0,,13818.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,46,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2013.0,410470003002013.0,1000000US410470003002013,0.0,0.23,80103.0,0.0,165.0,44.9513487,-123.0230008,0.0,3.0,8009502013,80082.0,0.0,0.0,64258.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.71,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,148702.68,1557.7,1.0,,,95.0,80095.0,1.0,41.0,53.0,0.0,12.0,0.0,0.0,24.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.413740722674959,0.102,999999.0,5.141,0.153,4.316,9.293,9237.895,165.0,0.0,0.0,0.0 9833.0,9833,,Block 2016,0,25,PedestrianZones,2300916.1621374814,145769.23265358113,10.0,0,0,0.0,0.0,0.0,0.0,,14451.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2016.0,410470003002016.0,1000000US410470003002016,0.0,0.0,80103.0,0.0,157.0,44.9504886,-123.0234299,0.0,1.0,8009502016,80082.0,0.0,0.0,64259.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155516.15,1594.66,1.0,,,95.0,80095.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.5701563233237965,0.047,999999.0,5.42,0.156,4.151,8.754,9071.315,157.0,0.0,0.0,0.0 9834.0,9834,,Block 3005,0,25,PedestrianZones,2300804.94438127,145484.42308933096,10.0,0,0,0.0,0.0,0.0,0.0,,15222.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3005.0,410470002003005.0,1000000US410470002003005,0.0,0.91,80103.0,0.0,145.0,44.9478955,-123.024726,0.0,1.0,8008303005,80082.0,0.0,0.0,64260.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.08,0.8399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,163821.54,1633.44,1.0,,,83.0,80083.0,2.0,2.0,23.0,0.0,21.0,0.0,0.0,25.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.760821636623773,0.123,999999.0,11.122,0.062,4.2,8.813,12758.384,145.0,0.0,0.0,0.0 -9835.0,9835,,Block 3008,0,25,PedestrianZones,2300765.3339338186,145384.5635841652,10.0,0,0,0.0,0.0,0.0,0.0,,14446.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3008.0,410470002003008.0,1000000US410470002003008,0.0,0.68,80103.0,0.0,145.0,44.9469861,-123.0251881,0.0,1.0,8008303008,80082.0,0.0,0.0,64261.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4,0.8499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155461.26,1588.4,1.0,,,83.0,80083.0,2.0,8.0,25.0,0.0,17.0,0.0,0.0,20.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.568896318246168,0.039,999999.0,24.448,0.03,4.052,8.298,20957.206,145.0,0.0,0.0,0.0 -9836.0,9836,,Block 2017,0,25,PedestrianZones,2301025.739575696,145727.14348666763,10.0,0,0,0.0,0.0,0.0,0.0,,9566.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,23,0,0,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2017.0,410470003002017.0,1000000US410470003002017,0.0,0.25,80103.0,0.0,161.0,44.9501408,-123.0220253,0.0,3.0,8009502017,80082.0,0.0,0.0,64262.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.26,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,102945.88,1289.3,1.0,,,95.0,80095.0,1.0,24.0,32.0,0.0,8.0,0.0,0.0,19.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.363310132869417,0.081,999999.0,4.522,0.172,4.253,9.482,8962.609,161.0,0.0,0.0,0.0 -9837.0,9837,,Block 2010,0,25,PedestrianZones,2301097.6994005577,145917.4117338233,10.0,0,0,0.0,0.0,0.0,0.0,,10777.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2010.0,410470003002010.0,1000000US410470003002010,0.0,0.54,80103.0,0.0,162.0,44.9518724,-123.021189,0.0,2.0,8009502010,80082.0,0.0,0.0,64263.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115977.41,1353.74,1.0,,,95.0,80095.0,1.0,11.0,24.0,0.0,13.0,0.0,0.0,21.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.662472690411515,0.065,999999.0,5.698,0.188,3.837,8.561,9125.952,162.0,0.0,0.0,0.0 +9835.0,9835,,Block 3008,0,25,PedestrianZones,2300765.3339338186,145384.5635841652,10.0,0,0,0.0,0.0,0.0,0.0,,14446.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3008.0,410470002003008.0,1000000US410470002003008,0.0,0.68,80103.0,0.0,145.0,44.9469861,-123.0251881,0.0,1.0,8008303008,80082.0,0.0,0.0,64261.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4,0.8499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,155461.26,1588.4,1.0,,,83.0,80083.0,2.0,8.0,25.0,0.0,17.0,0.0,0.0,20.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.568896318246168,0.039,999999.0,24.448,0.03,4.052,8.298,20957.206,145.0,0.0,0.0,0.0 +9836.0,9836,,Block 2017,0,25,PedestrianZones,2301025.739575696,145727.14348666763,10.0,0,0,0.0,0.0,0.0,0.0,,9566.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,34,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2017.0,410470003002017.0,1000000US410470003002017,0.0,0.25,80103.0,0.0,161.0,44.9501408,-123.0220253,0.0,3.0,8009502017,80082.0,0.0,0.0,64262.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.26,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,102945.88,1289.3,1.0,,,95.0,80095.0,1.0,24.0,32.0,0.0,8.0,0.0,0.0,19.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.363310132869417,0.081,999999.0,4.522,0.172,4.253,9.482,8962.609,161.0,0.0,0.0,0.0 +9837.0,9837,,Block 2010,0,25,PedestrianZones,2301097.6994005577,145917.4117338233,10.0,0,0,0.0,0.0,0.0,0.0,,10777.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,8,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2010.0,410470003002010.0,1000000US410470003002010,0.0,0.54,80103.0,0.0,162.0,44.9518724,-123.021189,0.0,2.0,8009502010,80082.0,0.0,0.0,64263.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,115977.41,1353.74,1.0,,,95.0,80095.0,1.0,11.0,24.0,0.0,13.0,0.0,0.0,21.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.662472690411515,0.065,999999.0,5.698,0.188,3.837,8.561,9125.952,162.0,0.0,0.0,0.0 9838.0,9838,,Block 2018,0,25,PedestrianZones,2301113.973745465,145667.0950591038,10.0,0,0,0.0,0.0,0.0,0.0,,17131.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2018.0,410470003002018.0,1000000US410470003002018,0.0,1.0,80103.0,0.0,157.0,44.9496254,-123.0208839,0.0,1.0,8009502018,80082.0,0.0,0.0,64264.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,184358.45,1750.84,1.0,,,95.0,80095.0,1.0,0.0,31.0,0.0,31.0,0.0,0.0,76.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.232283890660931,0.138,999999.0,5.378,0.224,4.046,8.847,9103.96,157.0,0.0,0.0,0.0 -9839.0,9839,,Block 3001,0,25,PedestrianZones,2300998.674034132,145556.79379224457,10.0,0,0,0.0,0.0,0.0,0.0,,14972.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3001.0,410470002003001.0,1000000US410470002003001,0.0,0.64,80103.0,0.0,151.0,44.9486009,-123.0223007,0.0,1.0,8008303001,80082.0,0.0,0.0,64265.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,161123.17,1677.3,1.0,,,83.0,80083.0,2.0,9.0,25.0,0.0,16.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.698875678012378,0.062,999999.0,9.16,0.227,4.035,8.811,11501.739,151.0,0.0,0.0,0.0 +9839.0,9839,,Block 3001,0,25,PedestrianZones,2300998.674034132,145556.79379224457,10.0,0,0,0.0,0.0,0.0,0.0,,14972.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3001.0,410470002003001.0,1000000US410470002003001,0.0,0.64,80103.0,0.0,151.0,44.9486009,-123.0223007,0.0,1.0,8008303001,80082.0,0.0,0.0,64265.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,161123.17,1677.3,1.0,,,83.0,80083.0,2.0,9.0,25.0,0.0,16.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.698875678012378,0.062,999999.0,9.16,0.227,4.035,8.811,11501.739,151.0,0.0,0.0,0.0 9840.0,9840,,Block 3006,0,25,PedestrianZones,2300906.625386568,145471.71866558652,10.0,0,0,0.0,0.0,0.0,0.0,,7178.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3006.0,410470002003006.0,1000000US410470002003006,0.0,1.0,80103.0,0.0,145.0,44.9478098,-123.023433,0.0,1.0,8008303006,80082.0,0.0,0.0,64266.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,77248.55999999998,1177.62,1.0,,,83.0,80083.0,2.0,0.0,27.0,0.0,27.0,0.0,0.0,36.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.7733813530112932,0.066,999999.0,20.74,0.216,4.152,8.915,18979.641,145.0,0.0,0.0,0.0 9841.0,9841,,Block 2007,0,25,PedestrianZones,2301058.537795403,145398.7784649932,10.0,0,0,0.0,0.0,0.0,0.0,,19430.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2007.0,410470006002007.0,1000000US410470006002007,0.0,1.0,80103.0,0.0,145.0,44.9471964,-123.02148,0.0,1.0,8010202007,80082.0,0.0,0.0,64267.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,209101.02,2813.93,1.0,,,102.0,80102.0,1.0,0.0,26.0,0.0,26.0,0.0,0.0,64.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.80029460787767,0.238,999999.0,3.004,0.145,4.191,8.922,7632.314,145.0,0.0,0.0,0.0 9842.0,9842,,Block 3000,0,25,PedestrianZones,2300982.726402336,145411.54357112478,10.0,0,0,0.0,0.0,0.0,0.0,,29793.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3000.0,410470002003000.0,1000000US410470002003000,0.0,0.97,80103.0,0.0,139.0,44.9472899,-123.0224453,0.0,1.0,8008303000,80082.0,0.0,0.0,64268.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,320629.83,3310.42,1.0,,,83.0,80083.0,2.0,1.0,35.0,0.0,34.0,0.0,0.0,45.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.360641606845618,0.203,999999.0,3.455,0.103,4.204,8.081,7382.584,139.0,0.0,0.0,0.0 -9843.0,9843,,Block 3013,0,25,PedestrianZones,2300791.4780012816,145127.5653740682,10.0,0,0,0.0,0.0,0.0,0.0,,5852.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3013.0,410470002003013.0,1000000US410470002003013,0.0,1.0,80103.0,0.0,144.0,44.9446818,-123.0247552,0.0,1.0,8008203013,80082.0,0.0,0.0,64269.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,62977.76,1036.52,1.0,,,82.0,80082.0,2.0,0.0,3.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.445769138799476,0.15,999999.0,19.986,0.023,4.242,8.319,18115.184,144.0,5.070371651498049,0.4929238140700132,0.8360887169983542 +9843.0,9843,,Block 3013,0,25,PedestrianZones,2300791.4780012816,145127.5653740682,10.0,0,0,0.0,0.0,0.0,0.0,,5852.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3013.0,410470002003013.0,1000000US410470002003013,0.0,1.0,80103.0,0.0,144.0,44.9446818,-123.0247552,0.0,1.0,8008203013,80082.0,0.0,0.0,64269.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,62977.76,1036.52,1.0,,,82.0,80082.0,2.0,0.0,3.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.445769138799476,0.15,999999.0,19.986,0.023,4.242,8.319,18115.184,144.0,0.2092862165483501,3.44568298266381,0.9225023223675172 9844.0,9844,,Block 2015,0,25,PedestrianZones,2301108.3258659174,145313.28361351095,10.0,0,0,0.0,0.0,0.0,0.0,,24424.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2015.0,410470006002015.0,1000000US410470006002015,0.0,1.0,80103.0,0.0,142.0,44.9464413,-123.0208156,0.0,1.0,8010202015,80082.0,0.0,0.0,64270.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,262845.78,2195.45,1.0,,,102.0,80102.0,1.0,0.0,46.0,0.0,46.0,0.0,0.0,111.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.034103557255541,0.105,999999.0,9.881,0.026,4.034,8.222,11585.884,142.0,0.0,0.0,0.0 -9845.0,9845,,Block 3021,0,25,PedestrianZones,2300664.390422605,144733.06520940113,10.0,0,0,0.0,0.0,0.0,0.0,,18888.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3021.0,410470002003021.0,1000000US410470002003021,0.0,0.0,80103.0,0.0,123.0,44.9410975,-123.0262086,0.0,3.0,8008103021,80068.0,0.0,0.0,64271.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,308.0,0.0,0.0,0.0,1.0,203273.57,1825.39,1.0,,,81.0,80081.0,2.0,29.0,29.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.66651504054465,0.118,999999.0,45.587,0.517,3.255,6.026,33032.105,123.0,5.095127835612463,0.4954337646444301,0.8413458893641014 -9846.0,9846,,Block 3028,0,25,PedestrianZones,2300454.580413278,144539.83707328723,10.0,0,0,0.0,0.0,0.0,0.0,,12556.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,1,0,0,0,936,0,0,2,0,0,0,0,0,0,1210,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3028.0,410470002003028.0,1000000US410470002003028,0.0,0.0,80103.0,0.0,128.0,44.9393004,-123.0287892,0.0,3.0,8008003028,80068.0,0.0,0.0,64272.0,0.0,2.53,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,135122.98,1484.06,1.0,,,80.0,80080.0,2.0,781.0,781.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.101994134716673,0.0,999999.0,69.645,0.734,2.178,4.003,47134.976,128.0,5.1251645003005,0.4980665752344947,0.8456912695719999 -9847.0,9847,,Block 6008,0,25,PedestrianZones,2300751.3515232727,144562.26768282053,10.0,0,0,0.0,0.0,0.0,0.0,,16938.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,5,4,0,0,0,0,79,0,0,0,0,0,0,100,0,5,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6008.0,410470009006008.0,1000000US410470009006008,0.0,0.33,80103.0,0.0,134.0,44.9395857,-123.0250396,0.0,3.0,8010606008,80068.0,0.0,0.0,64273.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.01,0.5,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,1.0,182286.49,1709.6,1.0,,,106.0,80106.0,1.0,116.0,173.0,0.0,57.0,0.0,0.0,115.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.184718396821943,0.132,999999.0,30.933,0.558,3.787,7.158,24378.545,134.0,5.076883956330586,0.4936330893771415,0.8383262456212336 -9848.0,9848,,Block 3027,0,25,PedestrianZones,2300797.287086993,144679.5371434684,10.0,0,0,0.0,0.0,0.0,0.0,,15149.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,143,141,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3027.0,410470006003027.0,1000000US410470006003027,0.0,0.0,80103.0,0.0,130.0,44.9406534,-123.0245043,0.0,3.0,8010403027,80082.0,0.0,0.0,64274.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.0,0.0,0.0,0.0,1.0,163022.57,1607.81,1.0,,,104.0,80104.0,1.0,124.0,124.0,0.0,0.0,0.0,0.0,0.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.742480038811153,0.041,999999.0,42.994,0.539,3.47,6.539,31700.967,130.0,5.071514517715416,0.4931792370294985,0.8375761079426737 +9845.0,9845,,Block 3021,0,25,PedestrianZones,2300664.390422605,144733.06520940113,10.0,0,0,0.0,0.0,0.0,0.0,,18888.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3021.0,410470002003021.0,1000000US410470002003021,0.0,0.0,80103.0,0.0,123.0,44.9410975,-123.0262086,0.0,3.0,8008103021,80068.0,0.0,0.0,64271.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,308.0,0.0,0.0,0.0,1.0,203273.57,1825.39,1.0,,,81.0,80081.0,2.0,29.0,29.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.66651504054465,0.118,999999.0,45.587,0.517,3.255,6.026,33032.105,123.0,0.2059920092871546,3.3758845726162225,0.9052439088975958 +9846.0,9846,,Block 3028,0,25,PedestrianZones,2300454.580413278,144539.83707328723,10.0,0,0,0.0,0.0,0.0,0.0,,12556.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,1,0,0,0,529,0,0,3,0,0,0,0,0,0,673,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3028.0,410470002003028.0,1000000US410470002003028,0.0,0.0,80103.0,0.0,128.0,44.9393004,-123.0287892,0.0,3.0,8008003028,80068.0,0.0,0.0,64272.0,0.0,2.53,0.0,3.0,NEIGHBORHOOD PARK,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.0,0.0,0.0,0.0,1.0,135122.98,1484.06,1.0,,,80.0,80080.0,2.0,781.0,781.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.101994134716673,0.0,999999.0,69.645,0.734,2.178,4.003,47134.976,128.0,0.206369216364873,3.390431616613736,0.9080417708763852 +9847.0,9847,,Block 6008,0,25,PedestrianZones,2300751.3515232727,144562.26768282053,10.0,0,0,0.0,0.0,0.0,0.0,,16938.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,8,5,0,0,0,0,100,0,0,0,0,0,0,83,0,4,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6008.0,410470009006008.0,1000000US410470009006008,0.0,0.33,80103.0,0.0,134.0,44.9395857,-123.0250396,0.0,3.0,8010606008,80068.0,0.0,0.0,64273.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.01,0.5,0.0,0.0,0.0,0.0,21.0,0.0,0.0,0.0,1.0,182286.49,1709.6,1.0,,,106.0,80106.0,1.0,116.0,173.0,0.0,57.0,0.0,0.0,115.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.184718396821943,0.132,999999.0,30.933,0.558,3.787,7.158,24378.545,134.0,0.2050839915516733,3.358799266502261,0.9010969137103576 +9848.0,9848,,Block 3027,0,25,PedestrianZones,2300797.287086993,144679.5371434684,10.0,0,0,0.0,0.0,0.0,0.0,,15149.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,59,64,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3027.0,410470006003027.0,1000000US410470006003027,0.0,0.0,80103.0,0.0,130.0,44.9406534,-123.0245043,0.0,3.0,8010403027,80082.0,0.0,0.0,64274.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.0,0.0,0.0,0.0,1.0,163022.57,1607.81,1.0,,,104.0,80104.0,1.0,124.0,124.0,0.0,0.0,0.0,0.0,0.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.742480038811153,0.041,999999.0,42.994,0.539,3.47,6.539,31700.967,130.0,0.2051041867464957,3.358182245519143,0.9009942909653356 9849.0,9849,,Block 3026,0,25,PedestrianZones,2300910.8804445574,144634.16970669257,10.0,0,0,0.0,0.0,0.0,0.0,,14016.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3026.0,410470006003026.0,1000000US410470006003026,0.0,1.0,80103.0,0.0,137.0,44.9402773,-123.0230477,0.0,1.0,8010403026,80082.0,0.0,0.0,64275.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,150838.02,1558.03,1.0,,,104.0,80104.0,1.0,0.0,14.0,0.0,14.0,0.0,0.0,23.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.4627613748907464,0.015,999999.0,38.363,0.47,3.597,6.823,28918.86,137.0,0.0,0.0,0.0 -9885.0,9885,,Block 1001,0,25,PedestrianZones,2302348.5988903427,145910.41192689285,10.0,0,0,0.0,0.0,0.0,0.0,,26916.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1001.0,410470006001001.0,1000000US410470006001001,0.0,0.97,80103.0,0.0,97.0,44.9521596,-123.0053407,0.0,1.0,8009901001,80377.0,0.0,0.0,64356.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,289668.65,2631.91,1.0,,,99.0,80099.0,1.0,1.0,33.0,0.0,32.0,0.0,0.0,75.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.649871348383821,0.194,999999.0,2.5,0.236,3.834,10.207,8132.969,97.0,0.0,0.0,0.0 -9902.0,9902,,Block 2018,0,25,PedestrianZones,2299418.9120237688,144776.4138376666,10.0,0,0,0.0,0.0,0.0,0.0,,3456.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2018.0,410470002002018.0,1000000US410470002002018,0.0,0.0,80103.0,0.0,101.0,44.941136,-123.0419996,0.0,3.0,8006102018,80068.0,0.0,0.0,64392.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,37192.47,1559.74,1.0,,,61.0,80061.0,2.0,10.0,10.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.8538208233408561,0.194,999999.0,31.646,2.734,1.562,2.53,21872.567,101.0,0.0,0.0,0.0 -9903.0,9903,,Block 1012,0,25,PedestrianZones,2300032.2463189,145899.18061094987,10.0,0,0,0.0,0.0,0.0,0.0,,9574.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,25,0,1,0,0,0,7,0,0,34,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1012.0,410470002001012.0,1000000US410470002001012,0.0,0.08,80103.0,0.0,127.0,44.9514085,-123.0346781,0.0,3.0,8008501012,80068.0,0.0,0.0,64393.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,103033.08,1285.04,1.0,,,85.0,80085.0,2.0,33.0,36.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.365311941530764,0.185,999999.0,9.635,0.551,2.41,5.15,9462.901,127.0,0.0,0.0,0.0 -9904.0,9904,,Block 2051,0,25,PedestrianZones,2299877.7735486105,144624.1583715212,10.0,0,0,0.0,0.0,0.0,0.0,,17278.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,140,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2051.0,410470002002051.0,1000000US410470002002051,0.0,0.0,80103.0,0.0,125.0,44.9398962,-123.0361277,0.0,3.0,8006702051,80068.0,0.0,0.0,64394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,79.0,0.0,0.0,0.0,1.0,185947.39,1726.11,1.0,,,67.0,80067.0,2.0,165.0,165.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.268760849842335,0.127,999999.0,36.193,2.441,1.829,2.876,25004.185,125.0,5.216196214850286,0.5054304099242191,0.8552057756901111 -9905.0,9905,,Block 3045,0,25,PedestrianZones,2299597.0010393225,144257.06611549892,10.0,0,0,0.04,0.0,0.0,0.0,,8512.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,22,0,0,12,0,1,17,0,0,0,0,0,0,0,0,63,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3045.0,410470002003045.0,1000000US410470002003045,10.14,0.03,80135.0,0.0,95.0,44.9365149,-123.0395373,0.0,3.0,8007303045,80068.0,0.0,0.0,64395.0,0.0,0.04,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,28.0,1.0,0.0,0.0,0.0,2.23,253.0,0.0,0.0,0.0,1.0,91599.99,1344.58,1.0,,,73.0,80073.0,2.0,84.0,87.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1028444782417046,0.179,999999.0,33.063,1.897,2.633,4.237,23871.92,95.0,5.236326793837039,0.5069691491676265,0.8577531414696793 -9906.0,9906,,Block 1033,0,25,PedestrianZones,2300461.973008156,145365.59662409776,10.0,0,0,0.0,0.0,0.0,0.0,,19822.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,67,0,1,0,0,0,0,0,0,33,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1033.0,410470002001033.0,1000000US410470002001033,0.0,0.4099999999999999,80103.0,0.0,155.0,44.9467301,-123.029023,0.0,3.0,8008401033,80068.0,0.0,0.0,64403.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.37,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,213318.53,1795.83,1.0,,,84.0,80084.0,2.0,24.0,41.0,0.0,17.0,0.0,0.0,46.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.897115315892982,0.061,999999.0,26.516,0.206,4.015,8.002,22091.481,155.0,0.0,0.0,0.0 -9907.0,9907,,Block 3019,0,25,PedestrianZones,2300404.960171979,144840.4348890484,10.0,0,0,0.0,0.0,0.0,0.0,,18661.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3019.0,410470002003019.0,1000000US410470002003019,0.0,0.0,80103.0,0.0,130.0,44.9419903,-123.0295368,0.0,1.0,8008103019,80068.0,0.0,0.0,64404.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,381.0,0.0,0.0,0.0,1.0,200830.65,1794.61,1.0,,,81.0,80081.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.610433170724013,0.125,999999.0,74.868,0.779,2.903,5.17,51224.096,130.0,5.140280700517681,0.4994765080402475,0.8473839053306373 +9885.0,9885,,Block 1001,0,25,PedestrianZones,2302348.5988903427,145910.41192689285,10.0,0,0,0.0,0.0,0.0,0.0,,26916.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1001.0,410470006001001.0,1000000US410470006001001,0.0,0.97,80103.0,0.0,97.0,44.9521596,-123.0053407,0.0,1.0,8009901001,80377.0,0.0,0.0,64356.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,289668.65,2631.91,1.0,,,99.0,80099.0,1.0,1.0,33.0,0.0,32.0,0.0,0.0,75.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.649871348383821,0.194,999999.0,2.5,0.236,3.834,10.207,8132.969,97.0,0.0,0.0,0.0 +9902.0,9902,,Block 2018,0,25,PedestrianZones,2299418.9120237688,144776.4138376666,10.0,0,0,0.0,0.0,0.0,0.0,,3456.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2018.0,410470002002018.0,1000000US410470002002018,0.0,0.0,80103.0,0.0,101.0,44.941136,-123.0419996,0.0,3.0,8006102018,80068.0,0.0,0.0,64392.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,37192.47,1559.74,1.0,,,61.0,80061.0,2.0,10.0,10.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.8538208233408561,0.194,999999.0,31.646,2.734,1.562,2.53,21872.567,101.0,0.0,0.0,0.0 +9903.0,9903,,Block 1012,0,25,PedestrianZones,2300032.2463189,145899.18061094987,10.0,0,0,0.0,0.0,0.0,0.0,,9574.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,18,0,0,31,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1012.0,410470002001012.0,1000000US410470002001012,0.0,0.08,80103.0,0.0,127.0,44.9514085,-123.0346781,0.0,3.0,8008501012,80068.0,0.0,0.0,64393.0,0.0,0.0,0.0,0.0,,,,0,0.0,5.5,0.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,103033.08,1285.04,1.0,,,85.0,80085.0,2.0,33.0,36.0,0.0,3.0,0.0,0.0,6.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.365311941530764,0.185,999999.0,9.635,0.551,2.41,5.15,9462.901,127.0,0.0,0.0,0.0 +9904.0,9904,,Block 2051,0,25,PedestrianZones,2299877.7735486105,144624.1583715212,10.0,0,0,0.0,0.0,0.0,0.0,,17278.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,250,0,0,0,0,0,0,0,0,0,177,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2051.0,410470002002051.0,1000000US410470002002051,0.0,0.0,80103.0,0.0,125.0,44.9398962,-123.0361277,0.0,3.0,8006702051,80068.0,0.0,0.0,64394.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,79.0,0.0,0.0,0.0,1.0,185947.39,1726.11,1.0,,,67.0,80067.0,2.0,165.0,165.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.268760849842335,0.127,999999.0,36.193,2.441,1.829,2.876,25004.185,125.0,0.2043925242949254,3.44329231209108,0.9143080007601704 +9905.0,9905,,Block 3045,0,25,PedestrianZones,2299597.0010393225,144257.06611549892,10.0,0,0,0.04,0.0,0.0,0.0,,8512.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,31,0,0,9,0,2,19,0,0,0,0,0,0,0,0,52,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3045.0,410470002003045.0,1000000US410470002003045,10.14,0.03,80135.0,0.0,95.0,44.9365149,-123.0395373,0.0,3.0,8007303045,80068.0,0.0,0.0,64395.0,0.0,0.04,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,28.0,1.0,0.0,0.0,0.0,2.23,253.0,0.0,0.0,0.0,1.0,91599.99,1344.58,1.0,,,73.0,80073.0,2.0,84.0,87.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1028444782417046,0.179,999999.0,33.063,1.897,2.633,4.237,23871.92,95.0,0.2029403413876628,3.4362494968119446,0.9114250526411808 +9906.0,9906,,Block 1033,0,25,PedestrianZones,2300461.973008156,145365.59662409776,10.0,0,0,0.0,0.0,0.0,0.0,,19822.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,39,0,1,0,0,0,0,0,0,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1033.0,410470002001033.0,1000000US410470002001033,0.0,0.4099999999999999,80103.0,0.0,155.0,44.9467301,-123.029023,0.0,3.0,8008401033,80068.0,0.0,0.0,64403.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.52,0.37,0.0,0.0,0.0,0.0,8.0,0.0,0.0,0.0,1.0,213318.53,1795.83,1.0,,,84.0,80084.0,2.0,24.0,41.0,0.0,17.0,0.0,0.0,46.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.897115315892982,0.061,999999.0,26.516,0.206,4.015,8.002,22091.481,155.0,0.0,0.0,0.0 +9907.0,9907,,Block 3019,0,25,PedestrianZones,2300404.960171979,144840.4348890484,10.0,0,0,0.0,0.0,0.0,0.0,,18661.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3019.0,410470002003019.0,1000000US410470002003019,0.0,0.0,80103.0,0.0,130.0,44.9419903,-123.0295368,0.0,1.0,8008103019,80068.0,0.0,0.0,64404.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,381.0,0.0,0.0,0.0,1.0,200830.65,1794.61,1.0,,,81.0,80081.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.610433170724013,0.125,999999.0,74.868,0.779,2.903,5.17,51224.096,130.0,0.2066298156455775,3.4069539073252586,0.911129952549631 9908.0,9908,,Block 2014,0,25,PedestrianZones,2300823.1140675326,145913.92066260052,10.0,0,0,0.0,0.0,0.0,0.0,,13555.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2014.0,410470003002014.0,1000000US410470003002014,0.0,1.0,80103.0,0.0,168.0,44.9517639,-123.0246659,0.0,1.0,8009402014,80082.0,0.0,0.0,64405.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,145874.1,1550.69,1.0,,,94.0,80094.0,1.0,0.0,17.0,0.0,17.0,0.0,0.0,38.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3488055574969398,0.106,999999.0,5.256,0.173,4.455,9.308,9321.358,168.0,0.0,0.0,0.0 -9909.0,9909,,Block 2012,0,25,PedestrianZones,2301063.286159405,145821.13132150995,10.0,0,0,0.0,0.0,0.0,0.0,,9871.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2012.0,410470003002012.0,1000000US410470003002012,0.0,0.23,80103.0,0.0,162.0,44.9509967,-123.0215869,0.0,3.0,8009502012,80082.0,0.0,0.0,64406.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.13,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106235.0,1310.53,1.0,,,95.0,80095.0,1.0,17.0,22.0,0.0,5.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.438817800501862,0.121,999999.0,5.218,0.19,3.912,8.722,8921.388,162.0,0.0,0.0,0.0 -9910.0,9910,,Block 3014,0,25,PedestrianZones,2300749.381619774,144951.27809499617,10.0,0,0,0.0,0.0,0.0,0.0,,11205.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,5,24,0,0,0,0,0,0,0,0,19,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3014.0,410470002003014.0,1000000US410470002003014,0.0,0.0,80103.0,0.0,139.0,44.9430843,-123.0252186,0.0,3.0,8008203014,80082.0,0.0,0.0,64407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,1.0,120584.9,1989.78,1.0,,,82.0,80082.0,2.0,14.0,14.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7682458915029,0.121,999999.0,42.725,0.5,4.19,7.174,31935.224,139.0,5.078066877706781,0.4937692691748964,0.8379927349904926 +9909.0,9909,,Block 2012,0,25,PedestrianZones,2301063.286159405,145821.13132150995,10.0,0,0,0.0,0.0,0.0,0.0,,9871.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2012.0,410470003002012.0,1000000US410470003002012,0.0,0.23,80103.0,0.0,162.0,44.9509967,-123.0215869,0.0,3.0,8009502012,80082.0,0.0,0.0,64406.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.13,0.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106235.0,1310.53,1.0,,,95.0,80095.0,1.0,17.0,22.0,0.0,5.0,0.0,0.0,8.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.438817800501862,0.121,999999.0,5.218,0.19,3.912,8.722,8921.388,162.0,0.0,0.0,0.0 +9910.0,9910,,Block 3014,0,25,PedestrianZones,2300749.381619774,144951.27809499617,10.0,0,0,0.0,0.0,0.0,0.0,,11205.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,29,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3014.0,410470002003014.0,1000000US410470002003014,0.0,0.0,80103.0,0.0,139.0,44.9430843,-123.0252186,0.0,3.0,8008203014,80082.0,0.0,0.0,64407.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.0,0.0,0.0,0.0,1.0,120584.9,1989.78,1.0,,,82.0,80082.0,2.0,14.0,14.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.7682458915029,0.121,999999.0,42.725,0.5,4.19,7.174,31935.224,139.0,0.2060781882103932,3.3836041816910334,0.9068271217469362 9911.0,9911,,Block 3028,0,25,PedestrianZones,2301110.715793499,144658.7522515066,10.0,0,0,0.0,0.0,0.0,0.0,,25043.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3028.0,410470006003028.0,1000000US410470006003028,0.0,0.95,80103.0,0.0,150.0,44.9405545,-123.0205266,0.0,1.0,8010403028,80082.0,0.0,0.0,64408.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.03,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,269510.48,2957.33,1.0,,,104.0,80104.0,1.0,1.0,20.0,0.0,19.0,0.0,0.0,31.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.187103909104896,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,150.0,0.0,0.0,0.0 -9913.0,9913,,Block 2015,0,25,PedestrianZones,2299320.8970960407,144724.41784175573,10.0,0,0,23.77,0.0,0.0,0.0,,139832.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,14,0,0,0,0,0,0,0,88,0,0,0,0,0,0,128,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2015.0,410470002002015.0,1000000US410470002002015,0.0,0.0,80103.0,0.0,84.0,44.9406405,-123.0432202,0.0,3.0,8006102015,80068.0,0.0,0.0,64411.0,0.0,23.77,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,239.0,0.0,0.0,0.0,1.0,1504838.1,9590.84,1.0,,,61.0,80061.0,2.0,91.0,91.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,34.54629871009417,0.198,999999.0,30.076,1.304,2.264,3.68,21604.199,84.0,0.0,0.0,0.0 +9913.0,9913,,Block 2015,0,25,PedestrianZones,2299320.8970960407,144724.41784175573,10.0,0,0,23.77,0.0,0.0,0.0,,139832.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,5,0,0,0,0,0,0,0,58,0,0,0,0,0,0,123,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2015.0,410470002002015.0,1000000US410470002002015,0.0,0.0,80103.0,0.0,84.0,44.9406405,-123.0432202,0.0,3.0,8006102015,80068.0,0.0,0.0,64411.0,0.0,23.77,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,239.0,0.0,0.0,0.0,1.0,1504838.1,9590.84,1.0,,,61.0,80061.0,2.0,91.0,91.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,34.54629871009417,0.198,999999.0,30.076,1.304,2.264,3.68,21604.199,84.0,0.0,0.0,0.0 10015.0,10015,,Block 2012,0,25,PedestrianZones,2301385.721749101,145211.3716179004,10.0,0,0,0.0,0.0,0.0,0.0,,27555.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2012.0,410470006002012.0,1000000US410470006002012,0.0,1.0,80103.0,0.0,138.0,44.9456025,-123.0172618,0.0,1.0,8010202012,80082.0,0.0,0.0,67469.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,296541.85,2312.0,1.0,,,102.0,80102.0,1.0,0.0,33.0,0.0,33.0,0.0,0.0,84.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.807658055366149,0.067,999999.0,1.717,0.148,4.607,10.006,7502.888,138.0,0.0,0.0,0.0 -10016.0,10016,,Block 2017,0,25,PedestrianZones,2301607.647282341,145189.35328817787,10.0,0,0,0.0,0.0,0.0,0.0,,11729.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2017.0,410470006002017.0,1000000US410470006002017,0.0,0.65,80103.0,0.0,143.0,44.9454666,-123.0144422,0.0,1.0,8010002017,80082.0,0.0,0.0,67470.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126224.22,1424.87,1.0,,,100.0,80100.0,1.0,7.0,20.0,0.0,13.0,0.0,0.0,34.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8977068201693434,0.063,999999.0,0.859,0.047,4.609,10.027,6967.026,143.0,0.0,0.0,0.0 +10016.0,10016,,Block 2017,0,25,PedestrianZones,2301607.647282341,145189.35328817787,10.0,0,0,0.0,0.0,0.0,0.0,,11729.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2017.0,410470006002017.0,1000000US410470006002017,0.0,0.65,80103.0,0.0,143.0,44.9454666,-123.0144422,0.0,1.0,8010002017,80082.0,0.0,0.0,67470.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.2099999999999999,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,126224.22,1424.87,1.0,,,100.0,80100.0,1.0,7.0,20.0,0.0,13.0,0.0,0.0,34.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8977068201693434,0.063,999999.0,0.859,0.047,4.609,10.027,6967.026,143.0,0.0,0.0,0.0 10017.0,10017,,Block 3018,0,25,PedestrianZones,2301436.633397004,144757.86793676787,10.0,0,0,0.0,0.0,0.0,0.0,,11511.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3018.0,410470006003018.0,1000000US410470006003018,0.0,0.89,80103.0,0.0,140.0,44.9415375,-123.016438,0.0,1.0,8010503018,80082.0,0.0,0.0,67471.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1,0.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,123883.8,1395.21,1.0,,,105.0,80105.0,1.0,1.0,9.0,0.0,8.0,0.0,0.0,10.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.8439783006459987,0.159,999999.0,3.224,0.122,5.006,9.988,8455.131,140.0,0.0,0.0,0.0 10018.0,10018,,Block 6002,0,25,PedestrianZones,2301549.7516676425,144476.00921901927,10.0,0,0,0.0,0.0,0.0,0.0,,15049.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6002.0,410470009006002.0,1000000US410470009006002,0.0,1.0,80103.0,0.0,143.0,44.9390339,-123.0148942,0.0,1.0,8010806002,80082.0,0.0,0.0,67472.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,161951.42,1671.26,1.0,,,108.0,80108.0,1.0,0.0,24.0,0.0,24.0,0.0,0.0,35.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.7178896836830377,0.027,999999.0,3.847,0.125,4.89,10.051,8895.116,143.0,0.0,0.0,0.0 -10019.0,10019,,Block 1030,0,25,PedestrianZones,2301784.179160209,145636.72216683943,10.0,0,0,0.0,0.0,0.0,0.0,,19724.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,2,17,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1030.0,410470006001030.0,1000000US410470006001030,0.0,0.7399999999999999,80103.0,0.0,133.0,44.9495401,-123.0123825,0.0,1.0,8009901030,80082.0,0.0,0.0,67473.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,212263.48,1953.76,1.0,,,99.0,80099.0,1.0,7.0,27.0,0.0,20.0,0.0,0.0,46.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.872894607379387,0.049,999999.0,2.278,0.261,4.208,9.508,7543.324,133.0,0.0,0.0,0.0 +10019.0,10019,,Block 1030,0,25,PedestrianZones,2301784.179160209,145636.72216683943,10.0,0,0,0.0,0.0,0.0,0.0,,19724.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,6,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1030.0,410470006001030.0,1000000US410470006001030,0.0,0.7399999999999999,80103.0,0.0,133.0,44.9495401,-123.0123825,0.0,1.0,8009901030,80082.0,0.0,0.0,67473.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,212263.48,1953.76,1.0,,,99.0,80099.0,1.0,7.0,27.0,0.0,20.0,0.0,0.0,46.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.872894607379387,0.049,999999.0,2.278,0.261,4.208,9.508,7543.324,133.0,0.0,0.0,0.0 10020.0,10020,,Block 1022,0,25,PedestrianZones,2302048.162352727,145723.63940365007,10.0,0,0,0.0,0.0,0.0,0.0,,18724.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1022.0,410470006001022.0,1000000US410470006001022,0.0,1.0,80103.0,0.0,108.0,44.9503957,-123.0090729,0.0,1.0,8009901022,80082.0,0.0,0.0,67474.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,201504.73,1844.28,1.0,,,99.0,80099.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.625907930258914,0.198,999999.0,1.868,0.123,3.732,8.799,6826.729,108.0,0.0,0.0,0.0 -10159.0,10159,,Block 1000,0,25,PedestrianZones,2302310.0919595864,146017.9310784608,10.0,0,0,0.0,0.0,0.0,0.0,,165279.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,1,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1000.0,410470006001000.0,1000000US410470006001000,0.0,0.95,80103.0,0.0,77.0,44.953116,-123.0058707,0.0,1.0,8009901000,80377.0,0.0,0.0,79535.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1778698.41,9461.51,1.0,,,99.0,80099.0,1.0,7.0,130.0,0.0,123.0,0.0,0.0,292.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,40.833260637069934,0.314,999999.0,2.616,0.264,3.508,8.201,6922.824,77.0,0.0,0.0,0.0 -10181.0,10181,,Block 3055,0,25,PedestrianZones,2300246.751824677,144041.35878623213,10.0,0,0,0.0,0.0,0.0,0.0,,100578.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,2112.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3055.0,410470002003055.0,1000000US410470002003055,0.0,1.0,80103.0,0.0,141.0,44.9347581,-123.0312234,0.0,1.0,8007803055,80068.0,0.0,0.0,79571.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,66.0,0.0,0.0,0.0,1.0,1082402.13,4353.15,1.0,,,78.0,80078.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.84851177014153,0.255,999999.0,46.587,0.0,0.604,0.9,30391.515,141.0,0.0,0.0,0.0 -10189.0,10189,,Block 3051,0,25,PedestrianZones,2299234.0126102427,144083.5244659951,10.0,0,0,0.0,0.0,0.0,0.0,,46551.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,21,0,48,0,0,0,23,0,2,121,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3051.0,410470002003051.0,1000000US410470002003051,0.0,0.4299999999999999,80135.0,0.0,72.0,44.9348512,-123.0440649,0.0,3.0,8007003051,80068.0,0.0,0.0,79586.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.82,0.62,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,1.0,500977.8,3508.8,1.0,,,70.0,80070.0,2.0,103.0,181.0,0.0,78.0,0.0,0.0,126.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.500857694522283,0.123,999999.0,20.579,0.707,3.396,6.414,17275.678,72.0,0.0,0.0,0.0 -10195.0,10195,,Block 2003,0,25,PedestrianZones,2301735.669602484,145497.15090289005,10.0,0,0,0.0,0.0,0.0,0.0,,12332.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,2,3,0,0,0,0,0,5,0,0,0,0,0,0,11,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2003.0,410470006002003.0,1000000US410470006002003,0.0,0.4799999999999999,80103.0,0.0,139.0,44.948271,-123.012942,0.0,3.0,8010002003,80082.0,0.0,0.0,79596.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132719.14,1483.67,1.0,,,100.0,80100.0,1.0,11.0,21.0,0.0,10.0,0.0,0.0,22.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.046809504411393,0.0,999999.0,1.83,0.207,4.171,9.335,7145.685,139.0,0.0,0.0,0.0 -10196.0,10196,,Block 2018,0,25,PedestrianZones,2301670.046685338,145344.83252474348,10.0,0,0,0.0,0.0,0.0,0.0,,23590.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,27,0,1,0,0,0,5,0,0,19,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2018.0,410470006002018.0,1000000US410470006002018,0.0,0.7399999999999999,80103.0,0.0,141.0,44.9468826,-123.0137132,0.0,1.0,8010002018,80082.0,0.0,0.0,79597.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.14,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,253865.65,2160.93,1.0,,,100.0,80100.0,1.0,8.0,31.0,0.0,23.0,0.0,0.0,56.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.827948144174288,0.117,999999.0,1.868,0.23,4.198,9.469,7255.664,141.0,0.0,0.0,0.0 +10159.0,10159,,Block 1000,0,25,PedestrianZones,2302310.0919595864,146017.9310784608,10.0,0,0,0.0,0.0,0.0,0.0,,165279.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1000.0,410470006001000.0,1000000US410470006001000,0.0,0.95,80103.0,0.0,77.0,44.953116,-123.0058707,0.0,1.0,8009901000,80377.0,0.0,0.0,79535.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1778698.41,9461.51,1.0,,,99.0,80099.0,1.0,7.0,130.0,0.0,123.0,0.0,0.0,292.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,40.833260637069934,0.314,999999.0,2.616,0.264,3.508,8.201,6922.824,77.0,0.0,0.0,0.0 +10181.0,10181,,Block 3055,0,25,PedestrianZones,2300246.751824677,144041.35878623213,10.0,0,0,0.0,0.0,0.0,0.0,,100578.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,2112.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,4,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3055.0,410470002003055.0,1000000US410470002003055,0.0,1.0,80103.0,0.0,141.0,44.9347581,-123.0312234,0.0,1.0,8007803055,80068.0,0.0,0.0,79571.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,66.0,0.0,0.0,0.0,1.0,1082402.13,4353.15,1.0,,,78.0,80078.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.84851177014153,0.255,999999.0,46.587,0.0,0.604,0.9,30391.515,141.0,0.0,0.0,0.0 +10189.0,10189,,Block 3051,0,25,PedestrianZones,2299234.0126102427,144083.5244659951,10.0,0,0,0.0,0.0,0.0,0.0,,46551.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,40,0,34,0,0,0,25,0,5,118,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3051.0,410470002003051.0,1000000US410470002003051,0.0,0.4299999999999999,80135.0,0.0,72.0,44.9348512,-123.0440649,0.0,3.0,8007003051,80068.0,0.0,0.0,79586.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.82,0.62,0.0,0.0,0.0,0.0,40.0,0.0,0.0,0.0,1.0,500977.8,3508.8,1.0,,,70.0,80070.0,2.0,103.0,181.0,0.0,78.0,0.0,0.0,126.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.500857694522283,0.123,999999.0,20.579,0.707,3.396,6.414,17275.678,72.0,0.0,0.0,0.0 +10195.0,10195,,Block 2003,0,25,PedestrianZones,2301735.669602484,145497.15090289005,10.0,0,0,0.0,0.0,0.0,0.0,,12332.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,4,4,0,0,0,0,0,4,0,0,0,0,0,0,7,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2003.0,410470006002003.0,1000000US410470006002003,0.0,0.4799999999999999,80103.0,0.0,139.0,44.948271,-123.012942,0.0,3.0,8010002003,80082.0,0.0,0.0,79596.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.5,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,132719.14,1483.67,1.0,,,100.0,80100.0,1.0,11.0,21.0,0.0,10.0,0.0,0.0,22.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.046809504411393,0.0,999999.0,1.83,0.207,4.171,9.335,7145.685,139.0,0.0,0.0,0.0 +10196.0,10196,,Block 2018,0,25,PedestrianZones,2301670.046685338,145344.83252474348,10.0,0,0,0.0,0.0,0.0,0.0,,23590.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,33,0,1,0,0,0,5,0,0,44,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2018.0,410470006002018.0,1000000US410470006002018,0.0,0.7399999999999999,80103.0,0.0,141.0,44.9468826,-123.0137132,0.0,1.0,8010002018,80082.0,0.0,0.0,79597.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.14,0.4099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,253865.65,2160.93,1.0,,,100.0,80100.0,1.0,8.0,31.0,0.0,23.0,0.0,0.0,56.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.827948144174288,0.117,999999.0,1.868,0.23,4.198,9.469,7255.664,141.0,0.0,0.0,0.0 10197.0,10197,,Block 1011,0,25,PedestrianZones,2301707.355379769,145993.18860056452,10.0,0,0,0.0,0.0,0.0,0.0,,7875.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1011.0,410470006001011.0,1000000US410470006001011,0.0,1.0,80103.0,0.0,115.0,44.9527249,-123.0134962,0.0,1.0,8009801011,80082.0,0.0,0.0,79598.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,84747.00999999998,1164.82,1.0,,,98.0,80098.0,1.0,0.0,9.0,0.0,9.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.9455218711076427,0.111,999999.0,4.842,0.225,2.862,6.464,7236.212,115.0,0.0,0.0,0.0 -10198.0,10198,,Block 2001,0,25,PedestrianZones,2301960.602781003,145355.6790171656,10.0,0,0,7.06,0.0,0.0,0.0,,95887.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,32,0,0,1,0,0,0,0,0,0,0,0,47,0,0,0.0,285.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2001.0,410470006002001.0,1000000US410470006002001,8.359999999999998,0.39,80103.0,0.0,138.0,44.9470614,-123.0100372,0.0,3.0,8010002001,80082.0,0.0,0.0,79599.0,0.0,7.06,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.62,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1031917.48,4476.61,1.0,,,100.0,80100.0,1.0,93.0,152.0,0.0,59.0,0.0,0.0,150.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,23.68954479455233,0.172,999999.0,2.455,0.166,3.577,8.232,6839.459,138.0,0.0,0.0,0.0 -10199.0,10199,,Block 3023,0,25,PedestrianZones,2301588.856655794,144660.7800407005,10.0,0,0,0.0,0.0,0.0,0.0,,15262.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3023.0,410470006003023.0,1000000US410470006003023,0.0,0.92,80103.0,0.0,129.0,44.9407068,-123.0144718,0.0,1.0,8010503023,80082.0,0.0,0.0,79600.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,164245.85,1999.67,1.0,,,105.0,80105.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.770562607217328,0.242,999999.0,1.928,0.096,4.422,8.525,6690.194,129.0,0.0,0.0,0.0 -10200.0,10200,,Block 5003,0,25,PedestrianZones,2301738.5017807083,144437.00468799434,10.0,0,0,0.0,0.0,0.0,0.0,,18321.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,38,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5003.0,410470009005003.0,1000000US410470009005003,0.0,0.2999999999999999,80103.0,0.0,129.0,44.9387359,-123.0124884,0.0,3.0,8010905003,80082.0,0.0,0.0,79601.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.87,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,197166.07,1982.76,1.0,,,109.0,80109.0,1.0,59.0,84.0,0.0,25.0,0.0,0.0,68.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.526306164566362,0.162,999999.0,9.909,0.082,2.786,6.363,10413.934,129.0,0.0,0.0,0.0 +10198.0,10198,,Block 2001,0,25,PedestrianZones,2301960.602781003,145355.6790171656,10.0,0,0,7.06,0.0,0.0,0.0,,95887.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,19,0,0,1,0,0,0,0,0,0,0,0,33,0,0,0.0,285.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2001.0,410470006002001.0,1000000US410470006002001,8.359999999999998,0.39,80103.0,0.0,138.0,44.9470614,-123.0100372,0.0,3.0,8010002001,80082.0,0.0,0.0,79599.0,0.0,7.06,0.0,3.0,NEIGHBORHOOD PARK,DEVELOPED,,0,0.0,0.62,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1031917.48,4476.61,1.0,,,100.0,80100.0,1.0,93.0,152.0,0.0,59.0,0.0,0.0,150.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,23.68954479455233,0.172,999999.0,2.455,0.166,3.577,8.232,6839.459,138.0,0.0,0.0,0.0 +10199.0,10199,,Block 3023,0,25,PedestrianZones,2301588.856655794,144660.7800407005,10.0,0,0,0.0,0.0,0.0,0.0,,15262.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3023.0,410470006003023.0,1000000US410470006003023,0.0,0.92,80103.0,0.0,129.0,44.9407068,-123.0144718,0.0,1.0,8010503023,80082.0,0.0,0.0,79600.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.05,0.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,164245.85,1999.67,1.0,,,105.0,80105.0,1.0,2.0,26.0,0.0,24.0,0.0,0.0,44.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.770562607217328,0.242,999999.0,1.928,0.096,4.422,8.525,6690.194,129.0,0.0,0.0,0.0 +10200.0,10200,,Block 5003,0,25,PedestrianZones,2301738.5017807083,144437.00468799434,10.0,0,0,0.0,0.0,0.0,0.0,,18321.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,32,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5003.0,410470009005003.0,1000000US410470009005003,0.0,0.2999999999999999,80103.0,0.0,129.0,44.9387359,-123.0124884,0.0,3.0,8010905003,80082.0,0.0,0.0,79601.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.87,0.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,197166.07,1982.76,1.0,,,109.0,80109.0,1.0,59.0,84.0,0.0,25.0,0.0,0.0,68.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.526306164566362,0.162,999999.0,9.909,0.082,2.786,6.363,10413.934,129.0,0.0,0.0,0.0 10201.0,10201,,Block 5004,0,25,PedestrianZones,2301706.359662099,144221.97476646333,10.0,0,0,0.0,0.0,0.0,0.0,,36856.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5004.0,410470009005004.0,1000000US410470009005004,0.0,1.0,80103.0,0.0,131.0,44.9367927,-123.0128107,0.0,1.0,8010905004,80082.0,0.0,0.0,79602.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.3599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,396633.47,2539.74,1.0,,,109.0,80109.0,1.0,0.0,50.0,0.0,50.0,0.0,0.0,138.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,9.10544352154102,0.279,999999.0,12.135,0.114,3.504,8.189,13007.601,131.0,0.0,0.0,0.0 10204.0,10204,,Block 5006,0,25,PedestrianZones,2301874.561073065,144154.93485160972,10.0,0,0,0.0,0.0,0.0,0.0,,16806.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80119.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5006.0,410470009005006.0,1000000US410470009005006,0.0,1.0,80103.0,0.0,116.0,44.9362367,-123.0106542,0.0,1.0,8010905006,80082.0,0.0,0.0,79605.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,180857.78,1932.16,1.0,,,109.0,80109.0,1.0,0.0,24.0,0.0,24.0,0.0,0.0,62.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.151919560833497,0.279,999999.0,9.967,0.073,3.586,8.505,11821.843,116.0,0.0,0.0,0.0 10208.0,10208,,Block 2013,0,25,PedestrianZones,2301285.484735138,145248.87358490995,10.0,0,0,0.0,0.0,0.0,0.0,,22030.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2013.0,410470006002013.0,1000000US410470006002013,0.0,0.97,80103.0,0.0,142.0,44.9459117,-123.0185462,0.0,1.0,8010202013,80082.0,0.0,0.0,79615.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.01,0.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,237084.45,2132.71,1.0,,,102.0,80102.0,1.0,1.0,29.0,0.0,28.0,0.0,0.0,70.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.442705261433071,0.058,999999.0,2.278,0.123,4.678,9.663,7641.921,142.0,0.0,0.0,0.0 10209.0,10209,,Block 3007,0,25,PedestrianZones,2301324.9297541934,145052.78756374383,10.0,0,0,0.0,0.0,0.0,0.0,,12993.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3007.0,410470006003007.0,1000000US410470006003007,0.0,1.0,80103.0,0.0,141.0,44.944159,-123.0179692,0.0,1.0,8010403007,80082.0,0.0,0.0,79616.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.6099999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,139826.52,1498.01,1.0,,,104.0,80104.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,18.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.2099723558141,0.069,999999.0,1.824,0.113,4.692,9.768,7419.235,141.0,0.0,0.0,0.0 -10218.0,10218,,Block 6025,0,25,PedestrianZones,2300977.9915057514,144190.18568000375,10.0,0,0,0.0,0.0,0.0,0.0,,44190.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,1,0,0,0,0,14,0,20,0,0,0,11,0,0,30,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6025.0,410470009006025.0,1000000US410470009006025,0.0,0.27,80103.0,0.0,160.0,44.9363026,-123.0220222,0.0,3.0,8010606025,80068.0,0.0,0.0,79635.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.38,0.51,0.0,0.0,0.0,0.0,74.0,0.0,0.0,0.0,1.0,475563.25,3085.26,1.0,,,106.0,80106.0,1.0,94.0,129.0,0.0,35.0,0.0,0.0,68.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.917420222743775,0.075,999999.0,12.588,0.126,4.342,7.942,13139.285,160.0,0.0,0.0,0.0 +10218.0,10218,,Block 6025,0,25,PedestrianZones,2300977.9915057514,144190.18568000375,10.0,0,0,0.0,0.0,0.0,0.0,,44190.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,1,0,0,0,0,32,0,15,1,0,0,11,0,0,54,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6025.0,410470009006025.0,1000000US410470009006025,0.0,0.27,80103.0,0.0,160.0,44.9363026,-123.0220222,0.0,3.0,8010606025,80068.0,0.0,0.0,79635.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.38,0.51,0.0,0.0,0.0,0.0,74.0,0.0,0.0,0.0,1.0,475563.25,3085.26,1.0,,,106.0,80106.0,1.0,94.0,129.0,0.0,35.0,0.0,0.0,68.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.917420222743775,0.075,999999.0,12.588,0.126,4.342,7.942,13139.285,160.0,0.0,0.0,0.0 10224.0,10224,,Block 1030,0,25,PedestrianZones,2300334.998723644,145551.45824836157,10.0,0,0,0.0,0.0,0.0,0.0,,10809.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1030.0,410470002001030.0,1000000US410470002001030,0.0,1.0,80103.0,0.0,151.0,44.9483661,-123.0307051,0.0,1.0,8008401030,80068.0,0.0,0.0,79649.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.3499999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,116321.93,1336.26,1.0,,,84.0,80084.0,2.0,0.0,17.0,0.0,17.0,0.0,0.0,49.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.6703816850631887,0.129,999999.0,17.037,0.288,3.941,7.667,15810.265,151.0,0.0,0.0,0.0 10270.0,10270,,Block 2006,0,25,PedestrianZones,2301259.438481952,145544.27431490333,10.0,0,0,0.0,0.0,0.0,0.0,,13633.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2006.0,410470006002006.0,1000000US410470006002006,0.0,0.9,80103.0,0.0,147.0,44.9485615,-123.0189928,0.0,1.0,8010202006,80082.0,0.0,0.0,106763.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.04,0.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,146711.04,1727.7,1.0,,,102.0,80102.0,1.0,2.0,21.0,0.0,19.0,0.0,0.0,50.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.3680190103347125,0.123,999999.0,2.958,0.157,4.298,9.34,7870.653,147.0,0.0,0.0,0.0 10271.0,10271,,Block 1025,0,25,PedestrianZones,2301415.0303839403,145843.35583338092,10.0,0,0,0.0,0.0,0.0,0.0,,15084.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1025.0,410470006001025.0,1000000US410470006001025,0.0,1.0,80103.0,0.0,149.0,44.9512953,-123.01714,0.0,1.0,8009801025,80082.0,0.0,0.0,106764.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4299999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,162335.16,1734.17,1.0,,,98.0,80098.0,1.0,0.0,21.0,0.0,21.0,0.0,0.0,49.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.726699099049714,0.226,999999.0,3.71,0.209,4.441,10.322,8980.137,149.0,0.0,0.0,0.0 10272.0,10272,,Block 1027,0,25,PedestrianZones,2301705.1054876265,145732.23222476608,10.0,0,0,0.0,0.0,0.0,0.0,,8431.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1027.0,410470006001027.0,1000000US410470006001027,0.0,1.0,80103.0,0.0,132.0,44.950377,-123.0134218,0.0,1.0,8009801027,80082.0,0.0,0.0,106765.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5799999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,90727.97,1236.78,1.0,,,98.0,80098.0,1.0,0.0,11.0,0.0,11.0,0.0,0.0,19.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.0828257349085084,0.163,999999.0,2.869,0.183,3.778,8.71,7410.949,132.0,0.0,0.0,0.0 10281.0,10281,,Block 3063,0,25,PedestrianZones,2300253.215604589,143592.24840685894,10.0,0,0,0.0,0.0,0.0,0.0,,11127.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3063.0,410470002003063.0,1000000US410470002003063,0.0,1.0,80135.0,0.0,137.0,44.9307202,-123.0309633,0.0,1.0,8007703063,80068.0,0.0,0.0,106791.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,119752.18,1400.57,1.0,,,77.0,80077.0,2.0,0.0,1.0,0.0,1.0,0.0,0.0,1.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.749129303197461,0.0,999999.0,38.131,0.097,0.942,2.181,25799.761,137.0,0.0,0.0,0.0 -10283.0,10283,,Block 6015,0,25,PedestrianZones,2300768.0602953844,144274.35875224244,10.0,0,0,0.0,0.0,0.0,0.0,,15118.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,10,0,0,0.0,42.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6015.0,410470009006015.0,1000000US410470009006015,0.0,0.0,80103.0,0.0,148.0,44.9370007,-123.024714,0.0,3.0,8010606015,80068.0,0.0,0.0,106793.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,1.0,162699.0,1618.26,1.0,,,106.0,80106.0,1.0,11.0,11.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.7350517227203,0.041,999999.0,22.334,0.487,3.975,7.487,19085.374,148.0,0.0,0.0,0.0 -10284.0,10284,,Block 3014,0,25,PedestrianZones,2301191.2186992173,144670.55545912057,10.0,0,0,0.0,0.0,0.0,0.0,,52001.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,42,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3014.0,410470006003014.0,1000000US410470006003014,0.0,0.75,80103.0,0.0,153.0,44.9419378,-123.0189818,0.0,1.0,8010403014,80082.0,0.0,0.0,106794.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,559622.62,4585.05,1.0,,,104.0,80104.0,1.0,38.0,155.0,0.0,117.0,0.0,0.0,245.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.8471562621196,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,153.0,0.0,0.0,0.0 -10291.0,10291,,Block 2028,0,25,PedestrianZones,2300266.146992308,145227.07756438412,10.0,0,0,0.0,0.0,0.0,0.0,,29839.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,153,111,0,1,0,0,0,7,0,0,327,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2028.0,410470002002028.0,1000000US410470002002028,0.0,0.28,80103.0,0.0,149.0,44.945429,-123.0314484,0.0,3.0,8006902028,80068.0,0.0,0.0,106801.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.54,0.5999999999999999,0.0,0.8,6.0,0.0,137.0,0.0,0.0,0.0,1.0,321121.77,2372.55,1.0,,,69.0,80069.0,2.0,156.0,217.0,0.0,61.0,0.0,0.0,101.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.371935004846227,0.0,999999.0,29.431,0.863,3.369,6.97,23296.991,149.0,5.154729312084132,0.5003699165818636,0.846752234946653 -10292.0,10292,,Block 4042,0,25,PedestrianZones,2300580.5659630005,145902.9117251957,10.0,0,0,0.0,0.0,0.0,0.0,,10363.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4042.0,410470003004042.0,1000000US410470003004042,0.0,0.7299999999999999,80103.0,0.0,160.0,44.9515966,-123.0277339,0.0,1.0,8009004042,80082.0,0.0,0.0,106802.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111527.4,1336.47,1.0,,,90.0,80090.0,1.0,4.0,15.0,0.0,11.0,0.0,0.0,26.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.560314653681533,0.147,999999.0,6.148,0.211,4.205,8.847,9596.985,160.0,0.0,0.0,0.0 +10283.0,10283,,Block 6015,0,25,PedestrianZones,2300768.0602953844,144274.35875224244,10.0,0,0,0.0,0.0,0.0,0.0,,15118.0,0.0,6.0,410470009006000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,12,0,0,0.0,42.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,6015.0,410470009006015.0,1000000US410470009006015,0.0,0.0,80103.0,0.0,148.0,44.9370007,-123.024714,0.0,3.0,8010606015,80068.0,0.0,0.0,106793.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.0,0.0,0.0,0.0,1.0,162699.0,1618.26,1.0,,,106.0,80106.0,1.0,11.0,11.0,0.0,0.0,0.0,0.0,0.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.7350517227203,0.041,999999.0,22.334,0.487,3.975,7.487,19085.374,148.0,0.2039385167042653,3.342325595225792,0.8965353449534488 +10284.0,10284,,Block 3014,0,25,PedestrianZones,2301191.2186992173,144670.55545912057,10.0,0,0,0.0,0.0,0.0,0.0,,52001.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,43,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3014.0,410470006003014.0,1000000US410470006003014,0.0,0.75,80103.0,0.0,153.0,44.9419378,-123.0189818,0.0,1.0,8010403014,80082.0,0.0,0.0,106794.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.16,0.4799999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,559622.62,4585.05,1.0,,,104.0,80104.0,1.0,38.0,155.0,0.0,117.0,0.0,0.0,245.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.8471562621196,0.215,999999.0,31.379,0.571,4.2,8.107,25270.482,153.0,0.0,0.0,0.0 +10291.0,10291,,Block 2028,0,25,PedestrianZones,2300266.146992308,145227.07756438412,10.0,0,0,0.0,0.0,0.0,0.0,,29839.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,117,98,0,2,0,0,0,6,0,0,266,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2028.0,410470002002028.0,1000000US410470002002028,0.0,0.28,80103.0,0.0,149.0,44.945429,-123.0314484,0.0,3.0,8006902028,80068.0,0.0,0.0,106801.0,0.0,0.0,0.0,0.0,,,,0,0.0,1.54,0.5999999999999999,0.0,0.8,6.0,0.0,137.0,0.0,0.0,0.0,1.0,321121.77,2372.55,1.0,,,69.0,80069.0,2.0,156.0,217.0,0.0,61.0,0.0,0.0,101.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.371935004846227,0.0,999999.0,29.431,0.863,3.369,6.97,23296.991,149.0,0.2051147219879344,3.4235174349937214,0.911679296834066 +10292.0,10292,,Block 4042,0,25,PedestrianZones,2300580.5659630005,145902.9117251957,10.0,0,0,0.0,0.0,0.0,0.0,,10363.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,2,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4042.0,410470003004042.0,1000000US410470003004042,0.0,0.7299999999999999,80103.0,0.0,160.0,44.9515966,-123.0277339,0.0,1.0,8009004042,80082.0,0.0,0.0,106802.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.1499999999999999,0.4199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,111527.4,1336.47,1.0,,,90.0,80090.0,1.0,4.0,15.0,0.0,11.0,0.0,0.0,26.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.560314653681533,0.147,999999.0,6.148,0.211,4.205,8.847,9596.985,160.0,0.0,0.0,0.0 10293.0,10293,,Block 1032,0,25,PedestrianZones,2300528.525229384,145476.2576198238,10.0,0,0,0.0,0.0,0.0,0.0,,9930.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1032.0,410470002001032.0,1000000US410470002001032,0.0,1.0,80103.0,0.0,148.0,44.9477442,-123.028224,0.0,1.0,8008401032,80082.0,0.0,0.0,106803.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,106859.35,1320.23,1.0,,,84.0,80084.0,2.0,0.0,22.0,0.0,22.0,0.0,0.0,57.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.4531509367588087,0.065,999999.0,25.756,0.249,4.419,8.918,22191.584,148.0,0.0,0.0,0.0 -10294.0,10294,,Block 2055,0,25,PedestrianZones,2300227.641465096,144769.87118406556,10.0,0,0,0.0,0.0,0.0,0.0,,17341.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0.0,143.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2055.0,410470002002055.0,1000000US410470002002055,0.0,0.0,80103.0,0.0,134.0,44.9413056,-123.0317546,0.0,3.0,8006802055,80068.0,0.0,0.0,106804.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,0.0,1.0,186622.61,1728.31,1.0,,,68.0,80068.0,2.0,37.0,37.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.284261876557244,0.127,999999.0,57.791,2.227,2.146,3.545,39254.947,134.0,5.170694721317502,0.5019900946973015,0.8507810205918173 -10295.0,10295,,Block 3011,0,25,PedestrianZones,2300677.4818502776,145160.393532645,10.0,0,0,0.0,0.0,0.0,0.0,,51628.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,598,0,0,0,0,0,0,0,0,0,515,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3011.0,410470002003011.0,1000000US410470002003011,0.0,0.0,80103.0,0.0,138.0,44.944945,-123.0262121,0.0,3.0,8008203011,80082.0,0.0,0.0,106805.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,117.0,0.0,0.0,0.0,1.0,555611.27,3360.45,1.0,,,82.0,80082.0,2.0,807.0,807.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.755068423111188,0.125,999999.0,34.769,0.019,3.899,7.836,27267.188,138.0,5.0862804281027625,0.4944140771325754,0.8386292872093166 +10294.0,10294,,Block 2055,0,25,PedestrianZones,2300227.641465096,144769.87118406556,10.0,0,0,0.0,0.0,0.0,0.0,,17341.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0.0,143.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2055.0,410470002002055.0,1000000US410470002002055,0.0,0.0,80103.0,0.0,134.0,44.9413056,-123.0317546,0.0,3.0,8006802055,80068.0,0.0,0.0,106804.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.0,0.0,0.0,0.0,1.0,186622.61,1728.31,1.0,,,68.0,80068.0,2.0,37.0,37.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.284261876557244,0.127,999999.0,57.791,2.227,2.146,3.545,39254.947,134.0,0.2062344275207265,3.4232740519371494,0.9132094783059131 +10295.0,10295,,Block 3011,0,25,PedestrianZones,2300677.4818502776,145160.393532645,10.0,0,0,0.0,0.0,0.0,0.0,,51628.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,1,0,0,0,0,0,0,1185,0,0,0,0,0,0,0,0,0,986,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3011.0,410470002003011.0,1000000US410470002003011,0.0,0.0,80103.0,0.0,138.0,44.944945,-123.0262121,0.0,3.0,8008203011,80082.0,0.0,0.0,106805.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,117.0,0.0,0.0,0.0,1.0,555611.27,3360.45,1.0,,,82.0,80082.0,2.0,807.0,807.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,12.755068423111188,0.125,999999.0,34.769,0.019,3.899,7.836,27267.188,138.0,0.2061081299388144,3.395064341516932,0.9087240888845582 10296.0,10296,,Block 4035,0,25,PedestrianZones,2300711.0863605845,145957.8216965923,10.0,0,0,0.0,0.0,0.0,0.0,,10108.0,0.0,4.0,410470003004000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,4035.0,410470003004035.0,1000000US410470003004035,0.0,1.0,80103.0,0.0,174.0,44.9521272,-123.0261024,0.0,1.0,8009004035,80082.0,0.0,0.0,106806.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,108774.95,1320.09,1.0,,,90.0,80090.0,1.0,0.0,13.0,0.0,13.0,0.0,0.0,29.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.497127105699402,0.144,999999.0,3.831,0.16,4.739,10.038,8876.414,174.0,0.0,0.0,0.0 -10297.0,10297,,Block 3002,0,25,PedestrianZones,2300844.223513389,145581.8694501658,10.0,0,0,0.0,0.0,0.0,0.0,,14212.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,32,0,0,0,0,0,5,0,0,0,0,0,0,36,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3002.0,410470002003002.0,1000000US410470002003002,0.0,0.27,80103.0,0.0,151.0,44.948783,-123.024267,0.0,3.0,8008303002,80082.0,0.0,0.0,106807.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.44,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152945.84,1606.0,1.0,,,83.0,80083.0,2.0,44.0,60.0,0.0,16.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.51115035342168,0.047,999999.0,9.639,0.236,3.89,8.248,11447.702,151.0,0.0,0.0,0.0 -10298.0,10298,,Block 2019,0,25,PedestrianZones,2300991.615407364,145643.24961946477,10.0,0,0,0.0,0.0,0.0,0.0,,7584.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2019.0,410470003002019.0,1000000US410470003002019,0.0,0.89,80103.0,0.0,155.0,44.9493766,-123.0224243,0.0,1.0,8009502019,80082.0,0.0,0.0,106808.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.07,0.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,81617.21,1155.71,1.0,,,95.0,80095.0,1.0,1.0,9.0,0.0,8.0,0.0,0.0,15.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.8736716467147896,0.062,999999.0,9.16,0.227,4.035,8.811,11501.739,155.0,0.0,0.0,0.0 -10299.0,10299,,Block 3012,0,25,PedestrianZones,2300834.4860318545,145127.0110784268,10.0,0,0,0.0,0.0,0.0,0.0,,47877.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,83,0,0,0,0,2,0,0,0,0,0,0,75,0,0,0.0,691.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3012.0,410470002003012.0,1000000US410470002003012,0.0,0.28,80103.0,0.0,140.0,44.945383,-123.023425,0.0,3.0,8008203012,80082.0,0.0,0.0,106809.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.03,0.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,515245.73,4166.75,1.0,,,82.0,80082.0,2.0,71.0,98.0,0.0,27.0,0.0,0.0,35.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.82840399548617,0.15,999999.0,19.986,0.023,4.242,8.319,18115.184,140.0,0.0,0.0,0.0 -10300.0,10300,,Block 3015,0,25,PedestrianZones,2300709.0287123094,144855.82127787187,10.0,0,0,0.0,0.0,0.0,0.0,,21644.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,652,0,0,19,0,0,0,0,0,0,653,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3015.0,410470002003015.0,1000000US410470002003015,0.0,0.0,80103.0,0.0,129.0,44.9422143,-123.0256919,0.0,3.0,8008103015,80082.0,0.0,0.0,106810.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,167.0,0.0,0.0,0.0,1.0,232929.76,1892.97,1.0,,,81.0,80081.0,2.0,361.0,361.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.347326878391971,0.045,999999.0,48.544,0.511,3.814,6.704,35358.169,129.0,5.087027347456806,0.4946712092852837,0.8398946900587844 -10301.0,10301,,Block 3025,0,25,PedestrianZones,2300884.132709193,144765.47556221348,10.0,0,0,0.0,0.0,0.0,0.0,,24405.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,113,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3025.0,410470006003025.0,1000000US410470006003025,0.0,0.1799999999999999,80103.0,0.0,134.0,44.9414509,-123.0234384,0.0,3.0,8010403025,80082.0,0.0,0.0,106811.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.18,0.4899999999999999,0.0,0.0,6.0,0.0,123.0,0.0,0.0,0.0,1.0,262633.06,2474.44,1.0,,,104.0,80104.0,1.0,172.0,211.0,0.0,39.0,0.0,0.0,79.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.029220139328177,0.107,999999.0,37.482,0.551,3.922,7.385,28714.801,134.0,5.059412409122159,0.4920336680523659,0.8355615982397975 -10305.0,10305,,Block 3044,0,25,PedestrianZones,2299540.242944433,144152.48369154724,10.0,0,0,0.2999999999999999,0.0,0.0,0.0,,23426.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,46,4,0,0,0,9,0,116,0,0,0,0,0,0,79,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3044.0,410470002003044.0,1000000US410470002003044,10.14,0.02,80135.0,0.0,89.0,44.9355581,-123.0402145,0.0,3.0,8007303044,80068.0,0.0,0.0,106818.0,0.0,0.2999999999999999,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,55.33,1.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,252108.39,2052.7,1.0,,,73.0,80073.0,2.0,166.0,169.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.787607227027179,0.0,999999.0,31.875,2.018,2.68,4.316,23162.522,89.0,0.0,0.0,0.0 -10307.0,10307,,Block 2056,0,25,PedestrianZones,2299969.011169781,144485.8930660597,10.0,0,0,0.0,0.0,0.0,0.0,,8582.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,12,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2056.0,410470002002056.0,1000000US410470002002056,0.0,0.0,80103.0,0.0,132.0,44.9386783,-123.0349172,0.0,3.0,8006702056,80068.0,0.0,0.0,106820.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,1.0,92363.17,1299.45,1.0,,,67.0,80067.0,2.0,19.0,19.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1203648004829607,0.039,999999.0,31.231,0.0,0.346,0.402,20244.51,132.0,5.198696468251828,0.5039512088678568,0.8533905108183781 +10297.0,10297,,Block 3002,0,25,PedestrianZones,2300844.223513389,145581.8694501658,10.0,0,0,0.0,0.0,0.0,0.0,,14212.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,23,0,0,0,0,0,7,0,0,0,0,0,0,27,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3002.0,410470002003002.0,1000000US410470002003002,0.0,0.27,80103.0,0.0,151.0,44.948783,-123.024267,0.0,3.0,8008303002,80082.0,0.0,0.0,106807.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.44,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152945.84,1606.0,1.0,,,83.0,80083.0,2.0,44.0,60.0,0.0,16.0,0.0,0.0,18.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.51115035342168,0.047,999999.0,9.639,0.236,3.89,8.248,11447.702,151.0,0.0,0.0,0.0 +10298.0,10298,,Block 2019,0,25,PedestrianZones,2300991.615407364,145643.24961946477,10.0,0,0,0.0,0.0,0.0,0.0,,7584.0,0.0,2.0,410470003002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,2019.0,410470003002019.0,1000000US410470003002019,0.0,0.89,80103.0,0.0,155.0,44.9493766,-123.0224243,0.0,1.0,8009502019,80082.0,0.0,0.0,106808.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.07,0.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,81617.21,1155.71,1.0,,,95.0,80095.0,1.0,1.0,9.0,0.0,8.0,0.0,0.0,15.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.8736716467147896,0.062,999999.0,9.16,0.227,4.035,8.811,11501.739,155.0,0.0,0.0,0.0 +10299.0,10299,,Block 3012,0,25,PedestrianZones,2300834.4860318545,145127.0110784268,10.0,0,0,0.0,0.0,0.0,0.0,,47877.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80090.0,0,0,0,0,0,0,0,93,0,0,0,0,5,0,0,0,0,0,0,63,0,0,0.0,691.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3012.0,410470002003012.0,1000000US410470002003012,0.0,0.28,80103.0,0.0,140.0,44.945383,-123.023425,0.0,3.0,8008203012,80082.0,0.0,0.0,106809.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.03,0.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,515245.73,4166.75,1.0,,,82.0,80082.0,2.0,71.0,98.0,0.0,27.0,0.0,0.0,35.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,11.82840399548617,0.15,999999.0,19.986,0.023,4.242,8.319,18115.184,140.0,0.0,0.0,0.0 +10300.0,10300,,Block 3015,0,25,PedestrianZones,2300709.0287123094,144855.82127787187,10.0,0,0,0.0,0.0,0.0,0.0,,21644.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,1,0,0,0,0,0,0,536,0,0,24,0,0,0,0,0,0,489,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3015.0,410470002003015.0,1000000US410470002003015,0.0,0.0,80103.0,0.0,129.0,44.9422143,-123.0256919,0.0,3.0,8008103015,80082.0,0.0,0.0,106810.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.8,6.0,0.0,167.0,0.0,0.0,0.0,1.0,232929.76,1892.97,1.0,,,81.0,80081.0,2.0,361.0,361.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.347326878391971,0.045,999999.0,48.544,0.511,3.814,6.704,35358.169,129.0,0.2057208184027386,3.373188125164073,0.9043898720686104 +10301.0,10301,,Block 3025,0,25,PedestrianZones,2300884.132709193,144765.47556221348,10.0,0,0,0.0,0.0,0.0,0.0,,24405.0,0.0,3.0,410470006003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0,0,218,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,3025.0,410470006003025.0,1000000US410470006003025,0.0,0.1799999999999999,80103.0,0.0,134.0,44.9414509,-123.0234384,0.0,3.0,8010403025,80082.0,0.0,0.0,106811.0,0.0,0.0,0.0,0.0,,,,0,0.0,2.18,0.4899999999999999,0.0,0.0,6.0,0.0,123.0,0.0,0.0,0.0,1.0,262633.06,2474.44,1.0,,,104.0,80104.0,1.0,172.0,211.0,0.0,39.0,0.0,0.0,79.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,6.029220139328177,0.107,999999.0,37.482,0.551,3.922,7.385,28714.801,134.0,0.2050836322279432,3.358451450469251,0.9009809476797312 +10305.0,10305,,Block 3044,0,25,PedestrianZones,2299540.242944433,144152.48369154724,10.0,0,0,0.2999999999999999,0.0,0.0,0.0,,23426.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,30,5,0,0,0,9,0,105,0,0,0,0,0,0,212,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3044.0,410470002003044.0,1000000US410470002003044,10.14,0.02,80135.0,0.0,89.0,44.9355581,-123.0402145,0.0,3.0,8007303044,80068.0,0.0,0.0,106818.0,0.0,0.2999999999999999,0.0,3.0,LINEAR PARK,DEVELOPED,,0,0.0,55.33,1.0,0.0,0.0,0.0,0.0,11.0,0.0,0.0,0.0,1.0,252108.39,2052.7,1.0,,,73.0,80073.0,2.0,166.0,169.0,0.0,3.0,0.0,0.0,3.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,5.787607227027179,0.0,999999.0,31.875,2.018,2.68,4.316,23162.522,89.0,0.0,0.0,0.0 +10307.0,10307,,Block 2056,0,25,PedestrianZones,2299969.011169781,144485.8930660597,10.0,0,0,0.0,0.0,0.0,0.0,,8582.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,17,0,0,16,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2056.0,410470002002056.0,1000000US410470002002056,0.0,0.0,80103.0,0.0,132.0,44.9386783,-123.0349172,0.0,3.0,8006702056,80068.0,0.0,0.0,106820.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.0,0.0,0.0,0.0,1.0,92363.17,1299.45,1.0,,,67.0,80067.0,2.0,19.0,19.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.1203648004829607,0.039,999999.0,31.231,0.0,0.346,0.402,20244.51,132.0,0.2045418605181125,3.429744508688346,0.9123114554081632 10314.0,10314,,Block 3007,0,25,PedestrianZones,2300054.5908047925,146750.86784345188,10.0,0,0,0.0,0.0,0.0,0.0,,12401.0,0.0,3.0,410470003003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80092.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,3007.0,410470003003007.0,1000000US410470003003007,0.0,1.0,80103.0,0.0,90.0,44.9590756,-123.0347336,0.0,1.0,8008603007,80417.0,0.0,0.0,106833.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.8599999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,133456.28,1474.74,1.0,,,86.0,80086.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,7.0,300.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.063731807628671,0.303,999999.0,4.855,0.107,1.854,3.322,5232.978,90.0,0.0,0.0,0.0 10366.0,10366,,Block 2013,0,25,PedestrianZones,2299689.089354109,145261.79385776195,10.0,0,0,2.64,0.0,0.0,0.0,,18145.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2013.0,410470002002013.0,1000000US410470002002013,0.0,0.0,80103.0,0.0,113.0,44.9455783,-123.0387711,0.0,1.0,8006402013,80068.0,0.0,0.0,110860.0,0.0,2.64,0.0,3.0,URBAN PARK,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,0.0,0.0,0.0,1.0,195267.37,1770.9,1.0,,,64.0,80064.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.482718139315738,0.212,999999.0,14.957,2.372,1.275,2.099,10915.864,113.0,0.0,0.0,0.0 10443.0,10443,,Block 1026,0,25,PedestrianZones,2301576.857454753,145779.5250173924,10.0,0,0,0.0,0.0,0.0,0.0,,14192.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1026.0,410470006001026.0,1000000US410470006001026,0.0,1.0,80103.0,0.0,132.0,44.9507665,-123.015065,0.0,1.0,8009801026,80082.0,0.0,0.0,111018.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.4699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,152731.59,1654.35,1.0,,,98.0,80098.0,1.0,0.0,19.0,0.0,19.0,0.0,0.0,40.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.506231690302386,0.217,999999.0,4.527,0.196,3.58,8.137,8105.078,132.0,0.0,0.0,0.0 10444.0,10444,,Block 1019,0,25,PedestrianZones,2301735.823458338,145824.00237901398,10.0,0,0,0.0,0.0,0.0,0.0,,4309.0,0.0,1.0,410470006001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,1019.0,410470006001019.0,1000000US410470006001019,0.0,1.0,80103.0,0.0,116.0,44.9512111,-123.0130689,0.0,1.0,8009801019,80082.0,0.0,0.0,111019.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.5999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,46369.14,996.72,1.0,,,98.0,80098.0,1.0,0.0,6.0,0.0,6.0,0.0,0.0,10.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.064488091620064,0.113,999999.0,4.389,0.158,3.154,7.263,7457.526,116.0,0.0,0.0,0.0 -10445.0,10445,,Block 5002,0,25,PedestrianZones,2301866.575165297,144382.53506043975,10.0,0,0,0.0,0.0,0.0,0.0,,41443.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5002.0,410470009005002.0,1000000US410470009005002,0.0,0.95,80103.0,0.0,125.0,44.9382818,-123.010845,0.0,1.0,8010905002,80082.0,0.0,0.0,111020.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,446002.81,3190.26,1.0,,,109.0,80109.0,1.0,3.0,63.0,0.0,60.0,0.0,0.0,155.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.238806695707082,0.203,999999.0,10.206,0.085,2.738,6.316,10574.115,125.0,0.0,0.0,0.0 -10450.0,10450,,Block 2000,0,25,PedestrianZones,2302158.952377626,145245.8982900426,10.0,0,0,0.0,0.0,0.0,0.0,,130337.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2000.0,410470006002000.0,1000000US410470006002000,0.0,0.96,80103.0,0.0,133.0,44.9461294,-123.0074817,0.0,1.0,8010002000,80082.0,0.0,0.0,111025.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1402659.54,5559.43,1.0,,,100.0,80100.0,1.0,5.0,119.0,0.0,114.0,0.0,0.0,291.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,32.20060373172144,0.409,999999.0,2.55,0.232,2.8,7.302,6305.289,133.0,0.0,0.0,0.0 +10445.0,10445,,Block 5002,0,25,PedestrianZones,2301866.575165297,144382.53506043975,10.0,0,0,0.0,0.0,0.0,0.0,,41443.0,0.0,5.0,410470009005000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,5002.0,410470009005002.0,1000000US410470009005002,0.0,0.95,80103.0,0.0,125.0,44.9382818,-123.010845,0.0,1.0,8010905002,80082.0,0.0,0.0,111020.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,446002.81,3190.26,1.0,,,109.0,80109.0,1.0,3.0,63.0,0.0,60.0,0.0,0.0,155.0,900.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,10.238806695707082,0.203,999999.0,10.206,0.085,2.738,6.316,10574.115,125.0,0.0,0.0,0.0 +10450.0,10450,,Block 2000,0,25,PedestrianZones,2302158.952377626,145245.8982900426,10.0,0,0,0.0,0.0,0.0,0.0,,130337.0,0.0,2.0,410470006002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,4.0,1.0,1.0,9999.0,0.0,80100.0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,2000.0,410470006002000.0,1000000US410470006002000,0.0,0.96,80103.0,0.0,133.0,44.9461294,-123.0074817,0.0,1.0,8010002000,80082.0,0.0,0.0,111025.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.02,0.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1402659.54,5559.43,1.0,,,100.0,80100.0,1.0,5.0,119.0,0.0,114.0,0.0,0.0,291.0,600.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,32.20060373172144,0.409,999999.0,2.55,0.232,2.8,7.302,6305.289,133.0,0.0,0.0,0.0 10530.0,10530,,Block 3043,0,25,PedestrianZones,2299488.158744955,144011.45096954348,10.0,0,0,0.0,0.0,0.0,0.0,,15879.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3043.0,410470002003043.0,1000000US410470002003043,0.0,0.5799999999999998,80135.0,0.0,82.0,44.9342748,-123.0408178,0.0,2.0,8007403043,80068.0,0.0,0.0,111167.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.62,0.8499999999999999,0.0,0.0,0.0,0.0,9.0,0.0,0.0,0.0,1.0,170888.66,1656.91,1.0,,,74.0,80074.0,2.0,8.0,19.0,0.0,11.0,0.0,0.0,13.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,3.923060460419118,0.134,999999.0,26.814,1.218,2.55,4.151,19817.71,82.0,0.0,0.0,0.0 10533.0,10533,,Block 3056,0,25,PedestrianZones,2300205.877512566,143929.9613753071,10.0,0,0,0.0,0.0,0.0,0.0,,3595.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80116.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3056.0,410470002003056.0,1000000US410470002003056,0.0,0.0,80135.0,0.0,131.0,44.9337446,-123.0316968,0.0,1.0,8007803056,80068.0,0.0,0.0,111170.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,38695.02,1915.54,1.0,,,78.0,80078.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,0.8883145859539939,0.17,999999.0,36.647,0.0,0.813,1.608,24483.206,131.0,0.0,0.0,0.0 -10534.0,10534,,Block 3035,0,25,PedestrianZones,2300335.4143877705,144250.9619506812,10.0,0,0,0.0,0.0,0.0,0.0,,97571.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,2112.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,2,75,0,490,0,0,0,0,0,0,0,0,0,0,0,872,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3035.0,410470002003035.0,1000000US410470002003035,0.0,0.03,80103.0,0.0,146.0,44.9366684,-123.0301838,0.0,3.0,8007803035,80068.0,0.0,0.0,111171.0,0.0,0.0,0.0,0.0,,,,0,0.0,25.97,0.8399999999999999,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,1.0,1050040.28,4383.73,1.0,,,78.0,80078.0,2.0,831.0,858.0,0.0,27.0,0.0,0.0,32.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.105586565205883,0.0,999999.0,46.345,0.65,2.999,5.656,33280.261,146.0,0.0,0.0,0.0 +10534.0,10534,,Block 3035,0,25,PedestrianZones,2300335.4143877705,144250.9619506812,10.0,0,0,0.0,0.0,0.0,0.0,,97571.0,0.0,3.0,410470002003000.0,0.0,2.0,Salem,2112.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80106.0,0,0,0,0,2,41,0,636,0,0,1,0,0,0,0,0,0,0,0,525,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3035.0,410470002003035.0,1000000US410470002003035,0.0,0.03,80103.0,0.0,146.0,44.9366684,-123.0301838,0.0,3.0,8007803035,80068.0,0.0,0.0,111171.0,0.0,0.0,0.0,0.0,,,,0,0.0,25.97,0.8399999999999999,0.0,0.0,0.0,0.0,62.0,0.0,0.0,0.0,1.0,1050040.28,4383.73,1.0,,,78.0,80078.0,2.0,831.0,858.0,0.0,27.0,0.0,0.0,32.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,24.105586565205883,0.0,999999.0,46.345,0.65,2.999,5.656,33280.261,146.0,0.2039024200990567,3.384155263173137,0.9034009792536912 10541.0,10541,,Block 2007,0,25,PedestrianZones,2299476.2520926185,145409.62388958017,10.0,0,0,0.28,0.0,0.0,0.0,,0.0,29146.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2007.0,410470002002007.0,1000000US410470002002007,0.0,0.0,80103.0,0.0,109.0,44.9468478,-123.0415258,0.0,1.0,8006102007,80068.0,0.0,0.0,111190.0,0.0,0.28,0.0,3.0,LINEAR PARK / CONNECTOR TRAIL,DEVELOPED,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,313659.33,2495.24,1.0,,,61.0,80061.0,2.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,7.200621119277452,0.331,999999.0,10.994,1.954,0.357,0.541,7382.392,109.0,0.0,0.0,0.0 -10542.0,10542,,Block 2039,0,25,PedestrianZones,2299546.1846272014,144896.12515690635,10.0,0,0,0.0,0.0,0.0,0.0,,17292.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,1,0,0,6,0,13,0,0,0,1,0,14,35,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2039.0,410470002002039.0,1000000US410470002002039,0.0,0.5999999999999999,80103.0,0.0,106.0,44.9422488,-123.0404354,0.0,2.0,8006302039,80068.0,0.0,0.0,111191.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4099999999999999,0.6099999999999999,0.0,1.5,18.0,0.0,48.0,0.0,0.0,0.0,1.0,186088.65,1725.04,1.0,,,63.0,80063.0,2.0,27.0,67.0,0.0,40.0,0.0,0.0,66.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.272003711542358,0.265,999999.0,34.545,3.186,1.704,2.746,23866.219,106.0,5.2461201198037095,0.5077167308752945,0.8571956056899177 -10543.0,10543,,Block 2014,0,25,PedestrianZones,2299739.298217061,145357.50839922158,10.0,0,0,0.0,0.0,0.0,0.0,,10400.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,1,0,0,0,0,0,0,7,73,0,8,0,0,0,0,0,0,78,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2014.0,410470002002014.0,1000000US410470002002014,0.0,0.0,80103.0,0.0,116.0,44.9464534,-123.0381733,0.0,3.0,8006402014,80068.0,0.0,0.0,111192.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,111923.96,1442.39,1.0,,,64.0,80064.0,2.0,109.0,109.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.569418380303398,0.212,999999.0,14.957,2.372,1.275,2.099,10915.864,116.0,0.0,0.0,0.0 -10544.0,10544,,Block 1027,0,25,PedestrianZones,2300055.94183643,145416.26739122815,10.0,0,0,0.0,0.0,0.0,0.0,,19456.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,17,0,0,4,0,166,0,0,0,0,0,0,318,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1027.0,410470002001027.0,1000000US410470002001027,0.0,0.0,80103.0,0.0,135.0,44.9470714,-123.034186,0.0,3.0,8008501027,80068.0,0.0,0.0,111193.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,209383.72,2029.17,1.0,,,85.0,80085.0,2.0,224.0,224.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.80678449007633,0.0,999999.0,18.502,1.102,2.92,6.036,15703.917,135.0,0.0,0.0,0.0 -10545.0,10545,,Block 2043,0,25,PedestrianZones,2299925.91111,144745.57334289653,10.0,0,0,0.0,0.0,0.0,0.0,,17990.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,4,0,0,0,631,0,0,6,0,0,0,0,0,0,852,1,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2043.0,410470002002043.0,1000000US410470002002043,0.0,0.0,80103.0,0.0,123.0,44.9410019,-123.0355663,0.0,3.0,8006802043,80068.0,0.0,0.0,111194.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,40.0,0.0,0.0,0.0,1.0,193604.12,1760.7,1.0,,,68.0,80068.0,2.0,623.0,623.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.444535111441725,0.0,999999.0,46.087,2.61,2.667,4.33,32266.782,123.0,5.214212888143273,0.5053522711799475,0.8548903659744232 +10542.0,10542,,Block 2039,0,25,PedestrianZones,2299546.1846272014,144896.12515690635,10.0,0,0,0.0,0.0,0.0,0.0,,17292.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,0,6,0,11,0,0,0,2,0,10,36,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2039.0,410470002002039.0,1000000US410470002002039,0.0,0.5999999999999999,80103.0,0.0,106.0,44.9422488,-123.0404354,0.0,2.0,8006302039,80068.0,0.0,0.0,111191.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.4099999999999999,0.6099999999999999,0.0,1.5,18.0,0.0,48.0,0.0,0.0,0.0,1.0,186088.65,1725.04,1.0,,,63.0,80063.0,2.0,27.0,67.0,0.0,40.0,0.0,0.0,66.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.272003711542358,0.265,999999.0,34.545,3.186,1.704,2.746,23866.219,106.0,0.2026085294822913,3.4578885298018154,0.9143188781943028 +10543.0,10543,,Block 2014,0,25,PedestrianZones,2299739.298217061,145357.50839922158,10.0,0,0,0.0,0.0,0.0,0.0,,10400.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,0,0,5,31,0,9,0,0,0,0,0,0,95,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2014.0,410470002002014.0,1000000US410470002002014,0.0,0.0,80103.0,0.0,116.0,44.9464534,-123.0381733,0.0,3.0,8006402014,80068.0,0.0,0.0,111192.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.0,0.0,0.0,0.0,1.0,111923.96,1442.39,1.0,,,64.0,80064.0,2.0,109.0,109.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,2.569418380303398,0.212,999999.0,14.957,2.372,1.275,2.099,10915.864,116.0,0.0,0.0,0.0 +10544.0,10544,,Block 1027,0,25,PedestrianZones,2300055.94183643,145416.26739122815,10.0,0,0,0.0,0.0,0.0,0.0,,19456.0,0.0,1.0,410470002001000.0,0.0,2.0,Salem,0.0,47.0,,0.0,0.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,0,0,11,0,0,3,0,196,0,0,0,0,0,0,338,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1027.0,410470002001027.0,1000000US410470002001027,0.0,0.0,80103.0,0.0,135.0,44.9470714,-123.034186,0.0,3.0,8008501027,80068.0,0.0,0.0,111193.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,209383.72,2029.17,1.0,,,85.0,80085.0,2.0,224.0,224.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.80678449007633,0.0,999999.0,18.502,1.102,2.92,6.036,15703.917,135.0,0.0,0.0,0.0 +10545.0,10545,,Block 2043,0,25,PedestrianZones,2299925.91111,144745.57334289653,10.0,0,0,0.0,0.0,0.0,0.0,,17990.0,0.0,2.0,410470002002000.0,0.0,2.0,Salem,0.0,47.0,,0.0,1.0,1.0,1.0,1.0,9999.0,0.0,80064.0,0,0,0,0,0,4,0,0,0,674,0,0,3,0,0,0,0,0,0,723,0,0,0.0,0.0,0.0,9999.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,2043.0,410470002002043.0,1000000US410470002002043,0.0,0.0,80103.0,0.0,123.0,44.9410019,-123.0355663,0.0,3.0,8006802043,80068.0,0.0,0.0,111194.0,0.0,0.0,0.0,0.0,,,,0,0.0,0.0,0.0,0.0,1.5,18.0,0.0,40.0,0.0,0.0,0.0,1.0,193604.12,1760.7,1.0,,,68.0,80068.0,2.0,623.0,623.0,0.0,0.0,0.0,0.0,0.0,200.0,,0.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,4.444535111441725,0.0,999999.0,46.087,2.61,2.667,4.33,32266.782,123.0,0.2046786345376693,3.4453585060754035,0.9149225544600889 diff --git a/resident/model_data/skats/data_cropped/transitSkims__AM.omx b/resident/model_data/skats/data_cropped/transitSkims__AM.omx index b4ad65b..fcd53d7 100644 Binary files a/resident/model_data/skats/data_cropped/transitSkims__AM.omx and b/resident/model_data/skats/data_cropped/transitSkims__AM.omx differ diff --git a/resident/model_data/skats/data_cropped/transitSkims__EA.omx b/resident/model_data/skats/data_cropped/transitSkims__EA.omx index 8dd8f92..72ebf50 100644 Binary files a/resident/model_data/skats/data_cropped/transitSkims__EA.omx and b/resident/model_data/skats/data_cropped/transitSkims__EA.omx differ diff --git a/resident/model_data/skats/data_cropped/transitSkims__EV.omx b/resident/model_data/skats/data_cropped/transitSkims__EV.omx index e606fd5..da833d4 100644 Binary files a/resident/model_data/skats/data_cropped/transitSkims__EV.omx and b/resident/model_data/skats/data_cropped/transitSkims__EV.omx differ diff --git a/resident/model_data/skats/data_cropped/transitSkims__MD.omx b/resident/model_data/skats/data_cropped/transitSkims__MD.omx index c38a43c..015a3ec 100644 Binary files a/resident/model_data/skats/data_cropped/transitSkims__MD.omx and b/resident/model_data/skats/data_cropped/transitSkims__MD.omx differ diff --git a/resident/model_data/skats/data_cropped/transitSkims__PM.omx b/resident/model_data/skats/data_cropped/transitSkims__PM.omx index 6a28f87..b4daba8 100644 Binary files a/resident/model_data/skats/data_cropped/transitSkims__PM.omx and b/resident/model_data/skats/data_cropped/transitSkims__PM.omx differ diff --git a/resident/model_data/skats/data_cropped/walkSkim.omx b/resident/model_data/skats/data_cropped/walkSkim.omx index 5744440..a99f958 100644 Binary files a/resident/model_data/skats/data_cropped/walkSkim.omx and b/resident/model_data/skats/data_cropped/walkSkim.omx differ diff --git a/resident/preprocessor.py b/resident/preprocessor.py index c5957a4..0552f61 100644 --- a/resident/preprocessor.py +++ b/resident/preprocessor.py @@ -74,47 +74,65 @@ def load_data(settings: PreprocessorSettings) -> tuple[pd.DataFrame, pd.DataFram def set_land_use_maz_index(land_use: pd.DataFrame) -> pd.DataFrame: - """Infer the MAZ column, rename it to 'MAZ', and set it as the index. + """Infer the MAZ and TAZ columns, rename them, and set MAZ as the index. Searches for common MAZ column name variations (MAZ, MAZ_ID, MAZ_NO) - and standardizes to 'MAZ' as the DataFrame index. + and TAZ column name variations (TAZ, TAZ_ID, TAZ_NO), standardizes + their names to 'MAZ' and 'TAZ', and sets 'MAZ' as the DataFrame index. Parameters ---------- land_use : pd.DataFrame - Land use table with an MAZ-like column + Land use table with MAZ-like and optionally TAZ-like columns Returns ------- pd.DataFrame - Land use table with 'MAZ' as the index + Land use table with 'MAZ' as the index and 'TAZ' column renamed """ + # --- MAZ --- # If MAZ is already the index, just ensure the name - if land_use.index.name and land_use.index.name.upper() in ['MAZ', 'MAZ_ID', 'MAZ_NO']: + if land_use.index.name and land_use.index.name == 'MAZ': land_use.index.name = 'MAZ' print("land_use index already set to MAZ") - return land_use - - # Search for a MAZ-like column - maz_col = None - for col in land_use.columns: - if col.upper() in ['MAZ', 'MAZ_ID', 'MAZ_NO']: - maz_col = col - break - - if maz_col is None: - raise RuntimeError( - f"Could not identify MAZ column in land_use. " - f"Available columns: {list(land_use.columns)}" - ) + else: + # Search for a MAZ-like column + maz_col = None + for col in land_use.columns: + if col.upper() in ['MAZ', 'MAZ_ID', 'MAZ_NO']: + maz_col = col + break + + if maz_col is None: + raise RuntimeError( + f"Could not identify MAZ column in land_use. " + f"Available columns: {list(land_use.columns)}" + ) + + # Rename to 'MAZ' if needed, then set as index + if maz_col != 'MAZ': + land_use = land_use.rename(columns={maz_col: 'MAZ'}) + print(f"Renamed land_use column '{maz_col}' to 'MAZ'") + + land_use = land_use.set_index('MAZ') + print(f"Set land_use index to 'MAZ' ({len(land_use)} zones)") - # Rename to 'MAZ' if needed, then set as index - if maz_col != 'MAZ': - land_use = land_use.rename(columns={maz_col: 'MAZ'}) - print(f"Renamed land_use column '{maz_col}' to 'MAZ'") + # --- TAZ --- + if 'TAZ' in land_use.columns: + print("TAZ column already exists in land_use") + else: + taz_col = None + for col in land_use.columns: + if col.upper() in ['TAZ', 'TAZ_ID', 'TAZ_NO']: + taz_col = col + break + + if taz_col is None: + print("Warning: Could not identify TAZ column in land_use, skipping TAZ rename") + else: + land_use = land_use.rename(columns={taz_col: 'TAZ'}) + print(f"Renamed land_use column '{taz_col}' to 'TAZ'") - land_use = land_use.set_index('MAZ') - print(f"Set land_use index to 'MAZ' ({len(land_use)} zones)") return land_use @@ -276,9 +294,9 @@ def add_acres(land_use: pd.DataFrame, maz_shp_file: str = None) -> pd.DataFrame: pd.DataFrame Updated land_use with ACRES field """ + # Drop exisiting ACRES col if "ACRES" in land_use.columns: - print("ACRES already exists in land_use") - return land_use + land_use = land_use.drop(columns=["ACRES"], axis=1) if maz_shp_file is None: print("Warning: ACRES field not found and no maz_shp_file provided, skipping") @@ -287,21 +305,17 @@ def add_acres(land_use: pd.DataFrame, maz_shp_file: str = None) -> pd.DataFrame: print(f"Reading shapefile: {maz_shp_file}") gdf = gpd.read_file(maz_shp_file) - # Identify the MAZ ID column in the shapefile - # Common variations: MAZ, MAZ_ID, maz, ID, etc. - maz_col = None - for col in gdf.columns: - if col.upper() in ['MAZ', 'MAZ_ID', 'ID', 'MAZ_NO']: - maz_col = col - break - - if maz_col is None: - print(f"Warning: Could not identify MAZ ID column in shapefile") - print(f"Available columns: {list(gdf.columns)}") - return land_use + # Ensure MAZ column is in shapefile + maz_cols = [col for col in gdf.columns if 'MAZ' in col.upper()] + + if 'MAZ' not in gdf.columns: + raise RuntimeError( + f"'MAZ' column not in land use shapefile. Must add 'MAZ' column.\n" + + (f"Available MAZ columns are: {maz_cols}. Change MAZ column name to 'MAZ'." if maz_cols else "") + ) - gdf = gdf.rename(columns={maz_col: 'MAZ'}) - print(f"Using '{maz_col}' as MAZ identifier") + if 'MAZ' in gdf.columns and len(maz_cols) > 1: + print(f"Warning: Multiple MAZ columns identified in land use shapefile: {maz_cols}. Defaulting to 'MAZ'.") # Calculate area in acres # Convert to appropriate CRS if needed (shapefile should be in projected coordinates) @@ -454,6 +468,17 @@ def get_intersection_count( print(f"Reading maz_shp_file: {maz_shp_file}") maz = gpd.read_file(settings.maz_shp_file) + # Ensure MAZ is a column in land use shapefile + maz_cols = [col for col in maz.columns if 'MAZ' in col.upper()] + if 'MAZ' not in maz.columns: + raise RuntimeError( + f"'MAZ' column not in land use shapefile. Must add 'MAZ' column.\n" + + (f"Available MAZ columns are: {maz_cols}. Change MAZ column name to 'MAZ'." if maz_cols else "") + ) + + if 'MAZ' in maz.columns and len(maz_cols) > 1: + print(f"Warning: Multiple MAZ columns identified in land use shapefile: {maz_cols}. Defaulting to 'MAZ'.") + links[filter_col] = pd.to_numeric(links[filter_col], errors='coerce') # Check crs @@ -495,18 +520,11 @@ def get_intersection_count( intersections = pd.merge(intersections_temp, nodes[['NO', 'XCOORD', 'YCOORD']], left_on='N', right_on='NO', how='left') intersections = intersections[['N', 'XCOORD', 'YCOORD']] intersections = intersections.rename(columns = {'XCOORD':'X', 'YCOORD':'Y'}) - - # Find MAZ col in maz_shp - maz_col = None - for col in maz.columns: - if col.upper() in ['MAZ', 'MAZ_NO', 'MAZ_ID', 'ID']: - maz_col = col - break # Find maz centroids maz['XCOORD'] = maz.geometry.centroid.x maz['YCOORD'] = maz.geometry.centroid.y - maz_nodes = maz[[maz_col] + ['XCOORD', 'YCOORD']] + maz_nodes = maz[['MAZ', 'XCOORD', 'YCOORD']] maz_nodes.columns = ['MAZ', 'X', 'Y'] # Find nearest maz for each intersection @@ -549,10 +567,12 @@ def get_density(land_use: pd.DataFrame, settings: PreprocessorSettings,) -> pd.D print(f"Reading MAZ walk file: {settings.maz_maz_walk_file}") maz_maz_walk = pd.read_csv(settings.maz_maz_walk_file) + # Drop existing density columns, accounting for case new_cols = ['empden', 'retempden', 'duden', 'popden', 'popempdenpermi', 'totint'] + lower_cols = {col.lower(): col for col in land_use.columns} for col in new_cols: - if col in land_use.columns: - land_use = land_use.drop(col, axis=1) + if col in lower_cols: + land_use = land_use.drop(lower_cols[col], axis=1) # Count intersections per MAZ if settings.count_intersections: diff --git a/resident/preprocessor_settings.yaml b/resident/preprocessor_settings.yaml index 6c9cf5b..b9619bd 100644 --- a/resident/preprocessor_settings.yaml +++ b/resident/preprocessor_settings.yaml @@ -29,9 +29,9 @@ density_radius: 0.50 # walk radius (miles) for density calculations exp_parking_costs_file: C:\Documents\expected_parking_data.csv # Intersection counts -count_intersections: True +count_intersections: False # If count_intersections is False, provide col name with intersection counts -# icnt_col: INTHMI +icnt_col: INTHMI # Network filter for intersection counts # Specify col name and values to filter on diff --git a/resident/test/test_cropped_dataset.py b/resident/test/test_cropped_dataset_metro.py similarity index 100% rename from resident/test/test_cropped_dataset.py rename to resident/test/test_cropped_dataset_metro.py diff --git a/resident/test/test_cropped_dataset_skats.py b/resident/test/test_cropped_dataset_skats.py new file mode 100644 index 0000000..0c02f25 --- /dev/null +++ b/resident/test/test_cropped_dataset_skats.py @@ -0,0 +1,48 @@ +import subprocess +import os +import sys + +def test_cropped_example(): + """ + Run the cropped dataset example. + Test passes if the model runs to completion, fails if it crashes. + """ + + # Get the path to simulation.py relative to this test file + test_dir = os.path.dirname(__file__) + resident_dir = os.path.dirname(test_dir) + file_path = os.path.join(resident_dir, "simulation.py") + + run_args = [ + "-c", os.path.join(resident_dir, "configs_skats"), + "-c", os.path.join(resident_dir, "configs"), + "-d", os.path.join(resident_dir, "model_data/skats/data_cropped"), + "-o", os.path.join(resident_dir, "outputs/test") + ] + + # Run the simulation - subprocess.run with check=True will raise + # CalledProcessError if the process returns a non-zero exit code + try: + result = subprocess.run( + [sys.executable, file_path] + run_args, + check=True, + capture_output=True, + text=True + ) + print(result.stdout) + if result.stderr: + print(result.stderr, file=sys.stderr) + except subprocess.CalledProcessError as e: + # Print full output on failure so CI logs show what went wrong + print("=== STDOUT ===") + print(e.stdout) + print("=== STDERR ===") + print(e.stderr, file=sys.stderr) + raise # Re-raise to fail the test + + return True + + +if __name__ == "__main__": + test_cropped_example() + print("Test passed: Model ran to completion.") \ No newline at end of file